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  * Based on:
13026  * Ext JS Library 1.1.1
13027  * Copyright(c) 2006-2007, Ext JS, LLC.
13028  *
13029  * Originally Released Under LGPL - original licence link has changed is not relivant.
13030  *
13031  * Fork - LGPL
13032  * <script type="text/javascript">
13033  */
13034
13035 /**
13036  * @class Roo.data.ArrayReader
13037  * @extends Roo.data.DataReader
13038  * Data reader class to create an Array of Roo.data.Record objects from an Array.
13039  * Each element of that Array represents a row of data fields. The
13040  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
13041  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
13042  * <p>
13043  * Example code:.
13044  * <pre><code>
13045 var RecordDef = Roo.data.Record.create([
13046     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
13047     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
13048 ]);
13049 var myReader = new Roo.data.ArrayReader({
13050     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
13051 }, RecordDef);
13052 </code></pre>
13053  * <p>
13054  * This would consume an Array like this:
13055  * <pre><code>
13056 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
13057   </code></pre>
13058  
13059  * @constructor
13060  * Create a new JsonReader
13061  * @param {Object} meta Metadata configuration options.
13062  * @param {Object|Array} recordType Either an Array of field definition objects
13063  * 
13064  * @cfg {Array} fields Array of field definition objects
13065  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
13066  * as specified to {@link Roo.data.Record#create},
13067  * or an {@link Roo.data.Record} object
13068  *
13069  * 
13070  * created using {@link Roo.data.Record#create}.
13071  */
13072 Roo.data.ArrayReader = function(meta, recordType)
13073 {    
13074     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
13075 };
13076
13077 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
13078     
13079       /**
13080      * Create a data block containing Roo.data.Records from an XML document.
13081      * @param {Object} o An Array of row objects which represents the dataset.
13082      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
13083      * a cache of Roo.data.Records.
13084      */
13085     readRecords : function(o)
13086     {
13087         var sid = this.meta ? this.meta.id : null;
13088         var recordType = this.recordType, fields = recordType.prototype.fields;
13089         var records = [];
13090         var root = o;
13091         for(var i = 0; i < root.length; i++){
13092                 var n = root[i];
13093             var values = {};
13094             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
13095             for(var j = 0, jlen = fields.length; j < jlen; j++){
13096                 var f = fields.items[j];
13097                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
13098                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
13099                 v = f.convert(v);
13100                 values[f.name] = v;
13101             }
13102             var record = new recordType(values, id);
13103             record.json = n;
13104             records[records.length] = record;
13105         }
13106         return {
13107             records : records,
13108             totalRecords : records.length
13109         };
13110     },
13111     /**
13112      * using 'cn' the nested child reader read the child array into it's child stores.
13113      * @param {Object} rec The record with a 'children array
13114      */
13115     loadDataFromChildren: function(rec)
13116     {
13117         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
13118         return this.loadData(typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn);
13119         
13120     }
13121     
13122     
13123 });/*
13124  * - LGPL
13125  * * 
13126  */
13127
13128 /**
13129  * @class Roo.bootstrap.ComboBox
13130  * @extends Roo.bootstrap.TriggerField
13131  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
13132  * @cfg {Boolean} append (true|false) default false
13133  * @cfg {Boolean} autoFocus (true|false) auto focus the first item, default true
13134  * @cfg {Boolean} tickable ComboBox with tickable selections (true|false), default false
13135  * @cfg {Boolean} triggerList trigger show the list or not (true|false) default true
13136  * @cfg {Boolean} showToggleBtn show toggle button or not (true|false) default true
13137  * @cfg {String} btnPosition set the position of the trigger button (left | right) default right
13138  * @cfg {Boolean} animate default true
13139  * @cfg {Boolean} emptyResultText only for touch device
13140  * @cfg {String} triggerText multiple combobox trigger button text default 'Select'
13141  * @cfg {String} emptyTitle default ''
13142  * @constructor
13143  * Create a new ComboBox.
13144  * @param {Object} config Configuration options
13145  */
13146 Roo.bootstrap.ComboBox = function(config){
13147     Roo.bootstrap.ComboBox.superclass.constructor.call(this, config);
13148     this.addEvents({
13149         /**
13150          * @event expand
13151          * Fires when the dropdown list is expanded
13152         * @param {Roo.bootstrap.ComboBox} combo This combo box
13153         */
13154         'expand' : true,
13155         /**
13156          * @event collapse
13157          * Fires when the dropdown list is collapsed
13158         * @param {Roo.bootstrap.ComboBox} combo This combo box
13159         */
13160         'collapse' : true,
13161         /**
13162          * @event beforeselect
13163          * Fires before a list item is selected. Return false to cancel the selection.
13164         * @param {Roo.bootstrap.ComboBox} combo This combo box
13165         * @param {Roo.data.Record} record The data record returned from the underlying store
13166         * @param {Number} index The index of the selected item in the dropdown list
13167         */
13168         'beforeselect' : true,
13169         /**
13170          * @event select
13171          * Fires when a list item is selected
13172         * @param {Roo.bootstrap.ComboBox} combo This combo box
13173         * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
13174         * @param {Number} index The index of the selected item in the dropdown list
13175         */
13176         'select' : true,
13177         /**
13178          * @event beforequery
13179          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
13180          * The event object passed has these properties:
13181         * @param {Roo.bootstrap.ComboBox} combo This combo box
13182         * @param {String} query The query
13183         * @param {Boolean} forceAll true to force "all" query
13184         * @param {Boolean} cancel true to cancel the query
13185         * @param {Object} e The query event object
13186         */
13187         'beforequery': true,
13188          /**
13189          * @event add
13190          * Fires when the 'add' icon is pressed (add a listener to enable add button)
13191         * @param {Roo.bootstrap.ComboBox} combo This combo box
13192         */
13193         'add' : true,
13194         /**
13195          * @event edit
13196          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
13197         * @param {Roo.bootstrap.ComboBox} combo This combo box
13198         * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
13199         */
13200         'edit' : true,
13201         /**
13202          * @event remove
13203          * Fires when the remove value from the combobox array
13204         * @param {Roo.bootstrap.ComboBox} combo This combo box
13205         */
13206         'remove' : true,
13207         /**
13208          * @event afterremove
13209          * Fires when the remove value from the combobox array
13210         * @param {Roo.bootstrap.ComboBox} combo This combo box
13211         */
13212         'afterremove' : true,
13213         /**
13214          * @event specialfilter
13215          * Fires when specialfilter
13216             * @param {Roo.bootstrap.ComboBox} combo This combo box
13217             */
13218         'specialfilter' : true,
13219         /**
13220          * @event tick
13221          * Fires when tick the element
13222             * @param {Roo.bootstrap.ComboBox} combo This combo box
13223             */
13224         'tick' : true,
13225         /**
13226          * @event touchviewdisplay
13227          * Fires when touch view require special display (default is using displayField)
13228             * @param {Roo.bootstrap.ComboBox} combo This combo box
13229             * @param {Object} cfg set html .
13230             */
13231         'touchviewdisplay' : true
13232         
13233     });
13234     
13235     this.item = [];
13236     this.tickItems = [];
13237     
13238     this.selectedIndex = -1;
13239     if(this.mode == 'local'){
13240         if(config.queryDelay === undefined){
13241             this.queryDelay = 10;
13242         }
13243         if(config.minChars === undefined){
13244             this.minChars = 0;
13245         }
13246     }
13247 };
13248
13249 Roo.extend(Roo.bootstrap.ComboBox, Roo.bootstrap.TriggerField, {
13250      
13251     /**
13252      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
13253      * rendering into an Roo.Editor, defaults to false)
13254      */
13255     /**
13256      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
13257      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
13258      */
13259     /**
13260      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
13261      */
13262     /**
13263      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
13264      * the dropdown list (defaults to undefined, with no header element)
13265      */
13266
13267      /**
13268      * @cfg {String/Roo.Template} tpl The template to use to render the output
13269      */
13270      
13271      /**
13272      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
13273      */
13274     listWidth: undefined,
13275     /**
13276      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
13277      * mode = 'remote' or 'text' if mode = 'local')
13278      */
13279     displayField: undefined,
13280     
13281     /**
13282      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
13283      * mode = 'remote' or 'value' if mode = 'local'). 
13284      * Note: use of a valueField requires the user make a selection
13285      * in order for a value to be mapped.
13286      */
13287     valueField: undefined,
13288     /**
13289      * @cfg {String} modalTitle The title of the dialog that pops up on mobile views.
13290      */
13291     modalTitle : '',
13292     
13293     /**
13294      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
13295      * field's data value (defaults to the underlying DOM element's name)
13296      */
13297     hiddenName: undefined,
13298     /**
13299      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
13300      */
13301     listClass: '',
13302     /**
13303      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
13304      */
13305     selectedClass: 'active',
13306     
13307     /**
13308      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
13309      */
13310     shadow:'sides',
13311     /**
13312      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
13313      * anchor positions (defaults to 'tl-bl')
13314      */
13315     listAlign: 'tl-bl?',
13316     /**
13317      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
13318      */
13319     maxHeight: 300,
13320     /**
13321      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
13322      * query specified by the allQuery config option (defaults to 'query')
13323      */
13324     triggerAction: 'query',
13325     /**
13326      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
13327      * (defaults to 4, does not apply if editable = false)
13328      */
13329     minChars : 4,
13330     /**
13331      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
13332      * delay (typeAheadDelay) if it matches a known value (defaults to false)
13333      */
13334     typeAhead: false,
13335     /**
13336      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
13337      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
13338      */
13339     queryDelay: 500,
13340     /**
13341      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
13342      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
13343      */
13344     pageSize: 0,
13345     /**
13346      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
13347      * when editable = true (defaults to false)
13348      */
13349     selectOnFocus:false,
13350     /**
13351      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
13352      */
13353     queryParam: 'query',
13354     /**
13355      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
13356      * when mode = 'remote' (defaults to 'Loading...')
13357      */
13358     loadingText: 'Loading...',
13359     /**
13360      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
13361      */
13362     resizable: false,
13363     /**
13364      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
13365      */
13366     handleHeight : 8,
13367     /**
13368      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
13369      * traditional select (defaults to true)
13370      */
13371     editable: true,
13372     /**
13373      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
13374      */
13375     allQuery: '',
13376     /**
13377      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
13378      */
13379     mode: 'remote',
13380     /**
13381      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
13382      * listWidth has a higher value)
13383      */
13384     minListWidth : 70,
13385     /**
13386      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
13387      * allow the user to set arbitrary text into the field (defaults to false)
13388      */
13389     forceSelection:false,
13390     /**
13391      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
13392      * if typeAhead = true (defaults to 250)
13393      */
13394     typeAheadDelay : 250,
13395     /**
13396      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
13397      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
13398      */
13399     valueNotFoundText : undefined,
13400     /**
13401      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
13402      */
13403     blockFocus : false,
13404     
13405     /**
13406      * @cfg {Boolean} disableClear Disable showing of clear button.
13407      */
13408     disableClear : false,
13409     /**
13410      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
13411      */
13412     alwaysQuery : false,
13413     
13414     /**
13415      * @cfg {Boolean} multiple  (true|false) ComboBobArray, default false
13416      */
13417     multiple : false,
13418     
13419     /**
13420      * @cfg {String} invalidClass DEPRICATED - uses BS4 is-valid now
13421      */
13422     invalidClass : "has-warning",
13423     
13424     /**
13425      * @cfg {String} validClass DEPRICATED - uses BS4 is-valid now
13426      */
13427     validClass : "has-success",
13428     
13429     /**
13430      * @cfg {Boolean} specialFilter (true|false) special filter default false
13431      */
13432     specialFilter : false,
13433     
13434     /**
13435      * @cfg {Boolean} mobileTouchView (true|false) show mobile touch view when using a mobile default true
13436      */
13437     mobileTouchView : true,
13438     
13439     /**
13440      * @cfg {Boolean} useNativeIOS (true|false) render it as classic select for ios, not support dynamic load data (default false)
13441      */
13442     useNativeIOS : false,
13443     
13444     /**
13445      * @cfg {Boolean} mobile_restrict_height (true|false) restrict height for touch view
13446      */
13447     mobile_restrict_height : false,
13448     
13449     ios_options : false,
13450     
13451     //private
13452     addicon : false,
13453     editicon: false,
13454     
13455     page: 0,
13456     hasQuery: false,
13457     append: false,
13458     loadNext: false,
13459     autoFocus : true,
13460     tickable : false,
13461     btnPosition : 'right',
13462     triggerList : true,
13463     showToggleBtn : true,
13464     animate : true,
13465     emptyResultText: 'Empty',
13466     triggerText : 'Select',
13467     emptyTitle : '',
13468     
13469     // element that contains real text value.. (when hidden is used..)
13470     
13471     getAutoCreate : function()
13472     {   
13473         var cfg = false;
13474         //render
13475         /*
13476          * Render classic select for iso
13477          */
13478         
13479         if(Roo.isIOS && this.useNativeIOS){
13480             cfg = this.getAutoCreateNativeIOS();
13481             return cfg;
13482         }
13483         
13484         /*
13485          * Touch Devices
13486          */
13487         
13488         if(Roo.isTouch && this.mobileTouchView){
13489             cfg = this.getAutoCreateTouchView();
13490             return cfg;;
13491         }
13492         
13493         /*
13494          *  Normal ComboBox
13495          */
13496         if(!this.tickable){
13497             cfg = Roo.bootstrap.ComboBox.superclass.getAutoCreate.call(this);
13498             return cfg;
13499         }
13500         
13501         /*
13502          *  ComboBox with tickable selections
13503          */
13504              
13505         var align = this.labelAlign || this.parentLabelAlign();
13506         
13507         cfg = {
13508             cls : 'form-group roo-combobox-tickable' //input-group
13509         };
13510         
13511         var btn_text_select = '';
13512         var btn_text_done = '';
13513         var btn_text_cancel = '';
13514         
13515         if (this.btn_text_show) {
13516             btn_text_select = 'Select';
13517             btn_text_done = 'Done';
13518             btn_text_cancel = 'Cancel'; 
13519         }
13520         
13521         var buttons = {
13522             tag : 'div',
13523             cls : 'tickable-buttons',
13524             cn : [
13525                 {
13526                     tag : 'button',
13527                     type : 'button',
13528                     cls : 'btn btn-link btn-edit pull-' + this.btnPosition,
13529                     //html : this.triggerText
13530                     html: btn_text_select
13531                 },
13532                 {
13533                     tag : 'button',
13534                     type : 'button',
13535                     name : 'ok',
13536                     cls : 'btn btn-link btn-ok pull-' + this.btnPosition,
13537                     //html : 'Done'
13538                     html: btn_text_done
13539                 },
13540                 {
13541                     tag : 'button',
13542                     type : 'button',
13543                     name : 'cancel',
13544                     cls : 'btn btn-link btn-cancel pull-' + this.btnPosition,
13545                     //html : 'Cancel'
13546                     html: btn_text_cancel
13547                 }
13548             ]
13549         };
13550         
13551         if(this.editable){
13552             buttons.cn.unshift({
13553                 tag: 'input',
13554                 cls: 'roo-select2-search-field-input'
13555             });
13556         }
13557         
13558         var _this = this;
13559         
13560         Roo.each(buttons.cn, function(c){
13561             if (_this.size) {
13562                 c.cls += ' btn-' + _this.size;
13563             }
13564
13565             if (_this.disabled) {
13566                 c.disabled = true;
13567             }
13568         });
13569         
13570         var box = {
13571             tag: 'div',
13572             style : 'display: contents',
13573             cn: [
13574                 {
13575                     tag: 'input',
13576                     type : 'hidden',
13577                     cls: 'form-hidden-field'
13578                 },
13579                 {
13580                     tag: 'ul',
13581                     cls: 'roo-select2-choices',
13582                     cn:[
13583                         {
13584                             tag: 'li',
13585                             cls: 'roo-select2-search-field',
13586                             cn: [
13587                                 buttons
13588                             ]
13589                         }
13590                     ]
13591                 }
13592             ]
13593         };
13594         
13595         var combobox = {
13596             cls: 'roo-select2-container input-group roo-select2-container-multi',
13597             cn: [
13598                 
13599                 box
13600 //                {
13601 //                    tag: 'ul',
13602 //                    cls: 'typeahead typeahead-long dropdown-menu',
13603 //                    style: 'display:none; max-height:' + this.maxHeight + 'px;'
13604 //                }
13605             ]
13606         };
13607         
13608         if(this.hasFeedback && !this.allowBlank){
13609             
13610             var feedback = {
13611                 tag: 'span',
13612                 cls: 'glyphicon form-control-feedback'
13613             };
13614
13615             combobox.cn.push(feedback);
13616         }
13617         
13618         var indicator = {
13619             tag : 'i',
13620             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
13621             tooltip : 'This field is required'
13622         };
13623         if (Roo.bootstrap.version == 4) {
13624             indicator = {
13625                 tag : 'i',
13626                 style : 'display:none'
13627             };
13628         }
13629         if (align ==='left' && this.fieldLabel.length) {
13630             
13631             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
13632             
13633             cfg.cn = [
13634                 indicator,
13635                 {
13636                     tag: 'label',
13637                     'for' :  id,
13638                     cls : 'control-label col-form-label',
13639                     html : this.fieldLabel
13640
13641                 },
13642                 {
13643                     cls : "", 
13644                     cn: [
13645                         combobox
13646                     ]
13647                 }
13648
13649             ];
13650             
13651             var labelCfg = cfg.cn[1];
13652             var contentCfg = cfg.cn[2];
13653             
13654
13655             if(this.indicatorpos == 'right'){
13656                 
13657                 cfg.cn = [
13658                     {
13659                         tag: 'label',
13660                         'for' :  id,
13661                         cls : 'control-label col-form-label',
13662                         cn : [
13663                             {
13664                                 tag : 'span',
13665                                 html : this.fieldLabel
13666                             },
13667                             indicator
13668                         ]
13669                     },
13670                     {
13671                         cls : "",
13672                         cn: [
13673                             combobox
13674                         ]
13675                     }
13676
13677                 ];
13678                 
13679                 
13680                 
13681                 labelCfg = cfg.cn[0];
13682                 contentCfg = cfg.cn[1];
13683             
13684             }
13685             
13686             if(this.labelWidth > 12){
13687                 labelCfg.style = "width: " + this.labelWidth + 'px';
13688             }
13689             
13690             if(this.labelWidth < 13 && this.labelmd == 0){
13691                 this.labelmd = this.labelWidth;
13692             }
13693             
13694             if(this.labellg > 0){
13695                 labelCfg.cls += ' col-lg-' + this.labellg;
13696                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
13697             }
13698             
13699             if(this.labelmd > 0){
13700                 labelCfg.cls += ' col-md-' + this.labelmd;
13701                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
13702             }
13703             
13704             if(this.labelsm > 0){
13705                 labelCfg.cls += ' col-sm-' + this.labelsm;
13706                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
13707             }
13708             
13709             if(this.labelxs > 0){
13710                 labelCfg.cls += ' col-xs-' + this.labelxs;
13711                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
13712             }
13713                 
13714                 
13715         } else if ( this.fieldLabel.length) {
13716 //                Roo.log(" label");
13717                  cfg.cn = [
13718                    indicator,
13719                     {
13720                         tag: 'label',
13721                         //cls : 'input-group-addon',
13722                         html : this.fieldLabel
13723                     },
13724                     combobox
13725                 ];
13726                 
13727                 if(this.indicatorpos == 'right'){
13728                     cfg.cn = [
13729                         {
13730                             tag: 'label',
13731                             //cls : 'input-group-addon',
13732                             html : this.fieldLabel
13733                         },
13734                         indicator,
13735                         combobox
13736                     ];
13737                     
13738                 }
13739
13740         } else {
13741             
13742 //                Roo.log(" no label && no align");
13743                 cfg = combobox
13744                      
13745                 
13746         }
13747          
13748         var settings=this;
13749         ['xs','sm','md','lg'].map(function(size){
13750             if (settings[size]) {
13751                 cfg.cls += ' col-' + size + '-' + settings[size];
13752             }
13753         });
13754         
13755         return cfg;
13756         
13757     },
13758     
13759     _initEventsCalled : false,
13760     
13761     // private
13762     initEvents: function()
13763     {   
13764         if (this._initEventsCalled) { // as we call render... prevent looping...
13765             return;
13766         }
13767         this._initEventsCalled = true;
13768         
13769         if (!this.store) {
13770             throw "can not find store for combo";
13771         }
13772         
13773         this.indicator = this.indicatorEl();
13774         
13775         this.store = Roo.factory(this.store, Roo.data);
13776         this.store.parent = this;
13777         
13778         // if we are building from html. then this element is so complex, that we can not really
13779         // use the rendered HTML.
13780         // so we have to trash and replace the previous code.
13781         if (Roo.XComponent.build_from_html) {
13782             // remove this element....
13783             var e = this.el.dom, k=0;
13784             while (e ) { e = e.previousSibling;  ++k;}
13785
13786             this.el.remove();
13787             
13788             this.el=false;
13789             this.rendered = false;
13790             
13791             this.render(this.parent().getChildContainer(true), k);
13792         }
13793         
13794         if(Roo.isIOS && this.useNativeIOS){
13795             this.initIOSView();
13796             return;
13797         }
13798         
13799         /*
13800          * Touch Devices
13801          */
13802         
13803         if(Roo.isTouch && this.mobileTouchView){
13804             this.initTouchView();
13805             return;
13806         }
13807         
13808         if(this.tickable){
13809             this.initTickableEvents();
13810             return;
13811         }
13812         
13813         Roo.bootstrap.ComboBox.superclass.initEvents.call(this);
13814         
13815         if(this.hiddenName){
13816             
13817             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
13818             
13819             this.hiddenField.dom.value =
13820                 this.hiddenValue !== undefined ? this.hiddenValue :
13821                 this.value !== undefined ? this.value : '';
13822
13823             // prevent input submission
13824             this.el.dom.removeAttribute('name');
13825             this.hiddenField.dom.setAttribute('name', this.hiddenName);
13826              
13827              
13828         }
13829         //if(Roo.isGecko){
13830         //    this.el.dom.setAttribute('autocomplete', 'off');
13831         //}
13832         
13833         var cls = 'x-combo-list';
13834         
13835         //this.list = new Roo.Layer({
13836         //    shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
13837         //});
13838         
13839         var _this = this;
13840         
13841         (function(){
13842             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
13843             _this.list.setWidth(lw);
13844         }).defer(100);
13845         
13846         this.list.on('mouseover', this.onViewOver, this);
13847         this.list.on('mousemove', this.onViewMove, this);
13848         this.list.on('scroll', this.onViewScroll, this);
13849         
13850         /*
13851         this.list.swallowEvent('mousewheel');
13852         this.assetHeight = 0;
13853
13854         if(this.title){
13855             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
13856             this.assetHeight += this.header.getHeight();
13857         }
13858
13859         this.innerList = this.list.createChild({cls:cls+'-inner'});
13860         this.innerList.on('mouseover', this.onViewOver, this);
13861         this.innerList.on('mousemove', this.onViewMove, this);
13862         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
13863         
13864         if(this.allowBlank && !this.pageSize && !this.disableClear){
13865             this.footer = this.list.createChild({cls:cls+'-ft'});
13866             this.pageTb = new Roo.Toolbar(this.footer);
13867            
13868         }
13869         if(this.pageSize){
13870             this.footer = this.list.createChild({cls:cls+'-ft'});
13871             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
13872                     {pageSize: this.pageSize});
13873             
13874         }
13875         
13876         if (this.pageTb && this.allowBlank && !this.disableClear) {
13877             var _this = this;
13878             this.pageTb.add(new Roo.Toolbar.Fill(), {
13879                 cls: 'x-btn-icon x-btn-clear',
13880                 text: '&#160;',
13881                 handler: function()
13882                 {
13883                     _this.collapse();
13884                     _this.clearValue();
13885                     _this.onSelect(false, -1);
13886                 }
13887             });
13888         }
13889         if (this.footer) {
13890             this.assetHeight += this.footer.getHeight();
13891         }
13892         */
13893             
13894         if(!this.tpl){
13895             this.tpl = Roo.bootstrap.version == 4 ?
13896                 '<a class="dropdown-item" href="#">{' + this.displayField + '}</a>' :  // 4 does not need <li> and it get's really confisued.
13897                 '<li><a class="dropdown-item" href="#">{' + this.displayField + '}</a></li>';
13898         }
13899
13900         this.view = new Roo.View(this.list, this.tpl, {
13901             singleSelect:true, store: this.store, selectedClass: this.selectedClass
13902         });
13903         //this.view.wrapEl.setDisplayed(false);
13904         this.view.on('click', this.onViewClick, this);
13905         
13906         
13907         this.store.on('beforeload', this.onBeforeLoad, this);
13908         this.store.on('load', this.onLoad, this);
13909         this.store.on('loadexception', this.onLoadException, this);
13910         /*
13911         if(this.resizable){
13912             this.resizer = new Roo.Resizable(this.list,  {
13913                pinned:true, handles:'se'
13914             });
13915             this.resizer.on('resize', function(r, w, h){
13916                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
13917                 this.listWidth = w;
13918                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
13919                 this.restrictHeight();
13920             }, this);
13921             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
13922         }
13923         */
13924         if(!this.editable){
13925             this.editable = true;
13926             this.setEditable(false);
13927         }
13928         
13929         /*
13930         
13931         if (typeof(this.events.add.listeners) != 'undefined') {
13932             
13933             this.addicon = this.wrap.createChild(
13934                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
13935        
13936             this.addicon.on('click', function(e) {
13937                 this.fireEvent('add', this);
13938             }, this);
13939         }
13940         if (typeof(this.events.edit.listeners) != 'undefined') {
13941             
13942             this.editicon = this.wrap.createChild(
13943                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
13944             if (this.addicon) {
13945                 this.editicon.setStyle('margin-left', '40px');
13946             }
13947             this.editicon.on('click', function(e) {
13948                 
13949                 // we fire even  if inothing is selected..
13950                 this.fireEvent('edit', this, this.lastData );
13951                 
13952             }, this);
13953         }
13954         */
13955         
13956         this.keyNav = new Roo.KeyNav(this.inputEl(), {
13957             "up" : function(e){
13958                 this.inKeyMode = true;
13959                 this.selectPrev();
13960             },
13961
13962             "down" : function(e){
13963                 if(!this.isExpanded()){
13964                     this.onTriggerClick();
13965                 }else{
13966                     this.inKeyMode = true;
13967                     this.selectNext();
13968                 }
13969             },
13970
13971             "enter" : function(e){
13972 //                this.onViewClick();
13973                 //return true;
13974                 this.collapse();
13975                 
13976                 if(this.fireEvent("specialkey", this, e)){
13977                     this.onViewClick(false);
13978                 }
13979                 
13980                 return true;
13981             },
13982
13983             "esc" : function(e){
13984                 this.collapse();
13985             },
13986
13987             "tab" : function(e){
13988                 this.collapse();
13989                 
13990                 if(this.fireEvent("specialkey", this, e)){
13991                     this.onViewClick(false);
13992                 }
13993                 
13994                 return true;
13995             },
13996
13997             scope : this,
13998
13999             doRelay : function(foo, bar, hname){
14000                 if(hname == 'down' || this.scope.isExpanded()){
14001                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
14002                 }
14003                 return true;
14004             },
14005
14006             forceKeyDown: true
14007         });
14008         
14009         
14010         this.queryDelay = Math.max(this.queryDelay || 10,
14011                 this.mode == 'local' ? 10 : 250);
14012         
14013         
14014         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
14015         
14016         if(this.typeAhead){
14017             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
14018         }
14019         if(this.editable !== false){
14020             this.inputEl().on("keyup", this.onKeyUp, this);
14021         }
14022         if(this.forceSelection){
14023             this.inputEl().on('blur', this.doForce, this);
14024         }
14025         
14026         if(this.multiple){
14027             this.choices = this.el.select('ul.roo-select2-choices', true).first();
14028             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14029         }
14030     },
14031     
14032     initTickableEvents: function()
14033     {   
14034         this.createList();
14035         
14036         if(this.hiddenName){
14037             
14038             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
14039             
14040             this.hiddenField.dom.value =
14041                 this.hiddenValue !== undefined ? this.hiddenValue :
14042                 this.value !== undefined ? this.value : '';
14043
14044             // prevent input submission
14045             this.el.dom.removeAttribute('name');
14046             this.hiddenField.dom.setAttribute('name', this.hiddenName);
14047              
14048              
14049         }
14050         
14051 //        this.list = this.el.select('ul.dropdown-menu',true).first();
14052         
14053         this.choices = this.el.select('ul.roo-select2-choices', true).first();
14054         this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14055         if(this.triggerList){
14056             this.searchField.on("click", this.onSearchFieldClick, this, {preventDefault:true});
14057         }
14058          
14059         this.trigger = this.el.select('.tickable-buttons > .btn-edit', true).first();
14060         this.trigger.on("click", this.onTickableTriggerClick, this, {preventDefault:true});
14061         
14062         this.okBtn = this.el.select('.tickable-buttons > .btn-ok', true).first();
14063         this.cancelBtn = this.el.select('.tickable-buttons > .btn-cancel', true).first();
14064         
14065         this.okBtn.on('click', this.onTickableFooterButtonClick, this, this.okBtn);
14066         this.cancelBtn.on('click', this.onTickableFooterButtonClick, this, this.cancelBtn);
14067         
14068         this.trigger.setVisibilityMode(Roo.Element.DISPLAY);
14069         this.okBtn.setVisibilityMode(Roo.Element.DISPLAY);
14070         this.cancelBtn.setVisibilityMode(Roo.Element.DISPLAY);
14071         
14072         this.okBtn.hide();
14073         this.cancelBtn.hide();
14074         
14075         var _this = this;
14076         
14077         (function(){
14078             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
14079             _this.list.setWidth(lw);
14080         }).defer(100);
14081         
14082         this.list.on('mouseover', this.onViewOver, this);
14083         this.list.on('mousemove', this.onViewMove, this);
14084         
14085         this.list.on('scroll', this.onViewScroll, this);
14086         
14087         if(!this.tpl){
14088             this.tpl = '<li class="roo-select2-result"><div class="checkbox"><input id="{roo-id}"' + 
14089                 'type="checkbox" {roo-data-checked}><label for="{roo-id}"><b>{' + this.displayField + '}</b></label></div></li>';
14090         }
14091
14092         this.view = new Roo.View(this.list, this.tpl, {
14093             singleSelect:true,
14094             tickable:true,
14095             parent:this,
14096             store: this.store,
14097             selectedClass: this.selectedClass
14098         });
14099         
14100         //this.view.wrapEl.setDisplayed(false);
14101         this.view.on('click', this.onViewClick, this);
14102         
14103         
14104         
14105         this.store.on('beforeload', this.onBeforeLoad, this);
14106         this.store.on('load', this.onLoad, this);
14107         this.store.on('loadexception', this.onLoadException, this);
14108         
14109         if(this.editable){
14110             this.keyNav = new Roo.KeyNav(this.tickableInputEl(), {
14111                 "up" : function(e){
14112                     this.inKeyMode = true;
14113                     this.selectPrev();
14114                 },
14115
14116                 "down" : function(e){
14117                     this.inKeyMode = true;
14118                     this.selectNext();
14119                 },
14120
14121                 "enter" : function(e){
14122                     if(this.fireEvent("specialkey", this, e)){
14123                         this.onViewClick(false);
14124                     }
14125                     
14126                     return true;
14127                 },
14128
14129                 "esc" : function(e){
14130                     this.onTickableFooterButtonClick(e, false, false);
14131                 },
14132
14133                 "tab" : function(e){
14134                     this.fireEvent("specialkey", this, e);
14135                     
14136                     this.onTickableFooterButtonClick(e, false, false);
14137                     
14138                     return true;
14139                 },
14140
14141                 scope : this,
14142
14143                 doRelay : function(e, fn, key){
14144                     if(this.scope.isExpanded()){
14145                        return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
14146                     }
14147                     return true;
14148                 },
14149
14150                 forceKeyDown: true
14151             });
14152         }
14153         
14154         this.queryDelay = Math.max(this.queryDelay || 10,
14155                 this.mode == 'local' ? 10 : 250);
14156         
14157         
14158         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
14159         
14160         if(this.typeAhead){
14161             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
14162         }
14163         
14164         if(this.editable !== false){
14165             this.tickableInputEl().on("keyup", this.onKeyUp, this);
14166         }
14167         
14168         this.indicator = this.indicatorEl();
14169         
14170         if(this.indicator){
14171             this.indicator.setVisibilityMode(Roo.Element.DISPLAY);
14172             this.indicator.hide();
14173         }
14174         
14175     },
14176
14177     onDestroy : function(){
14178         if(this.view){
14179             this.view.setStore(null);
14180             this.view.el.removeAllListeners();
14181             this.view.el.remove();
14182             this.view.purgeListeners();
14183         }
14184         if(this.list){
14185             this.list.dom.innerHTML  = '';
14186         }
14187         
14188         if(this.store){
14189             this.store.un('beforeload', this.onBeforeLoad, this);
14190             this.store.un('load', this.onLoad, this);
14191             this.store.un('loadexception', this.onLoadException, this);
14192         }
14193         Roo.bootstrap.ComboBox.superclass.onDestroy.call(this);
14194     },
14195
14196     // private
14197     fireKey : function(e){
14198         if(e.isNavKeyPress() && !this.list.isVisible()){
14199             this.fireEvent("specialkey", this, e);
14200         }
14201     },
14202
14203     // private
14204     onResize: function(w, h){
14205 //        Roo.bootstrap.ComboBox.superclass.onResize.apply(this, arguments);
14206 //        
14207 //        if(typeof w != 'number'){
14208 //            // we do not handle it!?!?
14209 //            return;
14210 //        }
14211 //        var tw = this.trigger.getWidth();
14212 //       // tw += this.addicon ? this.addicon.getWidth() : 0;
14213 //       // tw += this.editicon ? this.editicon.getWidth() : 0;
14214 //        var x = w - tw;
14215 //        this.inputEl().setWidth( this.adjustWidth('input', x));
14216 //            
14217 //        //this.trigger.setStyle('left', x+'px');
14218 //        
14219 //        if(this.list && this.listWidth === undefined){
14220 //            var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
14221 //            this.list.setWidth(lw);
14222 //            this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
14223 //        }
14224         
14225     
14226         
14227     },
14228
14229     /**
14230      * Allow or prevent the user from directly editing the field text.  If false is passed,
14231      * the user will only be able to select from the items defined in the dropdown list.  This method
14232      * is the runtime equivalent of setting the 'editable' config option at config time.
14233      * @param {Boolean} value True to allow the user to directly edit the field text
14234      */
14235     setEditable : function(value){
14236         if(value == this.editable){
14237             return;
14238         }
14239         this.editable = value;
14240         if(!value){
14241             this.inputEl().dom.setAttribute('readOnly', true);
14242             this.inputEl().on('mousedown', this.onTriggerClick,  this);
14243             this.inputEl().addClass('x-combo-noedit');
14244         }else{
14245             this.inputEl().dom.setAttribute('readOnly', false);
14246             this.inputEl().un('mousedown', this.onTriggerClick,  this);
14247             this.inputEl().removeClass('x-combo-noedit');
14248         }
14249     },
14250
14251     // private
14252     
14253     onBeforeLoad : function(combo,opts){
14254         if(!this.hasFocus){
14255             return;
14256         }
14257          if (!opts.add) {
14258             this.list.dom.innerHTML = '<li class="loading-indicator">'+(this.loadingText||'loading')+'</li>' ;
14259          }
14260         this.restrictHeight();
14261         this.selectedIndex = -1;
14262     },
14263
14264     // private
14265     onLoad : function(){
14266         
14267         this.hasQuery = false;
14268         
14269         if(!this.hasFocus){
14270             return;
14271         }
14272         
14273         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14274             this.loading.hide();
14275         }
14276         
14277         if(this.store.getCount() > 0){
14278             
14279             this.expand();
14280             this.restrictHeight();
14281             if(this.lastQuery == this.allQuery){
14282                 if(this.editable && !this.tickable){
14283                     this.inputEl().dom.select();
14284                 }
14285                 
14286                 if(
14287                     !this.selectByValue(this.value, true) &&
14288                     this.autoFocus && 
14289                     (
14290                         !this.store.lastOptions ||
14291                         typeof(this.store.lastOptions.add) == 'undefined' || 
14292                         this.store.lastOptions.add != true
14293                     )
14294                 ){
14295                     this.select(0, true);
14296                 }
14297             }else{
14298                 if(this.autoFocus){
14299                     this.selectNext();
14300                 }
14301                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
14302                     this.taTask.delay(this.typeAheadDelay);
14303                 }
14304             }
14305         }else{
14306             this.onEmptyResults();
14307         }
14308         
14309         //this.el.focus();
14310     },
14311     // private
14312     onLoadException : function()
14313     {
14314         this.hasQuery = false;
14315         
14316         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14317             this.loading.hide();
14318         }
14319         
14320         if(this.tickable && this.editable){
14321             return;
14322         }
14323         
14324         this.collapse();
14325         // only causes errors at present
14326         //Roo.log(this.store.reader.jsonData);
14327         //if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
14328             // fixme
14329             //Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
14330         //}
14331         
14332         
14333     },
14334     // private
14335     onTypeAhead : function(){
14336         if(this.store.getCount() > 0){
14337             var r = this.store.getAt(0);
14338             var newValue = r.data[this.displayField];
14339             var len = newValue.length;
14340             var selStart = this.getRawValue().length;
14341             
14342             if(selStart != len){
14343                 this.setRawValue(newValue);
14344                 this.selectText(selStart, newValue.length);
14345             }
14346         }
14347     },
14348
14349     // private
14350     onSelect : function(record, index){
14351         
14352         if(this.fireEvent('beforeselect', this, record, index) !== false){
14353         
14354             this.setFromData(index > -1 ? record.data : false);
14355             
14356             this.collapse();
14357             this.fireEvent('select', this, record, index);
14358         }
14359     },
14360
14361     /**
14362      * Returns the currently selected field value or empty string if no value is set.
14363      * @return {String} value The selected value
14364      */
14365     getValue : function()
14366     {
14367         if(Roo.isIOS && this.useNativeIOS){
14368             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.valueField];
14369         }
14370         
14371         if(this.multiple){
14372             return (this.hiddenField) ? this.hiddenField.dom.value : this.value;
14373         }
14374         
14375         if(this.valueField){
14376             return typeof this.value != 'undefined' ? this.value : '';
14377         }else{
14378             return Roo.bootstrap.ComboBox.superclass.getValue.call(this);
14379         }
14380     },
14381     
14382     getRawValue : function()
14383     {
14384         if(Roo.isIOS && this.useNativeIOS){
14385             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.displayField];
14386         }
14387         
14388         var v = this.inputEl().getValue();
14389         
14390         return v;
14391     },
14392
14393     /**
14394      * Clears any text/value currently set in the field
14395      */
14396     clearValue : function(){
14397         
14398         if(this.hiddenField){
14399             this.hiddenField.dom.value = '';
14400         }
14401         this.value = '';
14402         this.setRawValue('');
14403         this.lastSelectionText = '';
14404         this.lastData = false;
14405         
14406         var close = this.closeTriggerEl();
14407         
14408         if(close){
14409             close.hide();
14410         }
14411         
14412         this.validate();
14413         
14414     },
14415
14416     /**
14417      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
14418      * will be displayed in the field.  If the value does not match the data value of an existing item,
14419      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
14420      * Otherwise the field will be blank (although the value will still be set).
14421      * @param {String} value The value to match
14422      */
14423     setValue : function(v)
14424     {
14425         if(Roo.isIOS && this.useNativeIOS){
14426             this.setIOSValue(v);
14427             return;
14428         }
14429         
14430         if(this.multiple){
14431             this.syncValue();
14432             return;
14433         }
14434         
14435         var text = v;
14436         if(this.valueField){
14437             var r = this.findRecord(this.valueField, v);
14438             if(r){
14439                 text = r.data[this.displayField];
14440             }else if(this.valueNotFoundText !== undefined){
14441                 text = this.valueNotFoundText;
14442             }
14443         }
14444         this.lastSelectionText = text;
14445         if(this.hiddenField){
14446             this.hiddenField.dom.value = v;
14447         }
14448         Roo.bootstrap.ComboBox.superclass.setValue.call(this, text);
14449         this.value = v;
14450         
14451         var close = this.closeTriggerEl();
14452         
14453         if(close){
14454             (v && (v.length || v * 1 > 0)) ? close.show() : close.hide();
14455         }
14456         
14457         this.validate();
14458     },
14459     /**
14460      * @property {Object} the last set data for the element
14461      */
14462     
14463     lastData : false,
14464     /**
14465      * Sets the value of the field based on a object which is related to the record format for the store.
14466      * @param {Object} value the value to set as. or false on reset?
14467      */
14468     setFromData : function(o){
14469         
14470         if(this.multiple){
14471             this.addItem(o);
14472             return;
14473         }
14474             
14475         var dv = ''; // display value
14476         var vv = ''; // value value..
14477         this.lastData = o;
14478         if (this.displayField) {
14479             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
14480         } else {
14481             // this is an error condition!!!
14482             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
14483         }
14484         
14485         if(this.valueField){
14486             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
14487         }
14488         
14489         var close = this.closeTriggerEl();
14490         
14491         if(close){
14492             if(dv.length || vv * 1 > 0){
14493                 close.show() ;
14494                 this.blockFocus=true;
14495             } else {
14496                 close.hide();
14497             }             
14498         }
14499         
14500         if(this.hiddenField){
14501             this.hiddenField.dom.value = vv;
14502             
14503             this.lastSelectionText = dv;
14504             Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14505             this.value = vv;
14506             return;
14507         }
14508         // no hidden field.. - we store the value in 'value', but still display
14509         // display field!!!!
14510         this.lastSelectionText = dv;
14511         Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14512         this.value = vv;
14513         
14514         
14515         
14516     },
14517     // private
14518     reset : function(){
14519         // overridden so that last data is reset..
14520         
14521         if(this.multiple){
14522             this.clearItem();
14523             return;
14524         }
14525         
14526         this.setValue(this.originalValue);
14527         //this.clearInvalid();
14528         this.lastData = false;
14529         if (this.view) {
14530             this.view.clearSelections();
14531         }
14532         
14533         this.validate();
14534     },
14535     // private
14536     findRecord : function(prop, value){
14537         var record;
14538         if(this.store.getCount() > 0){
14539             this.store.each(function(r){
14540                 if(r.data[prop] == value){
14541                     record = r;
14542                     return false;
14543                 }
14544                 return true;
14545             });
14546         }
14547         return record;
14548     },
14549     
14550     getName: function()
14551     {
14552         // returns hidden if it's set..
14553         if (!this.rendered) {return ''};
14554         return !this.hiddenName && this.inputEl().dom.name  ? this.inputEl().dom.name : (this.hiddenName || '');
14555         
14556     },
14557     // private
14558     onViewMove : function(e, t){
14559         this.inKeyMode = false;
14560     },
14561
14562     // private
14563     onViewOver : function(e, t){
14564         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
14565             return;
14566         }
14567         var item = this.view.findItemFromChild(t);
14568         
14569         if(item){
14570             var index = this.view.indexOf(item);
14571             this.select(index, false);
14572         }
14573     },
14574
14575     // private
14576     onViewClick : function(view, doFocus, el, e)
14577     {
14578         var index = this.view.getSelectedIndexes()[0];
14579         
14580         var r = this.store.getAt(index);
14581         
14582         if(this.tickable){
14583             
14584             if(typeof(e) != 'undefined' && e.getTarget().nodeName.toLowerCase() != 'input'){
14585                 return;
14586             }
14587             
14588             var rm = false;
14589             var _this = this;
14590             
14591             Roo.each(this.tickItems, function(v,k){
14592                 
14593                 if(typeof(v) != 'undefined' && v[_this.valueField] == r.data[_this.valueField]){
14594                     Roo.log(v);
14595                     _this.tickItems.splice(k, 1);
14596                     
14597                     if(typeof(e) == 'undefined' && view == false){
14598                         Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = false;
14599                     }
14600                     
14601                     rm = true;
14602                     return;
14603                 }
14604             });
14605             
14606             if(rm){
14607                 return;
14608             }
14609             
14610             if(this.fireEvent('tick', this, r, index, Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked) !== false){
14611                 this.tickItems.push(r.data);
14612             }
14613             
14614             if(typeof(e) == 'undefined' && view == false){
14615                 Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = true;
14616             }
14617                     
14618             return;
14619         }
14620         
14621         if(r){
14622             this.onSelect(r, index);
14623         }
14624         if(doFocus !== false && !this.blockFocus){
14625             this.inputEl().focus();
14626         }
14627     },
14628
14629     // private
14630     restrictHeight : function(){
14631         //this.innerList.dom.style.height = '';
14632         //var inner = this.innerList.dom;
14633         //var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
14634         //this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
14635         //this.list.beginUpdate();
14636         //this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
14637         this.list.alignTo(this.inputEl(), this.listAlign);
14638         this.list.alignTo(this.inputEl(), this.listAlign);
14639         //this.list.endUpdate();
14640     },
14641
14642     // private
14643     onEmptyResults : function(){
14644         
14645         if(this.tickable && this.editable){
14646             this.hasFocus = false;
14647             this.restrictHeight();
14648             return;
14649         }
14650         
14651         this.collapse();
14652     },
14653
14654     /**
14655      * Returns true if the dropdown list is expanded, else false.
14656      */
14657     isExpanded : function(){
14658         return this.list.isVisible();
14659     },
14660
14661     /**
14662      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
14663      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14664      * @param {String} value The data value of the item to select
14665      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14666      * selected item if it is not currently in view (defaults to true)
14667      * @return {Boolean} True if the value matched an item in the list, else false
14668      */
14669     selectByValue : function(v, scrollIntoView){
14670         if(v !== undefined && v !== null){
14671             var r = this.findRecord(this.valueField || this.displayField, v);
14672             if(r){
14673                 this.select(this.store.indexOf(r), scrollIntoView);
14674                 return true;
14675             }
14676         }
14677         return false;
14678     },
14679
14680     /**
14681      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
14682      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14683      * @param {Number} index The zero-based index of the list item to select
14684      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14685      * selected item if it is not currently in view (defaults to true)
14686      */
14687     select : function(index, scrollIntoView){
14688         this.selectedIndex = index;
14689         this.view.select(index);
14690         if(scrollIntoView !== false){
14691             var el = this.view.getNode(index);
14692             /*
14693              * el && !this.multiple && !this.tickable // not sure why we disable multiple before..
14694              */
14695             if(el){
14696                 this.list.scrollChildIntoView(el, false);
14697             }
14698         }
14699     },
14700
14701     // private
14702     selectNext : function(){
14703         var ct = this.store.getCount();
14704         if(ct > 0){
14705             if(this.selectedIndex == -1){
14706                 this.select(0);
14707             }else if(this.selectedIndex < ct-1){
14708                 this.select(this.selectedIndex+1);
14709             }
14710         }
14711     },
14712
14713     // private
14714     selectPrev : function(){
14715         var ct = this.store.getCount();
14716         if(ct > 0){
14717             if(this.selectedIndex == -1){
14718                 this.select(0);
14719             }else if(this.selectedIndex != 0){
14720                 this.select(this.selectedIndex-1);
14721             }
14722         }
14723     },
14724
14725     // private
14726     onKeyUp : function(e){
14727         if(this.editable !== false && !e.isSpecialKey()){
14728             this.lastKey = e.getKey();
14729             this.dqTask.delay(this.queryDelay);
14730         }
14731     },
14732
14733     // private
14734     validateBlur : function(){
14735         return !this.list || !this.list.isVisible();   
14736     },
14737
14738     // private
14739     initQuery : function(){
14740         
14741         var v = this.getRawValue();
14742         
14743         if(this.tickable && this.editable){
14744             v = this.tickableInputEl().getValue();
14745         }
14746         
14747         this.doQuery(v);
14748     },
14749
14750     // private
14751     doForce : function(){
14752         if(this.inputEl().dom.value.length > 0){
14753             this.inputEl().dom.value =
14754                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
14755              
14756         }
14757     },
14758
14759     /**
14760      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
14761      * query allowing the query action to be canceled if needed.
14762      * @param {String} query The SQL query to execute
14763      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
14764      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
14765      * saved in the current store (defaults to false)
14766      */
14767     doQuery : function(q, forceAll){
14768         
14769         if(q === undefined || q === null){
14770             q = '';
14771         }
14772         var qe = {
14773             query: q,
14774             forceAll: forceAll,
14775             combo: this,
14776             cancel:false
14777         };
14778         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
14779             return false;
14780         }
14781         q = qe.query;
14782         
14783         forceAll = qe.forceAll;
14784         if(forceAll === true || (q.length >= this.minChars)){
14785             
14786             this.hasQuery = true;
14787             
14788             if(this.lastQuery != q || this.alwaysQuery){
14789                 this.lastQuery = q;
14790                 if(this.mode == 'local'){
14791                     this.selectedIndex = -1;
14792                     if(forceAll){
14793                         this.store.clearFilter();
14794                     }else{
14795                         
14796                         if(this.specialFilter){
14797                             this.fireEvent('specialfilter', this);
14798                             this.onLoad();
14799                             return;
14800                         }
14801                         
14802                         this.store.filter(this.displayField, q);
14803                     }
14804                     
14805                     this.store.fireEvent("datachanged", this.store);
14806                     
14807                     this.onLoad();
14808                     
14809                     
14810                 }else{
14811                     
14812                     this.store.baseParams[this.queryParam] = q;
14813                     
14814                     var options = {params : this.getParams(q)};
14815                     
14816                     if(this.loadNext){
14817                         options.add = true;
14818                         options.params.start = this.page * this.pageSize;
14819                     }
14820                     
14821                     this.store.load(options);
14822                     
14823                     /*
14824                      *  this code will make the page width larger, at the beginning, the list not align correctly, 
14825                      *  we should expand the list on onLoad
14826                      *  so command out it
14827                      */
14828 //                    this.expand();
14829                 }
14830             }else{
14831                 this.selectedIndex = -1;
14832                 this.onLoad();   
14833             }
14834         }
14835         
14836         this.loadNext = false;
14837     },
14838     
14839     // private
14840     getParams : function(q){
14841         var p = {};
14842         //p[this.queryParam] = q;
14843         
14844         if(this.pageSize){
14845             p.start = 0;
14846             p.limit = this.pageSize;
14847         }
14848         return p;
14849     },
14850
14851     /**
14852      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
14853      */
14854     collapse : function(){
14855         if(!this.isExpanded()){
14856             return;
14857         }
14858         
14859         this.list.hide();
14860         
14861         this.hasFocus = false;
14862         
14863         if(this.tickable){
14864             this.okBtn.hide();
14865             this.cancelBtn.hide();
14866             this.trigger.show();
14867             
14868             if(this.editable){
14869                 this.tickableInputEl().dom.value = '';
14870                 this.tickableInputEl().blur();
14871             }
14872             
14873         }
14874         
14875         Roo.get(document).un('mousedown', this.collapseIf, this);
14876         Roo.get(document).un('mousewheel', this.collapseIf, this);
14877         if (!this.editable) {
14878             Roo.get(document).un('keydown', this.listKeyPress, this);
14879         }
14880         this.fireEvent('collapse', this);
14881         
14882         this.validate();
14883     },
14884
14885     // private
14886     collapseIf : function(e){
14887         var in_combo  = e.within(this.el);
14888         var in_list =  e.within(this.list);
14889         var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
14890         
14891         if (in_combo || in_list || is_list) {
14892             //e.stopPropagation();
14893             return;
14894         }
14895         
14896         if(this.tickable){
14897             this.onTickableFooterButtonClick(e, false, false);
14898         }
14899
14900         this.collapse();
14901         
14902     },
14903
14904     /**
14905      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
14906      */
14907     expand : function(){
14908        
14909         if(this.isExpanded() || !this.hasFocus){
14910             return;
14911         }
14912         
14913         var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
14914         this.list.setWidth(lw);
14915         
14916         Roo.log('expand');
14917         
14918         this.list.show();
14919         
14920         this.restrictHeight();
14921         
14922         if(this.tickable){
14923             
14924             this.tickItems = Roo.apply([], this.item);
14925             
14926             this.okBtn.show();
14927             this.cancelBtn.show();
14928             this.trigger.hide();
14929             
14930             if(this.editable){
14931                 this.tickableInputEl().focus();
14932             }
14933             
14934         }
14935         
14936         Roo.get(document).on('mousedown', this.collapseIf, this);
14937         Roo.get(document).on('mousewheel', this.collapseIf, this);
14938         if (!this.editable) {
14939             Roo.get(document).on('keydown', this.listKeyPress, this);
14940         }
14941         
14942         this.fireEvent('expand', this);
14943     },
14944
14945     // private
14946     // Implements the default empty TriggerField.onTriggerClick function
14947     onTriggerClick : function(e)
14948     {
14949         Roo.log('trigger click');
14950         
14951         if(this.disabled || !this.triggerList){
14952             return;
14953         }
14954         
14955         this.page = 0;
14956         this.loadNext = false;
14957         
14958         if(this.isExpanded()){
14959             this.collapse();
14960             if (!this.blockFocus) {
14961                 this.inputEl().focus();
14962             }
14963             
14964         }else {
14965             this.hasFocus = true;
14966             if(this.triggerAction == 'all') {
14967                 this.doQuery(this.allQuery, true);
14968             } else {
14969                 this.doQuery(this.getRawValue());
14970             }
14971             if (!this.blockFocus) {
14972                 this.inputEl().focus();
14973             }
14974         }
14975     },
14976     
14977     onTickableTriggerClick : function(e)
14978     {
14979         if(this.disabled){
14980             return;
14981         }
14982         
14983         this.page = 0;
14984         this.loadNext = false;
14985         this.hasFocus = true;
14986         
14987         if(this.triggerAction == 'all') {
14988             this.doQuery(this.allQuery, true);
14989         } else {
14990             this.doQuery(this.getRawValue());
14991         }
14992     },
14993     
14994     onSearchFieldClick : function(e)
14995     {
14996         if(this.hasFocus && !this.disabled && e.getTarget().nodeName.toLowerCase() != 'button'){
14997             this.onTickableFooterButtonClick(e, false, false);
14998             return;
14999         }
15000         
15001         if(this.hasFocus || this.disabled || e.getTarget().nodeName.toLowerCase() == 'button'){
15002             return;
15003         }
15004         
15005         this.page = 0;
15006         this.loadNext = false;
15007         this.hasFocus = true;
15008         
15009         if(this.triggerAction == 'all') {
15010             this.doQuery(this.allQuery, true);
15011         } else {
15012             this.doQuery(this.getRawValue());
15013         }
15014     },
15015     
15016     listKeyPress : function(e)
15017     {
15018         //Roo.log('listkeypress');
15019         // scroll to first matching element based on key pres..
15020         if (e.isSpecialKey()) {
15021             return false;
15022         }
15023         var k = String.fromCharCode(e.getKey()).toUpperCase();
15024         //Roo.log(k);
15025         var match  = false;
15026         var csel = this.view.getSelectedNodes();
15027         var cselitem = false;
15028         if (csel.length) {
15029             var ix = this.view.indexOf(csel[0]);
15030             cselitem  = this.store.getAt(ix);
15031             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
15032                 cselitem = false;
15033             }
15034             
15035         }
15036         
15037         this.store.each(function(v) { 
15038             if (cselitem) {
15039                 // start at existing selection.
15040                 if (cselitem.id == v.id) {
15041                     cselitem = false;
15042                 }
15043                 return true;
15044             }
15045                 
15046             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
15047                 match = this.store.indexOf(v);
15048                 return false;
15049             }
15050             return true;
15051         }, this);
15052         
15053         if (match === false) {
15054             return true; // no more action?
15055         }
15056         // scroll to?
15057         this.view.select(match);
15058         var sn = Roo.get(this.view.getSelectedNodes()[0]);
15059         sn.scrollIntoView(sn.dom.parentNode, false);
15060     },
15061     
15062     onViewScroll : function(e, t){
15063         
15064         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){
15065             return;
15066         }
15067         
15068         this.hasQuery = true;
15069         
15070         this.loading = this.list.select('.loading', true).first();
15071         
15072         if(this.loading === null){
15073             this.list.createChild({
15074                 tag: 'div',
15075                 cls: 'loading roo-select2-more-results roo-select2-active',
15076                 html: 'Loading more results...'
15077             });
15078             
15079             this.loading = this.list.select('.loading', true).first();
15080             
15081             this.loading.setVisibilityMode(Roo.Element.DISPLAY);
15082             
15083             this.loading.hide();
15084         }
15085         
15086         this.loading.show();
15087         
15088         var _combo = this;
15089         
15090         this.page++;
15091         this.loadNext = true;
15092         
15093         (function() { _combo.doQuery(_combo.allQuery, true); }).defer(500);
15094         
15095         return;
15096     },
15097     
15098     addItem : function(o)
15099     {   
15100         var dv = ''; // display value
15101         
15102         if (this.displayField) {
15103             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
15104         } else {
15105             // this is an error condition!!!
15106             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
15107         }
15108         
15109         if(!dv.length){
15110             return;
15111         }
15112         
15113         var choice = this.choices.createChild({
15114             tag: 'li',
15115             cls: 'roo-select2-search-choice',
15116             cn: [
15117                 {
15118                     tag: 'div',
15119                     html: dv
15120                 },
15121                 {
15122                     tag: 'a',
15123                     href: '#',
15124                     cls: 'roo-select2-search-choice-close fa fa-times',
15125                     tabindex: '-1'
15126                 }
15127             ]
15128             
15129         }, this.searchField);
15130         
15131         var close = choice.select('a.roo-select2-search-choice-close', true).first();
15132         
15133         close.on('click', this.onRemoveItem, this, { item : choice, data : o} );
15134         
15135         this.item.push(o);
15136         
15137         this.lastData = o;
15138         
15139         this.syncValue();
15140         
15141         this.inputEl().dom.value = '';
15142         
15143         this.validate();
15144     },
15145     
15146     onRemoveItem : function(e, _self, o)
15147     {
15148         e.preventDefault();
15149         
15150         this.lastItem = Roo.apply([], this.item);
15151         
15152         var index = this.item.indexOf(o.data) * 1;
15153         
15154         if( index < 0){
15155             Roo.log('not this item?!');
15156             return;
15157         }
15158         
15159         this.item.splice(index, 1);
15160         o.item.remove();
15161         
15162         this.syncValue();
15163         
15164         this.fireEvent('remove', this, e);
15165         
15166         this.validate();
15167         
15168     },
15169     
15170     syncValue : function()
15171     {
15172         if(!this.item.length){
15173             this.clearValue();
15174             return;
15175         }
15176             
15177         var value = [];
15178         var _this = this;
15179         Roo.each(this.item, function(i){
15180             if(_this.valueField){
15181                 value.push(i[_this.valueField]);
15182                 return;
15183             }
15184
15185             value.push(i);
15186         });
15187
15188         this.value = value.join(',');
15189
15190         if(this.hiddenField){
15191             this.hiddenField.dom.value = this.value;
15192         }
15193         
15194         this.store.fireEvent("datachanged", this.store);
15195         
15196         this.validate();
15197     },
15198     
15199     clearItem : function()
15200     {
15201         if(!this.multiple){
15202             return;
15203         }
15204         
15205         this.item = [];
15206         
15207         Roo.each(this.choices.select('>li.roo-select2-search-choice', true).elements, function(c){
15208            c.remove();
15209         });
15210         
15211         this.syncValue();
15212         
15213         this.validate();
15214         
15215         if(this.tickable && !Roo.isTouch){
15216             this.view.refresh();
15217         }
15218     },
15219     
15220     inputEl: function ()
15221     {
15222         if(Roo.isIOS && this.useNativeIOS){
15223             return this.el.select('select.roo-ios-select', true).first();
15224         }
15225         
15226         if(Roo.isTouch && this.mobileTouchView){
15227             return this.el.select('input.form-control',true).first();
15228         }
15229         
15230         if(this.tickable){
15231             return this.searchField;
15232         }
15233         
15234         return this.el.select('input.form-control',true).first();
15235     },
15236     
15237     onTickableFooterButtonClick : function(e, btn, el)
15238     {
15239         e.preventDefault();
15240         
15241         this.lastItem = Roo.apply([], this.item);
15242         
15243         if(btn && btn.name == 'cancel'){
15244             this.tickItems = Roo.apply([], this.item);
15245             this.collapse();
15246             return;
15247         }
15248         
15249         this.clearItem();
15250         
15251         var _this = this;
15252         
15253         Roo.each(this.tickItems, function(o){
15254             _this.addItem(o);
15255         });
15256         
15257         this.collapse();
15258         
15259     },
15260     
15261     validate : function()
15262     {
15263         if(this.getVisibilityEl().hasClass('hidden')){
15264             return true;
15265         }
15266         
15267         var v = this.getRawValue();
15268         
15269         if(this.multiple){
15270             v = this.getValue();
15271         }
15272         
15273         if(this.disabled || this.allowBlank || v.length){
15274             this.markValid();
15275             return true;
15276         }
15277         
15278         this.markInvalid();
15279         return false;
15280     },
15281     
15282     tickableInputEl : function()
15283     {
15284         if(!this.tickable || !this.editable){
15285             return this.inputEl();
15286         }
15287         
15288         return this.inputEl().select('.roo-select2-search-field-input', true).first();
15289     },
15290     
15291     
15292     getAutoCreateTouchView : function()
15293     {
15294         var id = Roo.id();
15295         
15296         var cfg = {
15297             cls: 'form-group' //input-group
15298         };
15299         
15300         var input =  {
15301             tag: 'input',
15302             id : id,
15303             type : this.inputType,
15304             cls : 'form-control x-combo-noedit',
15305             autocomplete: 'new-password',
15306             placeholder : this.placeholder || '',
15307             readonly : true
15308         };
15309         
15310         if (this.name) {
15311             input.name = this.name;
15312         }
15313         
15314         if (this.size) {
15315             input.cls += ' input-' + this.size;
15316         }
15317         
15318         if (this.disabled) {
15319             input.disabled = true;
15320         }
15321         
15322         var inputblock = {
15323             cls : '',
15324             cn : [
15325                 input
15326             ]
15327         };
15328         
15329         if(this.before){
15330             inputblock.cls += ' input-group';
15331             
15332             inputblock.cn.unshift({
15333                 tag :'span',
15334                 cls : 'input-group-addon input-group-prepend input-group-text',
15335                 html : this.before
15336             });
15337         }
15338         
15339         if(this.removable && !this.multiple){
15340             inputblock.cls += ' roo-removable';
15341             
15342             inputblock.cn.push({
15343                 tag: 'button',
15344                 html : 'x',
15345                 cls : 'roo-combo-removable-btn close'
15346             });
15347         }
15348
15349         if(this.hasFeedback && !this.allowBlank){
15350             
15351             inputblock.cls += ' has-feedback';
15352             
15353             inputblock.cn.push({
15354                 tag: 'span',
15355                 cls: 'glyphicon form-control-feedback'
15356             });
15357             
15358         }
15359         
15360         if (this.after) {
15361             
15362             inputblock.cls += (this.before) ? '' : ' input-group';
15363             
15364             inputblock.cn.push({
15365                 tag :'span',
15366                 cls : 'input-group-addon input-group-append input-group-text',
15367                 html : this.after
15368             });
15369         }
15370
15371         
15372         var ibwrap = inputblock;
15373         
15374         if(this.multiple){
15375             ibwrap = {
15376                 tag: 'ul',
15377                 cls: 'roo-select2-choices',
15378                 cn:[
15379                     {
15380                         tag: 'li',
15381                         cls: 'roo-select2-search-field',
15382                         cn: [
15383
15384                             inputblock
15385                         ]
15386                     }
15387                 ]
15388             };
15389         
15390             
15391         }
15392         
15393         var combobox = {
15394             cls: 'roo-select2-container input-group roo-touchview-combobox ',
15395             cn: [
15396                 {
15397                     tag: 'input',
15398                     type : 'hidden',
15399                     cls: 'form-hidden-field'
15400                 },
15401                 ibwrap
15402             ]
15403         };
15404         
15405         if(!this.multiple && this.showToggleBtn){
15406             
15407             var caret = {
15408                 cls: 'caret'
15409             };
15410             
15411             if (this.caret != false) {
15412                 caret = {
15413                      tag: 'i',
15414                      cls: 'fa fa-' + this.caret
15415                 };
15416                 
15417             }
15418             
15419             combobox.cn.push({
15420                 tag :'span',
15421                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
15422                 cn : [
15423                     Roo.bootstrap.version == 3 ? caret : '',
15424                     {
15425                         tag: 'span',
15426                         cls: 'combobox-clear',
15427                         cn  : [
15428                             {
15429                                 tag : 'i',
15430                                 cls: 'icon-remove'
15431                             }
15432                         ]
15433                     }
15434                 ]
15435
15436             })
15437         }
15438         
15439         if(this.multiple){
15440             combobox.cls += ' roo-select2-container-multi';
15441         }
15442         
15443         var align = this.labelAlign || this.parentLabelAlign();
15444         
15445         if (align ==='left' && this.fieldLabel.length) {
15446
15447             cfg.cn = [
15448                 {
15449                    tag : 'i',
15450                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15451                    tooltip : 'This field is required'
15452                 },
15453                 {
15454                     tag: 'label',
15455                     cls : 'control-label col-form-label',
15456                     html : this.fieldLabel
15457
15458                 },
15459                 {
15460                     cls : '', 
15461                     cn: [
15462                         combobox
15463                     ]
15464                 }
15465             ];
15466             
15467             var labelCfg = cfg.cn[1];
15468             var contentCfg = cfg.cn[2];
15469             
15470
15471             if(this.indicatorpos == 'right'){
15472                 cfg.cn = [
15473                     {
15474                         tag: 'label',
15475                         'for' :  id,
15476                         cls : 'control-label col-form-label',
15477                         cn : [
15478                             {
15479                                 tag : 'span',
15480                                 html : this.fieldLabel
15481                             },
15482                             {
15483                                 tag : 'i',
15484                                 cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15485                                 tooltip : 'This field is required'
15486                             }
15487                         ]
15488                     },
15489                     {
15490                         cls : "",
15491                         cn: [
15492                             combobox
15493                         ]
15494                     }
15495
15496                 ];
15497                 
15498                 labelCfg = cfg.cn[0];
15499                 contentCfg = cfg.cn[1];
15500             }
15501             
15502            
15503             
15504             if(this.labelWidth > 12){
15505                 labelCfg.style = "width: " + this.labelWidth + 'px';
15506             }
15507             
15508             if(this.labelWidth < 13 && this.labelmd == 0){
15509                 this.labelmd = this.labelWidth;
15510             }
15511             
15512             if(this.labellg > 0){
15513                 labelCfg.cls += ' col-lg-' + this.labellg;
15514                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
15515             }
15516             
15517             if(this.labelmd > 0){
15518                 labelCfg.cls += ' col-md-' + this.labelmd;
15519                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
15520             }
15521             
15522             if(this.labelsm > 0){
15523                 labelCfg.cls += ' col-sm-' + this.labelsm;
15524                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
15525             }
15526             
15527             if(this.labelxs > 0){
15528                 labelCfg.cls += ' col-xs-' + this.labelxs;
15529                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
15530             }
15531                 
15532                 
15533         } else if ( this.fieldLabel.length) {
15534             cfg.cn = [
15535                 {
15536                    tag : 'i',
15537                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15538                    tooltip : 'This field is required'
15539                 },
15540                 {
15541                     tag: 'label',
15542                     cls : 'control-label',
15543                     html : this.fieldLabel
15544
15545                 },
15546                 {
15547                     cls : '', 
15548                     cn: [
15549                         combobox
15550                     ]
15551                 }
15552             ];
15553             
15554             if(this.indicatorpos == 'right'){
15555                 cfg.cn = [
15556                     {
15557                         tag: 'label',
15558                         cls : 'control-label',
15559                         html : this.fieldLabel,
15560                         cn : [
15561                             {
15562                                tag : 'i',
15563                                cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15564                                tooltip : 'This field is required'
15565                             }
15566                         ]
15567                     },
15568                     {
15569                         cls : '', 
15570                         cn: [
15571                             combobox
15572                         ]
15573                     }
15574                 ];
15575             }
15576         } else {
15577             cfg.cn = combobox;    
15578         }
15579         
15580         
15581         var settings = this;
15582         
15583         ['xs','sm','md','lg'].map(function(size){
15584             if (settings[size]) {
15585                 cfg.cls += ' col-' + size + '-' + settings[size];
15586             }
15587         });
15588         
15589         return cfg;
15590     },
15591     
15592     initTouchView : function()
15593     {
15594         this.renderTouchView();
15595         
15596         this.touchViewEl.on('scroll', function(){
15597             this.el.dom.scrollTop = 0;
15598         }, this);
15599         
15600         this.originalValue = this.getValue();
15601         
15602         this.triggerEl = this.el.select('span.dropdown-toggle',true).first();
15603         
15604         this.inputEl().on("click", this.showTouchView, this);
15605         if (this.triggerEl) {
15606             this.triggerEl.on("click", this.showTouchView, this);
15607         }
15608         
15609         
15610         this.touchViewFooterEl.select('.roo-touch-view-cancel', true).first().on('click', this.hideTouchView, this);
15611         this.touchViewFooterEl.select('.roo-touch-view-ok', true).first().on('click', this.setTouchViewValue, this);
15612         
15613         this.maskEl = new Roo.LoadMask(this.touchViewEl, { store : this.store, msgCls: 'roo-el-mask-msg' });
15614         
15615         this.store.on('beforeload', this.onTouchViewBeforeLoad, this);
15616         this.store.on('load', this.onTouchViewLoad, this);
15617         this.store.on('loadexception', this.onTouchViewLoadException, this);
15618         
15619         if(this.hiddenName){
15620             
15621             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
15622             
15623             this.hiddenField.dom.value =
15624                 this.hiddenValue !== undefined ? this.hiddenValue :
15625                 this.value !== undefined ? this.value : '';
15626         
15627             this.el.dom.removeAttribute('name');
15628             this.hiddenField.dom.setAttribute('name', this.hiddenName);
15629         }
15630         
15631         if(this.multiple){
15632             this.choices = this.el.select('ul.roo-select2-choices', true).first();
15633             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
15634         }
15635         
15636         if(this.removable && !this.multiple){
15637             var close = this.closeTriggerEl();
15638             if(close){
15639                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
15640                 close.on('click', this.removeBtnClick, this, close);
15641             }
15642         }
15643         /*
15644          * fix the bug in Safari iOS8
15645          */
15646         this.inputEl().on("focus", function(e){
15647             document.activeElement.blur();
15648         }, this);
15649         
15650         this._touchViewMask = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
15651         
15652         return;
15653         
15654         
15655     },
15656     
15657     renderTouchView : function()
15658     {
15659         this.touchViewEl = Roo.get(document.body).createChild(Roo.bootstrap.ComboBox.touchViewTemplate);
15660         this.touchViewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15661         
15662         this.touchViewHeaderEl = this.touchViewEl.select('.modal-header', true).first();
15663         this.touchViewHeaderEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15664         
15665         this.touchViewBodyEl = this.touchViewEl.select('.modal-body', true).first();
15666         this.touchViewBodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15667         this.touchViewBodyEl.setStyle('overflow', 'auto');
15668         
15669         this.touchViewListGroup = this.touchViewBodyEl.select('.list-group', true).first();
15670         this.touchViewListGroup.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15671         
15672         this.touchViewFooterEl = this.touchViewEl.select('.modal-footer', true).first();
15673         this.touchViewFooterEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15674         
15675     },
15676     
15677     showTouchView : function()
15678     {
15679         if(this.disabled){
15680             return;
15681         }
15682         
15683         this.touchViewHeaderEl.hide();
15684
15685         if(this.modalTitle.length){
15686             this.touchViewHeaderEl.dom.innerHTML = this.modalTitle;
15687             this.touchViewHeaderEl.show();
15688         }
15689
15690         this.touchViewEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
15691         this.touchViewEl.show();
15692
15693         this.touchViewEl.select('.modal-dialog', true).first().setStyle({ margin : '0px', width : '100%'});
15694         
15695         //this.touchViewEl.select('.modal-dialog > .modal-content', true).first().setSize(
15696         //        Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
15697
15698         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15699
15700         if(this.modalTitle.length){
15701             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15702         }
15703         
15704         this.touchViewBodyEl.setHeight(bodyHeight);
15705
15706         if(this.animate){
15707             var _this = this;
15708             (function(){ _this.touchViewEl.addClass('in'); }).defer(50);
15709         }else{
15710             this.touchViewEl.addClass('in');
15711         }
15712         
15713         if(this._touchViewMask){
15714             Roo.get(document.body).addClass("x-body-masked");
15715             this._touchViewMask.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
15716             this._touchViewMask.setStyle('z-index', 10000);
15717             this._touchViewMask.addClass('show');
15718         }
15719         
15720         this.doTouchViewQuery();
15721         
15722     },
15723     
15724     hideTouchView : function()
15725     {
15726         this.touchViewEl.removeClass('in');
15727
15728         if(this.animate){
15729             var _this = this;
15730             (function(){ _this.touchViewEl.setStyle('display', 'none'); }).defer(150);
15731         }else{
15732             this.touchViewEl.setStyle('display', 'none');
15733         }
15734         
15735         if(this._touchViewMask){
15736             this._touchViewMask.removeClass('show');
15737             Roo.get(document.body).removeClass("x-body-masked");
15738         }
15739     },
15740     
15741     setTouchViewValue : function()
15742     {
15743         if(this.multiple){
15744             this.clearItem();
15745         
15746             var _this = this;
15747
15748             Roo.each(this.tickItems, function(o){
15749                 this.addItem(o);
15750             }, this);
15751         }
15752         
15753         this.hideTouchView();
15754     },
15755     
15756     doTouchViewQuery : function()
15757     {
15758         var qe = {
15759             query: '',
15760             forceAll: true,
15761             combo: this,
15762             cancel:false
15763         };
15764         
15765         if(this.fireEvent('beforequery', qe) ===false || qe.cancel){
15766             return false;
15767         }
15768         
15769         if(!this.alwaysQuery || this.mode == 'local'){
15770             this.onTouchViewLoad();
15771             return;
15772         }
15773         
15774         this.store.load();
15775     },
15776     
15777     onTouchViewBeforeLoad : function(combo,opts)
15778     {
15779         return;
15780     },
15781
15782     // private
15783     onTouchViewLoad : function()
15784     {
15785         if(this.store.getCount() < 1){
15786             this.onTouchViewEmptyResults();
15787             return;
15788         }
15789         
15790         this.clearTouchView();
15791         
15792         var rawValue = this.getRawValue();
15793         
15794         var template = (this.multiple) ? Roo.bootstrap.ComboBox.listItemCheckbox : Roo.bootstrap.ComboBox.listItemRadio;
15795         
15796         this.tickItems = [];
15797         
15798         this.store.data.each(function(d, rowIndex){
15799             var row = this.touchViewListGroup.createChild(template);
15800             
15801             if(typeof(d.data.cls) != 'undefined' && d.data.cls.length){
15802                 row.addClass(d.data.cls);
15803             }
15804             
15805             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
15806                 var cfg = {
15807                     data : d.data,
15808                     html : d.data[this.displayField]
15809                 };
15810                 
15811                 if(this.fireEvent('touchviewdisplay', this, cfg) !== false){
15812                     row.select('.roo-combobox-list-group-item-value', true).first().dom.innerHTML = cfg.html;
15813                 }
15814             }
15815             row.removeClass('selected');
15816             if(!this.multiple && this.valueField &&
15817                     typeof(d.data[this.valueField]) != 'undefined' && d.data[this.valueField] == this.getValue())
15818             {
15819                 // radio buttons..
15820                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15821                 row.addClass('selected');
15822             }
15823             
15824             if(this.multiple && this.valueField &&
15825                     typeof(d.data[this.valueField]) != 'undefined' && this.getValue().indexOf(d.data[this.valueField]) != -1)
15826             {
15827                 
15828                 // checkboxes...
15829                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15830                 this.tickItems.push(d.data);
15831             }
15832             
15833             row.on('click', this.onTouchViewClick, this, {row : row, rowIndex : rowIndex});
15834             
15835         }, this);
15836         
15837         var firstChecked = this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).first();
15838         
15839         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15840
15841         if(this.modalTitle.length){
15842             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15843         }
15844
15845         var listHeight = this.touchViewListGroup.getHeight() + this.touchViewBodyEl.getPadding('tb') * 2;
15846         
15847         if(this.mobile_restrict_height && listHeight < bodyHeight){
15848             this.touchViewBodyEl.setHeight(listHeight);
15849         }
15850         
15851         var _this = this;
15852         
15853         if(firstChecked && listHeight > bodyHeight){
15854             (function() { firstChecked.findParent('li').scrollIntoView(_this.touchViewListGroup.dom); }).defer(500);
15855         }
15856         
15857     },
15858     
15859     onTouchViewLoadException : function()
15860     {
15861         this.hideTouchView();
15862     },
15863     
15864     onTouchViewEmptyResults : function()
15865     {
15866         this.clearTouchView();
15867         
15868         this.touchViewListGroup.createChild(Roo.bootstrap.ComboBox.emptyResult);
15869         
15870         this.touchViewListGroup.select('.roo-combobox-touch-view-empty-result', true).first().dom.innerHTML = this.emptyResultText;
15871         
15872     },
15873     
15874     clearTouchView : function()
15875     {
15876         this.touchViewListGroup.dom.innerHTML = '';
15877     },
15878     
15879     onTouchViewClick : function(e, el, o)
15880     {
15881         e.preventDefault();
15882         
15883         var row = o.row;
15884         var rowIndex = o.rowIndex;
15885         
15886         var r = this.store.getAt(rowIndex);
15887         
15888         if(this.fireEvent('beforeselect', this, r, rowIndex) !== false){
15889             
15890             if(!this.multiple){
15891                 Roo.each(this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).elements, function(c){
15892                     c.dom.removeAttribute('checked');
15893                 }, this);
15894
15895                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15896
15897                 this.setFromData(r.data);
15898
15899                 var close = this.closeTriggerEl();
15900
15901                 if(close){
15902                     close.show();
15903                 }
15904
15905                 this.hideTouchView();
15906
15907                 this.fireEvent('select', this, r, rowIndex);
15908
15909                 return;
15910             }
15911
15912             if(this.valueField && typeof(r.data[this.valueField]) != 'undefined' && this.getValue().indexOf(r.data[this.valueField]) != -1){
15913                 row.select('.roo-combobox-list-group-item-box > input', true).first().dom.removeAttribute('checked');
15914                 this.tickItems.splice(this.tickItems.indexOf(r.data), 1);
15915                 return;
15916             }
15917
15918             row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15919             this.addItem(r.data);
15920             this.tickItems.push(r.data);
15921         }
15922     },
15923     
15924     getAutoCreateNativeIOS : function()
15925     {
15926         var cfg = {
15927             cls: 'form-group' //input-group,
15928         };
15929         
15930         var combobox =  {
15931             tag: 'select',
15932             cls : 'roo-ios-select'
15933         };
15934         
15935         if (this.name) {
15936             combobox.name = this.name;
15937         }
15938         
15939         if (this.disabled) {
15940             combobox.disabled = true;
15941         }
15942         
15943         var settings = this;
15944         
15945         ['xs','sm','md','lg'].map(function(size){
15946             if (settings[size]) {
15947                 cfg.cls += ' col-' + size + '-' + settings[size];
15948             }
15949         });
15950         
15951         cfg.cn = combobox;
15952         
15953         return cfg;
15954         
15955     },
15956     
15957     initIOSView : function()
15958     {
15959         this.store.on('load', this.onIOSViewLoad, this);
15960         
15961         return;
15962     },
15963     
15964     onIOSViewLoad : function()
15965     {
15966         if(this.store.getCount() < 1){
15967             return;
15968         }
15969         
15970         this.clearIOSView();
15971         
15972         if(this.allowBlank) {
15973             
15974             var default_text = '-- SELECT --';
15975             
15976             if(this.placeholder.length){
15977                 default_text = this.placeholder;
15978             }
15979             
15980             if(this.emptyTitle.length){
15981                 default_text += ' - ' + this.emptyTitle + ' -';
15982             }
15983             
15984             var opt = this.inputEl().createChild({
15985                 tag: 'option',
15986                 value : 0,
15987                 html : default_text
15988             });
15989             
15990             var o = {};
15991             o[this.valueField] = 0;
15992             o[this.displayField] = default_text;
15993             
15994             this.ios_options.push({
15995                 data : o,
15996                 el : opt
15997             });
15998             
15999         }
16000         
16001         this.store.data.each(function(d, rowIndex){
16002             
16003             var html = '';
16004             
16005             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
16006                 html = d.data[this.displayField];
16007             }
16008             
16009             var value = '';
16010             
16011             if(this.valueField && typeof(d.data[this.valueField]) != 'undefined'){
16012                 value = d.data[this.valueField];
16013             }
16014             
16015             var option = {
16016                 tag: 'option',
16017                 value : value,
16018                 html : html
16019             };
16020             
16021             if(this.value == d.data[this.valueField]){
16022                 option['selected'] = true;
16023             }
16024             
16025             var opt = this.inputEl().createChild(option);
16026             
16027             this.ios_options.push({
16028                 data : d.data,
16029                 el : opt
16030             });
16031             
16032         }, this);
16033         
16034         this.inputEl().on('change', function(){
16035            this.fireEvent('select', this);
16036         }, this);
16037         
16038     },
16039     
16040     clearIOSView: function()
16041     {
16042         this.inputEl().dom.innerHTML = '';
16043         
16044         this.ios_options = [];
16045     },
16046     
16047     setIOSValue: function(v)
16048     {
16049         this.value = v;
16050         
16051         if(!this.ios_options){
16052             return;
16053         }
16054         
16055         Roo.each(this.ios_options, function(opts){
16056            
16057            opts.el.dom.removeAttribute('selected');
16058            
16059            if(opts.data[this.valueField] != v){
16060                return;
16061            }
16062            
16063            opts.el.dom.setAttribute('selected', true);
16064            
16065         }, this);
16066     }
16067
16068     /** 
16069     * @cfg {Boolean} grow 
16070     * @hide 
16071     */
16072     /** 
16073     * @cfg {Number} growMin 
16074     * @hide 
16075     */
16076     /** 
16077     * @cfg {Number} growMax 
16078     * @hide 
16079     */
16080     /**
16081      * @hide
16082      * @method autoSize
16083      */
16084 });
16085
16086 Roo.apply(Roo.bootstrap.ComboBox,  {
16087     
16088     header : {
16089         tag: 'div',
16090         cls: 'modal-header',
16091         cn: [
16092             {
16093                 tag: 'h4',
16094                 cls: 'modal-title'
16095             }
16096         ]
16097     },
16098     
16099     body : {
16100         tag: 'div',
16101         cls: 'modal-body',
16102         cn: [
16103             {
16104                 tag: 'ul',
16105                 cls: 'list-group'
16106             }
16107         ]
16108     },
16109     
16110     listItemRadio : {
16111         tag: 'li',
16112         cls: 'list-group-item',
16113         cn: [
16114             {
16115                 tag: 'span',
16116                 cls: 'roo-combobox-list-group-item-value'
16117             },
16118             {
16119                 tag: 'div',
16120                 cls: 'roo-combobox-list-group-item-box pull-xs-right radio-inline radio radio-info',
16121                 cn: [
16122                     {
16123                         tag: 'input',
16124                         type: 'radio'
16125                     },
16126                     {
16127                         tag: 'label'
16128                     }
16129                 ]
16130             }
16131         ]
16132     },
16133     
16134     listItemCheckbox : {
16135         tag: 'li',
16136         cls: 'list-group-item',
16137         cn: [
16138             {
16139                 tag: 'span',
16140                 cls: 'roo-combobox-list-group-item-value'
16141             },
16142             {
16143                 tag: 'div',
16144                 cls: 'roo-combobox-list-group-item-box pull-xs-right checkbox-inline checkbox checkbox-info',
16145                 cn: [
16146                     {
16147                         tag: 'input',
16148                         type: 'checkbox'
16149                     },
16150                     {
16151                         tag: 'label'
16152                     }
16153                 ]
16154             }
16155         ]
16156     },
16157     
16158     emptyResult : {
16159         tag: 'div',
16160         cls: 'alert alert-danger roo-combobox-touch-view-empty-result'
16161     },
16162     
16163     footer : {
16164         tag: 'div',
16165         cls: 'modal-footer',
16166         cn: [
16167             {
16168                 tag: 'div',
16169                 cls: 'row',
16170                 cn: [
16171                     {
16172                         tag: 'div',
16173                         cls: 'col-xs-6 text-left',
16174                         cn: {
16175                             tag: 'button',
16176                             cls: 'btn btn-danger roo-touch-view-cancel',
16177                             html: 'Cancel'
16178                         }
16179                     },
16180                     {
16181                         tag: 'div',
16182                         cls: 'col-xs-6 text-right',
16183                         cn: {
16184                             tag: 'button',
16185                             cls: 'btn btn-success roo-touch-view-ok',
16186                             html: 'OK'
16187                         }
16188                     }
16189                 ]
16190             }
16191         ]
16192         
16193     }
16194 });
16195
16196 Roo.apply(Roo.bootstrap.ComboBox,  {
16197     
16198     touchViewTemplate : {
16199         tag: 'div',
16200         cls: 'modal fade roo-combobox-touch-view',
16201         cn: [
16202             {
16203                 tag: 'div',
16204                 cls: 'modal-dialog',
16205                 style : 'position:fixed', // we have to fix position....
16206                 cn: [
16207                     {
16208                         tag: 'div',
16209                         cls: 'modal-content',
16210                         cn: [
16211                             Roo.bootstrap.ComboBox.header,
16212                             Roo.bootstrap.ComboBox.body,
16213                             Roo.bootstrap.ComboBox.footer
16214                         ]
16215                     }
16216                 ]
16217             }
16218         ]
16219     }
16220 });/*
16221  * Based on:
16222  * Ext JS Library 1.1.1
16223  * Copyright(c) 2006-2007, Ext JS, LLC.
16224  *
16225  * Originally Released Under LGPL - original licence link has changed is not relivant.
16226  *
16227  * Fork - LGPL
16228  * <script type="text/javascript">
16229  */
16230
16231 /**
16232  * @class Roo.View
16233  * @extends Roo.util.Observable
16234  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
16235  * This class also supports single and multi selection modes. <br>
16236  * Create a data model bound view:
16237  <pre><code>
16238  var store = new Roo.data.Store(...);
16239
16240  var view = new Roo.View({
16241     el : "my-element",
16242     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
16243  
16244     singleSelect: true,
16245     selectedClass: "ydataview-selected",
16246     store: store
16247  });
16248
16249  // listen for node click?
16250  view.on("click", function(vw, index, node, e){
16251  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
16252  });
16253
16254  // load XML data
16255  dataModel.load("foobar.xml");
16256  </code></pre>
16257  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
16258  * <br><br>
16259  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
16260  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
16261  * 
16262  * Note: old style constructor is still suported (container, template, config)
16263  * 
16264  * @constructor
16265  * Create a new View
16266  * @param {Object} config The config object
16267  * 
16268  */
16269 Roo.View = function(config, depreciated_tpl, depreciated_config){
16270     
16271     this.parent = false;
16272     
16273     if (typeof(depreciated_tpl) == 'undefined') {
16274         // new way.. - universal constructor.
16275         Roo.apply(this, config);
16276         this.el  = Roo.get(this.el);
16277     } else {
16278         // old format..
16279         this.el  = Roo.get(config);
16280         this.tpl = depreciated_tpl;
16281         Roo.apply(this, depreciated_config);
16282     }
16283     this.wrapEl  = this.el.wrap().wrap();
16284     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
16285     
16286     
16287     if(typeof(this.tpl) == "string"){
16288         this.tpl = new Roo.Template(this.tpl);
16289     } else {
16290         // support xtype ctors..
16291         this.tpl = new Roo.factory(this.tpl, Roo);
16292     }
16293     
16294     
16295     this.tpl.compile();
16296     
16297     /** @private */
16298     this.addEvents({
16299         /**
16300          * @event beforeclick
16301          * Fires before a click is processed. Returns false to cancel the default action.
16302          * @param {Roo.View} this
16303          * @param {Number} index The index of the target node
16304          * @param {HTMLElement} node The target node
16305          * @param {Roo.EventObject} e The raw event object
16306          */
16307             "beforeclick" : true,
16308         /**
16309          * @event click
16310          * Fires when a template node is clicked.
16311          * @param {Roo.View} this
16312          * @param {Number} index The index of the target node
16313          * @param {HTMLElement} node The target node
16314          * @param {Roo.EventObject} e The raw event object
16315          */
16316             "click" : true,
16317         /**
16318          * @event dblclick
16319          * Fires when a template node is double clicked.
16320          * @param {Roo.View} this
16321          * @param {Number} index The index of the target node
16322          * @param {HTMLElement} node The target node
16323          * @param {Roo.EventObject} e The raw event object
16324          */
16325             "dblclick" : true,
16326         /**
16327          * @event contextmenu
16328          * Fires when a template node is right clicked.
16329          * @param {Roo.View} this
16330          * @param {Number} index The index of the target node
16331          * @param {HTMLElement} node The target node
16332          * @param {Roo.EventObject} e The raw event object
16333          */
16334             "contextmenu" : true,
16335         /**
16336          * @event selectionchange
16337          * Fires when the selected nodes change.
16338          * @param {Roo.View} this
16339          * @param {Array} selections Array of the selected nodes
16340          */
16341             "selectionchange" : true,
16342     
16343         /**
16344          * @event beforeselect
16345          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
16346          * @param {Roo.View} this
16347          * @param {HTMLElement} node The node to be selected
16348          * @param {Array} selections Array of currently selected nodes
16349          */
16350             "beforeselect" : true,
16351         /**
16352          * @event preparedata
16353          * Fires on every row to render, to allow you to change the data.
16354          * @param {Roo.View} this
16355          * @param {Object} data to be rendered (change this)
16356          */
16357           "preparedata" : true
16358           
16359           
16360         });
16361
16362
16363
16364     this.el.on({
16365         "click": this.onClick,
16366         "dblclick": this.onDblClick,
16367         "contextmenu": this.onContextMenu,
16368         scope:this
16369     });
16370
16371     this.selections = [];
16372     this.nodes = [];
16373     this.cmp = new Roo.CompositeElementLite([]);
16374     if(this.store){
16375         this.store = Roo.factory(this.store, Roo.data);
16376         this.setStore(this.store, true);
16377     }
16378     
16379     if ( this.footer && this.footer.xtype) {
16380            
16381          var fctr = this.wrapEl.appendChild(document.createElement("div"));
16382         
16383         this.footer.dataSource = this.store;
16384         this.footer.container = fctr;
16385         this.footer = Roo.factory(this.footer, Roo);
16386         fctr.insertFirst(this.el);
16387         
16388         // this is a bit insane - as the paging toolbar seems to detach the el..
16389 //        dom.parentNode.parentNode.parentNode
16390          // they get detached?
16391     }
16392     
16393     
16394     Roo.View.superclass.constructor.call(this);
16395     
16396     
16397 };
16398
16399 Roo.extend(Roo.View, Roo.util.Observable, {
16400     
16401      /**
16402      * @cfg {Roo.data.Store} store Data store to load data from.
16403      */
16404     store : false,
16405     
16406     /**
16407      * @cfg {String|Roo.Element} el The container element.
16408      */
16409     el : '',
16410     
16411     /**
16412      * @cfg {String|Roo.Template} tpl The template used by this View 
16413      */
16414     tpl : false,
16415     /**
16416      * @cfg {String} dataName the named area of the template to use as the data area
16417      *                          Works with domtemplates roo-name="name"
16418      */
16419     dataName: false,
16420     /**
16421      * @cfg {String} selectedClass The css class to add to selected nodes
16422      */
16423     selectedClass : "x-view-selected",
16424      /**
16425      * @cfg {String} emptyText The empty text to show when nothing is loaded.
16426      */
16427     emptyText : "",
16428     
16429     /**
16430      * @cfg {String} text to display on mask (default Loading)
16431      */
16432     mask : false,
16433     /**
16434      * @cfg {Boolean} multiSelect Allow multiple selection
16435      */
16436     multiSelect : false,
16437     /**
16438      * @cfg {Boolean} singleSelect Allow single selection
16439      */
16440     singleSelect:  false,
16441     
16442     /**
16443      * @cfg {Boolean} toggleSelect - selecting 
16444      */
16445     toggleSelect : false,
16446     
16447     /**
16448      * @cfg {Boolean} tickable - selecting 
16449      */
16450     tickable : false,
16451     
16452     /**
16453      * Returns the element this view is bound to.
16454      * @return {Roo.Element}
16455      */
16456     getEl : function(){
16457         return this.wrapEl;
16458     },
16459     
16460     
16461
16462     /**
16463      * Refreshes the view. - called by datachanged on the store. - do not call directly.
16464      */
16465     refresh : function(){
16466         //Roo.log('refresh');
16467         var t = this.tpl;
16468         
16469         // if we are using something like 'domtemplate', then
16470         // the what gets used is:
16471         // t.applySubtemplate(NAME, data, wrapping data..)
16472         // the outer template then get' applied with
16473         //     the store 'extra data'
16474         // and the body get's added to the
16475         //      roo-name="data" node?
16476         //      <span class='roo-tpl-{name}'></span> ?????
16477         
16478         
16479         
16480         this.clearSelections();
16481         this.el.update("");
16482         var html = [];
16483         var records = this.store.getRange();
16484         if(records.length < 1) {
16485             
16486             // is this valid??  = should it render a template??
16487             
16488             this.el.update(this.emptyText);
16489             return;
16490         }
16491         var el = this.el;
16492         if (this.dataName) {
16493             this.el.update(t.apply(this.store.meta)); //????
16494             el = this.el.child('.roo-tpl-' + this.dataName);
16495         }
16496         
16497         for(var i = 0, len = records.length; i < len; i++){
16498             var data = this.prepareData(records[i].data, i, records[i]);
16499             this.fireEvent("preparedata", this, data, i, records[i]);
16500             
16501             var d = Roo.apply({}, data);
16502             
16503             if(this.tickable){
16504                 Roo.apply(d, {'roo-id' : Roo.id()});
16505                 
16506                 var _this = this;
16507             
16508                 Roo.each(this.parent.item, function(item){
16509                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
16510                         return;
16511                     }
16512                     Roo.apply(d, {'roo-data-checked' : 'checked'});
16513                 });
16514             }
16515             
16516             html[html.length] = Roo.util.Format.trim(
16517                 this.dataName ?
16518                     t.applySubtemplate(this.dataName, d, this.store.meta) :
16519                     t.apply(d)
16520             );
16521         }
16522         
16523         
16524         
16525         el.update(html.join(""));
16526         this.nodes = el.dom.childNodes;
16527         this.updateIndexes(0);
16528     },
16529     
16530
16531     /**
16532      * Function to override to reformat the data that is sent to
16533      * the template for each node.
16534      * DEPRICATED - use the preparedata event handler.
16535      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
16536      * a JSON object for an UpdateManager bound view).
16537      */
16538     prepareData : function(data, index, record)
16539     {
16540         this.fireEvent("preparedata", this, data, index, record);
16541         return data;
16542     },
16543
16544     onUpdate : function(ds, record){
16545         // Roo.log('on update');   
16546         this.clearSelections();
16547         var index = this.store.indexOf(record);
16548         var n = this.nodes[index];
16549         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
16550         n.parentNode.removeChild(n);
16551         this.updateIndexes(index, index);
16552     },
16553
16554     
16555     
16556 // --------- FIXME     
16557     onAdd : function(ds, records, index)
16558     {
16559         //Roo.log(['on Add', ds, records, index] );        
16560         this.clearSelections();
16561         if(this.nodes.length == 0){
16562             this.refresh();
16563             return;
16564         }
16565         var n = this.nodes[index];
16566         for(var i = 0, len = records.length; i < len; i++){
16567             var d = this.prepareData(records[i].data, i, records[i]);
16568             if(n){
16569                 this.tpl.insertBefore(n, d);
16570             }else{
16571                 
16572                 this.tpl.append(this.el, d);
16573             }
16574         }
16575         this.updateIndexes(index);
16576     },
16577
16578     onRemove : function(ds, record, index){
16579        // Roo.log('onRemove');
16580         this.clearSelections();
16581         var el = this.dataName  ?
16582             this.el.child('.roo-tpl-' + this.dataName) :
16583             this.el; 
16584         
16585         el.dom.removeChild(this.nodes[index]);
16586         this.updateIndexes(index);
16587     },
16588
16589     /**
16590      * Refresh an individual node.
16591      * @param {Number} index
16592      */
16593     refreshNode : function(index){
16594         this.onUpdate(this.store, this.store.getAt(index));
16595     },
16596
16597     updateIndexes : function(startIndex, endIndex){
16598         var ns = this.nodes;
16599         startIndex = startIndex || 0;
16600         endIndex = endIndex || ns.length - 1;
16601         for(var i = startIndex; i <= endIndex; i++){
16602             ns[i].nodeIndex = i;
16603         }
16604     },
16605
16606     /**
16607      * Changes the data store this view uses and refresh the view.
16608      * @param {Store} store
16609      */
16610     setStore : function(store, initial){
16611         if(!initial && this.store){
16612             this.store.un("datachanged", this.refresh);
16613             this.store.un("add", this.onAdd);
16614             this.store.un("remove", this.onRemove);
16615             this.store.un("update", this.onUpdate);
16616             this.store.un("clear", this.refresh);
16617             this.store.un("beforeload", this.onBeforeLoad);
16618             this.store.un("load", this.onLoad);
16619             this.store.un("loadexception", this.onLoad);
16620         }
16621         if(store){
16622           
16623             store.on("datachanged", this.refresh, this);
16624             store.on("add", this.onAdd, this);
16625             store.on("remove", this.onRemove, this);
16626             store.on("update", this.onUpdate, this);
16627             store.on("clear", this.refresh, this);
16628             store.on("beforeload", this.onBeforeLoad, this);
16629             store.on("load", this.onLoad, this);
16630             store.on("loadexception", this.onLoad, this);
16631         }
16632         
16633         if(store){
16634             this.refresh();
16635         }
16636     },
16637     /**
16638      * onbeforeLoad - masks the loading area.
16639      *
16640      */
16641     onBeforeLoad : function(store,opts)
16642     {
16643          //Roo.log('onBeforeLoad');   
16644         if (!opts.add) {
16645             this.el.update("");
16646         }
16647         this.el.mask(this.mask ? this.mask : "Loading" ); 
16648     },
16649     onLoad : function ()
16650     {
16651         this.el.unmask();
16652     },
16653     
16654
16655     /**
16656      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
16657      * @param {HTMLElement} node
16658      * @return {HTMLElement} The template node
16659      */
16660     findItemFromChild : function(node){
16661         var el = this.dataName  ?
16662             this.el.child('.roo-tpl-' + this.dataName,true) :
16663             this.el.dom; 
16664         
16665         if(!node || node.parentNode == el){
16666                     return node;
16667             }
16668             var p = node.parentNode;
16669             while(p && p != el){
16670             if(p.parentNode == el){
16671                 return p;
16672             }
16673             p = p.parentNode;
16674         }
16675             return null;
16676     },
16677
16678     /** @ignore */
16679     onClick : function(e){
16680         var item = this.findItemFromChild(e.getTarget());
16681         if(item){
16682             var index = this.indexOf(item);
16683             if(this.onItemClick(item, index, e) !== false){
16684                 this.fireEvent("click", this, index, item, e);
16685             }
16686         }else{
16687             this.clearSelections();
16688         }
16689     },
16690
16691     /** @ignore */
16692     onContextMenu : function(e){
16693         var item = this.findItemFromChild(e.getTarget());
16694         if(item){
16695             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
16696         }
16697     },
16698
16699     /** @ignore */
16700     onDblClick : function(e){
16701         var item = this.findItemFromChild(e.getTarget());
16702         if(item){
16703             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
16704         }
16705     },
16706
16707     onItemClick : function(item, index, e)
16708     {
16709         if(this.fireEvent("beforeclick", this, index, item, e) === false){
16710             return false;
16711         }
16712         if (this.toggleSelect) {
16713             var m = this.isSelected(item) ? 'unselect' : 'select';
16714             //Roo.log(m);
16715             var _t = this;
16716             _t[m](item, true, false);
16717             return true;
16718         }
16719         if(this.multiSelect || this.singleSelect){
16720             if(this.multiSelect && e.shiftKey && this.lastSelection){
16721                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
16722             }else{
16723                 this.select(item, this.multiSelect && e.ctrlKey);
16724                 this.lastSelection = item;
16725             }
16726             
16727             if(!this.tickable){
16728                 e.preventDefault();
16729             }
16730             
16731         }
16732         return true;
16733     },
16734
16735     /**
16736      * Get the number of selected nodes.
16737      * @return {Number}
16738      */
16739     getSelectionCount : function(){
16740         return this.selections.length;
16741     },
16742
16743     /**
16744      * Get the currently selected nodes.
16745      * @return {Array} An array of HTMLElements
16746      */
16747     getSelectedNodes : function(){
16748         return this.selections;
16749     },
16750
16751     /**
16752      * Get the indexes of the selected nodes.
16753      * @return {Array}
16754      */
16755     getSelectedIndexes : function(){
16756         var indexes = [], s = this.selections;
16757         for(var i = 0, len = s.length; i < len; i++){
16758             indexes.push(s[i].nodeIndex);
16759         }
16760         return indexes;
16761     },
16762
16763     /**
16764      * Clear all selections
16765      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
16766      */
16767     clearSelections : function(suppressEvent){
16768         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
16769             this.cmp.elements = this.selections;
16770             this.cmp.removeClass(this.selectedClass);
16771             this.selections = [];
16772             if(!suppressEvent){
16773                 this.fireEvent("selectionchange", this, this.selections);
16774             }
16775         }
16776     },
16777
16778     /**
16779      * Returns true if the passed node is selected
16780      * @param {HTMLElement/Number} node The node or node index
16781      * @return {Boolean}
16782      */
16783     isSelected : function(node){
16784         var s = this.selections;
16785         if(s.length < 1){
16786             return false;
16787         }
16788         node = this.getNode(node);
16789         return s.indexOf(node) !== -1;
16790     },
16791
16792     /**
16793      * Selects nodes.
16794      * @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
16795      * @param {Boolean} keepExisting (optional) true to keep existing selections
16796      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16797      */
16798     select : function(nodeInfo, keepExisting, suppressEvent){
16799         if(nodeInfo instanceof Array){
16800             if(!keepExisting){
16801                 this.clearSelections(true);
16802             }
16803             for(var i = 0, len = nodeInfo.length; i < len; i++){
16804                 this.select(nodeInfo[i], true, true);
16805             }
16806             return;
16807         } 
16808         var node = this.getNode(nodeInfo);
16809         if(!node || this.isSelected(node)){
16810             return; // already selected.
16811         }
16812         if(!keepExisting){
16813             this.clearSelections(true);
16814         }
16815         
16816         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
16817             Roo.fly(node).addClass(this.selectedClass);
16818             this.selections.push(node);
16819             if(!suppressEvent){
16820                 this.fireEvent("selectionchange", this, this.selections);
16821             }
16822         }
16823         
16824         
16825     },
16826       /**
16827      * Unselects nodes.
16828      * @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
16829      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
16830      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16831      */
16832     unselect : function(nodeInfo, keepExisting, suppressEvent)
16833     {
16834         if(nodeInfo instanceof Array){
16835             Roo.each(this.selections, function(s) {
16836                 this.unselect(s, nodeInfo);
16837             }, this);
16838             return;
16839         }
16840         var node = this.getNode(nodeInfo);
16841         if(!node || !this.isSelected(node)){
16842             //Roo.log("not selected");
16843             return; // not selected.
16844         }
16845         // fireevent???
16846         var ns = [];
16847         Roo.each(this.selections, function(s) {
16848             if (s == node ) {
16849                 Roo.fly(node).removeClass(this.selectedClass);
16850
16851                 return;
16852             }
16853             ns.push(s);
16854         },this);
16855         
16856         this.selections= ns;
16857         this.fireEvent("selectionchange", this, this.selections);
16858     },
16859
16860     /**
16861      * Gets a template node.
16862      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16863      * @return {HTMLElement} The node or null if it wasn't found
16864      */
16865     getNode : function(nodeInfo){
16866         if(typeof nodeInfo == "string"){
16867             return document.getElementById(nodeInfo);
16868         }else if(typeof nodeInfo == "number"){
16869             return this.nodes[nodeInfo];
16870         }
16871         return nodeInfo;
16872     },
16873
16874     /**
16875      * Gets a range template nodes.
16876      * @param {Number} startIndex
16877      * @param {Number} endIndex
16878      * @return {Array} An array of nodes
16879      */
16880     getNodes : function(start, end){
16881         var ns = this.nodes;
16882         start = start || 0;
16883         end = typeof end == "undefined" ? ns.length - 1 : end;
16884         var nodes = [];
16885         if(start <= end){
16886             for(var i = start; i <= end; i++){
16887                 nodes.push(ns[i]);
16888             }
16889         } else{
16890             for(var i = start; i >= end; i--){
16891                 nodes.push(ns[i]);
16892             }
16893         }
16894         return nodes;
16895     },
16896
16897     /**
16898      * Finds the index of the passed node
16899      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16900      * @return {Number} The index of the node or -1
16901      */
16902     indexOf : function(node){
16903         node = this.getNode(node);
16904         if(typeof node.nodeIndex == "number"){
16905             return node.nodeIndex;
16906         }
16907         var ns = this.nodes;
16908         for(var i = 0, len = ns.length; i < len; i++){
16909             if(ns[i] == node){
16910                 return i;
16911             }
16912         }
16913         return -1;
16914     }
16915 });
16916 /*
16917  * - LGPL
16918  *
16919  * based on jquery fullcalendar
16920  * 
16921  */
16922
16923 Roo.bootstrap = Roo.bootstrap || {};
16924 /**
16925  * @class Roo.bootstrap.Calendar
16926  * @extends Roo.bootstrap.Component
16927  * Bootstrap Calendar class
16928  * @cfg {Boolean} loadMask (true|false) default false
16929  * @cfg {Object} header generate the user specific header of the calendar, default false
16930
16931  * @constructor
16932  * Create a new Container
16933  * @param {Object} config The config object
16934  */
16935
16936
16937
16938 Roo.bootstrap.Calendar = function(config){
16939     Roo.bootstrap.Calendar.superclass.constructor.call(this, config);
16940      this.addEvents({
16941         /**
16942              * @event select
16943              * Fires when a date is selected
16944              * @param {DatePicker} this
16945              * @param {Date} date The selected date
16946              */
16947         'select': true,
16948         /**
16949              * @event monthchange
16950              * Fires when the displayed month changes 
16951              * @param {DatePicker} this
16952              * @param {Date} date The selected month
16953              */
16954         'monthchange': true,
16955         /**
16956              * @event evententer
16957              * Fires when mouse over an event
16958              * @param {Calendar} this
16959              * @param {event} Event
16960              */
16961         'evententer': true,
16962         /**
16963              * @event eventleave
16964              * Fires when the mouse leaves an
16965              * @param {Calendar} this
16966              * @param {event}
16967              */
16968         'eventleave': true,
16969         /**
16970              * @event eventclick
16971              * Fires when the mouse click an
16972              * @param {Calendar} this
16973              * @param {event}
16974              */
16975         'eventclick': true
16976         
16977     });
16978
16979 };
16980
16981 Roo.extend(Roo.bootstrap.Calendar, Roo.bootstrap.Component,  {
16982     
16983      /**
16984      * @cfg {Number} startDay
16985      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
16986      */
16987     startDay : 0,
16988     
16989     loadMask : false,
16990     
16991     header : false,
16992       
16993     getAutoCreate : function(){
16994         
16995         
16996         var fc_button = function(name, corner, style, content ) {
16997             return Roo.apply({},{
16998                 tag : 'span',
16999                 cls : 'fc-button fc-button-'+name+' fc-state-default ' + 
17000                          (corner.length ?
17001                             'fc-corner-' + corner.split(' ').join(' fc-corner-') :
17002                             ''
17003                         ),
17004                 html : '<SPAN class="fc-text-'+style+ '">'+content +'</SPAN>',
17005                 unselectable: 'on'
17006             });
17007         };
17008         
17009         var header = {};
17010         
17011         if(!this.header){
17012             header = {
17013                 tag : 'table',
17014                 cls : 'fc-header',
17015                 style : 'width:100%',
17016                 cn : [
17017                     {
17018                         tag: 'tr',
17019                         cn : [
17020                             {
17021                                 tag : 'td',
17022                                 cls : 'fc-header-left',
17023                                 cn : [
17024                                     fc_button('prev', 'left', 'arrow', '&#8249;' ),
17025                                     fc_button('next', 'right', 'arrow', '&#8250;' ),
17026                                     { tag: 'span', cls: 'fc-header-space' },
17027                                     fc_button('today', 'left right', '', 'today' )  // neds state disabled..
17028
17029
17030                                 ]
17031                             },
17032
17033                             {
17034                                 tag : 'td',
17035                                 cls : 'fc-header-center',
17036                                 cn : [
17037                                     {
17038                                         tag: 'span',
17039                                         cls: 'fc-header-title',
17040                                         cn : {
17041                                             tag: 'H2',
17042                                             html : 'month / year'
17043                                         }
17044                                     }
17045
17046                                 ]
17047                             },
17048                             {
17049                                 tag : 'td',
17050                                 cls : 'fc-header-right',
17051                                 cn : [
17052                               /*      fc_button('month', 'left', '', 'month' ),
17053                                     fc_button('week', '', '', 'week' ),
17054                                     fc_button('day', 'right', '', 'day' )
17055                                 */    
17056
17057                                 ]
17058                             }
17059
17060                         ]
17061                     }
17062                 ]
17063             };
17064         }
17065         
17066         header = this.header;
17067         
17068        
17069         var cal_heads = function() {
17070             var ret = [];
17071             // fixme - handle this.
17072             
17073             for (var i =0; i < Date.dayNames.length; i++) {
17074                 var d = Date.dayNames[i];
17075                 ret.push({
17076                     tag: 'th',
17077                     cls : 'fc-day-header fc-' + d.substring(0,3).toLowerCase() + ' fc-widget-header',
17078                     html : d.substring(0,3)
17079                 });
17080                 
17081             }
17082             ret[0].cls += ' fc-first';
17083             ret[6].cls += ' fc-last';
17084             return ret;
17085         };
17086         var cal_cell = function(n) {
17087             return  {
17088                 tag: 'td',
17089                 cls : 'fc-day fc-'+n + ' fc-widget-content', ///fc-other-month fc-past
17090                 cn : [
17091                     {
17092                         cn : [
17093                             {
17094                                 cls: 'fc-day-number',
17095                                 html: 'D'
17096                             },
17097                             {
17098                                 cls: 'fc-day-content',
17099                              
17100                                 cn : [
17101                                      {
17102                                         style: 'position: relative;' // height: 17px;
17103                                     }
17104                                 ]
17105                             }
17106                             
17107                             
17108                         ]
17109                     }
17110                 ]
17111                 
17112             }
17113         };
17114         var cal_rows = function() {
17115             
17116             var ret = [];
17117             for (var r = 0; r < 6; r++) {
17118                 var row= {
17119                     tag : 'tr',
17120                     cls : 'fc-week',
17121                     cn : []
17122                 };
17123                 
17124                 for (var i =0; i < Date.dayNames.length; i++) {
17125                     var d = Date.dayNames[i];
17126                     row.cn.push(cal_cell(d.substring(0,3).toLowerCase()));
17127
17128                 }
17129                 row.cn[0].cls+=' fc-first';
17130                 row.cn[0].cn[0].style = 'min-height:90px';
17131                 row.cn[6].cls+=' fc-last';
17132                 ret.push(row);
17133                 
17134             }
17135             ret[0].cls += ' fc-first';
17136             ret[4].cls += ' fc-prev-last';
17137             ret[5].cls += ' fc-last';
17138             return ret;
17139             
17140         };
17141         
17142         var cal_table = {
17143             tag: 'table',
17144             cls: 'fc-border-separate',
17145             style : 'width:100%',
17146             cellspacing  : 0,
17147             cn : [
17148                 { 
17149                     tag: 'thead',
17150                     cn : [
17151                         { 
17152                             tag: 'tr',
17153                             cls : 'fc-first fc-last',
17154                             cn : cal_heads()
17155                         }
17156                     ]
17157                 },
17158                 { 
17159                     tag: 'tbody',
17160                     cn : cal_rows()
17161                 }
17162                   
17163             ]
17164         };
17165          
17166          var cfg = {
17167             cls : 'fc fc-ltr',
17168             cn : [
17169                 header,
17170                 {
17171                     cls : 'fc-content',
17172                     style : "position: relative;",
17173                     cn : [
17174                         {
17175                             cls : 'fc-view fc-view-month fc-grid',
17176                             style : 'position: relative',
17177                             unselectable : 'on',
17178                             cn : [
17179                                 {
17180                                     cls : 'fc-event-container',
17181                                     style : 'position:absolute;z-index:8;top:0;left:0;'
17182                                 },
17183                                 cal_table
17184                             ]
17185                         }
17186                     ]
17187     
17188                 }
17189            ] 
17190             
17191         };
17192         
17193          
17194         
17195         return cfg;
17196     },
17197     
17198     
17199     initEvents : function()
17200     {
17201         if(!this.store){
17202             throw "can not find store for calendar";
17203         }
17204         
17205         var mark = {
17206             tag: "div",
17207             cls:"x-dlg-mask",
17208             style: "text-align:center",
17209             cn: [
17210                 {
17211                     tag: "div",
17212                     style: "background-color:white;width:50%;margin:250 auto",
17213                     cn: [
17214                         {
17215                             tag: "img",
17216                             src: Roo.rootURL + '/images/ux/lightbox/loading.gif' 
17217                         },
17218                         {
17219                             tag: "span",
17220                             html: "Loading"
17221                         }
17222                         
17223                     ]
17224                 }
17225             ]
17226         };
17227         this.maskEl = Roo.DomHelper.append(this.el.select('.fc-content', true).first(), mark, true);
17228         
17229         var size = this.el.select('.fc-content', true).first().getSize();
17230         this.maskEl.setSize(size.width, size.height);
17231         this.maskEl.enableDisplayMode("block");
17232         if(!this.loadMask){
17233             this.maskEl.hide();
17234         }
17235         
17236         this.store = Roo.factory(this.store, Roo.data);
17237         this.store.on('load', this.onLoad, this);
17238         this.store.on('beforeload', this.onBeforeLoad, this);
17239         
17240         this.resize();
17241         
17242         this.cells = this.el.select('.fc-day',true);
17243         //Roo.log(this.cells);
17244         this.textNodes = this.el.query('.fc-day-number');
17245         this.cells.addClassOnOver('fc-state-hover');
17246         
17247         this.el.select('.fc-button-prev',true).on('click', this.showPrevMonth, this);
17248         this.el.select('.fc-button-next',true).on('click', this.showNextMonth, this);
17249         this.el.select('.fc-button-today',true).on('click', this.showToday, this);
17250         this.el.select('.fc-button',true).addClassOnOver('fc-state-hover');
17251         
17252         this.on('monthchange', this.onMonthChange, this);
17253         
17254         this.update(new Date().clearTime());
17255     },
17256     
17257     resize : function() {
17258         var sz  = this.el.getSize();
17259         
17260         this.el.select('.fc-day-header',true).setWidth(sz.width / 7);
17261         this.el.select('.fc-day-content div',true).setHeight(34);
17262     },
17263     
17264     
17265     // private
17266     showPrevMonth : function(e){
17267         this.update(this.activeDate.add("mo", -1));
17268     },
17269     showToday : function(e){
17270         this.update(new Date().clearTime());
17271     },
17272     // private
17273     showNextMonth : function(e){
17274         this.update(this.activeDate.add("mo", 1));
17275     },
17276
17277     // private
17278     showPrevYear : function(){
17279         this.update(this.activeDate.add("y", -1));
17280     },
17281
17282     // private
17283     showNextYear : function(){
17284         this.update(this.activeDate.add("y", 1));
17285     },
17286
17287     
17288    // private
17289     update : function(date)
17290     {
17291         var vd = this.activeDate;
17292         this.activeDate = date;
17293 //        if(vd && this.el){
17294 //            var t = date.getTime();
17295 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
17296 //                Roo.log('using add remove');
17297 //                
17298 //                this.fireEvent('monthchange', this, date);
17299 //                
17300 //                this.cells.removeClass("fc-state-highlight");
17301 //                this.cells.each(function(c){
17302 //                   if(c.dateValue == t){
17303 //                       c.addClass("fc-state-highlight");
17304 //                       setTimeout(function(){
17305 //                            try{c.dom.firstChild.focus();}catch(e){}
17306 //                       }, 50);
17307 //                       return false;
17308 //                   }
17309 //                   return true;
17310 //                });
17311 //                return;
17312 //            }
17313 //        }
17314         
17315         var days = date.getDaysInMonth();
17316         
17317         var firstOfMonth = date.getFirstDateOfMonth();
17318         var startingPos = firstOfMonth.getDay()-this.startDay;
17319         
17320         if(startingPos < this.startDay){
17321             startingPos += 7;
17322         }
17323         
17324         var pm = date.add(Date.MONTH, -1);
17325         var prevStart = pm.getDaysInMonth()-startingPos;
17326 //        
17327         this.cells = this.el.select('.fc-day',true);
17328         this.textNodes = this.el.query('.fc-day-number');
17329         this.cells.addClassOnOver('fc-state-hover');
17330         
17331         var cells = this.cells.elements;
17332         var textEls = this.textNodes;
17333         
17334         Roo.each(cells, function(cell){
17335             cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
17336         });
17337         
17338         days += startingPos;
17339
17340         // convert everything to numbers so it's fast
17341         var day = 86400000;
17342         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
17343         //Roo.log(d);
17344         //Roo.log(pm);
17345         //Roo.log(prevStart);
17346         
17347         var today = new Date().clearTime().getTime();
17348         var sel = date.clearTime().getTime();
17349         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
17350         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
17351         var ddMatch = this.disabledDatesRE;
17352         var ddText = this.disabledDatesText;
17353         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
17354         var ddaysText = this.disabledDaysText;
17355         var format = this.format;
17356         
17357         var setCellClass = function(cal, cell){
17358             cell.row = 0;
17359             cell.events = [];
17360             cell.more = [];
17361             //Roo.log('set Cell Class');
17362             cell.title = "";
17363             var t = d.getTime();
17364             
17365             //Roo.log(d);
17366             
17367             cell.dateValue = t;
17368             if(t == today){
17369                 cell.className += " fc-today";
17370                 cell.className += " fc-state-highlight";
17371                 cell.title = cal.todayText;
17372             }
17373             if(t == sel){
17374                 // disable highlight in other month..
17375                 //cell.className += " fc-state-highlight";
17376                 
17377             }
17378             // disabling
17379             if(t < min) {
17380                 cell.className = " fc-state-disabled";
17381                 cell.title = cal.minText;
17382                 return;
17383             }
17384             if(t > max) {
17385                 cell.className = " fc-state-disabled";
17386                 cell.title = cal.maxText;
17387                 return;
17388             }
17389             if(ddays){
17390                 if(ddays.indexOf(d.getDay()) != -1){
17391                     cell.title = ddaysText;
17392                     cell.className = " fc-state-disabled";
17393                 }
17394             }
17395             if(ddMatch && format){
17396                 var fvalue = d.dateFormat(format);
17397                 if(ddMatch.test(fvalue)){
17398                     cell.title = ddText.replace("%0", fvalue);
17399                     cell.className = " fc-state-disabled";
17400                 }
17401             }
17402             
17403             if (!cell.initialClassName) {
17404                 cell.initialClassName = cell.dom.className;
17405             }
17406             
17407             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
17408         };
17409
17410         var i = 0;
17411         
17412         for(; i < startingPos; i++) {
17413             textEls[i].innerHTML = (++prevStart);
17414             d.setDate(d.getDate()+1);
17415             
17416             cells[i].className = "fc-past fc-other-month";
17417             setCellClass(this, cells[i]);
17418         }
17419         
17420         var intDay = 0;
17421         
17422         for(; i < days; i++){
17423             intDay = i - startingPos + 1;
17424             textEls[i].innerHTML = (intDay);
17425             d.setDate(d.getDate()+1);
17426             
17427             cells[i].className = ''; // "x-date-active";
17428             setCellClass(this, cells[i]);
17429         }
17430         var extraDays = 0;
17431         
17432         for(; i < 42; i++) {
17433             textEls[i].innerHTML = (++extraDays);
17434             d.setDate(d.getDate()+1);
17435             
17436             cells[i].className = "fc-future fc-other-month";
17437             setCellClass(this, cells[i]);
17438         }
17439         
17440         this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
17441         
17442         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
17443         
17444         this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
17445         this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
17446         
17447         if(totalRows != 6){
17448             this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
17449             this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
17450         }
17451         
17452         this.fireEvent('monthchange', this, date);
17453         
17454         
17455         /*
17456         if(!this.internalRender){
17457             var main = this.el.dom.firstChild;
17458             var w = main.offsetWidth;
17459             this.el.setWidth(w + this.el.getBorderWidth("lr"));
17460             Roo.fly(main).setWidth(w);
17461             this.internalRender = true;
17462             // opera does not respect the auto grow header center column
17463             // then, after it gets a width opera refuses to recalculate
17464             // without a second pass
17465             if(Roo.isOpera && !this.secondPass){
17466                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
17467                 this.secondPass = true;
17468                 this.update.defer(10, this, [date]);
17469             }
17470         }
17471         */
17472         
17473     },
17474     
17475     findCell : function(dt) {
17476         dt = dt.clearTime().getTime();
17477         var ret = false;
17478         this.cells.each(function(c){
17479             //Roo.log("check " +c.dateValue + '?=' + dt);
17480             if(c.dateValue == dt){
17481                 ret = c;
17482                 return false;
17483             }
17484             return true;
17485         });
17486         
17487         return ret;
17488     },
17489     
17490     findCells : function(ev) {
17491         var s = ev.start.clone().clearTime().getTime();
17492        // Roo.log(s);
17493         var e= ev.end.clone().clearTime().getTime();
17494        // Roo.log(e);
17495         var ret = [];
17496         this.cells.each(function(c){
17497              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
17498             
17499             if(c.dateValue > e){
17500                 return ;
17501             }
17502             if(c.dateValue < s){
17503                 return ;
17504             }
17505             ret.push(c);
17506         });
17507         
17508         return ret;    
17509     },
17510     
17511 //    findBestRow: function(cells)
17512 //    {
17513 //        var ret = 0;
17514 //        
17515 //        for (var i =0 ; i < cells.length;i++) {
17516 //            ret  = Math.max(cells[i].rows || 0,ret);
17517 //        }
17518 //        return ret;
17519 //        
17520 //    },
17521     
17522     
17523     addItem : function(ev)
17524     {
17525         // look for vertical location slot in
17526         var cells = this.findCells(ev);
17527         
17528 //        ev.row = this.findBestRow(cells);
17529         
17530         // work out the location.
17531         
17532         var crow = false;
17533         var rows = [];
17534         for(var i =0; i < cells.length; i++) {
17535             
17536             cells[i].row = cells[0].row;
17537             
17538             if(i == 0){
17539                 cells[i].row = cells[i].row + 1;
17540             }
17541             
17542             if (!crow) {
17543                 crow = {
17544                     start : cells[i],
17545                     end :  cells[i]
17546                 };
17547                 continue;
17548             }
17549             if (crow.start.getY() == cells[i].getY()) {
17550                 // on same row.
17551                 crow.end = cells[i];
17552                 continue;
17553             }
17554             // different row.
17555             rows.push(crow);
17556             crow = {
17557                 start: cells[i],
17558                 end : cells[i]
17559             };
17560             
17561         }
17562         
17563         rows.push(crow);
17564         ev.els = [];
17565         ev.rows = rows;
17566         ev.cells = cells;
17567         
17568         cells[0].events.push(ev);
17569         
17570         this.calevents.push(ev);
17571     },
17572     
17573     clearEvents: function() {
17574         
17575         if(!this.calevents){
17576             return;
17577         }
17578         
17579         Roo.each(this.cells.elements, function(c){
17580             c.row = 0;
17581             c.events = [];
17582             c.more = [];
17583         });
17584         
17585         Roo.each(this.calevents, function(e) {
17586             Roo.each(e.els, function(el) {
17587                 el.un('mouseenter' ,this.onEventEnter, this);
17588                 el.un('mouseleave' ,this.onEventLeave, this);
17589                 el.remove();
17590             },this);
17591         },this);
17592         
17593         Roo.each(Roo.select('.fc-more-event', true).elements, function(e){
17594             e.remove();
17595         });
17596         
17597     },
17598     
17599     renderEvents: function()
17600     {   
17601         var _this = this;
17602         
17603         this.cells.each(function(c) {
17604             
17605             if(c.row < 5){
17606                 return;
17607             }
17608             
17609             var ev = c.events;
17610             
17611             var r = 4;
17612             if(c.row != c.events.length){
17613                 r = 4 - (4 - (c.row - c.events.length));
17614             }
17615             
17616             c.events = ev.slice(0, r);
17617             c.more = ev.slice(r);
17618             
17619             if(c.more.length && c.more.length == 1){
17620                 c.events.push(c.more.pop());
17621             }
17622             
17623             c.row = (c.row - ev.length) + c.events.length + ((c.more.length) ? 1 : 0);
17624             
17625         });
17626             
17627         this.cells.each(function(c) {
17628             
17629             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, c.row * 20));
17630             
17631             
17632             for (var e = 0; e < c.events.length; e++){
17633                 var ev = c.events[e];
17634                 var rows = ev.rows;
17635                 
17636                 for(var i = 0; i < rows.length; i++) {
17637                 
17638                     // how many rows should it span..
17639
17640                     var  cfg = {
17641                         cls : 'roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable',
17642                         style : 'position: absolute', // left: 387px; width: 121px; top: 359px;
17643
17644                         unselectable : "on",
17645                         cn : [
17646                             {
17647                                 cls: 'fc-event-inner',
17648                                 cn : [
17649     //                                {
17650     //                                  tag:'span',
17651     //                                  cls: 'fc-event-time',
17652     //                                  html : cells.length > 1 ? '' : ev.time
17653     //                                },
17654                                     {
17655                                       tag:'span',
17656                                       cls: 'fc-event-title',
17657                                       html : String.format('{0}', ev.title)
17658                                     }
17659
17660
17661                                 ]
17662                             },
17663                             {
17664                                 cls: 'ui-resizable-handle ui-resizable-e',
17665                                 html : '&nbsp;&nbsp;&nbsp'
17666                             }
17667
17668                         ]
17669                     };
17670
17671                     if (i == 0) {
17672                         cfg.cls += ' fc-event-start';
17673                     }
17674                     if ((i+1) == rows.length) {
17675                         cfg.cls += ' fc-event-end';
17676                     }
17677
17678                     var ctr = _this.el.select('.fc-event-container',true).first();
17679                     var cg = ctr.createChild(cfg);
17680
17681                     var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
17682                     var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
17683
17684                     var r = (c.more.length) ? 1 : 0;
17685                     cg.setXY([sbox.x +2, sbox.y + ((c.row - c.events.length - r + e) * 20)]);    
17686                     cg.setWidth(ebox.right - sbox.x -2);
17687
17688                     cg.on('mouseenter' ,_this.onEventEnter, _this, ev);
17689                     cg.on('mouseleave' ,_this.onEventLeave, _this, ev);
17690                     cg.on('click', _this.onEventClick, _this, ev);
17691
17692                     ev.els.push(cg);
17693                     
17694                 }
17695                 
17696             }
17697             
17698             
17699             if(c.more.length){
17700                 var  cfg = {
17701                     cls : 'fc-more-event roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable fc-event-start fc-event-end',
17702                     style : 'position: absolute',
17703                     unselectable : "on",
17704                     cn : [
17705                         {
17706                             cls: 'fc-event-inner',
17707                             cn : [
17708                                 {
17709                                   tag:'span',
17710                                   cls: 'fc-event-title',
17711                                   html : 'More'
17712                                 }
17713
17714
17715                             ]
17716                         },
17717                         {
17718                             cls: 'ui-resizable-handle ui-resizable-e',
17719                             html : '&nbsp;&nbsp;&nbsp'
17720                         }
17721
17722                     ]
17723                 };
17724
17725                 var ctr = _this.el.select('.fc-event-container',true).first();
17726                 var cg = ctr.createChild(cfg);
17727
17728                 var sbox = c.select('.fc-day-content',true).first().getBox();
17729                 var ebox = c.select('.fc-day-content',true).first().getBox();
17730                 //Roo.log(cg);
17731                 cg.setXY([sbox.x +2, sbox.y +((c.row - 1) * 20)]);    
17732                 cg.setWidth(ebox.right - sbox.x -2);
17733
17734                 cg.on('click', _this.onMoreEventClick, _this, c.more);
17735                 
17736             }
17737             
17738         });
17739         
17740         
17741         
17742     },
17743     
17744     onEventEnter: function (e, el,event,d) {
17745         this.fireEvent('evententer', this, el, event);
17746     },
17747     
17748     onEventLeave: function (e, el,event,d) {
17749         this.fireEvent('eventleave', this, el, event);
17750     },
17751     
17752     onEventClick: function (e, el,event,d) {
17753         this.fireEvent('eventclick', this, el, event);
17754     },
17755     
17756     onMonthChange: function () {
17757         this.store.load();
17758     },
17759     
17760     onMoreEventClick: function(e, el, more)
17761     {
17762         var _this = this;
17763         
17764         this.calpopover.placement = 'right';
17765         this.calpopover.setTitle('More');
17766         
17767         this.calpopover.setContent('');
17768         
17769         var ctr = this.calpopover.el.select('.popover-content', true).first();
17770         
17771         Roo.each(more, function(m){
17772             var cfg = {
17773                 cls : 'fc-event-hori fc-event-draggable',
17774                 html : m.title
17775             };
17776             var cg = ctr.createChild(cfg);
17777             
17778             cg.on('click', _this.onEventClick, _this, m);
17779         });
17780         
17781         this.calpopover.show(el);
17782         
17783         
17784     },
17785     
17786     onLoad: function () 
17787     {   
17788         this.calevents = [];
17789         var cal = this;
17790         
17791         if(this.store.getCount() > 0){
17792             this.store.data.each(function(d){
17793                cal.addItem({
17794                     id : d.data.id,
17795                     start: (typeof(d.data.start_dt) === 'string') ? new Date.parseDate(d.data.start_dt, 'Y-m-d H:i:s') : d.data.start_dt,
17796                     end : (typeof(d.data.end_dt) === 'string') ? new Date.parseDate(d.data.end_dt, 'Y-m-d H:i:s') : d.data.end_dt,
17797                     time : d.data.start_time,
17798                     title : d.data.title,
17799                     description : d.data.description,
17800                     venue : d.data.venue
17801                 });
17802             });
17803         }
17804         
17805         this.renderEvents();
17806         
17807         if(this.calevents.length && this.loadMask){
17808             this.maskEl.hide();
17809         }
17810     },
17811     
17812     onBeforeLoad: function()
17813     {
17814         this.clearEvents();
17815         if(this.loadMask){
17816             this.maskEl.show();
17817         }
17818     }
17819 });
17820
17821  
17822  /*
17823  * - LGPL
17824  *
17825  * element
17826  * 
17827  */
17828
17829 /**
17830  * @class Roo.bootstrap.Popover
17831  * @extends Roo.bootstrap.Component
17832  * Bootstrap Popover class
17833  * @cfg {String} html contents of the popover   (or false to use children..)
17834  * @cfg {String} title of popover (or false to hide)
17835  * @cfg {String} placement how it is placed
17836  * @cfg {String} trigger click || hover (or false to trigger manually)
17837  * @cfg {String} over what (parent or false to trigger manually.)
17838  * @cfg {Number} delay - delay before showing
17839  
17840  * @constructor
17841  * Create a new Popover
17842  * @param {Object} config The config object
17843  */
17844
17845 Roo.bootstrap.Popover = function(config){
17846     Roo.bootstrap.Popover.superclass.constructor.call(this, config);
17847     
17848     this.addEvents({
17849         // raw events
17850          /**
17851          * @event show
17852          * After the popover show
17853          * 
17854          * @param {Roo.bootstrap.Popover} this
17855          */
17856         "show" : true,
17857         /**
17858          * @event hide
17859          * After the popover hide
17860          * 
17861          * @param {Roo.bootstrap.Popover} this
17862          */
17863         "hide" : true
17864     });
17865 };
17866
17867 Roo.extend(Roo.bootstrap.Popover, Roo.bootstrap.Component,  {
17868     
17869     title: 'Fill in a title',
17870     html: false,
17871     
17872     placement : 'right',
17873     trigger : 'hover', // hover
17874     
17875     delay : 0,
17876     
17877     over: 'parent',
17878     
17879     can_build_overlaid : false,
17880     
17881     getChildContainer : function()
17882     {
17883         return this.el.select('.popover-content',true).first();
17884     },
17885     
17886     getAutoCreate : function(){
17887          
17888         var cfg = {
17889            cls : 'popover roo-dynamic',
17890            style: 'display:block',
17891            cn : [
17892                 {
17893                     cls : 'arrow'
17894                 },
17895                 {
17896                     cls : 'popover-inner',
17897                     cn : [
17898                         {
17899                             tag: 'h3',
17900                             cls: 'popover-title popover-header',
17901                             html : this.title
17902                         },
17903                         {
17904                             cls : 'popover-content popover-body',
17905                             html : this.html
17906                         }
17907                     ]
17908                     
17909                 }
17910            ]
17911         };
17912         
17913         return cfg;
17914     },
17915     setTitle: function(str)
17916     {
17917         this.title = str;
17918         this.el.select('.popover-title',true).first().dom.innerHTML = str;
17919     },
17920     setContent: function(str)
17921     {
17922         this.html = str;
17923         this.el.select('.popover-content',true).first().dom.innerHTML = str;
17924     },
17925     // as it get's added to the bottom of the page.
17926     onRender : function(ct, position)
17927     {
17928         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
17929         if(!this.el){
17930             var cfg = Roo.apply({},  this.getAutoCreate());
17931             cfg.id = Roo.id();
17932             
17933             if (this.cls) {
17934                 cfg.cls += ' ' + this.cls;
17935             }
17936             if (this.style) {
17937                 cfg.style = this.style;
17938             }
17939             //Roo.log("adding to ");
17940             this.el = Roo.get(document.body).createChild(cfg, position);
17941 //            Roo.log(this.el);
17942         }
17943         this.initEvents();
17944     },
17945     
17946     initEvents : function()
17947     {
17948         this.el.select('.popover-title',true).setVisibilityMode(Roo.Element.DISPLAY);
17949         this.el.enableDisplayMode('block');
17950         this.el.hide();
17951         if (this.over === false) {
17952             return; 
17953         }
17954         if (this.triggers === false) {
17955             return;
17956         }
17957         var on_el = (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
17958         var triggers = this.trigger ? this.trigger.split(' ') : [];
17959         Roo.each(triggers, function(trigger) {
17960         
17961             if (trigger == 'click') {
17962                 on_el.on('click', this.toggle, this);
17963             } else if (trigger != 'manual') {
17964                 var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin';
17965                 var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout';
17966       
17967                 on_el.on(eventIn  ,this.enter, this);
17968                 on_el.on(eventOut, this.leave, this);
17969             }
17970         }, this);
17971         
17972     },
17973     
17974     
17975     // private
17976     timeout : null,
17977     hoverState : null,
17978     
17979     toggle : function () {
17980         this.hoverState == 'in' ? this.leave() : this.enter();
17981     },
17982     
17983     enter : function () {
17984         
17985         clearTimeout(this.timeout);
17986     
17987         this.hoverState = 'in';
17988     
17989         if (!this.delay || !this.delay.show) {
17990             this.show();
17991             return;
17992         }
17993         var _t = this;
17994         this.timeout = setTimeout(function () {
17995             if (_t.hoverState == 'in') {
17996                 _t.show();
17997             }
17998         }, this.delay.show)
17999     },
18000     
18001     leave : function() {
18002         clearTimeout(this.timeout);
18003     
18004         this.hoverState = 'out';
18005     
18006         if (!this.delay || !this.delay.hide) {
18007             this.hide();
18008             return;
18009         }
18010         var _t = this;
18011         this.timeout = setTimeout(function () {
18012             if (_t.hoverState == 'out') {
18013                 _t.hide();
18014             }
18015         }, this.delay.hide)
18016     },
18017     
18018     show : function (on_el)
18019     {
18020         if (!on_el) {
18021             on_el= (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
18022         }
18023         
18024         // set content.
18025         this.el.select('.popover-title',true).first().dom.innerHtml = this.title;
18026         if (this.html !== false) {
18027             this.el.select('.popover-content',true).first().dom.innerHtml = this.html;
18028         }
18029         this.el.removeClass([
18030             'fade','top','bottom', 'left', 'right','in',
18031             'bs-popover-top','bs-popover-bottom', 'bs-popover-left', 'bs-popover-right'
18032         ]);
18033         if (!this.title.length) {
18034             this.el.select('.popover-title',true).hide();
18035         }
18036         
18037         var placement = typeof this.placement == 'function' ?
18038             this.placement.call(this, this.el, on_el) :
18039             this.placement;
18040             
18041         var autoToken = /\s?auto?\s?/i;
18042         var autoPlace = autoToken.test(placement);
18043         if (autoPlace) {
18044             placement = placement.replace(autoToken, '') || 'top';
18045         }
18046         
18047         //this.el.detach()
18048         //this.el.setXY([0,0]);
18049         this.el.show();
18050         this.el.dom.style.display='block';
18051         this.el.addClass(placement);
18052         
18053         //this.el.appendTo(on_el);
18054         
18055         var p = this.getPosition();
18056         var box = this.el.getBox();
18057         
18058         if (autoPlace) {
18059             // fixme..
18060         }
18061         var align = Roo.bootstrap.Popover.alignment[placement];
18062         
18063 //        Roo.log(align);
18064         this.el.alignTo(on_el, align[0],align[1]);
18065         //var arrow = this.el.select('.arrow',true).first();
18066         //arrow.set(align[2], 
18067         
18068         this.el.addClass('in');
18069         
18070         
18071         if (this.el.hasClass('fade')) {
18072             // fade it?
18073         }
18074         
18075         this.hoverState = 'in';
18076         
18077         this.fireEvent('show', this);
18078         
18079     },
18080     hide : function()
18081     {
18082         this.el.setXY([0,0]);
18083         this.el.removeClass('in');
18084         this.el.hide();
18085         this.hoverState = null;
18086         
18087         this.fireEvent('hide', this);
18088     }
18089     
18090 });
18091
18092 Roo.bootstrap.Popover.alignment = {
18093     'left' : ['r-l', [-10,0], 'right bs-popover-right'],
18094     'right' : ['l-r', [10,0], 'left bs-popover-left'],
18095     'bottom' : ['t-b', [0,10], 'top bs-popover-top'],
18096     'top' : [ 'b-t', [0,-10], 'bottom bs-popover-bottom']
18097 };
18098
18099  /*
18100  * - LGPL
18101  *
18102  * Progress
18103  * 
18104  */
18105
18106 /**
18107  * @class Roo.bootstrap.Progress
18108  * @extends Roo.bootstrap.Component
18109  * Bootstrap Progress class
18110  * @cfg {Boolean} striped striped of the progress bar
18111  * @cfg {Boolean} active animated of the progress bar
18112  * 
18113  * 
18114  * @constructor
18115  * Create a new Progress
18116  * @param {Object} config The config object
18117  */
18118
18119 Roo.bootstrap.Progress = function(config){
18120     Roo.bootstrap.Progress.superclass.constructor.call(this, config);
18121 };
18122
18123 Roo.extend(Roo.bootstrap.Progress, Roo.bootstrap.Component,  {
18124     
18125     striped : false,
18126     active: false,
18127     
18128     getAutoCreate : function(){
18129         var cfg = {
18130             tag: 'div',
18131             cls: 'progress'
18132         };
18133         
18134         
18135         if(this.striped){
18136             cfg.cls += ' progress-striped';
18137         }
18138       
18139         if(this.active){
18140             cfg.cls += ' active';
18141         }
18142         
18143         
18144         return cfg;
18145     }
18146    
18147 });
18148
18149  
18150
18151  /*
18152  * - LGPL
18153  *
18154  * ProgressBar
18155  * 
18156  */
18157
18158 /**
18159  * @class Roo.bootstrap.ProgressBar
18160  * @extends Roo.bootstrap.Component
18161  * Bootstrap ProgressBar class
18162  * @cfg {Number} aria_valuenow aria-value now
18163  * @cfg {Number} aria_valuemin aria-value min
18164  * @cfg {Number} aria_valuemax aria-value max
18165  * @cfg {String} label label for the progress bar
18166  * @cfg {String} panel (success | info | warning | danger )
18167  * @cfg {String} role role of the progress bar
18168  * @cfg {String} sr_only text
18169  * 
18170  * 
18171  * @constructor
18172  * Create a new ProgressBar
18173  * @param {Object} config The config object
18174  */
18175
18176 Roo.bootstrap.ProgressBar = function(config){
18177     Roo.bootstrap.ProgressBar.superclass.constructor.call(this, config);
18178 };
18179
18180 Roo.extend(Roo.bootstrap.ProgressBar, Roo.bootstrap.Component,  {
18181     
18182     aria_valuenow : 0,
18183     aria_valuemin : 0,
18184     aria_valuemax : 100,
18185     label : false,
18186     panel : false,
18187     role : false,
18188     sr_only: false,
18189     
18190     getAutoCreate : function()
18191     {
18192         
18193         var cfg = {
18194             tag: 'div',
18195             cls: 'progress-bar',
18196             style: 'width:' + Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%'
18197         };
18198         
18199         if(this.sr_only){
18200             cfg.cn = {
18201                 tag: 'span',
18202                 cls: 'sr-only',
18203                 html: this.sr_only
18204             }
18205         }
18206         
18207         if(this.role){
18208             cfg.role = this.role;
18209         }
18210         
18211         if(this.aria_valuenow){
18212             cfg['aria-valuenow'] = this.aria_valuenow;
18213         }
18214         
18215         if(this.aria_valuemin){
18216             cfg['aria-valuemin'] = this.aria_valuemin;
18217         }
18218         
18219         if(this.aria_valuemax){
18220             cfg['aria-valuemax'] = this.aria_valuemax;
18221         }
18222         
18223         if(this.label && !this.sr_only){
18224             cfg.html = this.label;
18225         }
18226         
18227         if(this.panel){
18228             cfg.cls += ' progress-bar-' + this.panel;
18229         }
18230         
18231         return cfg;
18232     },
18233     
18234     update : function(aria_valuenow)
18235     {
18236         this.aria_valuenow = aria_valuenow;
18237         
18238         this.el.setStyle('width', Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%');
18239     }
18240    
18241 });
18242
18243  
18244
18245  /*
18246  * - LGPL
18247  *
18248  * column
18249  * 
18250  */
18251
18252 /**
18253  * @class Roo.bootstrap.TabGroup
18254  * @extends Roo.bootstrap.Column
18255  * Bootstrap Column class
18256  * @cfg {String} navId the navigation id (for use with navbars) - will be auto generated if it does not exist..
18257  * @cfg {Boolean} carousel true to make the group behave like a carousel
18258  * @cfg {Boolean} bullets show bullets for the panels
18259  * @cfg {Boolean} autoslide (true|false) auto slide .. default false
18260  * @cfg {Number} timer auto slide timer .. default 0 millisecond
18261  * @cfg {Boolean} showarrow (true|false) show arrow default true
18262  * 
18263  * @constructor
18264  * Create a new TabGroup
18265  * @param {Object} config The config object
18266  */
18267
18268 Roo.bootstrap.TabGroup = function(config){
18269     Roo.bootstrap.TabGroup.superclass.constructor.call(this, config);
18270     if (!this.navId) {
18271         this.navId = Roo.id();
18272     }
18273     this.tabs = [];
18274     Roo.bootstrap.TabGroup.register(this);
18275     
18276 };
18277
18278 Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
18279     
18280     carousel : false,
18281     transition : false,
18282     bullets : 0,
18283     timer : 0,
18284     autoslide : false,
18285     slideFn : false,
18286     slideOnTouch : false,
18287     showarrow : true,
18288     
18289     getAutoCreate : function()
18290     {
18291         var cfg = Roo.apply({}, Roo.bootstrap.TabGroup.superclass.getAutoCreate.call(this));
18292         
18293         cfg.cls += ' tab-content';
18294         
18295         if (this.carousel) {
18296             cfg.cls += ' carousel slide';
18297             
18298             cfg.cn = [{
18299                cls : 'carousel-inner',
18300                cn : []
18301             }];
18302         
18303             if(this.bullets  && !Roo.isTouch){
18304                 
18305                 var bullets = {
18306                     cls : 'carousel-bullets',
18307                     cn : []
18308                 };
18309                
18310                 if(this.bullets_cls){
18311                     bullets.cls = bullets.cls + ' ' + this.bullets_cls;
18312                 }
18313                 
18314                 bullets.cn.push({
18315                     cls : 'clear'
18316                 });
18317                 
18318                 cfg.cn[0].cn.push(bullets);
18319             }
18320             
18321             if(this.showarrow){
18322                 cfg.cn[0].cn.push({
18323                     tag : 'div',
18324                     class : 'carousel-arrow',
18325                     cn : [
18326                         {
18327                             tag : 'div',
18328                             class : 'carousel-prev',
18329                             cn : [
18330                                 {
18331                                     tag : 'i',
18332                                     class : 'fa fa-chevron-left'
18333                                 }
18334                             ]
18335                         },
18336                         {
18337                             tag : 'div',
18338                             class : 'carousel-next',
18339                             cn : [
18340                                 {
18341                                     tag : 'i',
18342                                     class : 'fa fa-chevron-right'
18343                                 }
18344                             ]
18345                         }
18346                     ]
18347                 });
18348             }
18349             
18350         }
18351         
18352         return cfg;
18353     },
18354     
18355     initEvents:  function()
18356     {
18357 //        if(Roo.isTouch && this.slideOnTouch && !this.showarrow){
18358 //            this.el.on("touchstart", this.onTouchStart, this);
18359 //        }
18360         
18361         if(this.autoslide){
18362             var _this = this;
18363             
18364             this.slideFn = window.setInterval(function() {
18365                 _this.showPanelNext();
18366             }, this.timer);
18367         }
18368         
18369         if(this.showarrow){
18370             this.el.select('.carousel-prev', true).first().on('click', this.showPanelPrev, this);
18371             this.el.select('.carousel-next', true).first().on('click', this.showPanelNext, this);
18372         }
18373         
18374         
18375     },
18376     
18377 //    onTouchStart : function(e, el, o)
18378 //    {
18379 //        if(!this.slideOnTouch || !Roo.isTouch || Roo.get(e.getTarget()).hasClass('roo-button-text')){
18380 //            return;
18381 //        }
18382 //        
18383 //        this.showPanelNext();
18384 //    },
18385     
18386     
18387     getChildContainer : function()
18388     {
18389         return this.carousel ? this.el.select('.carousel-inner', true).first() : this.el;
18390     },
18391     
18392     /**
18393     * register a Navigation item
18394     * @param {Roo.bootstrap.NavItem} the navitem to add
18395     */
18396     register : function(item)
18397     {
18398         this.tabs.push( item);
18399         item.navId = this.navId; // not really needed..
18400         this.addBullet();
18401     
18402     },
18403     
18404     getActivePanel : function()
18405     {
18406         var r = false;
18407         Roo.each(this.tabs, function(t) {
18408             if (t.active) {
18409                 r = t;
18410                 return false;
18411             }
18412             return null;
18413         });
18414         return r;
18415         
18416     },
18417     getPanelByName : function(n)
18418     {
18419         var r = false;
18420         Roo.each(this.tabs, function(t) {
18421             if (t.tabId == n) {
18422                 r = t;
18423                 return false;
18424             }
18425             return null;
18426         });
18427         return r;
18428     },
18429     indexOfPanel : function(p)
18430     {
18431         var r = false;
18432         Roo.each(this.tabs, function(t,i) {
18433             if (t.tabId == p.tabId) {
18434                 r = i;
18435                 return false;
18436             }
18437             return null;
18438         });
18439         return r;
18440     },
18441     /**
18442      * show a specific panel
18443      * @param {Roo.bootstrap.TabPanel|number|string} panel to change to (use the tabId to specify a specific one)
18444      * @return {boolean} false if panel was not shown (invalid entry or beforedeactivate fails.)
18445      */
18446     showPanel : function (pan)
18447     {
18448         if(this.transition || typeof(pan) == 'undefined'){
18449             Roo.log("waiting for the transitionend");
18450             return false;
18451         }
18452         
18453         if (typeof(pan) == 'number') {
18454             pan = this.tabs[pan];
18455         }
18456         
18457         if (typeof(pan) == 'string') {
18458             pan = this.getPanelByName(pan);
18459         }
18460         
18461         var cur = this.getActivePanel();
18462         
18463         if(!pan || !cur){
18464             Roo.log('pan or acitve pan is undefined');
18465             return false;
18466         }
18467         
18468         if (pan.tabId == this.getActivePanel().tabId) {
18469             return true;
18470         }
18471         
18472         if (false === cur.fireEvent('beforedeactivate')) {
18473             return false;
18474         }
18475         
18476         if(this.bullets > 0 && !Roo.isTouch){
18477             this.setActiveBullet(this.indexOfPanel(pan));
18478         }
18479         
18480         if (this.carousel && typeof(Roo.get(document.body).dom.style.transition) != 'undefined') {
18481             
18482             //class="carousel-item carousel-item-next carousel-item-left"
18483             
18484             this.transition = true;
18485             var dir = this.indexOfPanel(pan) > this.indexOfPanel(cur)  ? 'next' : 'prev';
18486             var lr = dir == 'next' ? 'left' : 'right';
18487             pan.el.addClass(dir); // or prev
18488             pan.el.addClass('carousel-item-' + dir); // or prev
18489             pan.el.dom.offsetWidth; // find the offset with - causing a reflow?
18490             cur.el.addClass(lr); // or right
18491             pan.el.addClass(lr);
18492             cur.el.addClass('carousel-item-' +lr); // or right
18493             pan.el.addClass('carousel-item-' +lr);
18494             
18495             
18496             var _this = this;
18497             cur.el.on('transitionend', function() {
18498                 Roo.log("trans end?");
18499                 
18500                 pan.el.removeClass([lr,dir, 'carousel-item-' + lr, 'carousel-item-' + dir]);
18501                 pan.setActive(true);
18502                 
18503                 cur.el.removeClass([lr, 'carousel-item-' + lr]);
18504                 cur.setActive(false);
18505                 
18506                 _this.transition = false;
18507                 
18508             }, this, { single:  true } );
18509             
18510             return true;
18511         }
18512         
18513         cur.setActive(false);
18514         pan.setActive(true);
18515         
18516         return true;
18517         
18518     },
18519     showPanelNext : function()
18520     {
18521         var i = this.indexOfPanel(this.getActivePanel());
18522         
18523         if (i >= this.tabs.length - 1 && !this.autoslide) {
18524             return;
18525         }
18526         
18527         if (i >= this.tabs.length - 1 && this.autoslide) {
18528             i = -1;
18529         }
18530         
18531         this.showPanel(this.tabs[i+1]);
18532     },
18533     
18534     showPanelPrev : function()
18535     {
18536         var i = this.indexOfPanel(this.getActivePanel());
18537         
18538         if (i  < 1 && !this.autoslide) {
18539             return;
18540         }
18541         
18542         if (i < 1 && this.autoslide) {
18543             i = this.tabs.length;
18544         }
18545         
18546         this.showPanel(this.tabs[i-1]);
18547     },
18548     
18549     
18550     addBullet: function()
18551     {
18552         if(!this.bullets || Roo.isTouch){
18553             return;
18554         }
18555         var ctr = this.el.select('.carousel-bullets',true).first();
18556         var i = this.el.select('.carousel-bullets .bullet',true).getCount() ;
18557         var bullet = ctr.createChild({
18558             cls : 'bullet bullet-' + i
18559         },ctr.dom.lastChild);
18560         
18561         
18562         var _this = this;
18563         
18564         bullet.on('click', (function(e, el, o, ii, t){
18565
18566             e.preventDefault();
18567
18568             this.showPanel(ii);
18569
18570             if(this.autoslide && this.slideFn){
18571                 clearInterval(this.slideFn);
18572                 this.slideFn = window.setInterval(function() {
18573                     _this.showPanelNext();
18574                 }, this.timer);
18575             }
18576
18577         }).createDelegate(this, [i, bullet], true));
18578                 
18579         
18580     },
18581      
18582     setActiveBullet : function(i)
18583     {
18584         if(Roo.isTouch){
18585             return;
18586         }
18587         
18588         Roo.each(this.el.select('.bullet', true).elements, function(el){
18589             el.removeClass('selected');
18590         });
18591
18592         var bullet = this.el.select('.bullet-' + i, true).first();
18593         
18594         if(!bullet){
18595             return;
18596         }
18597         
18598         bullet.addClass('selected');
18599     }
18600     
18601     
18602   
18603 });
18604
18605  
18606
18607  
18608  
18609 Roo.apply(Roo.bootstrap.TabGroup, {
18610     
18611     groups: {},
18612      /**
18613     * register a Navigation Group
18614     * @param {Roo.bootstrap.NavGroup} the navgroup to add
18615     */
18616     register : function(navgrp)
18617     {
18618         this.groups[navgrp.navId] = navgrp;
18619         
18620     },
18621     /**
18622     * fetch a Navigation Group based on the navigation ID
18623     * if one does not exist , it will get created.
18624     * @param {string} the navgroup to add
18625     * @returns {Roo.bootstrap.NavGroup} the navgroup 
18626     */
18627     get: function(navId) {
18628         if (typeof(this.groups[navId]) == 'undefined') {
18629             this.register(new Roo.bootstrap.TabGroup({ navId : navId }));
18630         }
18631         return this.groups[navId] ;
18632     }
18633     
18634     
18635     
18636 });
18637
18638  /*
18639  * - LGPL
18640  *
18641  * TabPanel
18642  * 
18643  */
18644
18645 /**
18646  * @class Roo.bootstrap.TabPanel
18647  * @extends Roo.bootstrap.Component
18648  * Bootstrap TabPanel class
18649  * @cfg {Boolean} active panel active
18650  * @cfg {String} html panel content
18651  * @cfg {String} tabId  unique tab ID (will be autogenerated if not set. - used to match TabItem to Panel)
18652  * @cfg {String} navId The Roo.bootstrap.NavGroup which triggers show hide ()
18653  * @cfg {String} href click to link..
18654  * 
18655  * 
18656  * @constructor
18657  * Create a new TabPanel
18658  * @param {Object} config The config object
18659  */
18660
18661 Roo.bootstrap.TabPanel = function(config){
18662     Roo.bootstrap.TabPanel.superclass.constructor.call(this, config);
18663     this.addEvents({
18664         /**
18665              * @event changed
18666              * Fires when the active status changes
18667              * @param {Roo.bootstrap.TabPanel} this
18668              * @param {Boolean} state the new state
18669             
18670          */
18671         'changed': true,
18672         /**
18673              * @event beforedeactivate
18674              * Fires before a tab is de-activated - can be used to do validation on a form.
18675              * @param {Roo.bootstrap.TabPanel} this
18676              * @return {Boolean} false if there is an error
18677             
18678          */
18679         'beforedeactivate': true
18680      });
18681     
18682     this.tabId = this.tabId || Roo.id();
18683   
18684 };
18685
18686 Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
18687     
18688     active: false,
18689     html: false,
18690     tabId: false,
18691     navId : false,
18692     href : '',
18693     
18694     getAutoCreate : function(){
18695         
18696         
18697         var cfg = {
18698             tag: 'div',
18699             // item is needed for carousel - not sure if it has any effect otherwise
18700             cls: 'carousel-item tab-pane item' + ((this.href.length) ? ' clickable ' : ''),
18701             html: this.html || ''
18702         };
18703         
18704         if(this.active){
18705             cfg.cls += ' active';
18706         }
18707         
18708         if(this.tabId){
18709             cfg.tabId = this.tabId;
18710         }
18711         
18712         
18713         
18714         return cfg;
18715     },
18716     
18717     initEvents:  function()
18718     {
18719         var p = this.parent();
18720         
18721         this.navId = this.navId || p.navId;
18722         
18723         if (typeof(this.navId) != 'undefined') {
18724             // not really needed.. but just in case.. parent should be a NavGroup.
18725             var tg = Roo.bootstrap.TabGroup.get(this.navId);
18726             
18727             tg.register(this);
18728             
18729             var i = tg.tabs.length - 1;
18730             
18731             if(this.active && tg.bullets > 0 && i < tg.bullets){
18732                 tg.setActiveBullet(i);
18733             }
18734         }
18735         
18736         this.el.on('click', this.onClick, this);
18737         
18738         if(Roo.isTouch){
18739             this.el.on("touchstart", this.onTouchStart, this);
18740             this.el.on("touchmove", this.onTouchMove, this);
18741             this.el.on("touchend", this.onTouchEnd, this);
18742         }
18743         
18744     },
18745     
18746     onRender : function(ct, position)
18747     {
18748         Roo.bootstrap.TabPanel.superclass.onRender.call(this, ct, position);
18749     },
18750     
18751     setActive : function(state)
18752     {
18753         Roo.log("panel - set active " + this.tabId + "=" + state);
18754         
18755         this.active = state;
18756         if (!state) {
18757             this.el.removeClass('active');
18758             
18759         } else  if (!this.el.hasClass('active')) {
18760             this.el.addClass('active');
18761         }
18762         
18763         this.fireEvent('changed', this, state);
18764     },
18765     
18766     onClick : function(e)
18767     {
18768         e.preventDefault();
18769         
18770         if(!this.href.length){
18771             return;
18772         }
18773         
18774         window.location.href = this.href;
18775     },
18776     
18777     startX : 0,
18778     startY : 0,
18779     endX : 0,
18780     endY : 0,
18781     swiping : false,
18782     
18783     onTouchStart : function(e)
18784     {
18785         this.swiping = false;
18786         
18787         this.startX = e.browserEvent.touches[0].clientX;
18788         this.startY = e.browserEvent.touches[0].clientY;
18789     },
18790     
18791     onTouchMove : function(e)
18792     {
18793         this.swiping = true;
18794         
18795         this.endX = e.browserEvent.touches[0].clientX;
18796         this.endY = e.browserEvent.touches[0].clientY;
18797     },
18798     
18799     onTouchEnd : function(e)
18800     {
18801         if(!this.swiping){
18802             this.onClick(e);
18803             return;
18804         }
18805         
18806         var tabGroup = this.parent();
18807         
18808         if(this.endX > this.startX){ // swiping right
18809             tabGroup.showPanelPrev();
18810             return;
18811         }
18812         
18813         if(this.startX > this.endX){ // swiping left
18814             tabGroup.showPanelNext();
18815             return;
18816         }
18817     }
18818     
18819     
18820 });
18821  
18822
18823  
18824
18825  /*
18826  * - LGPL
18827  *
18828  * DateField
18829  * 
18830  */
18831
18832 /**
18833  * @class Roo.bootstrap.DateField
18834  * @extends Roo.bootstrap.Input
18835  * Bootstrap DateField class
18836  * @cfg {Number} weekStart default 0
18837  * @cfg {String} viewMode default empty, (months|years)
18838  * @cfg {String} minViewMode default empty, (months|years)
18839  * @cfg {Number} startDate default -Infinity
18840  * @cfg {Number} endDate default Infinity
18841  * @cfg {Boolean} todayHighlight default false
18842  * @cfg {Boolean} todayBtn default false
18843  * @cfg {Boolean} calendarWeeks default false
18844  * @cfg {Object} daysOfWeekDisabled default empty
18845  * @cfg {Boolean} singleMode default false (true | false)
18846  * 
18847  * @cfg {Boolean} keyboardNavigation default true
18848  * @cfg {String} language default en
18849  * 
18850  * @constructor
18851  * Create a new DateField
18852  * @param {Object} config The config object
18853  */
18854
18855 Roo.bootstrap.DateField = function(config){
18856     Roo.bootstrap.DateField.superclass.constructor.call(this, config);
18857      this.addEvents({
18858             /**
18859              * @event show
18860              * Fires when this field show.
18861              * @param {Roo.bootstrap.DateField} this
18862              * @param {Mixed} date The date value
18863              */
18864             show : true,
18865             /**
18866              * @event show
18867              * Fires when this field hide.
18868              * @param {Roo.bootstrap.DateField} this
18869              * @param {Mixed} date The date value
18870              */
18871             hide : true,
18872             /**
18873              * @event select
18874              * Fires when select a date.
18875              * @param {Roo.bootstrap.DateField} this
18876              * @param {Mixed} date The date value
18877              */
18878             select : true,
18879             /**
18880              * @event beforeselect
18881              * Fires when before select a date.
18882              * @param {Roo.bootstrap.DateField} this
18883              * @param {Mixed} date The date value
18884              */
18885             beforeselect : true
18886         });
18887 };
18888
18889 Roo.extend(Roo.bootstrap.DateField, Roo.bootstrap.Input,  {
18890     
18891     /**
18892      * @cfg {String} format
18893      * The default date format string which can be overriden for localization support.  The format must be
18894      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
18895      */
18896     format : "m/d/y",
18897     /**
18898      * @cfg {String} altFormats
18899      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
18900      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
18901      */
18902     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
18903     
18904     weekStart : 0,
18905     
18906     viewMode : '',
18907     
18908     minViewMode : '',
18909     
18910     todayHighlight : false,
18911     
18912     todayBtn: false,
18913     
18914     language: 'en',
18915     
18916     keyboardNavigation: true,
18917     
18918     calendarWeeks: false,
18919     
18920     startDate: -Infinity,
18921     
18922     endDate: Infinity,
18923     
18924     daysOfWeekDisabled: [],
18925     
18926     _events: [],
18927     
18928     singleMode : false,
18929     
18930     UTCDate: function()
18931     {
18932         return new Date(Date.UTC.apply(Date, arguments));
18933     },
18934     
18935     UTCToday: function()
18936     {
18937         var today = new Date();
18938         return this.UTCDate(today.getUTCFullYear(), today.getUTCMonth(), today.getUTCDate());
18939     },
18940     
18941     getDate: function() {
18942             var d = this.getUTCDate();
18943             return new Date(d.getTime() + (d.getTimezoneOffset()*60000));
18944     },
18945     
18946     getUTCDate: function() {
18947             return this.date;
18948     },
18949     
18950     setDate: function(d) {
18951             this.setUTCDate(new Date(d.getTime() - (d.getTimezoneOffset()*60000)));
18952     },
18953     
18954     setUTCDate: function(d) {
18955             this.date = d;
18956             this.setValue(this.formatDate(this.date));
18957     },
18958         
18959     onRender: function(ct, position)
18960     {
18961         
18962         Roo.bootstrap.DateField.superclass.onRender.call(this, ct, position);
18963         
18964         this.language = this.language || 'en';
18965         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : this.language.split('-')[0];
18966         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : "en";
18967         
18968         this.isRTL = Roo.bootstrap.DateField.dates[this.language].rtl || false;
18969         this.format = this.format || 'm/d/y';
18970         this.isInline = false;
18971         this.isInput = true;
18972         this.component = this.el.select('.add-on', true).first() || false;
18973         this.component = (this.component && this.component.length === 0) ? false : this.component;
18974         this.hasInput = this.component && this.inputEl().length;
18975         
18976         if (typeof(this.minViewMode === 'string')) {
18977             switch (this.minViewMode) {
18978                 case 'months':
18979                     this.minViewMode = 1;
18980                     break;
18981                 case 'years':
18982                     this.minViewMode = 2;
18983                     break;
18984                 default:
18985                     this.minViewMode = 0;
18986                     break;
18987             }
18988         }
18989         
18990         if (typeof(this.viewMode === 'string')) {
18991             switch (this.viewMode) {
18992                 case 'months':
18993                     this.viewMode = 1;
18994                     break;
18995                 case 'years':
18996                     this.viewMode = 2;
18997                     break;
18998                 default:
18999                     this.viewMode = 0;
19000                     break;
19001             }
19002         }
19003                 
19004         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.DateField.template);
19005         
19006 //        this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.DateField.template);
19007         
19008         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19009         
19010         this.picker().on('mousedown', this.onMousedown, this);
19011         this.picker().on('click', this.onClick, this);
19012         
19013         this.picker().addClass('datepicker-dropdown');
19014         
19015         this.startViewMode = this.viewMode;
19016         
19017         if(this.singleMode){
19018             Roo.each(this.picker().select('thead > tr > th', true).elements, function(v){
19019                 v.setVisibilityMode(Roo.Element.DISPLAY);
19020                 v.hide();
19021             });
19022             
19023             Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
19024                 v.setStyle('width', '189px');
19025             });
19026         }
19027         
19028         Roo.each(this.picker().select('tfoot th.today', true).elements, function(v){
19029             if(!this.calendarWeeks){
19030                 v.remove();
19031                 return;
19032             }
19033             
19034             v.dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19035             v.attr('colspan', function(i, val){
19036                 return parseInt(val) + 1;
19037             });
19038         });
19039                         
19040         
19041         this.weekEnd = this.weekStart === 0 ? 6 : this.weekStart - 1;
19042         
19043         this.setStartDate(this.startDate);
19044         this.setEndDate(this.endDate);
19045         
19046         this.setDaysOfWeekDisabled(this.daysOfWeekDisabled);
19047         
19048         this.fillDow();
19049         this.fillMonths();
19050         this.update();
19051         this.showMode();
19052         
19053         if(this.isInline) {
19054             this.showPopup();
19055         }
19056     },
19057     
19058     picker : function()
19059     {
19060         return this.pickerEl;
19061 //        return this.el.select('.datepicker', true).first();
19062     },
19063     
19064     fillDow: function()
19065     {
19066         var dowCnt = this.weekStart;
19067         
19068         var dow = {
19069             tag: 'tr',
19070             cn: [
19071                 
19072             ]
19073         };
19074         
19075         if(this.calendarWeeks){
19076             dow.cn.push({
19077                 tag: 'th',
19078                 cls: 'cw',
19079                 html: '&nbsp;'
19080             })
19081         }
19082         
19083         while (dowCnt < this.weekStart + 7) {
19084             dow.cn.push({
19085                 tag: 'th',
19086                 cls: 'dow',
19087                 html: Roo.bootstrap.DateField.dates[this.language].daysMin[(dowCnt++)%7]
19088             });
19089         }
19090         
19091         this.picker().select('>.datepicker-days thead', true).first().createChild(dow);
19092     },
19093     
19094     fillMonths: function()
19095     {    
19096         var i = 0;
19097         var months = this.picker().select('>.datepicker-months td', true).first();
19098         
19099         months.dom.innerHTML = '';
19100         
19101         while (i < 12) {
19102             var month = {
19103                 tag: 'span',
19104                 cls: 'month',
19105                 html: Roo.bootstrap.DateField.dates[this.language].monthsShort[i++]
19106             };
19107             
19108             months.createChild(month);
19109         }
19110         
19111     },
19112     
19113     update: function()
19114     {
19115         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;
19116         
19117         if (this.date < this.startDate) {
19118             this.viewDate = new Date(this.startDate);
19119         } else if (this.date > this.endDate) {
19120             this.viewDate = new Date(this.endDate);
19121         } else {
19122             this.viewDate = new Date(this.date);
19123         }
19124         
19125         this.fill();
19126     },
19127     
19128     fill: function() 
19129     {
19130         var d = new Date(this.viewDate),
19131                 year = d.getUTCFullYear(),
19132                 month = d.getUTCMonth(),
19133                 startYear = this.startDate !== -Infinity ? this.startDate.getUTCFullYear() : -Infinity,
19134                 startMonth = this.startDate !== -Infinity ? this.startDate.getUTCMonth() : -Infinity,
19135                 endYear = this.endDate !== Infinity ? this.endDate.getUTCFullYear() : Infinity,
19136                 endMonth = this.endDate !== Infinity ? this.endDate.getUTCMonth() : Infinity,
19137                 currentDate = this.date && this.date.valueOf(),
19138                 today = this.UTCToday();
19139         
19140         this.picker().select('>.datepicker-days thead th.switch', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].months[month]+' '+year;
19141         
19142 //        this.picker().select('>tfoot th.today', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19143         
19144 //        this.picker.select('>tfoot th.today').
19145 //                                              .text(dates[this.language].today)
19146 //                                              .toggle(this.todayBtn !== false);
19147     
19148         this.updateNavArrows();
19149         this.fillMonths();
19150                                                 
19151         var prevMonth = this.UTCDate(year, month-1, 28,0,0,0,0),
19152         
19153         day = prevMonth.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());
19154          
19155         prevMonth.setUTCDate(day);
19156         
19157         prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.weekStart + 7)%7);
19158         
19159         var nextMonth = new Date(prevMonth);
19160         
19161         nextMonth.setUTCDate(nextMonth.getUTCDate() + 42);
19162         
19163         nextMonth = nextMonth.valueOf();
19164         
19165         var fillMonths = false;
19166         
19167         this.picker().select('>.datepicker-days tbody',true).first().dom.innerHTML = '';
19168         
19169         while(prevMonth.valueOf() <= nextMonth) {
19170             var clsName = '';
19171             
19172             if (prevMonth.getUTCDay() === this.weekStart) {
19173                 if(fillMonths){
19174                     this.picker().select('>.datepicker-days tbody',true).first().createChild(fillMonths);
19175                 }
19176                     
19177                 fillMonths = {
19178                     tag: 'tr',
19179                     cn: []
19180                 };
19181                 
19182                 if(this.calendarWeeks){
19183                     // ISO 8601: First week contains first thursday.
19184                     // ISO also states week starts on Monday, but we can be more abstract here.
19185                     var
19186                     // Start of current week: based on weekstart/current date
19187                     ws = new Date(+prevMonth + (this.weekStart - prevMonth.getUTCDay() - 7) % 7 * 864e5),
19188                     // Thursday of this week
19189                     th = new Date(+ws + (7 + 4 - ws.getUTCDay()) % 7 * 864e5),
19190                     // First Thursday of year, year from thursday
19191                     yth = new Date(+(yth = this.UTCDate(th.getUTCFullYear(), 0, 1)) + (7 + 4 - yth.getUTCDay())%7*864e5),
19192                     // Calendar week: ms between thursdays, div ms per day, div 7 days
19193                     calWeek =  (th - yth) / 864e5 / 7 + 1;
19194                     
19195                     fillMonths.cn.push({
19196                         tag: 'td',
19197                         cls: 'cw',
19198                         html: calWeek
19199                     });
19200                 }
19201             }
19202             
19203             if (prevMonth.getUTCFullYear() < year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() < month)) {
19204                 clsName += ' old';
19205             } else if (prevMonth.getUTCFullYear() > year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() > month)) {
19206                 clsName += ' new';
19207             }
19208             if (this.todayHighlight &&
19209                 prevMonth.getUTCFullYear() == today.getFullYear() &&
19210                 prevMonth.getUTCMonth() == today.getMonth() &&
19211                 prevMonth.getUTCDate() == today.getDate()) {
19212                 clsName += ' today';
19213             }
19214             
19215             if (currentDate && prevMonth.valueOf() === currentDate) {
19216                 clsName += ' active';
19217             }
19218             
19219             if (prevMonth.valueOf() < this.startDate || prevMonth.valueOf() > this.endDate ||
19220                     this.daysOfWeekDisabled.indexOf(prevMonth.getUTCDay()) !== -1) {
19221                     clsName += ' disabled';
19222             }
19223             
19224             fillMonths.cn.push({
19225                 tag: 'td',
19226                 cls: 'day ' + clsName,
19227                 html: prevMonth.getDate()
19228             });
19229             
19230             prevMonth.setDate(prevMonth.getDate()+1);
19231         }
19232           
19233         var currentYear = this.date && this.date.getUTCFullYear();
19234         var currentMonth = this.date && this.date.getUTCMonth();
19235         
19236         this.picker().select('>.datepicker-months th.switch',true).first().dom.innerHTML = year;
19237         
19238         Roo.each(this.picker().select('>.datepicker-months tbody span',true).elements, function(v,k){
19239             v.removeClass('active');
19240             
19241             if(currentYear === year && k === currentMonth){
19242                 v.addClass('active');
19243             }
19244             
19245             if (year < startYear || year > endYear || (year == startYear && k < startMonth) || (year == endYear && k > endMonth)) {
19246                 v.addClass('disabled');
19247             }
19248             
19249         });
19250         
19251         
19252         year = parseInt(year/10, 10) * 10;
19253         
19254         this.picker().select('>.datepicker-years th.switch', true).first().dom.innerHTML = year + '-' + (year + 9);
19255         
19256         this.picker().select('>.datepicker-years tbody td',true).first().dom.innerHTML = '';
19257         
19258         year -= 1;
19259         for (var i = -1; i < 11; i++) {
19260             this.picker().select('>.datepicker-years tbody td',true).first().createChild({
19261                 tag: 'span',
19262                 cls: 'year' + (i === -1 || i === 10 ? ' old' : '') + (currentYear === year ? ' active' : '') + (year < startYear || year > endYear ? ' disabled' : ''),
19263                 html: year
19264             });
19265             
19266             year += 1;
19267         }
19268     },
19269     
19270     showMode: function(dir) 
19271     {
19272         if (dir) {
19273             this.viewMode = Math.max(this.minViewMode, Math.min(2, this.viewMode + dir));
19274         }
19275         
19276         Roo.each(this.picker().select('>div',true).elements, function(v){
19277             v.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19278             v.hide();
19279         });
19280         this.picker().select('>.datepicker-'+Roo.bootstrap.DateField.modes[this.viewMode].clsName, true).first().show();
19281     },
19282     
19283     place: function()
19284     {
19285         if(this.isInline) {
19286             return;
19287         }
19288         
19289         this.picker().removeClass(['bottom', 'top']);
19290         
19291         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
19292             /*
19293              * place to the top of element!
19294              *
19295              */
19296             
19297             this.picker().addClass('top');
19298             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
19299             
19300             return;
19301         }
19302         
19303         this.picker().addClass('bottom');
19304         
19305         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
19306     },
19307     
19308     parseDate : function(value)
19309     {
19310         if(!value || value instanceof Date){
19311             return value;
19312         }
19313         var v = Date.parseDate(value, this.format);
19314         if (!v && (this.useIso || value.match(/^(\d{4})-0?(\d+)-0?(\d+)/))) {
19315             v = Date.parseDate(value, 'Y-m-d');
19316         }
19317         if(!v && this.altFormats){
19318             if(!this.altFormatsArray){
19319                 this.altFormatsArray = this.altFormats.split("|");
19320             }
19321             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
19322                 v = Date.parseDate(value, this.altFormatsArray[i]);
19323             }
19324         }
19325         return v;
19326     },
19327     
19328     formatDate : function(date, fmt)
19329     {   
19330         return (!date || !(date instanceof Date)) ?
19331         date : date.dateFormat(fmt || this.format);
19332     },
19333     
19334     onFocus : function()
19335     {
19336         Roo.bootstrap.DateField.superclass.onFocus.call(this);
19337         this.showPopup();
19338     },
19339     
19340     onBlur : function()
19341     {
19342         Roo.bootstrap.DateField.superclass.onBlur.call(this);
19343         
19344         var d = this.inputEl().getValue();
19345         
19346         this.setValue(d);
19347                 
19348         this.hidePopup();
19349     },
19350     
19351     showPopup : function()
19352     {
19353         this.picker().show();
19354         this.update();
19355         this.place();
19356         
19357         this.fireEvent('showpopup', this, this.date);
19358     },
19359     
19360     hidePopup : function()
19361     {
19362         if(this.isInline) {
19363             return;
19364         }
19365         this.picker().hide();
19366         this.viewMode = this.startViewMode;
19367         this.showMode();
19368         
19369         this.fireEvent('hidepopup', this, this.date);
19370         
19371     },
19372     
19373     onMousedown: function(e)
19374     {
19375         e.stopPropagation();
19376         e.preventDefault();
19377     },
19378     
19379     keyup: function(e)
19380     {
19381         Roo.bootstrap.DateField.superclass.keyup.call(this);
19382         this.update();
19383     },
19384
19385     setValue: function(v)
19386     {
19387         if(this.fireEvent('beforeselect', this, v) !== false){
19388             var d = new Date(this.parseDate(v) ).clearTime();
19389         
19390             if(isNaN(d.getTime())){
19391                 this.date = this.viewDate = '';
19392                 Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19393                 return;
19394             }
19395
19396             v = this.formatDate(d);
19397
19398             Roo.bootstrap.DateField.superclass.setValue.call(this, v);
19399
19400             this.date = new Date(d.getTime() - d.getTimezoneOffset()*60000);
19401
19402             this.update();
19403
19404             this.fireEvent('select', this, this.date);
19405         }
19406     },
19407     
19408     getValue: function()
19409     {
19410         return this.formatDate(this.date);
19411     },
19412     
19413     fireKey: function(e)
19414     {
19415         if (!this.picker().isVisible()){
19416             if (e.keyCode == 27) { // allow escape to hide and re-show picker
19417                 this.showPopup();
19418             }
19419             return;
19420         }
19421         
19422         var dateChanged = false,
19423         dir, day, month,
19424         newDate, newViewDate;
19425         
19426         switch(e.keyCode){
19427             case 27: // escape
19428                 this.hidePopup();
19429                 e.preventDefault();
19430                 break;
19431             case 37: // left
19432             case 39: // right
19433                 if (!this.keyboardNavigation) {
19434                     break;
19435                 }
19436                 dir = e.keyCode == 37 ? -1 : 1;
19437                 
19438                 if (e.ctrlKey){
19439                     newDate = this.moveYear(this.date, dir);
19440                     newViewDate = this.moveYear(this.viewDate, dir);
19441                 } else if (e.shiftKey){
19442                     newDate = this.moveMonth(this.date, dir);
19443                     newViewDate = this.moveMonth(this.viewDate, dir);
19444                 } else {
19445                     newDate = new Date(this.date);
19446                     newDate.setUTCDate(this.date.getUTCDate() + dir);
19447                     newViewDate = new Date(this.viewDate);
19448                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir);
19449                 }
19450                 if (this.dateWithinRange(newDate)){
19451                     this.date = newDate;
19452                     this.viewDate = newViewDate;
19453                     this.setValue(this.formatDate(this.date));
19454 //                    this.update();
19455                     e.preventDefault();
19456                     dateChanged = true;
19457                 }
19458                 break;
19459             case 38: // up
19460             case 40: // down
19461                 if (!this.keyboardNavigation) {
19462                     break;
19463                 }
19464                 dir = e.keyCode == 38 ? -1 : 1;
19465                 if (e.ctrlKey){
19466                     newDate = this.moveYear(this.date, dir);
19467                     newViewDate = this.moveYear(this.viewDate, dir);
19468                 } else if (e.shiftKey){
19469                     newDate = this.moveMonth(this.date, dir);
19470                     newViewDate = this.moveMonth(this.viewDate, dir);
19471                 } else {
19472                     newDate = new Date(this.date);
19473                     newDate.setUTCDate(this.date.getUTCDate() + dir * 7);
19474                     newViewDate = new Date(this.viewDate);
19475                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir * 7);
19476                 }
19477                 if (this.dateWithinRange(newDate)){
19478                     this.date = newDate;
19479                     this.viewDate = newViewDate;
19480                     this.setValue(this.formatDate(this.date));
19481 //                    this.update();
19482                     e.preventDefault();
19483                     dateChanged = true;
19484                 }
19485                 break;
19486             case 13: // enter
19487                 this.setValue(this.formatDate(this.date));
19488                 this.hidePopup();
19489                 e.preventDefault();
19490                 break;
19491             case 9: // tab
19492                 this.setValue(this.formatDate(this.date));
19493                 this.hidePopup();
19494                 break;
19495             case 16: // shift
19496             case 17: // ctrl
19497             case 18: // alt
19498                 break;
19499             default :
19500                 this.hidePopup();
19501                 
19502         }
19503     },
19504     
19505     
19506     onClick: function(e) 
19507     {
19508         e.stopPropagation();
19509         e.preventDefault();
19510         
19511         var target = e.getTarget();
19512         
19513         if(target.nodeName.toLowerCase() === 'i'){
19514             target = Roo.get(target).dom.parentNode;
19515         }
19516         
19517         var nodeName = target.nodeName;
19518         var className = target.className;
19519         var html = target.innerHTML;
19520         //Roo.log(nodeName);
19521         
19522         switch(nodeName.toLowerCase()) {
19523             case 'th':
19524                 switch(className) {
19525                     case 'switch':
19526                         this.showMode(1);
19527                         break;
19528                     case 'prev':
19529                     case 'next':
19530                         var dir = Roo.bootstrap.DateField.modes[this.viewMode].navStep * (className == 'prev' ? -1 : 1);
19531                         switch(this.viewMode){
19532                                 case 0:
19533                                         this.viewDate = this.moveMonth(this.viewDate, dir);
19534                                         break;
19535                                 case 1:
19536                                 case 2:
19537                                         this.viewDate = this.moveYear(this.viewDate, dir);
19538                                         break;
19539                         }
19540                         this.fill();
19541                         break;
19542                     case 'today':
19543                         var date = new Date();
19544                         this.date = this.UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);
19545 //                        this.fill()
19546                         this.setValue(this.formatDate(this.date));
19547                         
19548                         this.hidePopup();
19549                         break;
19550                 }
19551                 break;
19552             case 'span':
19553                 if (className.indexOf('disabled') < 0) {
19554                     this.viewDate.setUTCDate(1);
19555                     if (className.indexOf('month') > -1) {
19556                         this.viewDate.setUTCMonth(Roo.bootstrap.DateField.dates[this.language].monthsShort.indexOf(html));
19557                     } else {
19558                         var year = parseInt(html, 10) || 0;
19559                         this.viewDate.setUTCFullYear(year);
19560                         
19561                     }
19562                     
19563                     if(this.singleMode){
19564                         this.setValue(this.formatDate(this.viewDate));
19565                         this.hidePopup();
19566                         return;
19567                     }
19568                     
19569                     this.showMode(-1);
19570                     this.fill();
19571                 }
19572                 break;
19573                 
19574             case 'td':
19575                 //Roo.log(className);
19576                 if (className.indexOf('day') > -1 && className.indexOf('disabled') < 0 ){
19577                     var day = parseInt(html, 10) || 1;
19578                     var year = this.viewDate.getUTCFullYear(),
19579                         month = this.viewDate.getUTCMonth();
19580
19581                     if (className.indexOf('old') > -1) {
19582                         if(month === 0 ){
19583                             month = 11;
19584                             year -= 1;
19585                         }else{
19586                             month -= 1;
19587                         }
19588                     } else if (className.indexOf('new') > -1) {
19589                         if (month == 11) {
19590                             month = 0;
19591                             year += 1;
19592                         } else {
19593                             month += 1;
19594                         }
19595                     }
19596                     //Roo.log([year,month,day]);
19597                     this.date = this.UTCDate(year, month, day,0,0,0,0);
19598                     this.viewDate = this.UTCDate(year, month, Math.min(28, day),0,0,0,0);
19599 //                    this.fill();
19600                     //Roo.log(this.formatDate(this.date));
19601                     this.setValue(this.formatDate(this.date));
19602                     this.hidePopup();
19603                 }
19604                 break;
19605         }
19606     },
19607     
19608     setStartDate: function(startDate)
19609     {
19610         this.startDate = startDate || -Infinity;
19611         if (this.startDate !== -Infinity) {
19612             this.startDate = this.parseDate(this.startDate);
19613         }
19614         this.update();
19615         this.updateNavArrows();
19616     },
19617
19618     setEndDate: function(endDate)
19619     {
19620         this.endDate = endDate || Infinity;
19621         if (this.endDate !== Infinity) {
19622             this.endDate = this.parseDate(this.endDate);
19623         }
19624         this.update();
19625         this.updateNavArrows();
19626     },
19627     
19628     setDaysOfWeekDisabled: function(daysOfWeekDisabled)
19629     {
19630         this.daysOfWeekDisabled = daysOfWeekDisabled || [];
19631         if (typeof(this.daysOfWeekDisabled) !== 'object') {
19632             this.daysOfWeekDisabled = this.daysOfWeekDisabled.split(/,\s*/);
19633         }
19634         this.daysOfWeekDisabled = this.daysOfWeekDisabled.map(function (d) {
19635             return parseInt(d, 10);
19636         });
19637         this.update();
19638         this.updateNavArrows();
19639     },
19640     
19641     updateNavArrows: function() 
19642     {
19643         if(this.singleMode){
19644             return;
19645         }
19646         
19647         var d = new Date(this.viewDate),
19648         year = d.getUTCFullYear(),
19649         month = d.getUTCMonth();
19650         
19651         Roo.each(this.picker().select('.prev', true).elements, function(v){
19652             v.show();
19653             switch (this.viewMode) {
19654                 case 0:
19655
19656                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear() && month <= this.startDate.getUTCMonth()) {
19657                         v.hide();
19658                     }
19659                     break;
19660                 case 1:
19661                 case 2:
19662                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()) {
19663                         v.hide();
19664                     }
19665                     break;
19666             }
19667         });
19668         
19669         Roo.each(this.picker().select('.next', true).elements, function(v){
19670             v.show();
19671             switch (this.viewMode) {
19672                 case 0:
19673
19674                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear() && month >= this.endDate.getUTCMonth()) {
19675                         v.hide();
19676                     }
19677                     break;
19678                 case 1:
19679                 case 2:
19680                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()) {
19681                         v.hide();
19682                     }
19683                     break;
19684             }
19685         })
19686     },
19687     
19688     moveMonth: function(date, dir)
19689     {
19690         if (!dir) {
19691             return date;
19692         }
19693         var new_date = new Date(date.valueOf()),
19694         day = new_date.getUTCDate(),
19695         month = new_date.getUTCMonth(),
19696         mag = Math.abs(dir),
19697         new_month, test;
19698         dir = dir > 0 ? 1 : -1;
19699         if (mag == 1){
19700             test = dir == -1
19701             // If going back one month, make sure month is not current month
19702             // (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02)
19703             ? function(){
19704                 return new_date.getUTCMonth() == month;
19705             }
19706             // If going forward one month, make sure month is as expected
19707             // (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02)
19708             : function(){
19709                 return new_date.getUTCMonth() != new_month;
19710             };
19711             new_month = month + dir;
19712             new_date.setUTCMonth(new_month);
19713             // Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11
19714             if (new_month < 0 || new_month > 11) {
19715                 new_month = (new_month + 12) % 12;
19716             }
19717         } else {
19718             // For magnitudes >1, move one month at a time...
19719             for (var i=0; i<mag; i++) {
19720                 // ...which might decrease the day (eg, Jan 31 to Feb 28, etc)...
19721                 new_date = this.moveMonth(new_date, dir);
19722             }
19723             // ...then reset the day, keeping it in the new month
19724             new_month = new_date.getUTCMonth();
19725             new_date.setUTCDate(day);
19726             test = function(){
19727                 return new_month != new_date.getUTCMonth();
19728             };
19729         }
19730         // Common date-resetting loop -- if date is beyond end of month, make it
19731         // end of month
19732         while (test()){
19733             new_date.setUTCDate(--day);
19734             new_date.setUTCMonth(new_month);
19735         }
19736         return new_date;
19737     },
19738
19739     moveYear: function(date, dir)
19740     {
19741         return this.moveMonth(date, dir*12);
19742     },
19743
19744     dateWithinRange: function(date)
19745     {
19746         return date >= this.startDate && date <= this.endDate;
19747     },
19748
19749     
19750     remove: function() 
19751     {
19752         this.picker().remove();
19753     },
19754     
19755     validateValue : function(value)
19756     {
19757         if(this.getVisibilityEl().hasClass('hidden')){
19758             return true;
19759         }
19760         
19761         if(value.length < 1)  {
19762             if(this.allowBlank){
19763                 return true;
19764             }
19765             return false;
19766         }
19767         
19768         if(value.length < this.minLength){
19769             return false;
19770         }
19771         if(value.length > this.maxLength){
19772             return false;
19773         }
19774         if(this.vtype){
19775             var vt = Roo.form.VTypes;
19776             if(!vt[this.vtype](value, this)){
19777                 return false;
19778             }
19779         }
19780         if(typeof this.validator == "function"){
19781             var msg = this.validator(value);
19782             if(msg !== true){
19783                 return false;
19784             }
19785         }
19786         
19787         if(this.regex && !this.regex.test(value)){
19788             return false;
19789         }
19790         
19791         if(typeof(this.parseDate(value)) == 'undefined'){
19792             return false;
19793         }
19794         
19795         if (this.endDate !== Infinity && this.parseDate(value).getTime() > this.endDate.getTime()) {
19796             return false;
19797         }      
19798         
19799         if (this.startDate !== -Infinity && this.parseDate(value).getTime() < this.startDate.getTime()) {
19800             return false;
19801         } 
19802         
19803         
19804         return true;
19805     },
19806     
19807     reset : function()
19808     {
19809         this.date = this.viewDate = '';
19810         
19811         Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19812     }
19813    
19814 });
19815
19816 Roo.apply(Roo.bootstrap.DateField,  {
19817     
19818     head : {
19819         tag: 'thead',
19820         cn: [
19821         {
19822             tag: 'tr',
19823             cn: [
19824             {
19825                 tag: 'th',
19826                 cls: 'prev',
19827                 html: '<i class="fa fa-arrow-left"/>'
19828             },
19829             {
19830                 tag: 'th',
19831                 cls: 'switch',
19832                 colspan: '5'
19833             },
19834             {
19835                 tag: 'th',
19836                 cls: 'next',
19837                 html: '<i class="fa fa-arrow-right"/>'
19838             }
19839
19840             ]
19841         }
19842         ]
19843     },
19844     
19845     content : {
19846         tag: 'tbody',
19847         cn: [
19848         {
19849             tag: 'tr',
19850             cn: [
19851             {
19852                 tag: 'td',
19853                 colspan: '7'
19854             }
19855             ]
19856         }
19857         ]
19858     },
19859     
19860     footer : {
19861         tag: 'tfoot',
19862         cn: [
19863         {
19864             tag: 'tr',
19865             cn: [
19866             {
19867                 tag: 'th',
19868                 colspan: '7',
19869                 cls: 'today'
19870             }
19871                     
19872             ]
19873         }
19874         ]
19875     },
19876     
19877     dates:{
19878         en: {
19879             days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
19880             daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
19881             daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"],
19882             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
19883             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
19884             today: "Today"
19885         }
19886     },
19887     
19888     modes: [
19889     {
19890         clsName: 'days',
19891         navFnc: 'Month',
19892         navStep: 1
19893     },
19894     {
19895         clsName: 'months',
19896         navFnc: 'FullYear',
19897         navStep: 1
19898     },
19899     {
19900         clsName: 'years',
19901         navFnc: 'FullYear',
19902         navStep: 10
19903     }]
19904 });
19905
19906 Roo.apply(Roo.bootstrap.DateField,  {
19907   
19908     template : {
19909         tag: 'div',
19910         cls: 'datepicker dropdown-menu roo-dynamic',
19911         cn: [
19912         {
19913             tag: 'div',
19914             cls: 'datepicker-days',
19915             cn: [
19916             {
19917                 tag: 'table',
19918                 cls: 'table-condensed',
19919                 cn:[
19920                 Roo.bootstrap.DateField.head,
19921                 {
19922                     tag: 'tbody'
19923                 },
19924                 Roo.bootstrap.DateField.footer
19925                 ]
19926             }
19927             ]
19928         },
19929         {
19930             tag: 'div',
19931             cls: 'datepicker-months',
19932             cn: [
19933             {
19934                 tag: 'table',
19935                 cls: 'table-condensed',
19936                 cn:[
19937                 Roo.bootstrap.DateField.head,
19938                 Roo.bootstrap.DateField.content,
19939                 Roo.bootstrap.DateField.footer
19940                 ]
19941             }
19942             ]
19943         },
19944         {
19945             tag: 'div',
19946             cls: 'datepicker-years',
19947             cn: [
19948             {
19949                 tag: 'table',
19950                 cls: 'table-condensed',
19951                 cn:[
19952                 Roo.bootstrap.DateField.head,
19953                 Roo.bootstrap.DateField.content,
19954                 Roo.bootstrap.DateField.footer
19955                 ]
19956             }
19957             ]
19958         }
19959         ]
19960     }
19961 });
19962
19963  
19964
19965  /*
19966  * - LGPL
19967  *
19968  * TimeField
19969  * 
19970  */
19971
19972 /**
19973  * @class Roo.bootstrap.TimeField
19974  * @extends Roo.bootstrap.Input
19975  * Bootstrap DateField class
19976  * 
19977  * 
19978  * @constructor
19979  * Create a new TimeField
19980  * @param {Object} config The config object
19981  */
19982
19983 Roo.bootstrap.TimeField = function(config){
19984     Roo.bootstrap.TimeField.superclass.constructor.call(this, config);
19985     this.addEvents({
19986             /**
19987              * @event show
19988              * Fires when this field show.
19989              * @param {Roo.bootstrap.DateField} thisthis
19990              * @param {Mixed} date The date value
19991              */
19992             show : true,
19993             /**
19994              * @event show
19995              * Fires when this field hide.
19996              * @param {Roo.bootstrap.DateField} this
19997              * @param {Mixed} date The date value
19998              */
19999             hide : true,
20000             /**
20001              * @event select
20002              * Fires when select a date.
20003              * @param {Roo.bootstrap.DateField} this
20004              * @param {Mixed} date The date value
20005              */
20006             select : true
20007         });
20008 };
20009
20010 Roo.extend(Roo.bootstrap.TimeField, Roo.bootstrap.Input,  {
20011     
20012     /**
20013      * @cfg {String} format
20014      * The default time format string which can be overriden for localization support.  The format must be
20015      * valid according to {@link Date#parseDate} (defaults to 'H:i').
20016      */
20017     format : "H:i",
20018        
20019     onRender: function(ct, position)
20020     {
20021         
20022         Roo.bootstrap.TimeField.superclass.onRender.call(this, ct, position);
20023                 
20024         this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.TimeField.template);
20025         
20026         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20027         
20028         this.pop = this.picker().select('>.datepicker-time',true).first();
20029         this.pop.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20030         
20031         this.picker().on('mousedown', this.onMousedown, this);
20032         this.picker().on('click', this.onClick, this);
20033         
20034         this.picker().addClass('datepicker-dropdown');
20035     
20036         this.fillTime();
20037         this.update();
20038             
20039         this.pop.select('span.hours-up', true).first().on('click', this.onIncrementHours, this);
20040         this.pop.select('span.hours-down', true).first().on('click', this.onDecrementHours, this);
20041         this.pop.select('span.minutes-up', true).first().on('click', this.onIncrementMinutes, this);
20042         this.pop.select('span.minutes-down', true).first().on('click', this.onDecrementMinutes, this);
20043         this.pop.select('button.period', true).first().on('click', this.onTogglePeriod, this);
20044         this.pop.select('button.ok', true).first().on('click', this.setTime, this);
20045
20046     },
20047     
20048     fireKey: function(e){
20049         if (!this.picker().isVisible()){
20050             if (e.keyCode == 27) { // allow escape to hide and re-show picker
20051                 this.show();
20052             }
20053             return;
20054         }
20055
20056         e.preventDefault();
20057         
20058         switch(e.keyCode){
20059             case 27: // escape
20060                 this.hide();
20061                 break;
20062             case 37: // left
20063             case 39: // right
20064                 this.onTogglePeriod();
20065                 break;
20066             case 38: // up
20067                 this.onIncrementMinutes();
20068                 break;
20069             case 40: // down
20070                 this.onDecrementMinutes();
20071                 break;
20072             case 13: // enter
20073             case 9: // tab
20074                 this.setTime();
20075                 break;
20076         }
20077     },
20078     
20079     onClick: function(e) {
20080         e.stopPropagation();
20081         e.preventDefault();
20082     },
20083     
20084     picker : function()
20085     {
20086         return this.el.select('.datepicker', true).first();
20087     },
20088     
20089     fillTime: function()
20090     {    
20091         var time = this.pop.select('tbody', true).first();
20092         
20093         time.dom.innerHTML = '';
20094         
20095         time.createChild({
20096             tag: 'tr',
20097             cn: [
20098                 {
20099                     tag: 'td',
20100                     cn: [
20101                         {
20102                             tag: 'a',
20103                             href: '#',
20104                             cls: 'btn',
20105                             cn: [
20106                                 {
20107                                     tag: 'span',
20108                                     cls: 'hours-up glyphicon glyphicon-chevron-up'
20109                                 }
20110                             ]
20111                         } 
20112                     ]
20113                 },
20114                 {
20115                     tag: 'td',
20116                     cls: 'separator'
20117                 },
20118                 {
20119                     tag: 'td',
20120                     cn: [
20121                         {
20122                             tag: 'a',
20123                             href: '#',
20124                             cls: 'btn',
20125                             cn: [
20126                                 {
20127                                     tag: 'span',
20128                                     cls: 'minutes-up glyphicon glyphicon-chevron-up'
20129                                 }
20130                             ]
20131                         }
20132                     ]
20133                 },
20134                 {
20135                     tag: 'td',
20136                     cls: 'separator'
20137                 }
20138             ]
20139         });
20140         
20141         time.createChild({
20142             tag: 'tr',
20143             cn: [
20144                 {
20145                     tag: 'td',
20146                     cn: [
20147                         {
20148                             tag: 'span',
20149                             cls: 'timepicker-hour',
20150                             html: '00'
20151                         }  
20152                     ]
20153                 },
20154                 {
20155                     tag: 'td',
20156                     cls: 'separator',
20157                     html: ':'
20158                 },
20159                 {
20160                     tag: 'td',
20161                     cn: [
20162                         {
20163                             tag: 'span',
20164                             cls: 'timepicker-minute',
20165                             html: '00'
20166                         }  
20167                     ]
20168                 },
20169                 {
20170                     tag: 'td',
20171                     cls: 'separator'
20172                 },
20173                 {
20174                     tag: 'td',
20175                     cn: [
20176                         {
20177                             tag: 'button',
20178                             type: 'button',
20179                             cls: 'btn btn-primary period',
20180                             html: 'AM'
20181                             
20182                         }
20183                     ]
20184                 }
20185             ]
20186         });
20187         
20188         time.createChild({
20189             tag: 'tr',
20190             cn: [
20191                 {
20192                     tag: 'td',
20193                     cn: [
20194                         {
20195                             tag: 'a',
20196                             href: '#',
20197                             cls: 'btn',
20198                             cn: [
20199                                 {
20200                                     tag: 'span',
20201                                     cls: 'hours-down glyphicon glyphicon-chevron-down'
20202                                 }
20203                             ]
20204                         }
20205                     ]
20206                 },
20207                 {
20208                     tag: 'td',
20209                     cls: 'separator'
20210                 },
20211                 {
20212                     tag: 'td',
20213                     cn: [
20214                         {
20215                             tag: 'a',
20216                             href: '#',
20217                             cls: 'btn',
20218                             cn: [
20219                                 {
20220                                     tag: 'span',
20221                                     cls: 'minutes-down glyphicon glyphicon-chevron-down'
20222                                 }
20223                             ]
20224                         }
20225                     ]
20226                 },
20227                 {
20228                     tag: 'td',
20229                     cls: 'separator'
20230                 }
20231             ]
20232         });
20233         
20234     },
20235     
20236     update: function()
20237     {
20238         
20239         this.time = (typeof(this.time) === 'undefined') ? new Date() : this.time;
20240         
20241         this.fill();
20242     },
20243     
20244     fill: function() 
20245     {
20246         var hours = this.time.getHours();
20247         var minutes = this.time.getMinutes();
20248         var period = 'AM';
20249         
20250         if(hours > 11){
20251             period = 'PM';
20252         }
20253         
20254         if(hours == 0){
20255             hours = 12;
20256         }
20257         
20258         
20259         if(hours > 12){
20260             hours = hours - 12;
20261         }
20262         
20263         if(hours < 10){
20264             hours = '0' + hours;
20265         }
20266         
20267         if(minutes < 10){
20268             minutes = '0' + minutes;
20269         }
20270         
20271         this.pop.select('.timepicker-hour', true).first().dom.innerHTML = hours;
20272         this.pop.select('.timepicker-minute', true).first().dom.innerHTML = minutes;
20273         this.pop.select('button', true).first().dom.innerHTML = period;
20274         
20275     },
20276     
20277     place: function()
20278     {   
20279         this.picker().removeClass(['bottom-left', 'bottom-right', 'top-left', 'top-right']);
20280         
20281         var cls = ['bottom'];
20282         
20283         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){ // top
20284             cls.pop();
20285             cls.push('top');
20286         }
20287         
20288         cls.push('right');
20289         
20290         if((Roo.lib.Dom.getViewWidth() + Roo.get(document.body).getScroll().left) - (this.inputEl().getLeft() + this.picker().getWidth()) < 0){ // left
20291             cls.pop();
20292             cls.push('left');
20293         }
20294         
20295         this.picker().addClass(cls.join('-'));
20296         
20297         var _this = this;
20298         
20299         Roo.each(cls, function(c){
20300             if(c == 'bottom'){
20301                 _this.picker().setTop(_this.inputEl().getHeight());
20302                 return;
20303             }
20304             if(c == 'top'){
20305                 _this.picker().setTop(0 - _this.picker().getHeight());
20306                 return;
20307             }
20308             
20309             if(c == 'left'){
20310                 _this.picker().setLeft(_this.inputEl().getLeft() + _this.inputEl().getWidth() - _this.el.getLeft() - _this.picker().getWidth());
20311                 return;
20312             }
20313             if(c == 'right'){
20314                 _this.picker().setLeft(_this.inputEl().getLeft() - _this.el.getLeft());
20315                 return;
20316             }
20317         });
20318         
20319     },
20320   
20321     onFocus : function()
20322     {
20323         Roo.bootstrap.TimeField.superclass.onFocus.call(this);
20324         this.show();
20325     },
20326     
20327     onBlur : function()
20328     {
20329         Roo.bootstrap.TimeField.superclass.onBlur.call(this);
20330         this.hide();
20331     },
20332     
20333     show : function()
20334     {
20335         this.picker().show();
20336         this.pop.show();
20337         this.update();
20338         this.place();
20339         
20340         this.fireEvent('show', this, this.date);
20341     },
20342     
20343     hide : function()
20344     {
20345         this.picker().hide();
20346         this.pop.hide();
20347         
20348         this.fireEvent('hide', this, this.date);
20349     },
20350     
20351     setTime : function()
20352     {
20353         this.hide();
20354         this.setValue(this.time.format(this.format));
20355         
20356         this.fireEvent('select', this, this.date);
20357         
20358         
20359     },
20360     
20361     onMousedown: function(e){
20362         e.stopPropagation();
20363         e.preventDefault();
20364     },
20365     
20366     onIncrementHours: function()
20367     {
20368         Roo.log('onIncrementHours');
20369         this.time = this.time.add(Date.HOUR, 1);
20370         this.update();
20371         
20372     },
20373     
20374     onDecrementHours: function()
20375     {
20376         Roo.log('onDecrementHours');
20377         this.time = this.time.add(Date.HOUR, -1);
20378         this.update();
20379     },
20380     
20381     onIncrementMinutes: function()
20382     {
20383         Roo.log('onIncrementMinutes');
20384         this.time = this.time.add(Date.MINUTE, 1);
20385         this.update();
20386     },
20387     
20388     onDecrementMinutes: function()
20389     {
20390         Roo.log('onDecrementMinutes');
20391         this.time = this.time.add(Date.MINUTE, -1);
20392         this.update();
20393     },
20394     
20395     onTogglePeriod: function()
20396     {
20397         Roo.log('onTogglePeriod');
20398         this.time = this.time.add(Date.HOUR, 12);
20399         this.update();
20400     }
20401     
20402    
20403 });
20404
20405 Roo.apply(Roo.bootstrap.TimeField,  {
20406     
20407     content : {
20408         tag: 'tbody',
20409         cn: [
20410             {
20411                 tag: 'tr',
20412                 cn: [
20413                 {
20414                     tag: 'td',
20415                     colspan: '7'
20416                 }
20417                 ]
20418             }
20419         ]
20420     },
20421     
20422     footer : {
20423         tag: 'tfoot',
20424         cn: [
20425             {
20426                 tag: 'tr',
20427                 cn: [
20428                 {
20429                     tag: 'th',
20430                     colspan: '7',
20431                     cls: '',
20432                     cn: [
20433                         {
20434                             tag: 'button',
20435                             cls: 'btn btn-info ok',
20436                             html: 'OK'
20437                         }
20438                     ]
20439                 }
20440
20441                 ]
20442             }
20443         ]
20444     }
20445 });
20446
20447 Roo.apply(Roo.bootstrap.TimeField,  {
20448   
20449     template : {
20450         tag: 'div',
20451         cls: 'datepicker dropdown-menu',
20452         cn: [
20453             {
20454                 tag: 'div',
20455                 cls: 'datepicker-time',
20456                 cn: [
20457                 {
20458                     tag: 'table',
20459                     cls: 'table-condensed',
20460                     cn:[
20461                     Roo.bootstrap.TimeField.content,
20462                     Roo.bootstrap.TimeField.footer
20463                     ]
20464                 }
20465                 ]
20466             }
20467         ]
20468     }
20469 });
20470
20471  
20472
20473  /*
20474  * - LGPL
20475  *
20476  * MonthField
20477  * 
20478  */
20479
20480 /**
20481  * @class Roo.bootstrap.MonthField
20482  * @extends Roo.bootstrap.Input
20483  * Bootstrap MonthField class
20484  * 
20485  * @cfg {String} language default en
20486  * 
20487  * @constructor
20488  * Create a new MonthField
20489  * @param {Object} config The config object
20490  */
20491
20492 Roo.bootstrap.MonthField = function(config){
20493     Roo.bootstrap.MonthField.superclass.constructor.call(this, config);
20494     
20495     this.addEvents({
20496         /**
20497          * @event show
20498          * Fires when this field show.
20499          * @param {Roo.bootstrap.MonthField} this
20500          * @param {Mixed} date The date value
20501          */
20502         show : true,
20503         /**
20504          * @event show
20505          * Fires when this field hide.
20506          * @param {Roo.bootstrap.MonthField} this
20507          * @param {Mixed} date The date value
20508          */
20509         hide : true,
20510         /**
20511          * @event select
20512          * Fires when select a date.
20513          * @param {Roo.bootstrap.MonthField} this
20514          * @param {String} oldvalue The old value
20515          * @param {String} newvalue The new value
20516          */
20517         select : true
20518     });
20519 };
20520
20521 Roo.extend(Roo.bootstrap.MonthField, Roo.bootstrap.Input,  {
20522     
20523     onRender: function(ct, position)
20524     {
20525         
20526         Roo.bootstrap.MonthField.superclass.onRender.call(this, ct, position);
20527         
20528         this.language = this.language || 'en';
20529         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : this.language.split('-')[0];
20530         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : "en";
20531         
20532         this.isRTL = Roo.bootstrap.MonthField.dates[this.language].rtl || false;
20533         this.isInline = false;
20534         this.isInput = true;
20535         this.component = this.el.select('.add-on', true).first() || false;
20536         this.component = (this.component && this.component.length === 0) ? false : this.component;
20537         this.hasInput = this.component && this.inputEL().length;
20538         
20539         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.MonthField.template);
20540         
20541         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20542         
20543         this.picker().on('mousedown', this.onMousedown, this);
20544         this.picker().on('click', this.onClick, this);
20545         
20546         this.picker().addClass('datepicker-dropdown');
20547         
20548         Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
20549             v.setStyle('width', '189px');
20550         });
20551         
20552         this.fillMonths();
20553         
20554         this.update();
20555         
20556         if(this.isInline) {
20557             this.show();
20558         }
20559         
20560     },
20561     
20562     setValue: function(v, suppressEvent)
20563     {   
20564         var o = this.getValue();
20565         
20566         Roo.bootstrap.MonthField.superclass.setValue.call(this, v);
20567         
20568         this.update();
20569
20570         if(suppressEvent !== true){
20571             this.fireEvent('select', this, o, v);
20572         }
20573         
20574     },
20575     
20576     getValue: function()
20577     {
20578         return this.value;
20579     },
20580     
20581     onClick: function(e) 
20582     {
20583         e.stopPropagation();
20584         e.preventDefault();
20585         
20586         var target = e.getTarget();
20587         
20588         if(target.nodeName.toLowerCase() === 'i'){
20589             target = Roo.get(target).dom.parentNode;
20590         }
20591         
20592         var nodeName = target.nodeName;
20593         var className = target.className;
20594         var html = target.innerHTML;
20595         
20596         if(nodeName.toLowerCase() != 'span' || className.indexOf('disabled') > -1 || className.indexOf('month') == -1){
20597             return;
20598         }
20599         
20600         this.vIndex = Roo.bootstrap.MonthField.dates[this.language].monthsShort.indexOf(html);
20601         
20602         this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20603         
20604         this.hide();
20605                         
20606     },
20607     
20608     picker : function()
20609     {
20610         return this.pickerEl;
20611     },
20612     
20613     fillMonths: function()
20614     {    
20615         var i = 0;
20616         var months = this.picker().select('>.datepicker-months td', true).first();
20617         
20618         months.dom.innerHTML = '';
20619         
20620         while (i < 12) {
20621             var month = {
20622                 tag: 'span',
20623                 cls: 'month',
20624                 html: Roo.bootstrap.MonthField.dates[this.language].monthsShort[i++]
20625             };
20626             
20627             months.createChild(month);
20628         }
20629         
20630     },
20631     
20632     update: function()
20633     {
20634         var _this = this;
20635         
20636         if(typeof(this.vIndex) == 'undefined' && this.value.length){
20637             this.vIndex = Roo.bootstrap.MonthField.dates[this.language].months.indexOf(this.value);
20638         }
20639         
20640         Roo.each(this.pickerEl.select('> .datepicker-months tbody > tr > td > span', true).elements, function(e, k){
20641             e.removeClass('active');
20642             
20643             if(typeof(_this.vIndex) != 'undefined' && k == _this.vIndex){
20644                 e.addClass('active');
20645             }
20646         })
20647     },
20648     
20649     place: function()
20650     {
20651         if(this.isInline) {
20652             return;
20653         }
20654         
20655         this.picker().removeClass(['bottom', 'top']);
20656         
20657         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
20658             /*
20659              * place to the top of element!
20660              *
20661              */
20662             
20663             this.picker().addClass('top');
20664             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
20665             
20666             return;
20667         }
20668         
20669         this.picker().addClass('bottom');
20670         
20671         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
20672     },
20673     
20674     onFocus : function()
20675     {
20676         Roo.bootstrap.MonthField.superclass.onFocus.call(this);
20677         this.show();
20678     },
20679     
20680     onBlur : function()
20681     {
20682         Roo.bootstrap.MonthField.superclass.onBlur.call(this);
20683         
20684         var d = this.inputEl().getValue();
20685         
20686         this.setValue(d);
20687                 
20688         this.hide();
20689     },
20690     
20691     show : function()
20692     {
20693         this.picker().show();
20694         this.picker().select('>.datepicker-months', true).first().show();
20695         this.update();
20696         this.place();
20697         
20698         this.fireEvent('show', this, this.date);
20699     },
20700     
20701     hide : function()
20702     {
20703         if(this.isInline) {
20704             return;
20705         }
20706         this.picker().hide();
20707         this.fireEvent('hide', this, this.date);
20708         
20709     },
20710     
20711     onMousedown: function(e)
20712     {
20713         e.stopPropagation();
20714         e.preventDefault();
20715     },
20716     
20717     keyup: function(e)
20718     {
20719         Roo.bootstrap.MonthField.superclass.keyup.call(this);
20720         this.update();
20721     },
20722
20723     fireKey: function(e)
20724     {
20725         if (!this.picker().isVisible()){
20726             if (e.keyCode == 27)   {// allow escape to hide and re-show picker
20727                 this.show();
20728             }
20729             return;
20730         }
20731         
20732         var dir;
20733         
20734         switch(e.keyCode){
20735             case 27: // escape
20736                 this.hide();
20737                 e.preventDefault();
20738                 break;
20739             case 37: // left
20740             case 39: // right
20741                 dir = e.keyCode == 37 ? -1 : 1;
20742                 
20743                 this.vIndex = this.vIndex + dir;
20744                 
20745                 if(this.vIndex < 0){
20746                     this.vIndex = 0;
20747                 }
20748                 
20749                 if(this.vIndex > 11){
20750                     this.vIndex = 11;
20751                 }
20752                 
20753                 if(isNaN(this.vIndex)){
20754                     this.vIndex = 0;
20755                 }
20756                 
20757                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20758                 
20759                 break;
20760             case 38: // up
20761             case 40: // down
20762                 
20763                 dir = e.keyCode == 38 ? -1 : 1;
20764                 
20765                 this.vIndex = this.vIndex + dir * 4;
20766                 
20767                 if(this.vIndex < 0){
20768                     this.vIndex = 0;
20769                 }
20770                 
20771                 if(this.vIndex > 11){
20772                     this.vIndex = 11;
20773                 }
20774                 
20775                 if(isNaN(this.vIndex)){
20776                     this.vIndex = 0;
20777                 }
20778                 
20779                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20780                 break;
20781                 
20782             case 13: // enter
20783                 
20784                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20785                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20786                 }
20787                 
20788                 this.hide();
20789                 e.preventDefault();
20790                 break;
20791             case 9: // tab
20792                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20793                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20794                 }
20795                 this.hide();
20796                 break;
20797             case 16: // shift
20798             case 17: // ctrl
20799             case 18: // alt
20800                 break;
20801             default :
20802                 this.hide();
20803                 
20804         }
20805     },
20806     
20807     remove: function() 
20808     {
20809         this.picker().remove();
20810     }
20811    
20812 });
20813
20814 Roo.apply(Roo.bootstrap.MonthField,  {
20815     
20816     content : {
20817         tag: 'tbody',
20818         cn: [
20819         {
20820             tag: 'tr',
20821             cn: [
20822             {
20823                 tag: 'td',
20824                 colspan: '7'
20825             }
20826             ]
20827         }
20828         ]
20829     },
20830     
20831     dates:{
20832         en: {
20833             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
20834             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
20835         }
20836     }
20837 });
20838
20839 Roo.apply(Roo.bootstrap.MonthField,  {
20840   
20841     template : {
20842         tag: 'div',
20843         cls: 'datepicker dropdown-menu roo-dynamic',
20844         cn: [
20845             {
20846                 tag: 'div',
20847                 cls: 'datepicker-months',
20848                 cn: [
20849                 {
20850                     tag: 'table',
20851                     cls: 'table-condensed',
20852                     cn:[
20853                         Roo.bootstrap.DateField.content
20854                     ]
20855                 }
20856                 ]
20857             }
20858         ]
20859     }
20860 });
20861
20862  
20863
20864  
20865  /*
20866  * - LGPL
20867  *
20868  * CheckBox
20869  * 
20870  */
20871
20872 /**
20873  * @class Roo.bootstrap.CheckBox
20874  * @extends Roo.bootstrap.Input
20875  * Bootstrap CheckBox class
20876  * 
20877  * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
20878  * @cfg {String} inputValue The value that should go into the generated input element's value when checked.
20879  * @cfg {String} boxLabel The text that appears beside the checkbox
20880  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the checkbox
20881  * @cfg {Boolean} checked initnal the element
20882  * @cfg {Boolean} inline inline the element (default false)
20883  * @cfg {String} groupId the checkbox group id // normal just use for checkbox
20884  * @cfg {String} tooltip label tooltip
20885  * 
20886  * @constructor
20887  * Create a new CheckBox
20888  * @param {Object} config The config object
20889  */
20890
20891 Roo.bootstrap.CheckBox = function(config){
20892     Roo.bootstrap.CheckBox.superclass.constructor.call(this, config);
20893    
20894     this.addEvents({
20895         /**
20896         * @event check
20897         * Fires when the element is checked or unchecked.
20898         * @param {Roo.bootstrap.CheckBox} this This input
20899         * @param {Boolean} checked The new checked value
20900         */
20901        check : true,
20902        /**
20903         * @event click
20904         * Fires when the element is click.
20905         * @param {Roo.bootstrap.CheckBox} this This input
20906         */
20907        click : true
20908     });
20909     
20910 };
20911
20912 Roo.extend(Roo.bootstrap.CheckBox, Roo.bootstrap.Input,  {
20913   
20914     inputType: 'checkbox',
20915     inputValue: 1,
20916     valueOff: 0,
20917     boxLabel: false,
20918     checked: false,
20919     weight : false,
20920     inline: false,
20921     tooltip : '',
20922     
20923     // checkbox success does not make any sense really.. 
20924     invalidClass : "",
20925     validClass : "",
20926     
20927     
20928     getAutoCreate : function()
20929     {
20930         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
20931         
20932         var id = Roo.id();
20933         
20934         var cfg = {};
20935         
20936         cfg.cls = 'form-group ' + this.inputType; //input-group
20937         
20938         if(this.inline){
20939             cfg.cls += ' ' + this.inputType + '-inline';
20940         }
20941         
20942         var input =  {
20943             tag: 'input',
20944             id : id,
20945             type : this.inputType,
20946             value : this.inputValue,
20947             cls : 'roo-' + this.inputType, //'form-box',
20948             placeholder : this.placeholder || ''
20949             
20950         };
20951         
20952         if(this.inputType != 'radio'){
20953             var hidden =  {
20954                 tag: 'input',
20955                 type : 'hidden',
20956                 cls : 'roo-hidden-value',
20957                 value : this.checked ? this.inputValue : this.valueOff
20958             };
20959         }
20960         
20961             
20962         if (this.weight) { // Validity check?
20963             cfg.cls += " " + this.inputType + "-" + this.weight;
20964         }
20965         
20966         if (this.disabled) {
20967             input.disabled=true;
20968         }
20969         
20970         if(this.checked){
20971             input.checked = this.checked;
20972         }
20973         
20974         if (this.name) {
20975             
20976             input.name = this.name;
20977             
20978             if(this.inputType != 'radio'){
20979                 hidden.name = this.name;
20980                 input.name = '_hidden_' + this.name;
20981             }
20982         }
20983         
20984         if (this.size) {
20985             input.cls += ' input-' + this.size;
20986         }
20987         
20988         var settings=this;
20989         
20990         ['xs','sm','md','lg'].map(function(size){
20991             if (settings[size]) {
20992                 cfg.cls += ' col-' + size + '-' + settings[size];
20993             }
20994         });
20995         
20996         var inputblock = input;
20997          
20998         if (this.before || this.after) {
20999             
21000             inputblock = {
21001                 cls : 'input-group',
21002                 cn :  [] 
21003             };
21004             
21005             if (this.before) {
21006                 inputblock.cn.push({
21007                     tag :'span',
21008                     cls : 'input-group-addon',
21009                     html : this.before
21010                 });
21011             }
21012             
21013             inputblock.cn.push(input);
21014             
21015             if(this.inputType != 'radio'){
21016                 inputblock.cn.push(hidden);
21017             }
21018             
21019             if (this.after) {
21020                 inputblock.cn.push({
21021                     tag :'span',
21022                     cls : 'input-group-addon',
21023                     html : this.after
21024                 });
21025             }
21026             
21027         }
21028         var boxLabelCfg = false;
21029         
21030         if(this.boxLabel){
21031            
21032             boxLabelCfg = {
21033                 tag: 'label',
21034                 //'for': id, // box label is handled by onclick - so no for...
21035                 cls: 'box-label',
21036                 html: this.boxLabel
21037             };
21038             if(this.tooltip){
21039                 boxLabelCfg.tooltip = this.tooltip;
21040             }
21041              
21042         }
21043         
21044         
21045         if (align ==='left' && this.fieldLabel.length) {
21046 //                Roo.log("left and has label");
21047             cfg.cn = [
21048                 {
21049                     tag: 'label',
21050                     'for' :  id,
21051                     cls : 'control-label',
21052                     html : this.fieldLabel
21053                 },
21054                 {
21055                     cls : "", 
21056                     cn: [
21057                         inputblock
21058                     ]
21059                 }
21060             ];
21061             
21062             if (boxLabelCfg) {
21063                 cfg.cn[1].cn.push(boxLabelCfg);
21064             }
21065             
21066             if(this.labelWidth > 12){
21067                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
21068             }
21069             
21070             if(this.labelWidth < 13 && this.labelmd == 0){
21071                 this.labelmd = this.labelWidth;
21072             }
21073             
21074             if(this.labellg > 0){
21075                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
21076                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
21077             }
21078             
21079             if(this.labelmd > 0){
21080                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
21081                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
21082             }
21083             
21084             if(this.labelsm > 0){
21085                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
21086                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
21087             }
21088             
21089             if(this.labelxs > 0){
21090                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
21091                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
21092             }
21093             
21094         } else if ( this.fieldLabel.length) {
21095 //                Roo.log(" label");
21096                 cfg.cn = [
21097                    
21098                     {
21099                         tag: this.boxLabel ? 'span' : 'label',
21100                         'for': id,
21101                         cls: 'control-label box-input-label',
21102                         //cls : 'input-group-addon',
21103                         html : this.fieldLabel
21104                     },
21105                     
21106                     inputblock
21107                     
21108                 ];
21109                 if (boxLabelCfg) {
21110                     cfg.cn.push(boxLabelCfg);
21111                 }
21112
21113         } else {
21114             
21115 //                Roo.log(" no label && no align");
21116                 cfg.cn = [  inputblock ] ;
21117                 if (boxLabelCfg) {
21118                     cfg.cn.push(boxLabelCfg);
21119                 }
21120
21121                 
21122         }
21123         
21124        
21125         
21126         if(this.inputType != 'radio'){
21127             cfg.cn.push(hidden);
21128         }
21129         
21130         return cfg;
21131         
21132     },
21133     
21134     /**
21135      * return the real input element.
21136      */
21137     inputEl: function ()
21138     {
21139         return this.el.select('input.roo-' + this.inputType,true).first();
21140     },
21141     hiddenEl: function ()
21142     {
21143         return this.el.select('input.roo-hidden-value',true).first();
21144     },
21145     
21146     labelEl: function()
21147     {
21148         return this.el.select('label.control-label',true).first();
21149     },
21150     /* depricated... */
21151     
21152     label: function()
21153     {
21154         return this.labelEl();
21155     },
21156     
21157     boxLabelEl: function()
21158     {
21159         return this.el.select('label.box-label',true).first();
21160     },
21161     
21162     initEvents : function()
21163     {
21164 //        Roo.bootstrap.CheckBox.superclass.initEvents.call(this);
21165         
21166         this.inputEl().on('click', this.onClick,  this);
21167         
21168         if (this.boxLabel) { 
21169             this.el.select('label.box-label',true).first().on('click', this.onClick,  this);
21170         }
21171         
21172         this.startValue = this.getValue();
21173         
21174         if(this.groupId){
21175             Roo.bootstrap.CheckBox.register(this);
21176         }
21177     },
21178     
21179     onClick : function(e)
21180     {   
21181         if(this.fireEvent('click', this, e) !== false){
21182             this.setChecked(!this.checked);
21183         }
21184         
21185     },
21186     
21187     setChecked : function(state,suppressEvent)
21188     {
21189         this.startValue = this.getValue();
21190
21191         if(this.inputType == 'radio'){
21192             
21193             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21194                 e.dom.checked = false;
21195             });
21196             
21197             this.inputEl().dom.checked = true;
21198             
21199             this.inputEl().dom.value = this.inputValue;
21200             
21201             if(suppressEvent !== true){
21202                 this.fireEvent('check', this, true);
21203             }
21204             
21205             this.validate();
21206             
21207             return;
21208         }
21209         
21210         this.checked = state;
21211         
21212         this.inputEl().dom.checked = state;
21213         
21214         
21215         this.hiddenEl().dom.value = state ? this.inputValue : this.valueOff;
21216         
21217         if(suppressEvent !== true){
21218             this.fireEvent('check', this, state);
21219         }
21220         
21221         this.validate();
21222     },
21223     
21224     getValue : function()
21225     {
21226         if(this.inputType == 'radio'){
21227             return this.getGroupValue();
21228         }
21229         
21230         return this.hiddenEl().dom.value;
21231         
21232     },
21233     
21234     getGroupValue : function()
21235     {
21236         if(typeof(this.el.up('form').child('input[name='+this.name+']:checked', true)) == 'undefined'){
21237             return '';
21238         }
21239         
21240         return this.el.up('form').child('input[name='+this.name+']:checked', true).value;
21241     },
21242     
21243     setValue : function(v,suppressEvent)
21244     {
21245         if(this.inputType == 'radio'){
21246             this.setGroupValue(v, suppressEvent);
21247             return;
21248         }
21249         
21250         this.setChecked(((typeof(v) == 'undefined') ? this.checked : (String(v) === String(this.inputValue))), suppressEvent);
21251         
21252         this.validate();
21253     },
21254     
21255     setGroupValue : function(v, suppressEvent)
21256     {
21257         this.startValue = this.getValue();
21258         
21259         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21260             e.dom.checked = false;
21261             
21262             if(e.dom.value == v){
21263                 e.dom.checked = true;
21264             }
21265         });
21266         
21267         if(suppressEvent !== true){
21268             this.fireEvent('check', this, true);
21269         }
21270
21271         this.validate();
21272         
21273         return;
21274     },
21275     
21276     validate : function()
21277     {
21278         if(this.getVisibilityEl().hasClass('hidden')){
21279             return true;
21280         }
21281         
21282         if(
21283                 this.disabled || 
21284                 (this.inputType == 'radio' && this.validateRadio()) ||
21285                 (this.inputType == 'checkbox' && this.validateCheckbox())
21286         ){
21287             this.markValid();
21288             return true;
21289         }
21290         
21291         this.markInvalid();
21292         return false;
21293     },
21294     
21295     validateRadio : function()
21296     {
21297         if(this.getVisibilityEl().hasClass('hidden')){
21298             return true;
21299         }
21300         
21301         if(this.allowBlank){
21302             return true;
21303         }
21304         
21305         var valid = false;
21306         
21307         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21308             if(!e.dom.checked){
21309                 return;
21310             }
21311             
21312             valid = true;
21313             
21314             return false;
21315         });
21316         
21317         return valid;
21318     },
21319     
21320     validateCheckbox : function()
21321     {
21322         if(!this.groupId){
21323             return (this.getValue() == this.inputValue || this.allowBlank) ? true : false;
21324             //return (this.getValue() == this.inputValue) ? true : false;
21325         }
21326         
21327         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21328         
21329         if(!group){
21330             return false;
21331         }
21332         
21333         var r = false;
21334         
21335         for(var i in group){
21336             if(group[i].el.isVisible(true)){
21337                 r = false;
21338                 break;
21339             }
21340             
21341             r = true;
21342         }
21343         
21344         for(var i in group){
21345             if(r){
21346                 break;
21347             }
21348             
21349             r = (group[i].getValue() == group[i].inputValue) ? true : false;
21350         }
21351         
21352         return r;
21353     },
21354     
21355     /**
21356      * Mark this field as valid
21357      */
21358     markValid : function()
21359     {
21360         var _this = this;
21361         
21362         this.fireEvent('valid', this);
21363         
21364         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21365         
21366         if(this.groupId){
21367             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21368         }
21369         
21370         if(label){
21371             label.markValid();
21372         }
21373
21374         if(this.inputType == 'radio'){
21375             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21376                 var fg = e.findParent('.form-group', false, true);
21377                 if (Roo.bootstrap.version == 3) {
21378                     fg.removeClass([_this.invalidClass, _this.validClass]);
21379                     fg.addClass(_this.validClass);
21380                 } else {
21381                     fg.removeClass(['is-valid', 'is-invalid']);
21382                     fg.addClass('is-valid');
21383                 }
21384             });
21385             
21386             return;
21387         }
21388
21389         if(!this.groupId){
21390             var fg = this.el.findParent('.form-group', false, true);
21391             if (Roo.bootstrap.version == 3) {
21392                 fg.removeClass([this.invalidClass, this.validClass]);
21393                 fg.addClass(this.validClass);
21394             } else {
21395                 fg.removeClass(['is-valid', 'is-invalid']);
21396                 fg.addClass('is-valid');
21397             }
21398             return;
21399         }
21400         
21401         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21402         
21403         if(!group){
21404             return;
21405         }
21406         
21407         for(var i in group){
21408             var fg = group[i].el.findParent('.form-group', false, true);
21409             if (Roo.bootstrap.version == 3) {
21410                 fg.removeClass([this.invalidClass, this.validClass]);
21411                 fg.addClass(this.validClass);
21412             } else {
21413                 fg.removeClass(['is-valid', 'is-invalid']);
21414                 fg.addClass('is-valid');
21415             }
21416         }
21417     },
21418     
21419      /**
21420      * Mark this field as invalid
21421      * @param {String} msg The validation message
21422      */
21423     markInvalid : function(msg)
21424     {
21425         if(this.allowBlank){
21426             return;
21427         }
21428         
21429         var _this = this;
21430         
21431         this.fireEvent('invalid', this, msg);
21432         
21433         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21434         
21435         if(this.groupId){
21436             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21437         }
21438         
21439         if(label){
21440             label.markInvalid();
21441         }
21442             
21443         if(this.inputType == 'radio'){
21444             
21445             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21446                 var fg = e.findParent('.form-group', false, true);
21447                 if (Roo.bootstrap.version == 3) {
21448                     fg.removeClass([_this.invalidClass, _this.validClass]);
21449                     fg.addClass(_this.invalidClass);
21450                 } else {
21451                     fg.removeClass(['is-invalid', 'is-valid']);
21452                     fg.addClass('is-invalid');
21453                 }
21454             });
21455             
21456             return;
21457         }
21458         
21459         if(!this.groupId){
21460             var fg = this.el.findParent('.form-group', false, true);
21461             if (Roo.bootstrap.version == 3) {
21462                 fg.removeClass([_this.invalidClass, _this.validClass]);
21463                 fg.addClass(_this.invalidClass);
21464             } else {
21465                 fg.removeClass(['is-invalid', 'is-valid']);
21466                 fg.addClass('is-invalid');
21467             }
21468             return;
21469         }
21470         
21471         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21472         
21473         if(!group){
21474             return;
21475         }
21476         
21477         for(var i in group){
21478             var fg = group[i].el.findParent('.form-group', false, true);
21479             if (Roo.bootstrap.version == 3) {
21480                 fg.removeClass([_this.invalidClass, _this.validClass]);
21481                 fg.addClass(_this.invalidClass);
21482             } else {
21483                 fg.removeClass(['is-invalid', 'is-valid']);
21484                 fg.addClass('is-invalid');
21485             }
21486         }
21487         
21488     },
21489     
21490     clearInvalid : function()
21491     {
21492         Roo.bootstrap.Input.prototype.clearInvalid.call(this);
21493         
21494         // this.el.findParent('.form-group', false, true).removeClass([this.invalidClass, this.validClass]);
21495         
21496         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21497         
21498         if (label && label.iconEl) {
21499             label.iconEl.removeClass([ label.validClass, label.invalidClass ]);
21500             label.iconEl.removeClass(['is-invalid', 'is-valid']);
21501         }
21502     },
21503     
21504     disable : function()
21505     {
21506         if(this.inputType != 'radio'){
21507             Roo.bootstrap.CheckBox.superclass.disable.call(this);
21508             return;
21509         }
21510         
21511         var _this = this;
21512         
21513         if(this.rendered){
21514             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21515                 _this.getActionEl().addClass(this.disabledClass);
21516                 e.dom.disabled = true;
21517             });
21518         }
21519         
21520         this.disabled = true;
21521         this.fireEvent("disable", this);
21522         return this;
21523     },
21524
21525     enable : function()
21526     {
21527         if(this.inputType != 'radio'){
21528             Roo.bootstrap.CheckBox.superclass.enable.call(this);
21529             return;
21530         }
21531         
21532         var _this = this;
21533         
21534         if(this.rendered){
21535             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21536                 _this.getActionEl().removeClass(this.disabledClass);
21537                 e.dom.disabled = false;
21538             });
21539         }
21540         
21541         this.disabled = false;
21542         this.fireEvent("enable", this);
21543         return this;
21544     },
21545     
21546     setBoxLabel : function(v)
21547     {
21548         this.boxLabel = v;
21549         
21550         if(this.rendered){
21551             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21552         }
21553     }
21554
21555 });
21556
21557 Roo.apply(Roo.bootstrap.CheckBox, {
21558     
21559     groups: {},
21560     
21561      /**
21562     * register a CheckBox Group
21563     * @param {Roo.bootstrap.CheckBox} the CheckBox to add
21564     */
21565     register : function(checkbox)
21566     {
21567         if(typeof(this.groups[checkbox.groupId]) == 'undefined'){
21568             this.groups[checkbox.groupId] = {};
21569         }
21570         
21571         if(this.groups[checkbox.groupId].hasOwnProperty(checkbox.name)){
21572             return;
21573         }
21574         
21575         this.groups[checkbox.groupId][checkbox.name] = checkbox;
21576         
21577     },
21578     /**
21579     * fetch a CheckBox Group based on the group ID
21580     * @param {string} the group ID
21581     * @returns {Roo.bootstrap.CheckBox} the CheckBox group
21582     */
21583     get: function(groupId) {
21584         if (typeof(this.groups[groupId]) == 'undefined') {
21585             return false;
21586         }
21587         
21588         return this.groups[groupId] ;
21589     }
21590     
21591     
21592 });
21593 /*
21594  * - LGPL
21595  *
21596  * RadioItem
21597  * 
21598  */
21599
21600 /**
21601  * @class Roo.bootstrap.Radio
21602  * @extends Roo.bootstrap.Component
21603  * Bootstrap Radio class
21604  * @cfg {String} boxLabel - the label associated
21605  * @cfg {String} value - the value of radio
21606  * 
21607  * @constructor
21608  * Create a new Radio
21609  * @param {Object} config The config object
21610  */
21611 Roo.bootstrap.Radio = function(config){
21612     Roo.bootstrap.Radio.superclass.constructor.call(this, config);
21613     
21614 };
21615
21616 Roo.extend(Roo.bootstrap.Radio, Roo.bootstrap.Component, {
21617     
21618     boxLabel : '',
21619     
21620     value : '',
21621     
21622     getAutoCreate : function()
21623     {
21624         var cfg = {
21625             tag : 'div',
21626             cls : 'form-group radio',
21627             cn : [
21628                 {
21629                     tag : 'label',
21630                     cls : 'box-label',
21631                     html : this.boxLabel
21632                 }
21633             ]
21634         };
21635         
21636         return cfg;
21637     },
21638     
21639     initEvents : function() 
21640     {
21641         this.parent().register(this);
21642         
21643         this.el.on('click', this.onClick, this);
21644         
21645     },
21646     
21647     onClick : function(e)
21648     {
21649         if(this.parent().fireEvent('click', this.parent(), this, e) !== false){
21650             this.setChecked(true);
21651         }
21652     },
21653     
21654     setChecked : function(state, suppressEvent)
21655     {
21656         this.parent().setValue(this.value, suppressEvent);
21657         
21658     },
21659     
21660     setBoxLabel : function(v)
21661     {
21662         this.boxLabel = v;
21663         
21664         if(this.rendered){
21665             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21666         }
21667     }
21668     
21669 });
21670  
21671
21672  /*
21673  * - LGPL
21674  *
21675  * Input
21676  * 
21677  */
21678
21679 /**
21680  * @class Roo.bootstrap.SecurePass
21681  * @extends Roo.bootstrap.Input
21682  * Bootstrap SecurePass class
21683  *
21684  * 
21685  * @constructor
21686  * Create a new SecurePass
21687  * @param {Object} config The config object
21688  */
21689  
21690 Roo.bootstrap.SecurePass = function (config) {
21691     // these go here, so the translation tool can replace them..
21692     this.errors = {
21693         PwdEmpty: "Please type a password, and then retype it to confirm.",
21694         PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21695         PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21696         PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21697         IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21698         FNInPwd: "Your password can't contain your first name. Please type a different password.",
21699         LNInPwd: "Your password can't contain your last name. Please type a different password.",
21700         TooWeak: "Your password is Too Weak."
21701     },
21702     this.meterLabel = "Password strength:";
21703     this.pwdStrengths = ["Too Weak", "Weak", "Medium", "Strong"];
21704     this.meterClass = [
21705         "roo-password-meter-tooweak", 
21706         "roo-password-meter-weak", 
21707         "roo-password-meter-medium", 
21708         "roo-password-meter-strong", 
21709         "roo-password-meter-grey"
21710     ];
21711     
21712     this.errors = {};
21713     
21714     Roo.bootstrap.SecurePass.superclass.constructor.call(this, config);
21715 }
21716
21717 Roo.extend(Roo.bootstrap.SecurePass, Roo.bootstrap.Input, {
21718     /**
21719      * @cfg {String/Object} errors A Error spec, or true for a default spec (defaults to
21720      * {
21721      *  PwdEmpty: "Please type a password, and then retype it to confirm.",
21722      *  PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21723      *  PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21724      *  PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21725      *  IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21726      *  FNInPwd: "Your password can't contain your first name. Please type a different password.",
21727      *  LNInPwd: "Your password can't contain your last name. Please type a different password."
21728      * })
21729      */
21730     // private
21731     
21732     meterWidth: 300,
21733     errorMsg :'',    
21734     errors: false,
21735     imageRoot: '/',
21736     /**
21737      * @cfg {String/Object} Label for the strength meter (defaults to
21738      * 'Password strength:')
21739      */
21740     // private
21741     meterLabel: '',
21742     /**
21743      * @cfg {String/Object} pwdStrengths A pwdStrengths spec, or true for a default spec (defaults to
21744      * ['Weak', 'Medium', 'Strong'])
21745      */
21746     // private    
21747     pwdStrengths: false,    
21748     // private
21749     strength: 0,
21750     // private
21751     _lastPwd: null,
21752     // private
21753     kCapitalLetter: 0,
21754     kSmallLetter: 1,
21755     kDigit: 2,
21756     kPunctuation: 3,
21757     
21758     insecure: false,
21759     // private
21760     initEvents: function ()
21761     {
21762         Roo.bootstrap.SecurePass.superclass.initEvents.call(this);
21763
21764         if (this.el.is('input[type=password]') && Roo.isSafari) {
21765             this.el.on('keydown', this.SafariOnKeyDown, this);
21766         }
21767
21768         this.el.on('keyup', this.checkStrength, this, {buffer: 50});
21769     },
21770     // private
21771     onRender: function (ct, position)
21772     {
21773         Roo.bootstrap.SecurePass.superclass.onRender.call(this, ct, position);
21774         this.wrap = this.el.wrap({cls: 'x-form-field-wrap'});
21775         this.trigger = this.wrap.createChild({tag: 'div', cls: 'StrengthMeter ' + this.triggerClass});
21776
21777         this.trigger.createChild({
21778                    cn: [
21779                     {
21780                     //id: 'PwdMeter',
21781                     tag: 'div',
21782                     cls: 'roo-password-meter-grey col-xs-12',
21783                     style: {
21784                         //width: 0,
21785                         //width: this.meterWidth + 'px'                                                
21786                         }
21787                     },
21788                     {                            
21789                          cls: 'roo-password-meter-text'                          
21790                     }
21791                 ]            
21792         });
21793
21794          
21795         if (this.hideTrigger) {
21796             this.trigger.setDisplayed(false);
21797         }
21798         this.setSize(this.width || '', this.height || '');
21799     },
21800     // private
21801     onDestroy: function ()
21802     {
21803         if (this.trigger) {
21804             this.trigger.removeAllListeners();
21805             this.trigger.remove();
21806         }
21807         if (this.wrap) {
21808             this.wrap.remove();
21809         }
21810         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
21811     },
21812     // private
21813     checkStrength: function ()
21814     {
21815         var pwd = this.inputEl().getValue();
21816         if (pwd == this._lastPwd) {
21817             return;
21818         }
21819
21820         var strength;
21821         if (this.ClientSideStrongPassword(pwd)) {
21822             strength = 3;
21823         } else if (this.ClientSideMediumPassword(pwd)) {
21824             strength = 2;
21825         } else if (this.ClientSideWeakPassword(pwd)) {
21826             strength = 1;
21827         } else {
21828             strength = 0;
21829         }
21830         
21831         Roo.log('strength1: ' + strength);
21832         
21833         //var pm = this.trigger.child('div/div/div').dom;
21834         var pm = this.trigger.child('div/div');
21835         pm.removeClass(this.meterClass);
21836         pm.addClass(this.meterClass[strength]);
21837                 
21838         
21839         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21840                 
21841         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21842         
21843         this._lastPwd = pwd;
21844     },
21845     reset: function ()
21846     {
21847         Roo.bootstrap.SecurePass.superclass.reset.call(this);
21848         
21849         this._lastPwd = '';
21850         
21851         var pm = this.trigger.child('div/div');
21852         pm.removeClass(this.meterClass);
21853         pm.addClass('roo-password-meter-grey');        
21854         
21855         
21856         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21857         
21858         pt.innerHTML = '';
21859         this.inputEl().dom.type='password';
21860     },
21861     // private
21862     validateValue: function (value)
21863     {
21864         
21865         if (!Roo.bootstrap.SecurePass.superclass.validateValue.call(this, value)) {
21866             return false;
21867         }
21868         if (value.length == 0) {
21869             if (this.allowBlank) {
21870                 this.clearInvalid();
21871                 return true;
21872             }
21873
21874             this.markInvalid(this.errors.PwdEmpty);
21875             this.errorMsg = this.errors.PwdEmpty;
21876             return false;
21877         }
21878         
21879         if(this.insecure){
21880             return true;
21881         }
21882         
21883         if ('[\x21-\x7e]*'.match(value)) {
21884             this.markInvalid(this.errors.PwdBadChar);
21885             this.errorMsg = this.errors.PwdBadChar;
21886             return false;
21887         }
21888         if (value.length < 6) {
21889             this.markInvalid(this.errors.PwdShort);
21890             this.errorMsg = this.errors.PwdShort;
21891             return false;
21892         }
21893         if (value.length > 16) {
21894             this.markInvalid(this.errors.PwdLong);
21895             this.errorMsg = this.errors.PwdLong;
21896             return false;
21897         }
21898         var strength;
21899         if (this.ClientSideStrongPassword(value)) {
21900             strength = 3;
21901         } else if (this.ClientSideMediumPassword(value)) {
21902             strength = 2;
21903         } else if (this.ClientSideWeakPassword(value)) {
21904             strength = 1;
21905         } else {
21906             strength = 0;
21907         }
21908
21909         
21910         if (strength < 2) {
21911             //this.markInvalid(this.errors.TooWeak);
21912             this.errorMsg = this.errors.TooWeak;
21913             //return false;
21914         }
21915         
21916         
21917         console.log('strength2: ' + strength);
21918         
21919         //var pm = this.trigger.child('div/div/div').dom;
21920         
21921         var pm = this.trigger.child('div/div');
21922         pm.removeClass(this.meterClass);
21923         pm.addClass(this.meterClass[strength]);
21924                 
21925         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21926                 
21927         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21928         
21929         this.errorMsg = ''; 
21930         return true;
21931     },
21932     // private
21933     CharacterSetChecks: function (type)
21934     {
21935         this.type = type;
21936         this.fResult = false;
21937     },
21938     // private
21939     isctype: function (character, type)
21940     {
21941         switch (type) {  
21942             case this.kCapitalLetter:
21943                 if (character >= 'A' && character <= 'Z') {
21944                     return true;
21945                 }
21946                 break;
21947             
21948             case this.kSmallLetter:
21949                 if (character >= 'a' && character <= 'z') {
21950                     return true;
21951                 }
21952                 break;
21953             
21954             case this.kDigit:
21955                 if (character >= '0' && character <= '9') {
21956                     return true;
21957                 }
21958                 break;
21959             
21960             case this.kPunctuation:
21961                 if ('!@#$%^&*()_+-=\'";:[{]}|.>,</?`~'.indexOf(character) >= 0) {
21962                     return true;
21963                 }
21964                 break;
21965             
21966             default:
21967                 return false;
21968         }
21969
21970     },
21971     // private
21972     IsLongEnough: function (pwd, size)
21973     {
21974         return !(pwd == null || isNaN(size) || pwd.length < size);
21975     },
21976     // private
21977     SpansEnoughCharacterSets: function (word, nb)
21978     {
21979         if (!this.IsLongEnough(word, nb))
21980         {
21981             return false;
21982         }
21983
21984         var characterSetChecks = new Array(
21985             new this.CharacterSetChecks(this.kCapitalLetter), new this.CharacterSetChecks(this.kSmallLetter),
21986             new this.CharacterSetChecks(this.kDigit), new this.CharacterSetChecks(this.kPunctuation)
21987         );
21988         
21989         for (var index = 0; index < word.length; ++index) {
21990             for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
21991                 if (!characterSetChecks[nCharSet].fResult && this.isctype(word.charAt(index), characterSetChecks[nCharSet].type)) {
21992                     characterSetChecks[nCharSet].fResult = true;
21993                     break;
21994                 }
21995             }
21996         }
21997
21998         var nCharSets = 0;
21999         for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
22000             if (characterSetChecks[nCharSet].fResult) {
22001                 ++nCharSets;
22002             }
22003         }
22004
22005         if (nCharSets < nb) {
22006             return false;
22007         }
22008         return true;
22009     },
22010     // private
22011     ClientSideStrongPassword: function (pwd)
22012     {
22013         return this.IsLongEnough(pwd, 8) && this.SpansEnoughCharacterSets(pwd, 3);
22014     },
22015     // private
22016     ClientSideMediumPassword: function (pwd)
22017     {
22018         return this.IsLongEnough(pwd, 7) && this.SpansEnoughCharacterSets(pwd, 2);
22019     },
22020     // private
22021     ClientSideWeakPassword: function (pwd)
22022     {
22023         return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
22024     }
22025           
22026 })//<script type="text/javascript">
22027
22028 /*
22029  * Based  Ext JS Library 1.1.1
22030  * Copyright(c) 2006-2007, Ext JS, LLC.
22031  * LGPL
22032  *
22033  */
22034  
22035 /**
22036  * @class Roo.HtmlEditorCore
22037  * @extends Roo.Component
22038  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
22039  *
22040  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
22041  */
22042
22043 Roo.HtmlEditorCore = function(config){
22044     
22045     
22046     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
22047     
22048     
22049     this.addEvents({
22050         /**
22051          * @event initialize
22052          * Fires when the editor is fully initialized (including the iframe)
22053          * @param {Roo.HtmlEditorCore} this
22054          */
22055         initialize: true,
22056         /**
22057          * @event activate
22058          * Fires when the editor is first receives the focus. Any insertion must wait
22059          * until after this event.
22060          * @param {Roo.HtmlEditorCore} this
22061          */
22062         activate: true,
22063          /**
22064          * @event beforesync
22065          * Fires before the textarea is updated with content from the editor iframe. Return false
22066          * to cancel the sync.
22067          * @param {Roo.HtmlEditorCore} this
22068          * @param {String} html
22069          */
22070         beforesync: true,
22071          /**
22072          * @event beforepush
22073          * Fires before the iframe editor is updated with content from the textarea. Return false
22074          * to cancel the push.
22075          * @param {Roo.HtmlEditorCore} this
22076          * @param {String} html
22077          */
22078         beforepush: true,
22079          /**
22080          * @event sync
22081          * Fires when the textarea is updated with content from the editor iframe.
22082          * @param {Roo.HtmlEditorCore} this
22083          * @param {String} html
22084          */
22085         sync: true,
22086          /**
22087          * @event push
22088          * Fires when the iframe editor is updated with content from the textarea.
22089          * @param {Roo.HtmlEditorCore} this
22090          * @param {String} html
22091          */
22092         push: true,
22093         
22094         /**
22095          * @event editorevent
22096          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
22097          * @param {Roo.HtmlEditorCore} this
22098          */
22099         editorevent: true
22100         
22101     });
22102     
22103     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
22104     
22105     // defaults : white / black...
22106     this.applyBlacklists();
22107     
22108     
22109     
22110 };
22111
22112
22113 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
22114
22115
22116      /**
22117      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
22118      */
22119     
22120     owner : false,
22121     
22122      /**
22123      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
22124      *                        Roo.resizable.
22125      */
22126     resizable : false,
22127      /**
22128      * @cfg {Number} height (in pixels)
22129      */   
22130     height: 300,
22131    /**
22132      * @cfg {Number} width (in pixels)
22133      */   
22134     width: 500,
22135     
22136     /**
22137      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
22138      * 
22139      */
22140     stylesheets: false,
22141     
22142     // id of frame..
22143     frameId: false,
22144     
22145     // private properties
22146     validationEvent : false,
22147     deferHeight: true,
22148     initialized : false,
22149     activated : false,
22150     sourceEditMode : false,
22151     onFocus : Roo.emptyFn,
22152     iframePad:3,
22153     hideMode:'offsets',
22154     
22155     clearUp: true,
22156     
22157     // blacklist + whitelisted elements..
22158     black: false,
22159     white: false,
22160      
22161     bodyCls : '',
22162
22163     /**
22164      * Protected method that will not generally be called directly. It
22165      * is called when the editor initializes the iframe with HTML contents. Override this method if you
22166      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
22167      */
22168     getDocMarkup : function(){
22169         // body styles..
22170         var st = '';
22171         
22172         // inherit styels from page...?? 
22173         if (this.stylesheets === false) {
22174             
22175             Roo.get(document.head).select('style').each(function(node) {
22176                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22177             });
22178             
22179             Roo.get(document.head).select('link').each(function(node) { 
22180                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22181             });
22182             
22183         } else if (!this.stylesheets.length) {
22184                 // simple..
22185                 st = '<style type="text/css">' +
22186                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22187                    '</style>';
22188         } else { 
22189             st = '<style type="text/css">' +
22190                     this.stylesheets +
22191                 '</style>';
22192         }
22193         
22194         st +=  '<style type="text/css">' +
22195             'IMG { cursor: pointer } ' +
22196         '</style>';
22197
22198         var cls = 'roo-htmleditor-body';
22199         
22200         if(this.bodyCls.length){
22201             cls += ' ' + this.bodyCls;
22202         }
22203         
22204         return '<html><head>' + st  +
22205             //<style type="text/css">' +
22206             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22207             //'</style>' +
22208             ' </head><body class="' +  cls + '"></body></html>';
22209     },
22210
22211     // private
22212     onRender : function(ct, position)
22213     {
22214         var _t = this;
22215         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
22216         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
22217         
22218         
22219         this.el.dom.style.border = '0 none';
22220         this.el.dom.setAttribute('tabIndex', -1);
22221         this.el.addClass('x-hidden hide');
22222         
22223         
22224         
22225         if(Roo.isIE){ // fix IE 1px bogus margin
22226             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
22227         }
22228        
22229         
22230         this.frameId = Roo.id();
22231         
22232          
22233         
22234         var iframe = this.owner.wrap.createChild({
22235             tag: 'iframe',
22236             cls: 'form-control', // bootstrap..
22237             id: this.frameId,
22238             name: this.frameId,
22239             frameBorder : 'no',
22240             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
22241         }, this.el
22242         );
22243         
22244         
22245         this.iframe = iframe.dom;
22246
22247          this.assignDocWin();
22248         
22249         this.doc.designMode = 'on';
22250        
22251         this.doc.open();
22252         this.doc.write(this.getDocMarkup());
22253         this.doc.close();
22254
22255         
22256         var task = { // must defer to wait for browser to be ready
22257             run : function(){
22258                 //console.log("run task?" + this.doc.readyState);
22259                 this.assignDocWin();
22260                 if(this.doc.body || this.doc.readyState == 'complete'){
22261                     try {
22262                         this.doc.designMode="on";
22263                     } catch (e) {
22264                         return;
22265                     }
22266                     Roo.TaskMgr.stop(task);
22267                     this.initEditor.defer(10, this);
22268                 }
22269             },
22270             interval : 10,
22271             duration: 10000,
22272             scope: this
22273         };
22274         Roo.TaskMgr.start(task);
22275
22276     },
22277
22278     // private
22279     onResize : function(w, h)
22280     {
22281          Roo.log('resize: ' +w + ',' + h );
22282         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
22283         if(!this.iframe){
22284             return;
22285         }
22286         if(typeof w == 'number'){
22287             
22288             this.iframe.style.width = w + 'px';
22289         }
22290         if(typeof h == 'number'){
22291             
22292             this.iframe.style.height = h + 'px';
22293             if(this.doc){
22294                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
22295             }
22296         }
22297         
22298     },
22299
22300     /**
22301      * Toggles the editor between standard and source edit mode.
22302      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
22303      */
22304     toggleSourceEdit : function(sourceEditMode){
22305         
22306         this.sourceEditMode = sourceEditMode === true;
22307         
22308         if(this.sourceEditMode){
22309  
22310             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
22311             
22312         }else{
22313             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
22314             //this.iframe.className = '';
22315             this.deferFocus();
22316         }
22317         //this.setSize(this.owner.wrap.getSize());
22318         //this.fireEvent('editmodechange', this, this.sourceEditMode);
22319     },
22320
22321     
22322   
22323
22324     /**
22325      * Protected method that will not generally be called directly. If you need/want
22326      * custom HTML cleanup, this is the method you should override.
22327      * @param {String} html The HTML to be cleaned
22328      * return {String} The cleaned HTML
22329      */
22330     cleanHtml : function(html){
22331         html = String(html);
22332         if(html.length > 5){
22333             if(Roo.isSafari){ // strip safari nonsense
22334                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
22335             }
22336         }
22337         if(html == '&nbsp;'){
22338             html = '';
22339         }
22340         return html;
22341     },
22342
22343     /**
22344      * HTML Editor -> Textarea
22345      * Protected method that will not generally be called directly. Syncs the contents
22346      * of the editor iframe with the textarea.
22347      */
22348     syncValue : function(){
22349         if(this.initialized){
22350             var bd = (this.doc.body || this.doc.documentElement);
22351             //this.cleanUpPaste(); -- this is done else where and causes havoc..
22352             var html = bd.innerHTML;
22353             if(Roo.isSafari){
22354                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
22355                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
22356                 if(m && m[1]){
22357                     html = '<div style="'+m[0]+'">' + html + '</div>';
22358                 }
22359             }
22360             html = this.cleanHtml(html);
22361             // fix up the special chars.. normaly like back quotes in word...
22362             // however we do not want to do this with chinese..
22363             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
22364                 
22365                 var cc = match.charCodeAt();
22366
22367                 // Get the character value, handling surrogate pairs
22368                 if (match.length == 2) {
22369                     // It's a surrogate pair, calculate the Unicode code point
22370                     var high = match.charCodeAt(0) - 0xD800;
22371                     var low  = match.charCodeAt(1) - 0xDC00;
22372                     cc = (high * 0x400) + low + 0x10000;
22373                 }  else if (
22374                     (cc >= 0x4E00 && cc < 0xA000 ) ||
22375                     (cc >= 0x3400 && cc < 0x4E00 ) ||
22376                     (cc >= 0xf900 && cc < 0xfb00 )
22377                 ) {
22378                         return match;
22379                 }  
22380          
22381                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
22382                 return "&#" + cc + ";";
22383                 
22384                 
22385             });
22386             
22387             
22388              
22389             if(this.owner.fireEvent('beforesync', this, html) !== false){
22390                 this.el.dom.value = html;
22391                 this.owner.fireEvent('sync', this, html);
22392             }
22393         }
22394     },
22395
22396     /**
22397      * Protected method that will not generally be called directly. Pushes the value of the textarea
22398      * into the iframe editor.
22399      */
22400     pushValue : function(){
22401         if(this.initialized){
22402             var v = this.el.dom.value.trim();
22403             
22404 //            if(v.length < 1){
22405 //                v = '&#160;';
22406 //            }
22407             
22408             if(this.owner.fireEvent('beforepush', this, v) !== false){
22409                 var d = (this.doc.body || this.doc.documentElement);
22410                 d.innerHTML = v;
22411                 this.cleanUpPaste();
22412                 this.el.dom.value = d.innerHTML;
22413                 this.owner.fireEvent('push', this, v);
22414             }
22415         }
22416     },
22417
22418     // private
22419     deferFocus : function(){
22420         this.focus.defer(10, this);
22421     },
22422
22423     // doc'ed in Field
22424     focus : function(){
22425         if(this.win && !this.sourceEditMode){
22426             this.win.focus();
22427         }else{
22428             this.el.focus();
22429         }
22430     },
22431     
22432     assignDocWin: function()
22433     {
22434         var iframe = this.iframe;
22435         
22436          if(Roo.isIE){
22437             this.doc = iframe.contentWindow.document;
22438             this.win = iframe.contentWindow;
22439         } else {
22440 //            if (!Roo.get(this.frameId)) {
22441 //                return;
22442 //            }
22443 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22444 //            this.win = Roo.get(this.frameId).dom.contentWindow;
22445             
22446             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
22447                 return;
22448             }
22449             
22450             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22451             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
22452         }
22453     },
22454     
22455     // private
22456     initEditor : function(){
22457         //console.log("INIT EDITOR");
22458         this.assignDocWin();
22459         
22460         
22461         
22462         this.doc.designMode="on";
22463         this.doc.open();
22464         this.doc.write(this.getDocMarkup());
22465         this.doc.close();
22466         
22467         var dbody = (this.doc.body || this.doc.documentElement);
22468         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
22469         // this copies styles from the containing element into thsi one..
22470         // not sure why we need all of this..
22471         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
22472         
22473         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
22474         //ss['background-attachment'] = 'fixed'; // w3c
22475         dbody.bgProperties = 'fixed'; // ie
22476         //Roo.DomHelper.applyStyles(dbody, ss);
22477         Roo.EventManager.on(this.doc, {
22478             //'mousedown': this.onEditorEvent,
22479             'mouseup': this.onEditorEvent,
22480             'dblclick': this.onEditorEvent,
22481             'click': this.onEditorEvent,
22482             'keyup': this.onEditorEvent,
22483             buffer:100,
22484             scope: this
22485         });
22486         if(Roo.isGecko){
22487             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
22488         }
22489         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
22490             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
22491         }
22492         this.initialized = true;
22493
22494         this.owner.fireEvent('initialize', this);
22495         this.pushValue();
22496     },
22497
22498     // private
22499     onDestroy : function(){
22500         
22501         
22502         
22503         if(this.rendered){
22504             
22505             //for (var i =0; i < this.toolbars.length;i++) {
22506             //    // fixme - ask toolbars for heights?
22507             //    this.toolbars[i].onDestroy();
22508            // }
22509             
22510             //this.wrap.dom.innerHTML = '';
22511             //this.wrap.remove();
22512         }
22513     },
22514
22515     // private
22516     onFirstFocus : function(){
22517         
22518         this.assignDocWin();
22519         
22520         
22521         this.activated = true;
22522          
22523     
22524         if(Roo.isGecko){ // prevent silly gecko errors
22525             this.win.focus();
22526             var s = this.win.getSelection();
22527             if(!s.focusNode || s.focusNode.nodeType != 3){
22528                 var r = s.getRangeAt(0);
22529                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
22530                 r.collapse(true);
22531                 this.deferFocus();
22532             }
22533             try{
22534                 this.execCmd('useCSS', true);
22535                 this.execCmd('styleWithCSS', false);
22536             }catch(e){}
22537         }
22538         this.owner.fireEvent('activate', this);
22539     },
22540
22541     // private
22542     adjustFont: function(btn){
22543         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
22544         //if(Roo.isSafari){ // safari
22545         //    adjust *= 2;
22546        // }
22547         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
22548         if(Roo.isSafari){ // safari
22549             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
22550             v =  (v < 10) ? 10 : v;
22551             v =  (v > 48) ? 48 : v;
22552             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
22553             
22554         }
22555         
22556         
22557         v = Math.max(1, v+adjust);
22558         
22559         this.execCmd('FontSize', v  );
22560     },
22561
22562     onEditorEvent : function(e)
22563     {
22564         this.owner.fireEvent('editorevent', this, e);
22565       //  this.updateToolbar();
22566         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
22567     },
22568
22569     insertTag : function(tg)
22570     {
22571         // could be a bit smarter... -> wrap the current selected tRoo..
22572         if (tg.toLowerCase() == 'span' ||
22573             tg.toLowerCase() == 'code' ||
22574             tg.toLowerCase() == 'sup' ||
22575             tg.toLowerCase() == 'sub' 
22576             ) {
22577             
22578             range = this.createRange(this.getSelection());
22579             var wrappingNode = this.doc.createElement(tg.toLowerCase());
22580             wrappingNode.appendChild(range.extractContents());
22581             range.insertNode(wrappingNode);
22582
22583             return;
22584             
22585             
22586             
22587         }
22588         this.execCmd("formatblock",   tg);
22589         
22590     },
22591     
22592     insertText : function(txt)
22593     {
22594         
22595         
22596         var range = this.createRange();
22597         range.deleteContents();
22598                //alert(Sender.getAttribute('label'));
22599                
22600         range.insertNode(this.doc.createTextNode(txt));
22601     } ,
22602     
22603      
22604
22605     /**
22606      * Executes a Midas editor command on the editor document and performs necessary focus and
22607      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
22608      * @param {String} cmd The Midas command
22609      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22610      */
22611     relayCmd : function(cmd, value){
22612         this.win.focus();
22613         this.execCmd(cmd, value);
22614         this.owner.fireEvent('editorevent', this);
22615         //this.updateToolbar();
22616         this.owner.deferFocus();
22617     },
22618
22619     /**
22620      * Executes a Midas editor command directly on the editor document.
22621      * For visual commands, you should use {@link #relayCmd} instead.
22622      * <b>This should only be called after the editor is initialized.</b>
22623      * @param {String} cmd The Midas command
22624      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22625      */
22626     execCmd : function(cmd, value){
22627         this.doc.execCommand(cmd, false, value === undefined ? null : value);
22628         this.syncValue();
22629     },
22630  
22631  
22632    
22633     /**
22634      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
22635      * to insert tRoo.
22636      * @param {String} text | dom node.. 
22637      */
22638     insertAtCursor : function(text)
22639     {
22640         
22641         if(!this.activated){
22642             return;
22643         }
22644         /*
22645         if(Roo.isIE){
22646             this.win.focus();
22647             var r = this.doc.selection.createRange();
22648             if(r){
22649                 r.collapse(true);
22650                 r.pasteHTML(text);
22651                 this.syncValue();
22652                 this.deferFocus();
22653             
22654             }
22655             return;
22656         }
22657         */
22658         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
22659             this.win.focus();
22660             
22661             
22662             // from jquery ui (MIT licenced)
22663             var range, node;
22664             var win = this.win;
22665             
22666             if (win.getSelection && win.getSelection().getRangeAt) {
22667                 range = win.getSelection().getRangeAt(0);
22668                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
22669                 range.insertNode(node);
22670             } else if (win.document.selection && win.document.selection.createRange) {
22671                 // no firefox support
22672                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22673                 win.document.selection.createRange().pasteHTML(txt);
22674             } else {
22675                 // no firefox support
22676                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22677                 this.execCmd('InsertHTML', txt);
22678             } 
22679             
22680             this.syncValue();
22681             
22682             this.deferFocus();
22683         }
22684     },
22685  // private
22686     mozKeyPress : function(e){
22687         if(e.ctrlKey){
22688             var c = e.getCharCode(), cmd;
22689           
22690             if(c > 0){
22691                 c = String.fromCharCode(c).toLowerCase();
22692                 switch(c){
22693                     case 'b':
22694                         cmd = 'bold';
22695                         break;
22696                     case 'i':
22697                         cmd = 'italic';
22698                         break;
22699                     
22700                     case 'u':
22701                         cmd = 'underline';
22702                         break;
22703                     
22704                     case 'v':
22705                         this.cleanUpPaste.defer(100, this);
22706                         return;
22707                         
22708                 }
22709                 if(cmd){
22710                     this.win.focus();
22711                     this.execCmd(cmd);
22712                     this.deferFocus();
22713                     e.preventDefault();
22714                 }
22715                 
22716             }
22717         }
22718     },
22719
22720     // private
22721     fixKeys : function(){ // load time branching for fastest keydown performance
22722         if(Roo.isIE){
22723             return function(e){
22724                 var k = e.getKey(), r;
22725                 if(k == e.TAB){
22726                     e.stopEvent();
22727                     r = this.doc.selection.createRange();
22728                     if(r){
22729                         r.collapse(true);
22730                         r.pasteHTML('&#160;&#160;&#160;&#160;');
22731                         this.deferFocus();
22732                     }
22733                     return;
22734                 }
22735                 
22736                 if(k == e.ENTER){
22737                     r = this.doc.selection.createRange();
22738                     if(r){
22739                         var target = r.parentElement();
22740                         if(!target || target.tagName.toLowerCase() != 'li'){
22741                             e.stopEvent();
22742                             r.pasteHTML('<br />');
22743                             r.collapse(false);
22744                             r.select();
22745                         }
22746                     }
22747                 }
22748                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22749                     this.cleanUpPaste.defer(100, this);
22750                     return;
22751                 }
22752                 
22753                 
22754             };
22755         }else if(Roo.isOpera){
22756             return function(e){
22757                 var k = e.getKey();
22758                 if(k == e.TAB){
22759                     e.stopEvent();
22760                     this.win.focus();
22761                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
22762                     this.deferFocus();
22763                 }
22764                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22765                     this.cleanUpPaste.defer(100, this);
22766                     return;
22767                 }
22768                 
22769             };
22770         }else if(Roo.isSafari){
22771             return function(e){
22772                 var k = e.getKey();
22773                 
22774                 if(k == e.TAB){
22775                     e.stopEvent();
22776                     this.execCmd('InsertText','\t');
22777                     this.deferFocus();
22778                     return;
22779                 }
22780                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22781                     this.cleanUpPaste.defer(100, this);
22782                     return;
22783                 }
22784                 
22785              };
22786         }
22787     }(),
22788     
22789     getAllAncestors: function()
22790     {
22791         var p = this.getSelectedNode();
22792         var a = [];
22793         if (!p) {
22794             a.push(p); // push blank onto stack..
22795             p = this.getParentElement();
22796         }
22797         
22798         
22799         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
22800             a.push(p);
22801             p = p.parentNode;
22802         }
22803         a.push(this.doc.body);
22804         return a;
22805     },
22806     lastSel : false,
22807     lastSelNode : false,
22808     
22809     
22810     getSelection : function() 
22811     {
22812         this.assignDocWin();
22813         return Roo.isIE ? this.doc.selection : this.win.getSelection();
22814     },
22815     
22816     getSelectedNode: function() 
22817     {
22818         // this may only work on Gecko!!!
22819         
22820         // should we cache this!!!!
22821         
22822         
22823         
22824          
22825         var range = this.createRange(this.getSelection()).cloneRange();
22826         
22827         if (Roo.isIE) {
22828             var parent = range.parentElement();
22829             while (true) {
22830                 var testRange = range.duplicate();
22831                 testRange.moveToElementText(parent);
22832                 if (testRange.inRange(range)) {
22833                     break;
22834                 }
22835                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
22836                     break;
22837                 }
22838                 parent = parent.parentElement;
22839             }
22840             return parent;
22841         }
22842         
22843         // is ancestor a text element.
22844         var ac =  range.commonAncestorContainer;
22845         if (ac.nodeType == 3) {
22846             ac = ac.parentNode;
22847         }
22848         
22849         var ar = ac.childNodes;
22850          
22851         var nodes = [];
22852         var other_nodes = [];
22853         var has_other_nodes = false;
22854         for (var i=0;i<ar.length;i++) {
22855             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
22856                 continue;
22857             }
22858             // fullly contained node.
22859             
22860             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
22861                 nodes.push(ar[i]);
22862                 continue;
22863             }
22864             
22865             // probably selected..
22866             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
22867                 other_nodes.push(ar[i]);
22868                 continue;
22869             }
22870             // outer..
22871             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
22872                 continue;
22873             }
22874             
22875             
22876             has_other_nodes = true;
22877         }
22878         if (!nodes.length && other_nodes.length) {
22879             nodes= other_nodes;
22880         }
22881         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
22882             return false;
22883         }
22884         
22885         return nodes[0];
22886     },
22887     createRange: function(sel)
22888     {
22889         // this has strange effects when using with 
22890         // top toolbar - not sure if it's a great idea.
22891         //this.editor.contentWindow.focus();
22892         if (typeof sel != "undefined") {
22893             try {
22894                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
22895             } catch(e) {
22896                 return this.doc.createRange();
22897             }
22898         } else {
22899             return this.doc.createRange();
22900         }
22901     },
22902     getParentElement: function()
22903     {
22904         
22905         this.assignDocWin();
22906         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
22907         
22908         var range = this.createRange(sel);
22909          
22910         try {
22911             var p = range.commonAncestorContainer;
22912             while (p.nodeType == 3) { // text node
22913                 p = p.parentNode;
22914             }
22915             return p;
22916         } catch (e) {
22917             return null;
22918         }
22919     
22920     },
22921     /***
22922      *
22923      * Range intersection.. the hard stuff...
22924      *  '-1' = before
22925      *  '0' = hits..
22926      *  '1' = after.
22927      *         [ -- selected range --- ]
22928      *   [fail]                        [fail]
22929      *
22930      *    basically..
22931      *      if end is before start or  hits it. fail.
22932      *      if start is after end or hits it fail.
22933      *
22934      *   if either hits (but other is outside. - then it's not 
22935      *   
22936      *    
22937      **/
22938     
22939     
22940     // @see http://www.thismuchiknow.co.uk/?p=64.
22941     rangeIntersectsNode : function(range, node)
22942     {
22943         var nodeRange = node.ownerDocument.createRange();
22944         try {
22945             nodeRange.selectNode(node);
22946         } catch (e) {
22947             nodeRange.selectNodeContents(node);
22948         }
22949     
22950         var rangeStartRange = range.cloneRange();
22951         rangeStartRange.collapse(true);
22952     
22953         var rangeEndRange = range.cloneRange();
22954         rangeEndRange.collapse(false);
22955     
22956         var nodeStartRange = nodeRange.cloneRange();
22957         nodeStartRange.collapse(true);
22958     
22959         var nodeEndRange = nodeRange.cloneRange();
22960         nodeEndRange.collapse(false);
22961     
22962         return rangeStartRange.compareBoundaryPoints(
22963                  Range.START_TO_START, nodeEndRange) == -1 &&
22964                rangeEndRange.compareBoundaryPoints(
22965                  Range.START_TO_START, nodeStartRange) == 1;
22966         
22967          
22968     },
22969     rangeCompareNode : function(range, node)
22970     {
22971         var nodeRange = node.ownerDocument.createRange();
22972         try {
22973             nodeRange.selectNode(node);
22974         } catch (e) {
22975             nodeRange.selectNodeContents(node);
22976         }
22977         
22978         
22979         range.collapse(true);
22980     
22981         nodeRange.collapse(true);
22982      
22983         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
22984         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
22985          
22986         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
22987         
22988         var nodeIsBefore   =  ss == 1;
22989         var nodeIsAfter    = ee == -1;
22990         
22991         if (nodeIsBefore && nodeIsAfter) {
22992             return 0; // outer
22993         }
22994         if (!nodeIsBefore && nodeIsAfter) {
22995             return 1; //right trailed.
22996         }
22997         
22998         if (nodeIsBefore && !nodeIsAfter) {
22999             return 2;  // left trailed.
23000         }
23001         // fully contined.
23002         return 3;
23003     },
23004
23005     // private? - in a new class?
23006     cleanUpPaste :  function()
23007     {
23008         // cleans up the whole document..
23009         Roo.log('cleanuppaste');
23010         
23011         this.cleanUpChildren(this.doc.body);
23012         var clean = this.cleanWordChars(this.doc.body.innerHTML);
23013         if (clean != this.doc.body.innerHTML) {
23014             this.doc.body.innerHTML = clean;
23015         }
23016         
23017     },
23018     
23019     cleanWordChars : function(input) {// change the chars to hex code
23020         var he = Roo.HtmlEditorCore;
23021         
23022         var output = input;
23023         Roo.each(he.swapCodes, function(sw) { 
23024             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
23025             
23026             output = output.replace(swapper, sw[1]);
23027         });
23028         
23029         return output;
23030     },
23031     
23032     
23033     cleanUpChildren : function (n)
23034     {
23035         if (!n.childNodes.length) {
23036             return;
23037         }
23038         for (var i = n.childNodes.length-1; i > -1 ; i--) {
23039            this.cleanUpChild(n.childNodes[i]);
23040         }
23041     },
23042     
23043     
23044         
23045     
23046     cleanUpChild : function (node)
23047     {
23048         var ed = this;
23049         //console.log(node);
23050         if (node.nodeName == "#text") {
23051             // clean up silly Windows -- stuff?
23052             return; 
23053         }
23054         if (node.nodeName == "#comment") {
23055             node.parentNode.removeChild(node);
23056             // clean up silly Windows -- stuff?
23057             return; 
23058         }
23059         var lcname = node.tagName.toLowerCase();
23060         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
23061         // whitelist of tags..
23062         
23063         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
23064             // remove node.
23065             node.parentNode.removeChild(node);
23066             return;
23067             
23068         }
23069         
23070         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
23071         
23072         // spans with no attributes - just remove them..
23073         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
23074             remove_keep_children = true;
23075         }
23076         
23077         // remove <a name=....> as rendering on yahoo mailer is borked with this.
23078         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
23079         
23080         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
23081         //    remove_keep_children = true;
23082         //}
23083         
23084         if (remove_keep_children) {
23085             this.cleanUpChildren(node);
23086             // inserts everything just before this node...
23087             while (node.childNodes.length) {
23088                 var cn = node.childNodes[0];
23089                 node.removeChild(cn);
23090                 node.parentNode.insertBefore(cn, node);
23091             }
23092             node.parentNode.removeChild(node);
23093             return;
23094         }
23095         
23096         if (!node.attributes || !node.attributes.length) {
23097             
23098           
23099             
23100             
23101             this.cleanUpChildren(node);
23102             return;
23103         }
23104         
23105         function cleanAttr(n,v)
23106         {
23107             
23108             if (v.match(/^\./) || v.match(/^\//)) {
23109                 return;
23110             }
23111             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
23112                 return;
23113             }
23114             if (v.match(/^#/)) {
23115                 return;
23116             }
23117 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
23118             node.removeAttribute(n);
23119             
23120         }
23121         
23122         var cwhite = this.cwhite;
23123         var cblack = this.cblack;
23124             
23125         function cleanStyle(n,v)
23126         {
23127             if (v.match(/expression/)) { //XSS?? should we even bother..
23128                 node.removeAttribute(n);
23129                 return;
23130             }
23131             
23132             var parts = v.split(/;/);
23133             var clean = [];
23134             
23135             Roo.each(parts, function(p) {
23136                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
23137                 if (!p.length) {
23138                     return true;
23139                 }
23140                 var l = p.split(':').shift().replace(/\s+/g,'');
23141                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
23142                 
23143                 if ( cwhite.length && cblack.indexOf(l) > -1) {
23144 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23145                     //node.removeAttribute(n);
23146                     return true;
23147                 }
23148                 //Roo.log()
23149                 // only allow 'c whitelisted system attributes'
23150                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
23151 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23152                     //node.removeAttribute(n);
23153                     return true;
23154                 }
23155                 
23156                 
23157                  
23158                 
23159                 clean.push(p);
23160                 return true;
23161             });
23162             if (clean.length) { 
23163                 node.setAttribute(n, clean.join(';'));
23164             } else {
23165                 node.removeAttribute(n);
23166             }
23167             
23168         }
23169         
23170         
23171         for (var i = node.attributes.length-1; i > -1 ; i--) {
23172             var a = node.attributes[i];
23173             //console.log(a);
23174             
23175             if (a.name.toLowerCase().substr(0,2)=='on')  {
23176                 node.removeAttribute(a.name);
23177                 continue;
23178             }
23179             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
23180                 node.removeAttribute(a.name);
23181                 continue;
23182             }
23183             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
23184                 cleanAttr(a.name,a.value); // fixme..
23185                 continue;
23186             }
23187             if (a.name == 'style') {
23188                 cleanStyle(a.name,a.value);
23189                 continue;
23190             }
23191             /// clean up MS crap..
23192             // tecnically this should be a list of valid class'es..
23193             
23194             
23195             if (a.name == 'class') {
23196                 if (a.value.match(/^Mso/)) {
23197                     node.removeAttribute('class');
23198                 }
23199                 
23200                 if (a.value.match(/^body$/)) {
23201                     node.removeAttribute('class');
23202                 }
23203                 continue;
23204             }
23205             
23206             // style cleanup!?
23207             // class cleanup?
23208             
23209         }
23210         
23211         
23212         this.cleanUpChildren(node);
23213         
23214         
23215     },
23216     
23217     /**
23218      * Clean up MS wordisms...
23219      */
23220     cleanWord : function(node)
23221     {
23222         if (!node) {
23223             this.cleanWord(this.doc.body);
23224             return;
23225         }
23226         
23227         if(
23228                 node.nodeName == 'SPAN' &&
23229                 !node.hasAttributes() &&
23230                 node.childNodes.length == 1 &&
23231                 node.firstChild.nodeName == "#text"  
23232         ) {
23233             var textNode = node.firstChild;
23234             node.removeChild(textNode);
23235             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
23236                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
23237             }
23238             node.parentNode.insertBefore(textNode, node);
23239             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
23240                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
23241             }
23242             node.parentNode.removeChild(node);
23243         }
23244         
23245         if (node.nodeName == "#text") {
23246             // clean up silly Windows -- stuff?
23247             return; 
23248         }
23249         if (node.nodeName == "#comment") {
23250             node.parentNode.removeChild(node);
23251             // clean up silly Windows -- stuff?
23252             return; 
23253         }
23254         
23255         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
23256             node.parentNode.removeChild(node);
23257             return;
23258         }
23259         //Roo.log(node.tagName);
23260         // remove - but keep children..
23261         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
23262             //Roo.log('-- removed');
23263             while (node.childNodes.length) {
23264                 var cn = node.childNodes[0];
23265                 node.removeChild(cn);
23266                 node.parentNode.insertBefore(cn, node);
23267                 // move node to parent - and clean it..
23268                 this.cleanWord(cn);
23269             }
23270             node.parentNode.removeChild(node);
23271             /// no need to iterate chidlren = it's got none..
23272             //this.iterateChildren(node, this.cleanWord);
23273             return;
23274         }
23275         // clean styles
23276         if (node.className.length) {
23277             
23278             var cn = node.className.split(/\W+/);
23279             var cna = [];
23280             Roo.each(cn, function(cls) {
23281                 if (cls.match(/Mso[a-zA-Z]+/)) {
23282                     return;
23283                 }
23284                 cna.push(cls);
23285             });
23286             node.className = cna.length ? cna.join(' ') : '';
23287             if (!cna.length) {
23288                 node.removeAttribute("class");
23289             }
23290         }
23291         
23292         if (node.hasAttribute("lang")) {
23293             node.removeAttribute("lang");
23294         }
23295         
23296         if (node.hasAttribute("style")) {
23297             
23298             var styles = node.getAttribute("style").split(";");
23299             var nstyle = [];
23300             Roo.each(styles, function(s) {
23301                 if (!s.match(/:/)) {
23302                     return;
23303                 }
23304                 var kv = s.split(":");
23305                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
23306                     return;
23307                 }
23308                 // what ever is left... we allow.
23309                 nstyle.push(s);
23310             });
23311             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23312             if (!nstyle.length) {
23313                 node.removeAttribute('style');
23314             }
23315         }
23316         this.iterateChildren(node, this.cleanWord);
23317         
23318         
23319         
23320     },
23321     /**
23322      * iterateChildren of a Node, calling fn each time, using this as the scole..
23323      * @param {DomNode} node node to iterate children of.
23324      * @param {Function} fn method of this class to call on each item.
23325      */
23326     iterateChildren : function(node, fn)
23327     {
23328         if (!node.childNodes.length) {
23329                 return;
23330         }
23331         for (var i = node.childNodes.length-1; i > -1 ; i--) {
23332            fn.call(this, node.childNodes[i])
23333         }
23334     },
23335     
23336     
23337     /**
23338      * cleanTableWidths.
23339      *
23340      * Quite often pasting from word etc.. results in tables with column and widths.
23341      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
23342      *
23343      */
23344     cleanTableWidths : function(node)
23345     {
23346          
23347          
23348         if (!node) {
23349             this.cleanTableWidths(this.doc.body);
23350             return;
23351         }
23352         
23353         // ignore list...
23354         if (node.nodeName == "#text" || node.nodeName == "#comment") {
23355             return; 
23356         }
23357         Roo.log(node.tagName);
23358         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
23359             this.iterateChildren(node, this.cleanTableWidths);
23360             return;
23361         }
23362         if (node.hasAttribute('width')) {
23363             node.removeAttribute('width');
23364         }
23365         
23366          
23367         if (node.hasAttribute("style")) {
23368             // pretty basic...
23369             
23370             var styles = node.getAttribute("style").split(";");
23371             var nstyle = [];
23372             Roo.each(styles, function(s) {
23373                 if (!s.match(/:/)) {
23374                     return;
23375                 }
23376                 var kv = s.split(":");
23377                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
23378                     return;
23379                 }
23380                 // what ever is left... we allow.
23381                 nstyle.push(s);
23382             });
23383             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23384             if (!nstyle.length) {
23385                 node.removeAttribute('style');
23386             }
23387         }
23388         
23389         this.iterateChildren(node, this.cleanTableWidths);
23390         
23391         
23392     },
23393     
23394     
23395     
23396     
23397     domToHTML : function(currentElement, depth, nopadtext) {
23398         
23399         depth = depth || 0;
23400         nopadtext = nopadtext || false;
23401     
23402         if (!currentElement) {
23403             return this.domToHTML(this.doc.body);
23404         }
23405         
23406         //Roo.log(currentElement);
23407         var j;
23408         var allText = false;
23409         var nodeName = currentElement.nodeName;
23410         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
23411         
23412         if  (nodeName == '#text') {
23413             
23414             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
23415         }
23416         
23417         
23418         var ret = '';
23419         if (nodeName != 'BODY') {
23420              
23421             var i = 0;
23422             // Prints the node tagName, such as <A>, <IMG>, etc
23423             if (tagName) {
23424                 var attr = [];
23425                 for(i = 0; i < currentElement.attributes.length;i++) {
23426                     // quoting?
23427                     var aname = currentElement.attributes.item(i).name;
23428                     if (!currentElement.attributes.item(i).value.length) {
23429                         continue;
23430                     }
23431                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
23432                 }
23433                 
23434                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
23435             } 
23436             else {
23437                 
23438                 // eack
23439             }
23440         } else {
23441             tagName = false;
23442         }
23443         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
23444             return ret;
23445         }
23446         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
23447             nopadtext = true;
23448         }
23449         
23450         
23451         // Traverse the tree
23452         i = 0;
23453         var currentElementChild = currentElement.childNodes.item(i);
23454         var allText = true;
23455         var innerHTML  = '';
23456         lastnode = '';
23457         while (currentElementChild) {
23458             // Formatting code (indent the tree so it looks nice on the screen)
23459             var nopad = nopadtext;
23460             if (lastnode == 'SPAN') {
23461                 nopad  = true;
23462             }
23463             // text
23464             if  (currentElementChild.nodeName == '#text') {
23465                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
23466                 toadd = nopadtext ? toadd : toadd.trim();
23467                 if (!nopad && toadd.length > 80) {
23468                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
23469                 }
23470                 innerHTML  += toadd;
23471                 
23472                 i++;
23473                 currentElementChild = currentElement.childNodes.item(i);
23474                 lastNode = '';
23475                 continue;
23476             }
23477             allText = false;
23478             
23479             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
23480                 
23481             // Recursively traverse the tree structure of the child node
23482             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
23483             lastnode = currentElementChild.nodeName;
23484             i++;
23485             currentElementChild=currentElement.childNodes.item(i);
23486         }
23487         
23488         ret += innerHTML;
23489         
23490         if (!allText) {
23491                 // The remaining code is mostly for formatting the tree
23492             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
23493         }
23494         
23495         
23496         if (tagName) {
23497             ret+= "</"+tagName+">";
23498         }
23499         return ret;
23500         
23501     },
23502         
23503     applyBlacklists : function()
23504     {
23505         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
23506         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
23507         
23508         this.white = [];
23509         this.black = [];
23510         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
23511             if (b.indexOf(tag) > -1) {
23512                 return;
23513             }
23514             this.white.push(tag);
23515             
23516         }, this);
23517         
23518         Roo.each(w, function(tag) {
23519             if (b.indexOf(tag) > -1) {
23520                 return;
23521             }
23522             if (this.white.indexOf(tag) > -1) {
23523                 return;
23524             }
23525             this.white.push(tag);
23526             
23527         }, this);
23528         
23529         
23530         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
23531             if (w.indexOf(tag) > -1) {
23532                 return;
23533             }
23534             this.black.push(tag);
23535             
23536         }, this);
23537         
23538         Roo.each(b, function(tag) {
23539             if (w.indexOf(tag) > -1) {
23540                 return;
23541             }
23542             if (this.black.indexOf(tag) > -1) {
23543                 return;
23544             }
23545             this.black.push(tag);
23546             
23547         }, this);
23548         
23549         
23550         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
23551         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
23552         
23553         this.cwhite = [];
23554         this.cblack = [];
23555         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
23556             if (b.indexOf(tag) > -1) {
23557                 return;
23558             }
23559             this.cwhite.push(tag);
23560             
23561         }, this);
23562         
23563         Roo.each(w, function(tag) {
23564             if (b.indexOf(tag) > -1) {
23565                 return;
23566             }
23567             if (this.cwhite.indexOf(tag) > -1) {
23568                 return;
23569             }
23570             this.cwhite.push(tag);
23571             
23572         }, this);
23573         
23574         
23575         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
23576             if (w.indexOf(tag) > -1) {
23577                 return;
23578             }
23579             this.cblack.push(tag);
23580             
23581         }, this);
23582         
23583         Roo.each(b, function(tag) {
23584             if (w.indexOf(tag) > -1) {
23585                 return;
23586             }
23587             if (this.cblack.indexOf(tag) > -1) {
23588                 return;
23589             }
23590             this.cblack.push(tag);
23591             
23592         }, this);
23593     },
23594     
23595     setStylesheets : function(stylesheets)
23596     {
23597         if(typeof(stylesheets) == 'string'){
23598             Roo.get(this.iframe.contentDocument.head).createChild({
23599                 tag : 'link',
23600                 rel : 'stylesheet',
23601                 type : 'text/css',
23602                 href : stylesheets
23603             });
23604             
23605             return;
23606         }
23607         var _this = this;
23608      
23609         Roo.each(stylesheets, function(s) {
23610             if(!s.length){
23611                 return;
23612             }
23613             
23614             Roo.get(_this.iframe.contentDocument.head).createChild({
23615                 tag : 'link',
23616                 rel : 'stylesheet',
23617                 type : 'text/css',
23618                 href : s
23619             });
23620         });
23621
23622         
23623     },
23624     
23625     removeStylesheets : function()
23626     {
23627         var _this = this;
23628         
23629         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
23630             s.remove();
23631         });
23632     },
23633     
23634     setStyle : function(style)
23635     {
23636         Roo.get(this.iframe.contentDocument.head).createChild({
23637             tag : 'style',
23638             type : 'text/css',
23639             html : style
23640         });
23641
23642         return;
23643     }
23644     
23645     // hide stuff that is not compatible
23646     /**
23647      * @event blur
23648      * @hide
23649      */
23650     /**
23651      * @event change
23652      * @hide
23653      */
23654     /**
23655      * @event focus
23656      * @hide
23657      */
23658     /**
23659      * @event specialkey
23660      * @hide
23661      */
23662     /**
23663      * @cfg {String} fieldClass @hide
23664      */
23665     /**
23666      * @cfg {String} focusClass @hide
23667      */
23668     /**
23669      * @cfg {String} autoCreate @hide
23670      */
23671     /**
23672      * @cfg {String} inputType @hide
23673      */
23674     /**
23675      * @cfg {String} invalidClass @hide
23676      */
23677     /**
23678      * @cfg {String} invalidText @hide
23679      */
23680     /**
23681      * @cfg {String} msgFx @hide
23682      */
23683     /**
23684      * @cfg {String} validateOnBlur @hide
23685      */
23686 });
23687
23688 Roo.HtmlEditorCore.white = [
23689         'area', 'br', 'img', 'input', 'hr', 'wbr',
23690         
23691        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
23692        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
23693        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
23694        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
23695        'table',   'ul',         'xmp', 
23696        
23697        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
23698       'thead',   'tr', 
23699      
23700       'dir', 'menu', 'ol', 'ul', 'dl',
23701        
23702       'embed',  'object'
23703 ];
23704
23705
23706 Roo.HtmlEditorCore.black = [
23707     //    'embed',  'object', // enable - backend responsiblity to clean thiese
23708         'applet', // 
23709         'base',   'basefont', 'bgsound', 'blink',  'body', 
23710         'frame',  'frameset', 'head',    'html',   'ilayer', 
23711         'iframe', 'layer',  'link',     'meta',    'object',   
23712         'script', 'style' ,'title',  'xml' // clean later..
23713 ];
23714 Roo.HtmlEditorCore.clean = [
23715     'script', 'style', 'title', 'xml'
23716 ];
23717 Roo.HtmlEditorCore.remove = [
23718     'font'
23719 ];
23720 // attributes..
23721
23722 Roo.HtmlEditorCore.ablack = [
23723     'on'
23724 ];
23725     
23726 Roo.HtmlEditorCore.aclean = [ 
23727     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
23728 ];
23729
23730 // protocols..
23731 Roo.HtmlEditorCore.pwhite= [
23732         'http',  'https',  'mailto'
23733 ];
23734
23735 // white listed style attributes.
23736 Roo.HtmlEditorCore.cwhite= [
23737       //  'text-align', /// default is to allow most things..
23738       
23739          
23740 //        'font-size'//??
23741 ];
23742
23743 // black listed style attributes.
23744 Roo.HtmlEditorCore.cblack= [
23745       //  'font-size' -- this can be set by the project 
23746 ];
23747
23748
23749 Roo.HtmlEditorCore.swapCodes   =[ 
23750     [    8211, "--" ], 
23751     [    8212, "--" ], 
23752     [    8216,  "'" ],  
23753     [    8217, "'" ],  
23754     [    8220, '"' ],  
23755     [    8221, '"' ],  
23756     [    8226, "*" ],  
23757     [    8230, "..." ]
23758 ]; 
23759
23760     /*
23761  * - LGPL
23762  *
23763  * HtmlEditor
23764  * 
23765  */
23766
23767 /**
23768  * @class Roo.bootstrap.HtmlEditor
23769  * @extends Roo.bootstrap.TextArea
23770  * Bootstrap HtmlEditor class
23771
23772  * @constructor
23773  * Create a new HtmlEditor
23774  * @param {Object} config The config object
23775  */
23776
23777 Roo.bootstrap.HtmlEditor = function(config){
23778     Roo.bootstrap.HtmlEditor.superclass.constructor.call(this, config);
23779     if (!this.toolbars) {
23780         this.toolbars = [];
23781     }
23782     
23783     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
23784     this.addEvents({
23785             /**
23786              * @event initialize
23787              * Fires when the editor is fully initialized (including the iframe)
23788              * @param {HtmlEditor} this
23789              */
23790             initialize: true,
23791             /**
23792              * @event activate
23793              * Fires when the editor is first receives the focus. Any insertion must wait
23794              * until after this event.
23795              * @param {HtmlEditor} this
23796              */
23797             activate: true,
23798              /**
23799              * @event beforesync
23800              * Fires before the textarea is updated with content from the editor iframe. Return false
23801              * to cancel the sync.
23802              * @param {HtmlEditor} this
23803              * @param {String} html
23804              */
23805             beforesync: true,
23806              /**
23807              * @event beforepush
23808              * Fires before the iframe editor is updated with content from the textarea. Return false
23809              * to cancel the push.
23810              * @param {HtmlEditor} this
23811              * @param {String} html
23812              */
23813             beforepush: true,
23814              /**
23815              * @event sync
23816              * Fires when the textarea is updated with content from the editor iframe.
23817              * @param {HtmlEditor} this
23818              * @param {String} html
23819              */
23820             sync: true,
23821              /**
23822              * @event push
23823              * Fires when the iframe editor is updated with content from the textarea.
23824              * @param {HtmlEditor} this
23825              * @param {String} html
23826              */
23827             push: true,
23828              /**
23829              * @event editmodechange
23830              * Fires when the editor switches edit modes
23831              * @param {HtmlEditor} this
23832              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
23833              */
23834             editmodechange: true,
23835             /**
23836              * @event editorevent
23837              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
23838              * @param {HtmlEditor} this
23839              */
23840             editorevent: true,
23841             /**
23842              * @event firstfocus
23843              * Fires when on first focus - needed by toolbars..
23844              * @param {HtmlEditor} this
23845              */
23846             firstfocus: true,
23847             /**
23848              * @event autosave
23849              * Auto save the htmlEditor value as a file into Events
23850              * @param {HtmlEditor} this
23851              */
23852             autosave: true,
23853             /**
23854              * @event savedpreview
23855              * preview the saved version of htmlEditor
23856              * @param {HtmlEditor} this
23857              */
23858             savedpreview: true
23859         });
23860 };
23861
23862
23863 Roo.extend(Roo.bootstrap.HtmlEditor, Roo.bootstrap.TextArea,  {
23864     
23865     
23866       /**
23867      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
23868      */
23869     toolbars : false,
23870     
23871      /**
23872     * @cfg {Array} buttons Array of toolbar's buttons. - defaults to empty
23873     */
23874     btns : [],
23875    
23876      /**
23877      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
23878      *                        Roo.resizable.
23879      */
23880     resizable : false,
23881      /**
23882      * @cfg {Number} height (in pixels)
23883      */   
23884     height: 300,
23885    /**
23886      * @cfg {Number} width (in pixels)
23887      */   
23888     width: false,
23889     
23890     /**
23891      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
23892      * 
23893      */
23894     stylesheets: false,
23895     
23896     // id of frame..
23897     frameId: false,
23898     
23899     // private properties
23900     validationEvent : false,
23901     deferHeight: true,
23902     initialized : false,
23903     activated : false,
23904     
23905     onFocus : Roo.emptyFn,
23906     iframePad:3,
23907     hideMode:'offsets',
23908     
23909     tbContainer : false,
23910     
23911     bodyCls : '',
23912     
23913     toolbarContainer :function() {
23914         return this.wrap.select('.x-html-editor-tb',true).first();
23915     },
23916
23917     /**
23918      * Protected method that will not generally be called directly. It
23919      * is called when the editor creates its toolbar. Override this method if you need to
23920      * add custom toolbar buttons.
23921      * @param {HtmlEditor} editor
23922      */
23923     createToolbar : function(){
23924         Roo.log('renewing');
23925         Roo.log("create toolbars");
23926         
23927         this.toolbars = [ new Roo.bootstrap.htmleditor.ToolbarStandard({editor: this} ) ];
23928         this.toolbars[0].render(this.toolbarContainer());
23929         
23930         return;
23931         
23932 //        if (!editor.toolbars || !editor.toolbars.length) {
23933 //            editor.toolbars = [ new Roo.bootstrap.HtmlEditor.ToolbarStandard() ]; // can be empty?
23934 //        }
23935 //        
23936 //        for (var i =0 ; i < editor.toolbars.length;i++) {
23937 //            editor.toolbars[i] = Roo.factory(
23938 //                    typeof(editor.toolbars[i]) == 'string' ?
23939 //                        { xtype: editor.toolbars[i]} : editor.toolbars[i],
23940 //                Roo.bootstrap.HtmlEditor);
23941 //            editor.toolbars[i].init(editor);
23942 //        }
23943     },
23944
23945      
23946     // private
23947     onRender : function(ct, position)
23948     {
23949        // Roo.log("Call onRender: " + this.xtype);
23950         var _t = this;
23951         Roo.bootstrap.HtmlEditor.superclass.onRender.call(this, ct, position);
23952       
23953         this.wrap = this.inputEl().wrap({
23954             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
23955         });
23956         
23957         this.editorcore.onRender(ct, position);
23958          
23959         if (this.resizable) {
23960             this.resizeEl = new Roo.Resizable(this.wrap, {
23961                 pinned : true,
23962                 wrap: true,
23963                 dynamic : true,
23964                 minHeight : this.height,
23965                 height: this.height,
23966                 handles : this.resizable,
23967                 width: this.width,
23968                 listeners : {
23969                     resize : function(r, w, h) {
23970                         _t.onResize(w,h); // -something
23971                     }
23972                 }
23973             });
23974             
23975         }
23976         this.createToolbar(this);
23977        
23978         
23979         if(!this.width && this.resizable){
23980             this.setSize(this.wrap.getSize());
23981         }
23982         if (this.resizeEl) {
23983             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
23984             // should trigger onReize..
23985         }
23986         
23987     },
23988
23989     // private
23990     onResize : function(w, h)
23991     {
23992         Roo.log('resize: ' +w + ',' + h );
23993         Roo.bootstrap.HtmlEditor.superclass.onResize.apply(this, arguments);
23994         var ew = false;
23995         var eh = false;
23996         
23997         if(this.inputEl() ){
23998             if(typeof w == 'number'){
23999                 var aw = w - this.wrap.getFrameWidth('lr');
24000                 this.inputEl().setWidth(this.adjustWidth('textarea', aw));
24001                 ew = aw;
24002             }
24003             if(typeof h == 'number'){
24004                  var tbh = -11;  // fixme it needs to tool bar size!
24005                 for (var i =0; i < this.toolbars.length;i++) {
24006                     // fixme - ask toolbars for heights?
24007                     tbh += this.toolbars[i].el.getHeight();
24008                     //if (this.toolbars[i].footer) {
24009                     //    tbh += this.toolbars[i].footer.el.getHeight();
24010                     //}
24011                 }
24012               
24013                 
24014                 
24015                 
24016                 
24017                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
24018                 ah -= 5; // knock a few pixes off for look..
24019                 this.inputEl().setHeight(this.adjustWidth('textarea', ah));
24020                 var eh = ah;
24021             }
24022         }
24023         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
24024         this.editorcore.onResize(ew,eh);
24025         
24026     },
24027
24028     /**
24029      * Toggles the editor between standard and source edit mode.
24030      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
24031      */
24032     toggleSourceEdit : function(sourceEditMode)
24033     {
24034         this.editorcore.toggleSourceEdit(sourceEditMode);
24035         
24036         if(this.editorcore.sourceEditMode){
24037             Roo.log('editor - showing textarea');
24038             
24039 //            Roo.log('in');
24040 //            Roo.log(this.syncValue());
24041             this.syncValue();
24042             this.inputEl().removeClass(['hide', 'x-hidden']);
24043             this.inputEl().dom.removeAttribute('tabIndex');
24044             this.inputEl().focus();
24045         }else{
24046             Roo.log('editor - hiding textarea');
24047 //            Roo.log('out')
24048 //            Roo.log(this.pushValue()); 
24049             this.pushValue();
24050             
24051             this.inputEl().addClass(['hide', 'x-hidden']);
24052             this.inputEl().dom.setAttribute('tabIndex', -1);
24053             //this.deferFocus();
24054         }
24055          
24056         if(this.resizable){
24057             this.setSize(this.wrap.getSize());
24058         }
24059         
24060         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
24061     },
24062  
24063     // private (for BoxComponent)
24064     adjustSize : Roo.BoxComponent.prototype.adjustSize,
24065
24066     // private (for BoxComponent)
24067     getResizeEl : function(){
24068         return this.wrap;
24069     },
24070
24071     // private (for BoxComponent)
24072     getPositionEl : function(){
24073         return this.wrap;
24074     },
24075
24076     // private
24077     initEvents : function(){
24078         this.originalValue = this.getValue();
24079     },
24080
24081 //    /**
24082 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24083 //     * @method
24084 //     */
24085 //    markInvalid : Roo.emptyFn,
24086 //    /**
24087 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24088 //     * @method
24089 //     */
24090 //    clearInvalid : Roo.emptyFn,
24091
24092     setValue : function(v){
24093         Roo.bootstrap.HtmlEditor.superclass.setValue.call(this, v);
24094         this.editorcore.pushValue();
24095     },
24096
24097      
24098     // private
24099     deferFocus : function(){
24100         this.focus.defer(10, this);
24101     },
24102
24103     // doc'ed in Field
24104     focus : function(){
24105         this.editorcore.focus();
24106         
24107     },
24108       
24109
24110     // private
24111     onDestroy : function(){
24112         
24113         
24114         
24115         if(this.rendered){
24116             
24117             for (var i =0; i < this.toolbars.length;i++) {
24118                 // fixme - ask toolbars for heights?
24119                 this.toolbars[i].onDestroy();
24120             }
24121             
24122             this.wrap.dom.innerHTML = '';
24123             this.wrap.remove();
24124         }
24125     },
24126
24127     // private
24128     onFirstFocus : function(){
24129         //Roo.log("onFirstFocus");
24130         this.editorcore.onFirstFocus();
24131          for (var i =0; i < this.toolbars.length;i++) {
24132             this.toolbars[i].onFirstFocus();
24133         }
24134         
24135     },
24136     
24137     // private
24138     syncValue : function()
24139     {   
24140         this.editorcore.syncValue();
24141     },
24142     
24143     pushValue : function()
24144     {   
24145         this.editorcore.pushValue();
24146     }
24147      
24148     
24149     // hide stuff that is not compatible
24150     /**
24151      * @event blur
24152      * @hide
24153      */
24154     /**
24155      * @event change
24156      * @hide
24157      */
24158     /**
24159      * @event focus
24160      * @hide
24161      */
24162     /**
24163      * @event specialkey
24164      * @hide
24165      */
24166     /**
24167      * @cfg {String} fieldClass @hide
24168      */
24169     /**
24170      * @cfg {String} focusClass @hide
24171      */
24172     /**
24173      * @cfg {String} autoCreate @hide
24174      */
24175     /**
24176      * @cfg {String} inputType @hide
24177      */
24178      
24179     /**
24180      * @cfg {String} invalidText @hide
24181      */
24182     /**
24183      * @cfg {String} msgFx @hide
24184      */
24185     /**
24186      * @cfg {String} validateOnBlur @hide
24187      */
24188 });
24189  
24190     
24191    
24192    
24193    
24194       
24195 Roo.namespace('Roo.bootstrap.htmleditor');
24196 /**
24197  * @class Roo.bootstrap.HtmlEditorToolbar1
24198  * Basic Toolbar
24199  * 
24200  * @example
24201  * Usage:
24202  *
24203  new Roo.bootstrap.HtmlEditor({
24204     ....
24205     toolbars : [
24206         new Roo.bootstrap.HtmlEditorToolbar1({
24207             disable : { fonts: 1 , format: 1, ..., ... , ...],
24208             btns : [ .... ]
24209         })
24210     }
24211      
24212  * 
24213  * @cfg {Object} disable List of elements to disable..
24214  * @cfg {Array} btns List of additional buttons.
24215  * 
24216  * 
24217  * NEEDS Extra CSS? 
24218  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
24219  */
24220  
24221 Roo.bootstrap.htmleditor.ToolbarStandard = function(config)
24222 {
24223     
24224     Roo.apply(this, config);
24225     
24226     // default disabled, based on 'good practice'..
24227     this.disable = this.disable || {};
24228     Roo.applyIf(this.disable, {
24229         fontSize : true,
24230         colors : true,
24231         specialElements : true
24232     });
24233     Roo.bootstrap.htmleditor.ToolbarStandard.superclass.constructor.call(this, config);
24234     
24235     this.editor = config.editor;
24236     this.editorcore = config.editor.editorcore;
24237     
24238     this.buttons   = new Roo.util.MixedCollection(false, function(o) { return o.cmd; });
24239     
24240     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
24241     // dont call parent... till later.
24242 }
24243 Roo.extend(Roo.bootstrap.htmleditor.ToolbarStandard, Roo.bootstrap.NavSimplebar,  {
24244      
24245     bar : true,
24246     
24247     editor : false,
24248     editorcore : false,
24249     
24250     
24251     formats : [
24252         "p" ,  
24253         "h1","h2","h3","h4","h5","h6", 
24254         "pre", "code", 
24255         "abbr", "acronym", "address", "cite", "samp", "var",
24256         'div','span'
24257     ],
24258     
24259     onRender : function(ct, position)
24260     {
24261        // Roo.log("Call onRender: " + this.xtype);
24262         
24263        Roo.bootstrap.htmleditor.ToolbarStandard.superclass.onRender.call(this, ct, position);
24264        Roo.log(this.el);
24265        this.el.dom.style.marginBottom = '0';
24266        var _this = this;
24267        var editorcore = this.editorcore;
24268        var editor= this.editor;
24269        
24270        var children = [];
24271        var btn = function(id,cmd , toggle, handler, html){
24272        
24273             var  event = toggle ? 'toggle' : 'click';
24274        
24275             var a = {
24276                 size : 'sm',
24277                 xtype: 'Button',
24278                 xns: Roo.bootstrap,
24279                 //glyphicon : id,
24280                 fa: id,
24281                 cmd : id || cmd,
24282                 enableToggle:toggle !== false,
24283                 html : html || '',
24284                 pressed : toggle ? false : null,
24285                 listeners : {}
24286             };
24287             a.listeners[toggle ? 'toggle' : 'click'] = function() {
24288                 handler ? handler.call(_this,this) :_this.onBtnClick.call(_this, cmd ||  id);
24289             };
24290             children.push(a);
24291             return a;
24292        }
24293        
24294     //    var cb_box = function...
24295         
24296         var style = {
24297                 xtype: 'Button',
24298                 size : 'sm',
24299                 xns: Roo.bootstrap,
24300                 fa : 'font',
24301                 //html : 'submit'
24302                 menu : {
24303                     xtype: 'Menu',
24304                     xns: Roo.bootstrap,
24305                     items:  []
24306                 }
24307         };
24308         Roo.each(this.formats, function(f) {
24309             style.menu.items.push({
24310                 xtype :'MenuItem',
24311                 xns: Roo.bootstrap,
24312                 html : '<'+ f+' style="margin:2px">'+f +'</'+ f+'>',
24313                 tagname : f,
24314                 listeners : {
24315                     click : function()
24316                     {
24317                         editorcore.insertTag(this.tagname);
24318                         editor.focus();
24319                     }
24320                 }
24321                 
24322             });
24323         });
24324         children.push(style);   
24325         
24326         btn('bold',false,true);
24327         btn('italic',false,true);
24328         btn('align-left', 'justifyleft',true);
24329         btn('align-center', 'justifycenter',true);
24330         btn('align-right' , 'justifyright',true);
24331         btn('link', false, false, function(btn) {
24332             //Roo.log("create link?");
24333             var url = prompt(this.createLinkText, this.defaultLinkValue);
24334             if(url && url != 'http:/'+'/'){
24335                 this.editorcore.relayCmd('createlink', url);
24336             }
24337         }),
24338         btn('list','insertunorderedlist',true);
24339         btn('pencil', false,true, function(btn){
24340                 Roo.log(this);
24341                 this.toggleSourceEdit(btn.pressed);
24342         });
24343         
24344         if (this.editor.btns.length > 0) {
24345             for (var i = 0; i<this.editor.btns.length; i++) {
24346                 children.push(this.editor.btns[i]);
24347             }
24348         }
24349         
24350         /*
24351         var cog = {
24352                 xtype: 'Button',
24353                 size : 'sm',
24354                 xns: Roo.bootstrap,
24355                 glyphicon : 'cog',
24356                 //html : 'submit'
24357                 menu : {
24358                     xtype: 'Menu',
24359                     xns: Roo.bootstrap,
24360                     items:  []
24361                 }
24362         };
24363         
24364         cog.menu.items.push({
24365             xtype :'MenuItem',
24366             xns: Roo.bootstrap,
24367             html : Clean styles,
24368             tagname : f,
24369             listeners : {
24370                 click : function()
24371                 {
24372                     editorcore.insertTag(this.tagname);
24373                     editor.focus();
24374                 }
24375             }
24376             
24377         });
24378        */
24379         
24380          
24381        this.xtype = 'NavSimplebar';
24382         
24383         for(var i=0;i< children.length;i++) {
24384             
24385             this.buttons.add(this.addxtypeChild(children[i]));
24386             
24387         }
24388         
24389         editor.on('editorevent', this.updateToolbar, this);
24390     },
24391     onBtnClick : function(id)
24392     {
24393        this.editorcore.relayCmd(id);
24394        this.editorcore.focus();
24395     },
24396     
24397     /**
24398      * Protected method that will not generally be called directly. It triggers
24399      * a toolbar update by reading the markup state of the current selection in the editor.
24400      */
24401     updateToolbar: function(){
24402
24403         if(!this.editorcore.activated){
24404             this.editor.onFirstFocus(); // is this neeed?
24405             return;
24406         }
24407
24408         var btns = this.buttons; 
24409         var doc = this.editorcore.doc;
24410         btns.get('bold').setActive(doc.queryCommandState('bold'));
24411         btns.get('italic').setActive(doc.queryCommandState('italic'));
24412         //btns.get('underline').setActive(doc.queryCommandState('underline'));
24413         
24414         btns.get('align-left').setActive(doc.queryCommandState('justifyleft'));
24415         btns.get('align-center').setActive(doc.queryCommandState('justifycenter'));
24416         btns.get('align-right').setActive(doc.queryCommandState('justifyright'));
24417         
24418         //btns[frameId + '-insertorderedlist').setActive(doc.queryCommandState('insertorderedlist'));
24419         btns.get('list').setActive(doc.queryCommandState('insertunorderedlist'));
24420          /*
24421         
24422         var ans = this.editorcore.getAllAncestors();
24423         if (this.formatCombo) {
24424             
24425             
24426             var store = this.formatCombo.store;
24427             this.formatCombo.setValue("");
24428             for (var i =0; i < ans.length;i++) {
24429                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
24430                     // select it..
24431                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
24432                     break;
24433                 }
24434             }
24435         }
24436         
24437         
24438         
24439         // hides menus... - so this cant be on a menu...
24440         Roo.bootstrap.MenuMgr.hideAll();
24441         */
24442         Roo.bootstrap.MenuMgr.hideAll();
24443         //this.editorsyncValue();
24444     },
24445     onFirstFocus: function() {
24446         this.buttons.each(function(item){
24447            item.enable();
24448         });
24449     },
24450     toggleSourceEdit : function(sourceEditMode){
24451         
24452           
24453         if(sourceEditMode){
24454             Roo.log("disabling buttons");
24455            this.buttons.each( function(item){
24456                 if(item.cmd != 'pencil'){
24457                     item.disable();
24458                 }
24459             });
24460           
24461         }else{
24462             Roo.log("enabling buttons");
24463             if(this.editorcore.initialized){
24464                 this.buttons.each( function(item){
24465                     item.enable();
24466                 });
24467             }
24468             
24469         }
24470         Roo.log("calling toggole on editor");
24471         // tell the editor that it's been pressed..
24472         this.editor.toggleSourceEdit(sourceEditMode);
24473        
24474     }
24475 });
24476
24477
24478
24479
24480
24481 /**
24482  * @class Roo.bootstrap.Table.AbstractSelectionModel
24483  * @extends Roo.util.Observable
24484  * Abstract base class for grid SelectionModels.  It provides the interface that should be
24485  * implemented by descendant classes.  This class should not be directly instantiated.
24486  * @constructor
24487  */
24488 Roo.bootstrap.Table.AbstractSelectionModel = function(){
24489     this.locked = false;
24490     Roo.bootstrap.Table.AbstractSelectionModel.superclass.constructor.call(this);
24491 };
24492
24493
24494 Roo.extend(Roo.bootstrap.Table.AbstractSelectionModel, Roo.util.Observable,  {
24495     /** @ignore Called by the grid automatically. Do not call directly. */
24496     init : function(grid){
24497         this.grid = grid;
24498         this.initEvents();
24499     },
24500
24501     /**
24502      * Locks the selections.
24503      */
24504     lock : function(){
24505         this.locked = true;
24506     },
24507
24508     /**
24509      * Unlocks the selections.
24510      */
24511     unlock : function(){
24512         this.locked = false;
24513     },
24514
24515     /**
24516      * Returns true if the selections are locked.
24517      * @return {Boolean}
24518      */
24519     isLocked : function(){
24520         return this.locked;
24521     }
24522 });
24523 /**
24524  * @extends Roo.bootstrap.Table.AbstractSelectionModel
24525  * @class Roo.bootstrap.Table.RowSelectionModel
24526  * The default SelectionModel used by {@link Roo.bootstrap.Table}.
24527  * It supports multiple selections and keyboard selection/navigation. 
24528  * @constructor
24529  * @param {Object} config
24530  */
24531
24532 Roo.bootstrap.Table.RowSelectionModel = function(config){
24533     Roo.apply(this, config);
24534     this.selections = new Roo.util.MixedCollection(false, function(o){
24535         return o.id;
24536     });
24537
24538     this.last = false;
24539     this.lastActive = false;
24540
24541     this.addEvents({
24542         /**
24543              * @event selectionchange
24544              * Fires when the selection changes
24545              * @param {SelectionModel} this
24546              */
24547             "selectionchange" : true,
24548         /**
24549              * @event afterselectionchange
24550              * Fires after the selection changes (eg. by key press or clicking)
24551              * @param {SelectionModel} this
24552              */
24553             "afterselectionchange" : true,
24554         /**
24555              * @event beforerowselect
24556              * Fires when a row is selected being selected, return false to cancel.
24557              * @param {SelectionModel} this
24558              * @param {Number} rowIndex The selected index
24559              * @param {Boolean} keepExisting False if other selections will be cleared
24560              */
24561             "beforerowselect" : true,
24562         /**
24563              * @event rowselect
24564              * Fires when a row is selected.
24565              * @param {SelectionModel} this
24566              * @param {Number} rowIndex The selected index
24567              * @param {Roo.data.Record} r The record
24568              */
24569             "rowselect" : true,
24570         /**
24571              * @event rowdeselect
24572              * Fires when a row is deselected.
24573              * @param {SelectionModel} this
24574              * @param {Number} rowIndex The selected index
24575              */
24576         "rowdeselect" : true
24577     });
24578     Roo.bootstrap.Table.RowSelectionModel.superclass.constructor.call(this);
24579     this.locked = false;
24580  };
24581
24582 Roo.extend(Roo.bootstrap.Table.RowSelectionModel, Roo.bootstrap.Table.AbstractSelectionModel,  {
24583     /**
24584      * @cfg {Boolean} singleSelect
24585      * True to allow selection of only one row at a time (defaults to false)
24586      */
24587     singleSelect : false,
24588
24589     // private
24590     initEvents : function()
24591     {
24592
24593         //if(!this.grid.enableDragDrop && !this.grid.enableDrag){
24594         //    this.growclickrid.on("mousedown", this.handleMouseDown, this);
24595         //}else{ // allow click to work like normal
24596          //   this.grid.on("rowclick", this.handleDragableRowClick, this);
24597         //}
24598         //this.grid.on("rowdblclick", this.handleMouseDBClick, this);
24599         this.grid.on("rowclick", this.handleMouseDown, this);
24600         
24601         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
24602             "up" : function(e){
24603                 if(!e.shiftKey){
24604                     this.selectPrevious(e.shiftKey);
24605                 }else if(this.last !== false && this.lastActive !== false){
24606                     var last = this.last;
24607                     this.selectRange(this.last,  this.lastActive-1);
24608                     this.grid.getView().focusRow(this.lastActive);
24609                     if(last !== false){
24610                         this.last = last;
24611                     }
24612                 }else{
24613                     this.selectFirstRow();
24614                 }
24615                 this.fireEvent("afterselectionchange", this);
24616             },
24617             "down" : function(e){
24618                 if(!e.shiftKey){
24619                     this.selectNext(e.shiftKey);
24620                 }else if(this.last !== false && this.lastActive !== false){
24621                     var last = this.last;
24622                     this.selectRange(this.last,  this.lastActive+1);
24623                     this.grid.getView().focusRow(this.lastActive);
24624                     if(last !== false){
24625                         this.last = last;
24626                     }
24627                 }else{
24628                     this.selectFirstRow();
24629                 }
24630                 this.fireEvent("afterselectionchange", this);
24631             },
24632             scope: this
24633         });
24634         this.grid.store.on('load', function(){
24635             this.selections.clear();
24636         },this);
24637         /*
24638         var view = this.grid.view;
24639         view.on("refresh", this.onRefresh, this);
24640         view.on("rowupdated", this.onRowUpdated, this);
24641         view.on("rowremoved", this.onRemove, this);
24642         */
24643     },
24644
24645     // private
24646     onRefresh : function()
24647     {
24648         var ds = this.grid.store, i, v = this.grid.view;
24649         var s = this.selections;
24650         s.each(function(r){
24651             if((i = ds.indexOfId(r.id)) != -1){
24652                 v.onRowSelect(i);
24653             }else{
24654                 s.remove(r);
24655             }
24656         });
24657     },
24658
24659     // private
24660     onRemove : function(v, index, r){
24661         this.selections.remove(r);
24662     },
24663
24664     // private
24665     onRowUpdated : function(v, index, r){
24666         if(this.isSelected(r)){
24667             v.onRowSelect(index);
24668         }
24669     },
24670
24671     /**
24672      * Select records.
24673      * @param {Array} records The records to select
24674      * @param {Boolean} keepExisting (optional) True to keep existing selections
24675      */
24676     selectRecords : function(records, keepExisting)
24677     {
24678         if(!keepExisting){
24679             this.clearSelections();
24680         }
24681             var ds = this.grid.store;
24682         for(var i = 0, len = records.length; i < len; i++){
24683             this.selectRow(ds.indexOf(records[i]), true);
24684         }
24685     },
24686
24687     /**
24688      * Gets the number of selected rows.
24689      * @return {Number}
24690      */
24691     getCount : function(){
24692         return this.selections.length;
24693     },
24694
24695     /**
24696      * Selects the first row in the grid.
24697      */
24698     selectFirstRow : function(){
24699         this.selectRow(0);
24700     },
24701
24702     /**
24703      * Select the last row.
24704      * @param {Boolean} keepExisting (optional) True to keep existing selections
24705      */
24706     selectLastRow : function(keepExisting){
24707         //this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
24708         this.selectRow(this.grid.store.getCount() - 1, keepExisting);
24709     },
24710
24711     /**
24712      * Selects the row immediately following the last selected row.
24713      * @param {Boolean} keepExisting (optional) True to keep existing selections
24714      */
24715     selectNext : function(keepExisting)
24716     {
24717             if(this.last !== false && (this.last+1) < this.grid.store.getCount()){
24718             this.selectRow(this.last+1, keepExisting);
24719             this.grid.getView().focusRow(this.last);
24720         }
24721     },
24722
24723     /**
24724      * Selects the row that precedes the last selected row.
24725      * @param {Boolean} keepExisting (optional) True to keep existing selections
24726      */
24727     selectPrevious : function(keepExisting){
24728         if(this.last){
24729             this.selectRow(this.last-1, keepExisting);
24730             this.grid.getView().focusRow(this.last);
24731         }
24732     },
24733
24734     /**
24735      * Returns the selected records
24736      * @return {Array} Array of selected records
24737      */
24738     getSelections : function(){
24739         return [].concat(this.selections.items);
24740     },
24741
24742     /**
24743      * Returns the first selected record.
24744      * @return {Record}
24745      */
24746     getSelected : function(){
24747         return this.selections.itemAt(0);
24748     },
24749
24750
24751     /**
24752      * Clears all selections.
24753      */
24754     clearSelections : function(fast)
24755     {
24756         if(this.locked) {
24757             return;
24758         }
24759         if(fast !== true){
24760                 var ds = this.grid.store;
24761             var s = this.selections;
24762             s.each(function(r){
24763                 this.deselectRow(ds.indexOfId(r.id));
24764             }, this);
24765             s.clear();
24766         }else{
24767             this.selections.clear();
24768         }
24769         this.last = false;
24770     },
24771
24772
24773     /**
24774      * Selects all rows.
24775      */
24776     selectAll : function(){
24777         if(this.locked) {
24778             return;
24779         }
24780         this.selections.clear();
24781         for(var i = 0, len = this.grid.store.getCount(); i < len; i++){
24782             this.selectRow(i, true);
24783         }
24784     },
24785
24786     /**
24787      * Returns True if there is a selection.
24788      * @return {Boolean}
24789      */
24790     hasSelection : function(){
24791         return this.selections.length > 0;
24792     },
24793
24794     /**
24795      * Returns True if the specified row is selected.
24796      * @param {Number/Record} record The record or index of the record to check
24797      * @return {Boolean}
24798      */
24799     isSelected : function(index){
24800             var r = typeof index == "number" ? this.grid.store.getAt(index) : index;
24801         return (r && this.selections.key(r.id) ? true : false);
24802     },
24803
24804     /**
24805      * Returns True if the specified record id is selected.
24806      * @param {String} id The id of record to check
24807      * @return {Boolean}
24808      */
24809     isIdSelected : function(id){
24810         return (this.selections.key(id) ? true : false);
24811     },
24812
24813
24814     // private
24815     handleMouseDBClick : function(e, t){
24816         
24817     },
24818     // private
24819     handleMouseDown : function(e, t)
24820     {
24821             var rowIndex = this.grid.headerShow  ? t.dom.rowIndex - 1 : t.dom.rowIndex ; // first row is header???
24822         if(this.isLocked() || rowIndex < 0 ){
24823             return;
24824         };
24825         if(e.shiftKey && this.last !== false){
24826             var last = this.last;
24827             this.selectRange(last, rowIndex, e.ctrlKey);
24828             this.last = last; // reset the last
24829             t.focus();
24830     
24831         }else{
24832             var isSelected = this.isSelected(rowIndex);
24833             //Roo.log("select row:" + rowIndex);
24834             if(isSelected){
24835                 this.deselectRow(rowIndex);
24836             } else {
24837                         this.selectRow(rowIndex, true);
24838             }
24839     
24840             /*
24841                 if(e.button !== 0 && isSelected){
24842                 alert('rowIndex 2: ' + rowIndex);
24843                     view.focusRow(rowIndex);
24844                 }else if(e.ctrlKey && isSelected){
24845                     this.deselectRow(rowIndex);
24846                 }else if(!isSelected){
24847                     this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
24848                     view.focusRow(rowIndex);
24849                 }
24850             */
24851         }
24852         this.fireEvent("afterselectionchange", this);
24853     },
24854     // private
24855     handleDragableRowClick :  function(grid, rowIndex, e) 
24856     {
24857         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
24858             this.selectRow(rowIndex, false);
24859             grid.view.focusRow(rowIndex);
24860              this.fireEvent("afterselectionchange", this);
24861         }
24862     },
24863     
24864     /**
24865      * Selects multiple rows.
24866      * @param {Array} rows Array of the indexes of the row to select
24867      * @param {Boolean} keepExisting (optional) True to keep existing selections
24868      */
24869     selectRows : function(rows, keepExisting){
24870         if(!keepExisting){
24871             this.clearSelections();
24872         }
24873         for(var i = 0, len = rows.length; i < len; i++){
24874             this.selectRow(rows[i], true);
24875         }
24876     },
24877
24878     /**
24879      * Selects a range of rows. All rows in between startRow and endRow are also selected.
24880      * @param {Number} startRow The index of the first row in the range
24881      * @param {Number} endRow The index of the last row in the range
24882      * @param {Boolean} keepExisting (optional) True to retain existing selections
24883      */
24884     selectRange : function(startRow, endRow, keepExisting){
24885         if(this.locked) {
24886             return;
24887         }
24888         if(!keepExisting){
24889             this.clearSelections();
24890         }
24891         if(startRow <= endRow){
24892             for(var i = startRow; i <= endRow; i++){
24893                 this.selectRow(i, true);
24894             }
24895         }else{
24896             for(var i = startRow; i >= endRow; i--){
24897                 this.selectRow(i, true);
24898             }
24899         }
24900     },
24901
24902     /**
24903      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
24904      * @param {Number} startRow The index of the first row in the range
24905      * @param {Number} endRow The index of the last row in the range
24906      */
24907     deselectRange : function(startRow, endRow, preventViewNotify){
24908         if(this.locked) {
24909             return;
24910         }
24911         for(var i = startRow; i <= endRow; i++){
24912             this.deselectRow(i, preventViewNotify);
24913         }
24914     },
24915
24916     /**
24917      * Selects a row.
24918      * @param {Number} row The index of the row to select
24919      * @param {Boolean} keepExisting (optional) True to keep existing selections
24920      */
24921     selectRow : function(index, keepExisting, preventViewNotify)
24922     {
24923             if(this.locked || (index < 0 || index > this.grid.store.getCount())) {
24924             return;
24925         }
24926         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
24927             if(!keepExisting || this.singleSelect){
24928                 this.clearSelections();
24929             }
24930             
24931             var r = this.grid.store.getAt(index);
24932             //console.log('selectRow - record id :' + r.id);
24933             
24934             this.selections.add(r);
24935             this.last = this.lastActive = index;
24936             if(!preventViewNotify){
24937                 var proxy = new Roo.Element(
24938                                 this.grid.getRowDom(index)
24939                 );
24940                 proxy.addClass('bg-info info');
24941             }
24942             this.fireEvent("rowselect", this, index, r);
24943             this.fireEvent("selectionchange", this);
24944         }
24945     },
24946
24947     /**
24948      * Deselects a row.
24949      * @param {Number} row The index of the row to deselect
24950      */
24951     deselectRow : function(index, preventViewNotify)
24952     {
24953         if(this.locked) {
24954             return;
24955         }
24956         if(this.last == index){
24957             this.last = false;
24958         }
24959         if(this.lastActive == index){
24960             this.lastActive = false;
24961         }
24962         
24963         var r = this.grid.store.getAt(index);
24964         if (!r) {
24965             return;
24966         }
24967         
24968         this.selections.remove(r);
24969         //.console.log('deselectRow - record id :' + r.id);
24970         if(!preventViewNotify){
24971         
24972             var proxy = new Roo.Element(
24973                 this.grid.getRowDom(index)
24974             );
24975             proxy.removeClass('bg-info info');
24976         }
24977         this.fireEvent("rowdeselect", this, index);
24978         this.fireEvent("selectionchange", this);
24979     },
24980
24981     // private
24982     restoreLast : function(){
24983         if(this._last){
24984             this.last = this._last;
24985         }
24986     },
24987
24988     // private
24989     acceptsNav : function(row, col, cm){
24990         return !cm.isHidden(col) && cm.isCellEditable(col, row);
24991     },
24992
24993     // private
24994     onEditorKey : function(field, e){
24995         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
24996         if(k == e.TAB){
24997             e.stopEvent();
24998             ed.completeEdit();
24999             if(e.shiftKey){
25000                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
25001             }else{
25002                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
25003             }
25004         }else if(k == e.ENTER && !e.ctrlKey){
25005             e.stopEvent();
25006             ed.completeEdit();
25007             if(e.shiftKey){
25008                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
25009             }else{
25010                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
25011             }
25012         }else if(k == e.ESC){
25013             ed.cancelEdit();
25014         }
25015         if(newCell){
25016             g.startEditing(newCell[0], newCell[1]);
25017         }
25018     }
25019 });
25020 /*
25021  * Based on:
25022  * Ext JS Library 1.1.1
25023  * Copyright(c) 2006-2007, Ext JS, LLC.
25024  *
25025  * Originally Released Under LGPL - original licence link has changed is not relivant.
25026  *
25027  * Fork - LGPL
25028  * <script type="text/javascript">
25029  */
25030  
25031 /**
25032  * @class Roo.bootstrap.PagingToolbar
25033  * @extends Roo.bootstrap.NavSimplebar
25034  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
25035  * @constructor
25036  * Create a new PagingToolbar
25037  * @param {Object} config The config object
25038  * @param {Roo.data.Store} store
25039  */
25040 Roo.bootstrap.PagingToolbar = function(config)
25041 {
25042     // old args format still supported... - xtype is prefered..
25043         // created from xtype...
25044     
25045     this.ds = config.dataSource;
25046     
25047     if (config.store && !this.ds) {
25048         this.store= Roo.factory(config.store, Roo.data);
25049         this.ds = this.store;
25050         this.ds.xmodule = this.xmodule || false;
25051     }
25052     
25053     this.toolbarItems = [];
25054     if (config.items) {
25055         this.toolbarItems = config.items;
25056     }
25057     
25058     Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, config);
25059     
25060     this.cursor = 0;
25061     
25062     if (this.ds) { 
25063         this.bind(this.ds);
25064     }
25065     
25066     if (Roo.bootstrap.version == 4) {
25067         this.navgroup = new Roo.bootstrap.ButtonGroup({ cls: 'pagination' });
25068     } else {
25069         this.navgroup = new Roo.bootstrap.NavGroup({ cls: 'pagination' });
25070     }
25071     
25072 };
25073
25074 Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.NavSimplebar, {
25075     /**
25076      * @cfg {Roo.data.Store} dataSource
25077      * The underlying data store providing the paged data
25078      */
25079     /**
25080      * @cfg {String/HTMLElement/Element} container
25081      * container The id or element that will contain the toolbar
25082      */
25083     /**
25084      * @cfg {Boolean} displayInfo
25085      * True to display the displayMsg (defaults to false)
25086      */
25087     /**
25088      * @cfg {Number} pageSize
25089      * The number of records to display per page (defaults to 20)
25090      */
25091     pageSize: 20,
25092     /**
25093      * @cfg {String} displayMsg
25094      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
25095      */
25096     displayMsg : 'Displaying {0} - {1} of {2}',
25097     /**
25098      * @cfg {String} emptyMsg
25099      * The message to display when no records are found (defaults to "No data to display")
25100      */
25101     emptyMsg : 'No data to display',
25102     /**
25103      * Customizable piece of the default paging text (defaults to "Page")
25104      * @type String
25105      */
25106     beforePageText : "Page",
25107     /**
25108      * Customizable piece of the default paging text (defaults to "of %0")
25109      * @type String
25110      */
25111     afterPageText : "of {0}",
25112     /**
25113      * Customizable piece of the default paging text (defaults to "First Page")
25114      * @type String
25115      */
25116     firstText : "First Page",
25117     /**
25118      * Customizable piece of the default paging text (defaults to "Previous Page")
25119      * @type String
25120      */
25121     prevText : "Previous Page",
25122     /**
25123      * Customizable piece of the default paging text (defaults to "Next Page")
25124      * @type String
25125      */
25126     nextText : "Next Page",
25127     /**
25128      * Customizable piece of the default paging text (defaults to "Last Page")
25129      * @type String
25130      */
25131     lastText : "Last Page",
25132     /**
25133      * Customizable piece of the default paging text (defaults to "Refresh")
25134      * @type String
25135      */
25136     refreshText : "Refresh",
25137
25138     buttons : false,
25139     // private
25140     onRender : function(ct, position) 
25141     {
25142         Roo.bootstrap.PagingToolbar.superclass.onRender.call(this, ct, position);
25143         this.navgroup.parentId = this.id;
25144         this.navgroup.onRender(this.el, null);
25145         // add the buttons to the navgroup
25146         
25147         if(this.displayInfo){
25148             this.el.select('ul.navbar-nav',true).first().createChild({cls:'x-paging-info'});
25149             this.displayEl = this.el.select('.x-paging-info', true).first();
25150 //            var navel = this.navgroup.addItem( { tagtype : 'span', html : '', cls : 'x-paging-info', preventDefault : true } );
25151 //            this.displayEl = navel.el.select('span',true).first();
25152         }
25153         
25154         var _this = this;
25155         
25156         if(this.buttons){
25157             Roo.each(_this.buttons, function(e){ // this might need to use render????
25158                Roo.factory(e).render(_this.el);
25159             });
25160         }
25161             
25162         Roo.each(_this.toolbarItems, function(e) {
25163             _this.navgroup.addItem(e);
25164         });
25165         
25166         
25167         this.first = this.navgroup.addItem({
25168             tooltip: this.firstText,
25169             cls: "prev btn-outline-secondary",
25170             html : ' <i class="fa fa-step-backward"></i>',
25171             disabled: true,
25172             preventDefault: true,
25173             listeners : { click : this.onClick.createDelegate(this, ["first"]) }
25174         });
25175         
25176         this.prev =  this.navgroup.addItem({
25177             tooltip: this.prevText,
25178             cls: "prev btn-outline-secondary",
25179             html : ' <i class="fa fa-backward"></i>',
25180             disabled: true,
25181             preventDefault: true,
25182             listeners : { click :  this.onClick.createDelegate(this, ["prev"]) }
25183         });
25184     //this.addSeparator();
25185         
25186         
25187         var field = this.navgroup.addItem( {
25188             tagtype : 'span',
25189             cls : 'x-paging-position  btn-outline-secondary',
25190              disabled: true,
25191             html : this.beforePageText  +
25192                 '<input type="text" size="3" value="1" class="x-grid-page-number">' +
25193                 '<span class="x-paging-after">' +  String.format(this.afterPageText, 1) + '</span>'
25194          } ); //?? escaped?
25195         
25196         this.field = field.el.select('input', true).first();
25197         this.field.on("keydown", this.onPagingKeydown, this);
25198         this.field.on("focus", function(){this.dom.select();});
25199     
25200     
25201         this.afterTextEl =  field.el.select('.x-paging-after',true).first();
25202         //this.field.setHeight(18);
25203         //this.addSeparator();
25204         this.next = this.navgroup.addItem({
25205             tooltip: this.nextText,
25206             cls: "next btn-outline-secondary",
25207             html : ' <i class="fa fa-forward"></i>',
25208             disabled: true,
25209             preventDefault: true,
25210             listeners : { click :  this.onClick.createDelegate(this, ["next"]) }
25211         });
25212         this.last = this.navgroup.addItem({
25213             tooltip: this.lastText,
25214             html : ' <i class="fa fa-step-forward"></i>',
25215             cls: "next btn-outline-secondary",
25216             disabled: true,
25217             preventDefault: true,
25218             listeners : { click :  this.onClick.createDelegate(this, ["last"]) }
25219         });
25220     //this.addSeparator();
25221         this.loading = this.navgroup.addItem({
25222             tooltip: this.refreshText,
25223             cls: "btn-outline-secondary",
25224             html : ' <i class="fa fa-refresh"></i>',
25225             preventDefault: true,
25226             listeners : { click : this.onClick.createDelegate(this, ["refresh"]) }
25227         });
25228         
25229     },
25230
25231     // private
25232     updateInfo : function(){
25233         if(this.displayEl){
25234             var count = (typeof(this.getCount) == 'undefined') ? this.ds.getCount() : this.getCount();
25235             var msg = count == 0 ?
25236                 this.emptyMsg :
25237                 String.format(
25238                     this.displayMsg,
25239                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
25240                 );
25241             this.displayEl.update(msg);
25242         }
25243     },
25244
25245     // private
25246     onLoad : function(ds, r, o)
25247     {
25248         this.cursor = o.params.start ? o.params.start : 0;
25249         
25250         var d = this.getPageData(),
25251             ap = d.activePage,
25252             ps = d.pages;
25253         
25254         
25255         this.afterTextEl.dom.innerHTML = String.format(this.afterPageText, d.pages);
25256         this.field.dom.value = ap;
25257         this.first.setDisabled(ap == 1);
25258         this.prev.setDisabled(ap == 1);
25259         this.next.setDisabled(ap == ps);
25260         this.last.setDisabled(ap == ps);
25261         this.loading.enable();
25262         this.updateInfo();
25263     },
25264
25265     // private
25266     getPageData : function(){
25267         var total = this.ds.getTotalCount();
25268         return {
25269             total : total,
25270             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
25271             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
25272         };
25273     },
25274
25275     // private
25276     onLoadError : function(){
25277         this.loading.enable();
25278     },
25279
25280     // private
25281     onPagingKeydown : function(e){
25282         var k = e.getKey();
25283         var d = this.getPageData();
25284         if(k == e.RETURN){
25285             var v = this.field.dom.value, pageNum;
25286             if(!v || isNaN(pageNum = parseInt(v, 10))){
25287                 this.field.dom.value = d.activePage;
25288                 return;
25289             }
25290             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
25291             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25292             e.stopEvent();
25293         }
25294         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))
25295         {
25296           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
25297           this.field.dom.value = pageNum;
25298           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
25299           e.stopEvent();
25300         }
25301         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
25302         {
25303           var v = this.field.dom.value, pageNum; 
25304           var increment = (e.shiftKey) ? 10 : 1;
25305           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
25306                 increment *= -1;
25307           }
25308           if(!v || isNaN(pageNum = parseInt(v, 10))) {
25309             this.field.dom.value = d.activePage;
25310             return;
25311           }
25312           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
25313           {
25314             this.field.dom.value = parseInt(v, 10) + increment;
25315             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
25316             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25317           }
25318           e.stopEvent();
25319         }
25320     },
25321
25322     // private
25323     beforeLoad : function(){
25324         if(this.loading){
25325             this.loading.disable();
25326         }
25327     },
25328
25329     // private
25330     onClick : function(which){
25331         
25332         var ds = this.ds;
25333         if (!ds) {
25334             return;
25335         }
25336         
25337         switch(which){
25338             case "first":
25339                 ds.load({params:{start: 0, limit: this.pageSize}});
25340             break;
25341             case "prev":
25342                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
25343             break;
25344             case "next":
25345                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
25346             break;
25347             case "last":
25348                 var total = ds.getTotalCount();
25349                 var extra = total % this.pageSize;
25350                 var lastStart = extra ? (total - extra) : total-this.pageSize;
25351                 ds.load({params:{start: lastStart, limit: this.pageSize}});
25352             break;
25353             case "refresh":
25354                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
25355             break;
25356         }
25357     },
25358
25359     /**
25360      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
25361      * @param {Roo.data.Store} store The data store to unbind
25362      */
25363     unbind : function(ds){
25364         ds.un("beforeload", this.beforeLoad, this);
25365         ds.un("load", this.onLoad, this);
25366         ds.un("loadexception", this.onLoadError, this);
25367         ds.un("remove", this.updateInfo, this);
25368         ds.un("add", this.updateInfo, this);
25369         this.ds = undefined;
25370     },
25371
25372     /**
25373      * Binds the paging toolbar to the specified {@link Roo.data.Store}
25374      * @param {Roo.data.Store} store The data store to bind
25375      */
25376     bind : function(ds){
25377         ds.on("beforeload", this.beforeLoad, this);
25378         ds.on("load", this.onLoad, this);
25379         ds.on("loadexception", this.onLoadError, this);
25380         ds.on("remove", this.updateInfo, this);
25381         ds.on("add", this.updateInfo, this);
25382         this.ds = ds;
25383     }
25384 });/*
25385  * - LGPL
25386  *
25387  * element
25388  * 
25389  */
25390
25391 /**
25392  * @class Roo.bootstrap.MessageBar
25393  * @extends Roo.bootstrap.Component
25394  * Bootstrap MessageBar class
25395  * @cfg {String} html contents of the MessageBar
25396  * @cfg {String} weight (info | success | warning | danger) default info
25397  * @cfg {String} beforeClass insert the bar before the given class
25398  * @cfg {Boolean} closable (true | false) default false
25399  * @cfg {Boolean} fixed (true | false) default false, fix the bar at the top
25400  * 
25401  * @constructor
25402  * Create a new Element
25403  * @param {Object} config The config object
25404  */
25405
25406 Roo.bootstrap.MessageBar = function(config){
25407     Roo.bootstrap.MessageBar.superclass.constructor.call(this, config);
25408 };
25409
25410 Roo.extend(Roo.bootstrap.MessageBar, Roo.bootstrap.Component,  {
25411     
25412     html: '',
25413     weight: 'info',
25414     closable: false,
25415     fixed: false,
25416     beforeClass: 'bootstrap-sticky-wrap',
25417     
25418     getAutoCreate : function(){
25419         
25420         var cfg = {
25421             tag: 'div',
25422             cls: 'alert alert-dismissable alert-' + this.weight,
25423             cn: [
25424                 {
25425                     tag: 'span',
25426                     cls: 'message',
25427                     html: this.html || ''
25428                 }
25429             ]
25430         };
25431         
25432         if(this.fixed){
25433             cfg.cls += ' alert-messages-fixed';
25434         }
25435         
25436         if(this.closable){
25437             cfg.cn.push({
25438                 tag: 'button',
25439                 cls: 'close',
25440                 html: 'x'
25441             });
25442         }
25443         
25444         return cfg;
25445     },
25446     
25447     onRender : function(ct, position)
25448     {
25449         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
25450         
25451         if(!this.el){
25452             var cfg = Roo.apply({},  this.getAutoCreate());
25453             cfg.id = Roo.id();
25454             
25455             if (this.cls) {
25456                 cfg.cls += ' ' + this.cls;
25457             }
25458             if (this.style) {
25459                 cfg.style = this.style;
25460             }
25461             this.el = Roo.get(document.body).createChild(cfg, Roo.select('.'+this.beforeClass, true).first());
25462             
25463             this.el.setVisibilityMode(Roo.Element.DISPLAY);
25464         }
25465         
25466         this.el.select('>button.close').on('click', this.hide, this);
25467         
25468     },
25469     
25470     show : function()
25471     {
25472         if (!this.rendered) {
25473             this.render();
25474         }
25475         
25476         this.el.show();
25477         
25478         this.fireEvent('show', this);
25479         
25480     },
25481     
25482     hide : function()
25483     {
25484         if (!this.rendered) {
25485             this.render();
25486         }
25487         
25488         this.el.hide();
25489         
25490         this.fireEvent('hide', this);
25491     },
25492     
25493     update : function()
25494     {
25495 //        var e = this.el.dom.firstChild;
25496 //        
25497 //        if(this.closable){
25498 //            e = e.nextSibling;
25499 //        }
25500 //        
25501 //        e.data = this.html || '';
25502
25503         this.el.select('>.message', true).first().dom.innerHTML = this.html || '';
25504     }
25505    
25506 });
25507
25508  
25509
25510      /*
25511  * - LGPL
25512  *
25513  * Graph
25514  * 
25515  */
25516
25517
25518 /**
25519  * @class Roo.bootstrap.Graph
25520  * @extends Roo.bootstrap.Component
25521  * Bootstrap Graph class
25522 > Prameters
25523  -sm {number} sm 4
25524  -md {number} md 5
25525  @cfg {String} graphtype  bar | vbar | pie
25526  @cfg {number} g_x coodinator | centre x (pie)
25527  @cfg {number} g_y coodinator | centre y (pie)
25528  @cfg {number} g_r radius (pie)
25529  @cfg {number} g_height height of the chart (respected by all elements in the set)
25530  @cfg {number} g_width width of the chart (respected by all elements in the set)
25531  @cfg {Object} title The title of the chart
25532     
25533  -{Array}  values
25534  -opts (object) options for the chart 
25535      o {
25536      o type (string) type of endings of the bar. Default: 'square'. Other options are: 'round', 'sharp', 'soft'.
25537      o gutter (number)(string) default '20%' (WHAT DOES IT DO?)
25538      o vgutter (number)
25539      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.
25540      o stacked (boolean) whether or not to tread values as in a stacked bar chart
25541      o to
25542      o stretch (boolean)
25543      o }
25544  -opts (object) options for the pie
25545      o{
25546      o cut
25547      o startAngle (number)
25548      o endAngle (number)
25549      } 
25550  *
25551  * @constructor
25552  * Create a new Input
25553  * @param {Object} config The config object
25554  */
25555
25556 Roo.bootstrap.Graph = function(config){
25557     Roo.bootstrap.Graph.superclass.constructor.call(this, config);
25558     
25559     this.addEvents({
25560         // img events
25561         /**
25562          * @event click
25563          * The img click event for the img.
25564          * @param {Roo.EventObject} e
25565          */
25566         "click" : true
25567     });
25568 };
25569
25570 Roo.extend(Roo.bootstrap.Graph, Roo.bootstrap.Component,  {
25571     
25572     sm: 4,
25573     md: 5,
25574     graphtype: 'bar',
25575     g_height: 250,
25576     g_width: 400,
25577     g_x: 50,
25578     g_y: 50,
25579     g_r: 30,
25580     opts:{
25581         //g_colors: this.colors,
25582         g_type: 'soft',
25583         g_gutter: '20%'
25584
25585     },
25586     title : false,
25587
25588     getAutoCreate : function(){
25589         
25590         var cfg = {
25591             tag: 'div',
25592             html : null
25593         };
25594         
25595         
25596         return  cfg;
25597     },
25598
25599     onRender : function(ct,position){
25600         
25601         
25602         Roo.bootstrap.Graph.superclass.onRender.call(this,ct,position);
25603         
25604         if (typeof(Raphael) == 'undefined') {
25605             Roo.bootstrap.MessageBox.alert("Error","Raphael is not availabe");
25606             return;
25607         }
25608         
25609         this.raphael = Raphael(this.el.dom);
25610         
25611                     // data1 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25612                     // data2 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25613                     // data3 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25614                     // txtattr = { font: "12px 'Fontin Sans', Fontin-Sans, sans-serif" };
25615                 /*
25616                 r.text(160, 10, "Single Series Chart").attr(txtattr);
25617                 r.text(480, 10, "Multiline Series Chart").attr(txtattr);
25618                 r.text(160, 250, "Multiple Series Stacked Chart").attr(txtattr);
25619                 r.text(480, 250, 'Multiline Series Stacked Vertical Chart. Type "round"').attr(txtattr);
25620                 
25621                 r.barchart(10, 10, 300, 220, [[55, 20, 13, 32, 5, 1, 2, 10]], 0, {type: "sharp"});
25622                 r.barchart(330, 10, 300, 220, data1);
25623                 r.barchart(10, 250, 300, 220, data2, {stacked: true});
25624                 r.barchart(330, 250, 300, 220, data3, {stacked: true, type: "round"});
25625                 */
25626                 
25627                 // var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25628                 // r.barchart(30, 30, 560, 250,  xdata, {
25629                 //    labels : [55, 20, 13, 32, 5, 1, 2, 10,5 , 10],
25630                 //     axis : "0 0 1 1",
25631                 //     axisxlabels :  xdata
25632                 //     //yvalues : cols,
25633                    
25634                 // });
25635 //        var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25636 //        
25637 //        this.load(null,xdata,{
25638 //                axis : "0 0 1 1",
25639 //                axisxlabels :  xdata
25640 //                });
25641
25642     },
25643
25644     load : function(graphtype,xdata,opts)
25645     {
25646         this.raphael.clear();
25647         if(!graphtype) {
25648             graphtype = this.graphtype;
25649         }
25650         if(!opts){
25651             opts = this.opts;
25652         }
25653         var r = this.raphael,
25654             fin = function () {
25655                 this.flag = r.popup(this.bar.x, this.bar.y, this.bar.value || "0").insertBefore(this);
25656             },
25657             fout = function () {
25658                 this.flag.animate({opacity: 0}, 300, function () {this.remove();});
25659             },
25660             pfin = function() {
25661                 this.sector.stop();
25662                 this.sector.scale(1.1, 1.1, this.cx, this.cy);
25663
25664                 if (this.label) {
25665                     this.label[0].stop();
25666                     this.label[0].attr({ r: 7.5 });
25667                     this.label[1].attr({ "font-weight": 800 });
25668                 }
25669             },
25670             pfout = function() {
25671                 this.sector.animate({ transform: 's1 1 ' + this.cx + ' ' + this.cy }, 500, "bounce");
25672
25673                 if (this.label) {
25674                     this.label[0].animate({ r: 5 }, 500, "bounce");
25675                     this.label[1].attr({ "font-weight": 400 });
25676                 }
25677             };
25678
25679         switch(graphtype){
25680             case 'bar':
25681                 this.raphael.barchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25682                 break;
25683             case 'hbar':
25684                 this.raphael.hbarchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25685                 break;
25686             case 'pie':
25687 //                opts = { legend: ["%% - Enterprise Users", "% - ddd","Chrome Users"], legendpos: "west", 
25688 //                href: ["http://raphaeljs.com", "http://g.raphaeljs.com"]};
25689 //            
25690                 this.raphael.piechart(this.g_x,this.g_y,this.g_r,xdata,opts).hover(pfin, pfout);
25691                 
25692                 break;
25693
25694         }
25695         
25696         if(this.title){
25697             this.raphael.text(this.title.x, this.title.y, this.title.text).attr(this.title.attr);
25698         }
25699         
25700     },
25701     
25702     setTitle: function(o)
25703     {
25704         this.title = o;
25705     },
25706     
25707     initEvents: function() {
25708         
25709         if(!this.href){
25710             this.el.on('click', this.onClick, this);
25711         }
25712     },
25713     
25714     onClick : function(e)
25715     {
25716         Roo.log('img onclick');
25717         this.fireEvent('click', this, e);
25718     }
25719    
25720 });
25721
25722  
25723 /*
25724  * - LGPL
25725  *
25726  * numberBox
25727  * 
25728  */
25729 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25730
25731 /**
25732  * @class Roo.bootstrap.dash.NumberBox
25733  * @extends Roo.bootstrap.Component
25734  * Bootstrap NumberBox class
25735  * @cfg {String} headline Box headline
25736  * @cfg {String} content Box content
25737  * @cfg {String} icon Box icon
25738  * @cfg {String} footer Footer text
25739  * @cfg {String} fhref Footer href
25740  * 
25741  * @constructor
25742  * Create a new NumberBox
25743  * @param {Object} config The config object
25744  */
25745
25746
25747 Roo.bootstrap.dash.NumberBox = function(config){
25748     Roo.bootstrap.dash.NumberBox.superclass.constructor.call(this, config);
25749     
25750 };
25751
25752 Roo.extend(Roo.bootstrap.dash.NumberBox, Roo.bootstrap.Component,  {
25753     
25754     headline : '',
25755     content : '',
25756     icon : '',
25757     footer : '',
25758     fhref : '',
25759     ficon : '',
25760     
25761     getAutoCreate : function(){
25762         
25763         var cfg = {
25764             tag : 'div',
25765             cls : 'small-box ',
25766             cn : [
25767                 {
25768                     tag : 'div',
25769                     cls : 'inner',
25770                     cn :[
25771                         {
25772                             tag : 'h3',
25773                             cls : 'roo-headline',
25774                             html : this.headline
25775                         },
25776                         {
25777                             tag : 'p',
25778                             cls : 'roo-content',
25779                             html : this.content
25780                         }
25781                     ]
25782                 }
25783             ]
25784         };
25785         
25786         if(this.icon){
25787             cfg.cn.push({
25788                 tag : 'div',
25789                 cls : 'icon',
25790                 cn :[
25791                     {
25792                         tag : 'i',
25793                         cls : 'ion ' + this.icon
25794                     }
25795                 ]
25796             });
25797         }
25798         
25799         if(this.footer){
25800             var footer = {
25801                 tag : 'a',
25802                 cls : 'small-box-footer',
25803                 href : this.fhref || '#',
25804                 html : this.footer
25805             };
25806             
25807             cfg.cn.push(footer);
25808             
25809         }
25810         
25811         return  cfg;
25812     },
25813
25814     onRender : function(ct,position){
25815         Roo.bootstrap.dash.NumberBox.superclass.onRender.call(this,ct,position);
25816
25817
25818        
25819                 
25820     },
25821
25822     setHeadline: function (value)
25823     {
25824         this.el.select('.roo-headline',true).first().dom.innerHTML = value;
25825     },
25826     
25827     setFooter: function (value, href)
25828     {
25829         this.el.select('a.small-box-footer',true).first().dom.innerHTML = value;
25830         
25831         if(href){
25832             this.el.select('a.small-box-footer',true).first().attr('href', href);
25833         }
25834         
25835     },
25836
25837     setContent: function (value)
25838     {
25839         this.el.select('.roo-content',true).first().dom.innerHTML = value;
25840     },
25841
25842     initEvents: function() 
25843     {   
25844         
25845     }
25846     
25847 });
25848
25849  
25850 /*
25851  * - LGPL
25852  *
25853  * TabBox
25854  * 
25855  */
25856 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25857
25858 /**
25859  * @class Roo.bootstrap.dash.TabBox
25860  * @extends Roo.bootstrap.Component
25861  * Bootstrap TabBox class
25862  * @cfg {String} title Title of the TabBox
25863  * @cfg {String} icon Icon of the TabBox
25864  * @cfg {Boolean} showtabs (true|false) show the tabs default true
25865  * @cfg {Boolean} tabScrollable (true|false) tab scrollable when mobile view default false
25866  * 
25867  * @constructor
25868  * Create a new TabBox
25869  * @param {Object} config The config object
25870  */
25871
25872
25873 Roo.bootstrap.dash.TabBox = function(config){
25874     Roo.bootstrap.dash.TabBox.superclass.constructor.call(this, config);
25875     this.addEvents({
25876         // raw events
25877         /**
25878          * @event addpane
25879          * When a pane is added
25880          * @param {Roo.bootstrap.dash.TabPane} pane
25881          */
25882         "addpane" : true,
25883         /**
25884          * @event activatepane
25885          * When a pane is activated
25886          * @param {Roo.bootstrap.dash.TabPane} pane
25887          */
25888         "activatepane" : true
25889         
25890          
25891     });
25892     
25893     this.panes = [];
25894 };
25895
25896 Roo.extend(Roo.bootstrap.dash.TabBox, Roo.bootstrap.Component,  {
25897
25898     title : '',
25899     icon : false,
25900     showtabs : true,
25901     tabScrollable : false,
25902     
25903     getChildContainer : function()
25904     {
25905         return this.el.select('.tab-content', true).first();
25906     },
25907     
25908     getAutoCreate : function(){
25909         
25910         var header = {
25911             tag: 'li',
25912             cls: 'pull-left header',
25913             html: this.title,
25914             cn : []
25915         };
25916         
25917         if(this.icon){
25918             header.cn.push({
25919                 tag: 'i',
25920                 cls: 'fa ' + this.icon
25921             });
25922         }
25923         
25924         var h = {
25925             tag: 'ul',
25926             cls: 'nav nav-tabs pull-right',
25927             cn: [
25928                 header
25929             ]
25930         };
25931         
25932         if(this.tabScrollable){
25933             h = {
25934                 tag: 'div',
25935                 cls: 'tab-header',
25936                 cn: [
25937                     {
25938                         tag: 'ul',
25939                         cls: 'nav nav-tabs pull-right',
25940                         cn: [
25941                             header
25942                         ]
25943                     }
25944                 ]
25945             };
25946         }
25947         
25948         var cfg = {
25949             tag: 'div',
25950             cls: 'nav-tabs-custom',
25951             cn: [
25952                 h,
25953                 {
25954                     tag: 'div',
25955                     cls: 'tab-content no-padding',
25956                     cn: []
25957                 }
25958             ]
25959         };
25960
25961         return  cfg;
25962     },
25963     initEvents : function()
25964     {
25965         //Roo.log('add add pane handler');
25966         this.on('addpane', this.onAddPane, this);
25967     },
25968      /**
25969      * Updates the box title
25970      * @param {String} html to set the title to.
25971      */
25972     setTitle : function(value)
25973     {
25974         this.el.select('.nav-tabs .header', true).first().dom.innerHTML = value;
25975     },
25976     onAddPane : function(pane)
25977     {
25978         this.panes.push(pane);
25979         //Roo.log('addpane');
25980         //Roo.log(pane);
25981         // tabs are rendere left to right..
25982         if(!this.showtabs){
25983             return;
25984         }
25985         
25986         var ctr = this.el.select('.nav-tabs', true).first();
25987          
25988          
25989         var existing = ctr.select('.nav-tab',true);
25990         var qty = existing.getCount();;
25991         
25992         
25993         var tab = ctr.createChild({
25994             tag : 'li',
25995             cls : 'nav-tab' + (qty ? '' : ' active'),
25996             cn : [
25997                 {
25998                     tag : 'a',
25999                     href:'#',
26000                     html : pane.title
26001                 }
26002             ]
26003         }, qty ? existing.first().dom : ctr.select('.header', true).first().dom );
26004         pane.tab = tab;
26005         
26006         tab.on('click', this.onTabClick.createDelegate(this, [pane], true));
26007         if (!qty) {
26008             pane.el.addClass('active');
26009         }
26010         
26011                 
26012     },
26013     onTabClick : function(ev,un,ob,pane)
26014     {
26015         //Roo.log('tab - prev default');
26016         ev.preventDefault();
26017         
26018         
26019         this.el.select('.nav-tabs li.nav-tab', true).removeClass('active');
26020         pane.tab.addClass('active');
26021         //Roo.log(pane.title);
26022         this.getChildContainer().select('.tab-pane',true).removeClass('active');
26023         // technically we should have a deactivate event.. but maybe add later.
26024         // and it should not de-activate the selected tab...
26025         this.fireEvent('activatepane', pane);
26026         pane.el.addClass('active');
26027         pane.fireEvent('activate');
26028         
26029         
26030     },
26031     
26032     getActivePane : function()
26033     {
26034         var r = false;
26035         Roo.each(this.panes, function(p) {
26036             if(p.el.hasClass('active')){
26037                 r = p;
26038                 return false;
26039             }
26040             
26041             return;
26042         });
26043         
26044         return r;
26045     }
26046     
26047     
26048 });
26049
26050  
26051 /*
26052  * - LGPL
26053  *
26054  * Tab pane
26055  * 
26056  */
26057 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
26058 /**
26059  * @class Roo.bootstrap.TabPane
26060  * @extends Roo.bootstrap.Component
26061  * Bootstrap TabPane class
26062  * @cfg {Boolean} active (false | true) Default false
26063  * @cfg {String} title title of panel
26064
26065  * 
26066  * @constructor
26067  * Create a new TabPane
26068  * @param {Object} config The config object
26069  */
26070
26071 Roo.bootstrap.dash.TabPane = function(config){
26072     Roo.bootstrap.dash.TabPane.superclass.constructor.call(this, config);
26073     
26074     this.addEvents({
26075         // raw events
26076         /**
26077          * @event activate
26078          * When a pane is activated
26079          * @param {Roo.bootstrap.dash.TabPane} pane
26080          */
26081         "activate" : true
26082          
26083     });
26084 };
26085
26086 Roo.extend(Roo.bootstrap.dash.TabPane, Roo.bootstrap.Component,  {
26087     
26088     active : false,
26089     title : '',
26090     
26091     // the tabBox that this is attached to.
26092     tab : false,
26093      
26094     getAutoCreate : function() 
26095     {
26096         var cfg = {
26097             tag: 'div',
26098             cls: 'tab-pane'
26099         };
26100         
26101         if(this.active){
26102             cfg.cls += ' active';
26103         }
26104         
26105         return cfg;
26106     },
26107     initEvents  : function()
26108     {
26109         //Roo.log('trigger add pane handler');
26110         this.parent().fireEvent('addpane', this)
26111     },
26112     
26113      /**
26114      * Updates the tab title 
26115      * @param {String} html to set the title to.
26116      */
26117     setTitle: function(str)
26118     {
26119         if (!this.tab) {
26120             return;
26121         }
26122         this.title = str;
26123         this.tab.select('a', true).first().dom.innerHTML = str;
26124         
26125     }
26126     
26127     
26128     
26129 });
26130
26131  
26132
26133
26134  /*
26135  * - LGPL
26136  *
26137  * menu
26138  * 
26139  */
26140 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26141
26142 /**
26143  * @class Roo.bootstrap.menu.Menu
26144  * @extends Roo.bootstrap.Component
26145  * Bootstrap Menu class - container for Menu
26146  * @cfg {String} html Text of the menu
26147  * @cfg {String} weight (default | primary | success | info | warning | danger | inverse)
26148  * @cfg {String} icon Font awesome icon
26149  * @cfg {String} pos Menu align to (top | bottom) default bottom
26150  * 
26151  * 
26152  * @constructor
26153  * Create a new Menu
26154  * @param {Object} config The config object
26155  */
26156
26157
26158 Roo.bootstrap.menu.Menu = function(config){
26159     Roo.bootstrap.menu.Menu.superclass.constructor.call(this, config);
26160     
26161     this.addEvents({
26162         /**
26163          * @event beforeshow
26164          * Fires before this menu is displayed
26165          * @param {Roo.bootstrap.menu.Menu} this
26166          */
26167         beforeshow : true,
26168         /**
26169          * @event beforehide
26170          * Fires before this menu is hidden
26171          * @param {Roo.bootstrap.menu.Menu} this
26172          */
26173         beforehide : true,
26174         /**
26175          * @event show
26176          * Fires after this menu is displayed
26177          * @param {Roo.bootstrap.menu.Menu} this
26178          */
26179         show : true,
26180         /**
26181          * @event hide
26182          * Fires after this menu is hidden
26183          * @param {Roo.bootstrap.menu.Menu} this
26184          */
26185         hide : true,
26186         /**
26187          * @event click
26188          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
26189          * @param {Roo.bootstrap.menu.Menu} this
26190          * @param {Roo.EventObject} e
26191          */
26192         click : true
26193     });
26194     
26195 };
26196
26197 Roo.extend(Roo.bootstrap.menu.Menu, Roo.bootstrap.Component,  {
26198     
26199     submenu : false,
26200     html : '',
26201     weight : 'default',
26202     icon : false,
26203     pos : 'bottom',
26204     
26205     
26206     getChildContainer : function() {
26207         if(this.isSubMenu){
26208             return this.el;
26209         }
26210         
26211         return this.el.select('ul.dropdown-menu', true).first();  
26212     },
26213     
26214     getAutoCreate : function()
26215     {
26216         var text = [
26217             {
26218                 tag : 'span',
26219                 cls : 'roo-menu-text',
26220                 html : this.html
26221             }
26222         ];
26223         
26224         if(this.icon){
26225             text.unshift({
26226                 tag : 'i',
26227                 cls : 'fa ' + this.icon
26228             })
26229         }
26230         
26231         
26232         var cfg = {
26233             tag : 'div',
26234             cls : 'btn-group',
26235             cn : [
26236                 {
26237                     tag : 'button',
26238                     cls : 'dropdown-button btn btn-' + this.weight,
26239                     cn : text
26240                 },
26241                 {
26242                     tag : 'button',
26243                     cls : 'dropdown-toggle btn btn-' + this.weight,
26244                     cn : [
26245                         {
26246                             tag : 'span',
26247                             cls : 'caret'
26248                         }
26249                     ]
26250                 },
26251                 {
26252                     tag : 'ul',
26253                     cls : 'dropdown-menu'
26254                 }
26255             ]
26256             
26257         };
26258         
26259         if(this.pos == 'top'){
26260             cfg.cls += ' dropup';
26261         }
26262         
26263         if(this.isSubMenu){
26264             cfg = {
26265                 tag : 'ul',
26266                 cls : 'dropdown-menu'
26267             }
26268         }
26269         
26270         return cfg;
26271     },
26272     
26273     onRender : function(ct, position)
26274     {
26275         this.isSubMenu = ct.hasClass('dropdown-submenu');
26276         
26277         Roo.bootstrap.menu.Menu.superclass.onRender.call(this, ct, position);
26278     },
26279     
26280     initEvents : function() 
26281     {
26282         if(this.isSubMenu){
26283             return;
26284         }
26285         
26286         this.hidden = true;
26287         
26288         this.triggerEl = this.el.select('button.dropdown-toggle', true).first();
26289         this.triggerEl.on('click', this.onTriggerPress, this);
26290         
26291         this.buttonEl = this.el.select('button.dropdown-button', true).first();
26292         this.buttonEl.on('click', this.onClick, this);
26293         
26294     },
26295     
26296     list : function()
26297     {
26298         if(this.isSubMenu){
26299             return this.el;
26300         }
26301         
26302         return this.el.select('ul.dropdown-menu', true).first();
26303     },
26304     
26305     onClick : function(e)
26306     {
26307         this.fireEvent("click", this, e);
26308     },
26309     
26310     onTriggerPress  : function(e)
26311     {   
26312         if (this.isVisible()) {
26313             this.hide();
26314         } else {
26315             this.show();
26316         }
26317     },
26318     
26319     isVisible : function(){
26320         return !this.hidden;
26321     },
26322     
26323     show : function()
26324     {
26325         this.fireEvent("beforeshow", this);
26326         
26327         this.hidden = false;
26328         this.el.addClass('open');
26329         
26330         Roo.get(document).on("mouseup", this.onMouseUp, this);
26331         
26332         this.fireEvent("show", this);
26333         
26334         
26335     },
26336     
26337     hide : function()
26338     {
26339         this.fireEvent("beforehide", this);
26340         
26341         this.hidden = true;
26342         this.el.removeClass('open');
26343         
26344         Roo.get(document).un("mouseup", this.onMouseUp);
26345         
26346         this.fireEvent("hide", this);
26347     },
26348     
26349     onMouseUp : function()
26350     {
26351         this.hide();
26352     }
26353     
26354 });
26355
26356  
26357  /*
26358  * - LGPL
26359  *
26360  * menu item
26361  * 
26362  */
26363 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26364
26365 /**
26366  * @class Roo.bootstrap.menu.Item
26367  * @extends Roo.bootstrap.Component
26368  * Bootstrap MenuItem class
26369  * @cfg {Boolean} submenu (true | false) default false
26370  * @cfg {String} html text of the item
26371  * @cfg {String} href the link
26372  * @cfg {Boolean} disable (true | false) default false
26373  * @cfg {Boolean} preventDefault (true | false) default true
26374  * @cfg {String} icon Font awesome icon
26375  * @cfg {String} pos Submenu align to (left | right) default right 
26376  * 
26377  * 
26378  * @constructor
26379  * Create a new Item
26380  * @param {Object} config The config object
26381  */
26382
26383
26384 Roo.bootstrap.menu.Item = function(config){
26385     Roo.bootstrap.menu.Item.superclass.constructor.call(this, config);
26386     this.addEvents({
26387         /**
26388          * @event mouseover
26389          * Fires when the mouse is hovering over this menu
26390          * @param {Roo.bootstrap.menu.Item} this
26391          * @param {Roo.EventObject} e
26392          */
26393         mouseover : true,
26394         /**
26395          * @event mouseout
26396          * Fires when the mouse exits this menu
26397          * @param {Roo.bootstrap.menu.Item} this
26398          * @param {Roo.EventObject} e
26399          */
26400         mouseout : true,
26401         // raw events
26402         /**
26403          * @event click
26404          * The raw click event for the entire grid.
26405          * @param {Roo.EventObject} e
26406          */
26407         click : true
26408     });
26409 };
26410
26411 Roo.extend(Roo.bootstrap.menu.Item, Roo.bootstrap.Component,  {
26412     
26413     submenu : false,
26414     href : '',
26415     html : '',
26416     preventDefault: true,
26417     disable : false,
26418     icon : false,
26419     pos : 'right',
26420     
26421     getAutoCreate : function()
26422     {
26423         var text = [
26424             {
26425                 tag : 'span',
26426                 cls : 'roo-menu-item-text',
26427                 html : this.html
26428             }
26429         ];
26430         
26431         if(this.icon){
26432             text.unshift({
26433                 tag : 'i',
26434                 cls : 'fa ' + this.icon
26435             })
26436         }
26437         
26438         var cfg = {
26439             tag : 'li',
26440             cn : [
26441                 {
26442                     tag : 'a',
26443                     href : this.href || '#',
26444                     cn : text
26445                 }
26446             ]
26447         };
26448         
26449         if(this.disable){
26450             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'disabled' : (cfg.cls + ' disabled');
26451         }
26452         
26453         if(this.submenu){
26454             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'dropdown-submenu' : (cfg.cls + ' dropdown-submenu');
26455             
26456             if(this.pos == 'left'){
26457                 cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'pull-left' : (cfg.cls + ' pull-left');
26458             }
26459         }
26460         
26461         return cfg;
26462     },
26463     
26464     initEvents : function() 
26465     {
26466         this.el.on('mouseover', this.onMouseOver, this);
26467         this.el.on('mouseout', this.onMouseOut, this);
26468         
26469         this.el.select('a', true).first().on('click', this.onClick, this);
26470         
26471     },
26472     
26473     onClick : function(e)
26474     {
26475         if(this.preventDefault){
26476             e.preventDefault();
26477         }
26478         
26479         this.fireEvent("click", this, e);
26480     },
26481     
26482     onMouseOver : function(e)
26483     {
26484         if(this.submenu && this.pos == 'left'){
26485             this.el.select('ul.dropdown-menu', true).first().setLeft(this.el.select('ul.dropdown-menu', true).first().getWidth() * -1);
26486         }
26487         
26488         this.fireEvent("mouseover", this, e);
26489     },
26490     
26491     onMouseOut : function(e)
26492     {
26493         this.fireEvent("mouseout", this, e);
26494     }
26495 });
26496
26497  
26498
26499  /*
26500  * - LGPL
26501  *
26502  * menu separator
26503  * 
26504  */
26505 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26506
26507 /**
26508  * @class Roo.bootstrap.menu.Separator
26509  * @extends Roo.bootstrap.Component
26510  * Bootstrap Separator class
26511  * 
26512  * @constructor
26513  * Create a new Separator
26514  * @param {Object} config The config object
26515  */
26516
26517
26518 Roo.bootstrap.menu.Separator = function(config){
26519     Roo.bootstrap.menu.Separator.superclass.constructor.call(this, config);
26520 };
26521
26522 Roo.extend(Roo.bootstrap.menu.Separator, Roo.bootstrap.Component,  {
26523     
26524     getAutoCreate : function(){
26525         var cfg = {
26526             tag : 'li',
26527             cls: 'divider'
26528         };
26529         
26530         return cfg;
26531     }
26532    
26533 });
26534
26535  
26536
26537  /*
26538  * - LGPL
26539  *
26540  * Tooltip
26541  * 
26542  */
26543
26544 /**
26545  * @class Roo.bootstrap.Tooltip
26546  * Bootstrap Tooltip class
26547  * This is basic at present - all componets support it by default, however they should add tooltipEl() method
26548  * to determine which dom element triggers the tooltip.
26549  * 
26550  * It needs to add support for additional attributes like tooltip-position
26551  * 
26552  * @constructor
26553  * Create a new Toolti
26554  * @param {Object} config The config object
26555  */
26556
26557 Roo.bootstrap.Tooltip = function(config){
26558     Roo.bootstrap.Tooltip.superclass.constructor.call(this, config);
26559     
26560     this.alignment = Roo.bootstrap.Tooltip.alignment;
26561     
26562     if(typeof(config) != 'undefined' && typeof(config.alignment) != 'undefined'){
26563         this.alignment = config.alignment;
26564     }
26565     
26566 };
26567
26568 Roo.apply(Roo.bootstrap.Tooltip, {
26569     /**
26570      * @function init initialize tooltip monitoring.
26571      * @static
26572      */
26573     currentEl : false,
26574     currentTip : false,
26575     currentRegion : false,
26576     
26577     //  init : delay?
26578     
26579     init : function()
26580     {
26581         Roo.get(document).on('mouseover', this.enter ,this);
26582         Roo.get(document).on('mouseout', this.leave, this);
26583          
26584         
26585         this.currentTip = new Roo.bootstrap.Tooltip();
26586     },
26587     
26588     enter : function(ev)
26589     {
26590         var dom = ev.getTarget();
26591         
26592         //Roo.log(['enter',dom]);
26593         var el = Roo.fly(dom);
26594         if (this.currentEl) {
26595             //Roo.log(dom);
26596             //Roo.log(this.currentEl);
26597             //Roo.log(this.currentEl.contains(dom));
26598             if (this.currentEl == el) {
26599                 return;
26600             }
26601             if (dom != this.currentEl.dom && this.currentEl.contains(dom)) {
26602                 return;
26603             }
26604
26605         }
26606         
26607         if (this.currentTip.el) {
26608             this.currentTip.el.setVisibilityMode(Roo.Element.DISPLAY).hide(); // force hiding...
26609         }    
26610         //Roo.log(ev);
26611         
26612         if(!el || el.dom == document){
26613             return;
26614         }
26615         
26616         var bindEl = el;
26617         
26618         // you can not look for children, as if el is the body.. then everythign is the child..
26619         if (!el.attr('tooltip')) { //
26620             if (!el.select("[tooltip]").elements.length) {
26621                 return;
26622             }
26623             // is the mouse over this child...?
26624             bindEl = el.select("[tooltip]").first();
26625             var xy = ev.getXY();
26626             if (!bindEl.getRegion().contains( { top : xy[1] ,right : xy[0] , bottom : xy[1], left : xy[0]})) {
26627                 //Roo.log("not in region.");
26628                 return;
26629             }
26630             //Roo.log("child element over..");
26631             
26632         }
26633         this.currentEl = bindEl;
26634         this.currentTip.bind(bindEl);
26635         this.currentRegion = Roo.lib.Region.getRegion(dom);
26636         this.currentTip.enter();
26637         
26638     },
26639     leave : function(ev)
26640     {
26641         var dom = ev.getTarget();
26642         //Roo.log(['leave',dom]);
26643         if (!this.currentEl) {
26644             return;
26645         }
26646         
26647         
26648         if (dom != this.currentEl.dom) {
26649             return;
26650         }
26651         var xy = ev.getXY();
26652         if (this.currentRegion.contains( new Roo.lib.Region( xy[1], xy[0] ,xy[1], xy[0]  ))) {
26653             return;
26654         }
26655         // only activate leave if mouse cursor is outside... bounding box..
26656         
26657         
26658         
26659         
26660         if (this.currentTip) {
26661             this.currentTip.leave();
26662         }
26663         //Roo.log('clear currentEl');
26664         this.currentEl = false;
26665         
26666         
26667     },
26668     alignment : {
26669         'left' : ['r-l', [-2,0], 'right'],
26670         'right' : ['l-r', [2,0], 'left'],
26671         'bottom' : ['t-b', [0,2], 'top'],
26672         'top' : [ 'b-t', [0,-2], 'bottom']
26673     }
26674     
26675 });
26676
26677
26678 Roo.extend(Roo.bootstrap.Tooltip, Roo.bootstrap.Component,  {
26679     
26680     
26681     bindEl : false,
26682     
26683     delay : null, // can be { show : 300 , hide: 500}
26684     
26685     timeout : null,
26686     
26687     hoverState : null, //???
26688     
26689     placement : 'bottom', 
26690     
26691     alignment : false,
26692     
26693     getAutoCreate : function(){
26694     
26695         var cfg = {
26696            cls : 'tooltip',
26697            role : 'tooltip',
26698            cn : [
26699                 {
26700                     cls : 'tooltip-arrow'
26701                 },
26702                 {
26703                     cls : 'tooltip-inner'
26704                 }
26705            ]
26706         };
26707         
26708         return cfg;
26709     },
26710     bind : function(el)
26711     {
26712         this.bindEl = el;
26713     },
26714       
26715     
26716     enter : function () {
26717        
26718         if (this.timeout != null) {
26719             clearTimeout(this.timeout);
26720         }
26721         
26722         this.hoverState = 'in';
26723          //Roo.log("enter - show");
26724         if (!this.delay || !this.delay.show) {
26725             this.show();
26726             return;
26727         }
26728         var _t = this;
26729         this.timeout = setTimeout(function () {
26730             if (_t.hoverState == 'in') {
26731                 _t.show();
26732             }
26733         }, this.delay.show);
26734     },
26735     leave : function()
26736     {
26737         clearTimeout(this.timeout);
26738     
26739         this.hoverState = 'out';
26740          if (!this.delay || !this.delay.hide) {
26741             this.hide();
26742             return;
26743         }
26744        
26745         var _t = this;
26746         this.timeout = setTimeout(function () {
26747             //Roo.log("leave - timeout");
26748             
26749             if (_t.hoverState == 'out') {
26750                 _t.hide();
26751                 Roo.bootstrap.Tooltip.currentEl = false;
26752             }
26753         }, delay);
26754     },
26755     
26756     show : function (msg)
26757     {
26758         if (!this.el) {
26759             this.render(document.body);
26760         }
26761         // set content.
26762         //Roo.log([this.bindEl, this.bindEl.attr('tooltip')]);
26763         
26764         var tip = msg || this.bindEl.attr('tooltip') || this.bindEl.select("[tooltip]").first().attr('tooltip');
26765         
26766         this.el.select('.tooltip-inner',true).first().dom.innerHTML = tip;
26767         
26768         this.el.removeClass(['fade','top','bottom', 'left', 'right','in']);
26769         
26770         var placement = typeof this.placement == 'function' ?
26771             this.placement.call(this, this.el, on_el) :
26772             this.placement;
26773             
26774         var autoToken = /\s?auto?\s?/i;
26775         var autoPlace = autoToken.test(placement);
26776         if (autoPlace) {
26777             placement = placement.replace(autoToken, '') || 'top';
26778         }
26779         
26780         //this.el.detach()
26781         //this.el.setXY([0,0]);
26782         this.el.show();
26783         //this.el.dom.style.display='block';
26784         
26785         //this.el.appendTo(on_el);
26786         
26787         var p = this.getPosition();
26788         var box = this.el.getBox();
26789         
26790         if (autoPlace) {
26791             // fixme..
26792         }
26793         
26794         var align = this.alignment[placement];
26795         
26796         var xy = this.el.getAlignToXY(this.bindEl, align[0], align[1]);
26797         
26798         if(placement == 'top' || placement == 'bottom'){
26799             if(xy[0] < 0){
26800                 placement = 'right';
26801             }
26802             
26803             if(xy[0] + this.el.getWidth() > Roo.lib.Dom.getViewWidth()){
26804                 placement = 'left';
26805             }
26806             
26807             var scroll = Roo.select('body', true).first().getScroll();
26808             
26809             if(xy[1] > Roo.lib.Dom.getViewHeight() + scroll.top - this.el.getHeight()){
26810                 placement = 'top';
26811             }
26812             
26813             align = this.alignment[placement];
26814         }
26815         
26816         this.el.alignTo(this.bindEl, align[0],align[1]);
26817         //var arrow = this.el.select('.arrow',true).first();
26818         //arrow.set(align[2], 
26819         
26820         this.el.addClass(placement);
26821         
26822         this.el.addClass('in fade');
26823         
26824         this.hoverState = null;
26825         
26826         if (this.el.hasClass('fade')) {
26827             // fade it?
26828         }
26829         
26830     },
26831     hide : function()
26832     {
26833          
26834         if (!this.el) {
26835             return;
26836         }
26837         //this.el.setXY([0,0]);
26838         this.el.removeClass('in');
26839         //this.el.hide();
26840         
26841     }
26842     
26843 });
26844  
26845
26846  /*
26847  * - LGPL
26848  *
26849  * Location Picker
26850  * 
26851  */
26852
26853 /**
26854  * @class Roo.bootstrap.LocationPicker
26855  * @extends Roo.bootstrap.Component
26856  * Bootstrap LocationPicker class
26857  * @cfg {Number} latitude Position when init default 0
26858  * @cfg {Number} longitude Position when init default 0
26859  * @cfg {Number} zoom default 15
26860  * @cfg {String} mapTypeId default google.maps.MapTypeId.ROADMAP
26861  * @cfg {Boolean} mapTypeControl default false
26862  * @cfg {Boolean} disableDoubleClickZoom default false
26863  * @cfg {Boolean} scrollwheel default true
26864  * @cfg {Boolean} streetViewControl default false
26865  * @cfg {Number} radius default 0
26866  * @cfg {String} locationName
26867  * @cfg {Boolean} draggable default true
26868  * @cfg {Boolean} enableAutocomplete default false
26869  * @cfg {Boolean} enableReverseGeocode default true
26870  * @cfg {String} markerTitle
26871  * 
26872  * @constructor
26873  * Create a new LocationPicker
26874  * @param {Object} config The config object
26875  */
26876
26877
26878 Roo.bootstrap.LocationPicker = function(config){
26879     
26880     Roo.bootstrap.LocationPicker.superclass.constructor.call(this, config);
26881     
26882     this.addEvents({
26883         /**
26884          * @event initial
26885          * Fires when the picker initialized.
26886          * @param {Roo.bootstrap.LocationPicker} this
26887          * @param {Google Location} location
26888          */
26889         initial : true,
26890         /**
26891          * @event positionchanged
26892          * Fires when the picker position changed.
26893          * @param {Roo.bootstrap.LocationPicker} this
26894          * @param {Google Location} location
26895          */
26896         positionchanged : true,
26897         /**
26898          * @event resize
26899          * Fires when the map resize.
26900          * @param {Roo.bootstrap.LocationPicker} this
26901          */
26902         resize : true,
26903         /**
26904          * @event show
26905          * Fires when the map show.
26906          * @param {Roo.bootstrap.LocationPicker} this
26907          */
26908         show : true,
26909         /**
26910          * @event hide
26911          * Fires when the map hide.
26912          * @param {Roo.bootstrap.LocationPicker} this
26913          */
26914         hide : true,
26915         /**
26916          * @event mapClick
26917          * Fires when click the map.
26918          * @param {Roo.bootstrap.LocationPicker} this
26919          * @param {Map event} e
26920          */
26921         mapClick : true,
26922         /**
26923          * @event mapRightClick
26924          * Fires when right click the map.
26925          * @param {Roo.bootstrap.LocationPicker} this
26926          * @param {Map event} e
26927          */
26928         mapRightClick : true,
26929         /**
26930          * @event markerClick
26931          * Fires when click the marker.
26932          * @param {Roo.bootstrap.LocationPicker} this
26933          * @param {Map event} e
26934          */
26935         markerClick : true,
26936         /**
26937          * @event markerRightClick
26938          * Fires when right click the marker.
26939          * @param {Roo.bootstrap.LocationPicker} this
26940          * @param {Map event} e
26941          */
26942         markerRightClick : true,
26943         /**
26944          * @event OverlayViewDraw
26945          * Fires when OverlayView Draw
26946          * @param {Roo.bootstrap.LocationPicker} this
26947          */
26948         OverlayViewDraw : true,
26949         /**
26950          * @event OverlayViewOnAdd
26951          * Fires when OverlayView Draw
26952          * @param {Roo.bootstrap.LocationPicker} this
26953          */
26954         OverlayViewOnAdd : true,
26955         /**
26956          * @event OverlayViewOnRemove
26957          * Fires when OverlayView Draw
26958          * @param {Roo.bootstrap.LocationPicker} this
26959          */
26960         OverlayViewOnRemove : true,
26961         /**
26962          * @event OverlayViewShow
26963          * Fires when OverlayView Draw
26964          * @param {Roo.bootstrap.LocationPicker} this
26965          * @param {Pixel} cpx
26966          */
26967         OverlayViewShow : true,
26968         /**
26969          * @event OverlayViewHide
26970          * Fires when OverlayView Draw
26971          * @param {Roo.bootstrap.LocationPicker} this
26972          */
26973         OverlayViewHide : true,
26974         /**
26975          * @event loadexception
26976          * Fires when load google lib failed.
26977          * @param {Roo.bootstrap.LocationPicker} this
26978          */
26979         loadexception : true
26980     });
26981         
26982 };
26983
26984 Roo.extend(Roo.bootstrap.LocationPicker, Roo.bootstrap.Component,  {
26985     
26986     gMapContext: false,
26987     
26988     latitude: 0,
26989     longitude: 0,
26990     zoom: 15,
26991     mapTypeId: false,
26992     mapTypeControl: false,
26993     disableDoubleClickZoom: false,
26994     scrollwheel: true,
26995     streetViewControl: false,
26996     radius: 0,
26997     locationName: '',
26998     draggable: true,
26999     enableAutocomplete: false,
27000     enableReverseGeocode: true,
27001     markerTitle: '',
27002     
27003     getAutoCreate: function()
27004     {
27005
27006         var cfg = {
27007             tag: 'div',
27008             cls: 'roo-location-picker'
27009         };
27010         
27011         return cfg
27012     },
27013     
27014     initEvents: function(ct, position)
27015     {       
27016         if(!this.el.getWidth() || this.isApplied()){
27017             return;
27018         }
27019         
27020         this.el.setVisibilityMode(Roo.Element.DISPLAY);
27021         
27022         this.initial();
27023     },
27024     
27025     initial: function()
27026     {
27027         if(typeof(google) == 'undefined' || typeof(google.maps) == 'undefined'){
27028             this.fireEvent('loadexception', this);
27029             return;
27030         }
27031         
27032         if(!this.mapTypeId){
27033             this.mapTypeId = google.maps.MapTypeId.ROADMAP;
27034         }
27035         
27036         this.gMapContext = this.GMapContext();
27037         
27038         this.initOverlayView();
27039         
27040         this.OverlayView = new Roo.bootstrap.LocationPicker.OverlayView(this.gMapContext.map);
27041         
27042         var _this = this;
27043                 
27044         google.maps.event.addListener(this.gMapContext.marker, "dragend", function(event) {
27045             _this.setPosition(_this.gMapContext.marker.position);
27046         });
27047         
27048         google.maps.event.addListener(this.gMapContext.map, 'click', function(event){
27049             _this.fireEvent('mapClick', this, event);
27050             
27051         });
27052
27053         google.maps.event.addListener(this.gMapContext.map, 'rightclick', function(event){
27054             _this.fireEvent('mapRightClick', this, event);
27055             
27056         });
27057         
27058         google.maps.event.addListener(this.gMapContext.marker, 'click', function(event){
27059             _this.fireEvent('markerClick', this, event);
27060             
27061         });
27062
27063         google.maps.event.addListener(this.gMapContext.marker, 'rightclick', function(event){
27064             _this.fireEvent('markerRightClick', this, event);
27065             
27066         });
27067         
27068         this.setPosition(this.gMapContext.location);
27069         
27070         this.fireEvent('initial', this, this.gMapContext.location);
27071     },
27072     
27073     initOverlayView: function()
27074     {
27075         var _this = this;
27076         
27077         Roo.bootstrap.LocationPicker.OverlayView.prototype = Roo.apply(new google.maps.OverlayView(), {
27078             
27079             draw: function()
27080             {
27081                 _this.fireEvent('OverlayViewDraw', _this);
27082             },
27083             
27084             onAdd: function()
27085             {
27086                 _this.fireEvent('OverlayViewOnAdd', _this);
27087             },
27088             
27089             onRemove: function()
27090             {
27091                 _this.fireEvent('OverlayViewOnRemove', _this);
27092             },
27093             
27094             show: function(cpx)
27095             {
27096                 _this.fireEvent('OverlayViewShow', _this, cpx);
27097             },
27098             
27099             hide: function()
27100             {
27101                 _this.fireEvent('OverlayViewHide', _this);
27102             }
27103             
27104         });
27105     },
27106     
27107     fromLatLngToContainerPixel: function(event)
27108     {
27109         return this.OverlayView.getProjection().fromLatLngToContainerPixel(event.latLng);
27110     },
27111     
27112     isApplied: function() 
27113     {
27114         return this.getGmapContext() == false ? false : true;
27115     },
27116     
27117     getGmapContext: function() 
27118     {
27119         return (typeof(this.gMapContext) == 'undefined') ? false : this.gMapContext;
27120     },
27121     
27122     GMapContext: function() 
27123     {
27124         var position = new google.maps.LatLng(this.latitude, this.longitude);
27125         
27126         var _map = new google.maps.Map(this.el.dom, {
27127             center: position,
27128             zoom: this.zoom,
27129             mapTypeId: this.mapTypeId,
27130             mapTypeControl: this.mapTypeControl,
27131             disableDoubleClickZoom: this.disableDoubleClickZoom,
27132             scrollwheel: this.scrollwheel,
27133             streetViewControl: this.streetViewControl,
27134             locationName: this.locationName,
27135             draggable: this.draggable,
27136             enableAutocomplete: this.enableAutocomplete,
27137             enableReverseGeocode: this.enableReverseGeocode
27138         });
27139         
27140         var _marker = new google.maps.Marker({
27141             position: position,
27142             map: _map,
27143             title: this.markerTitle,
27144             draggable: this.draggable
27145         });
27146         
27147         return {
27148             map: _map,
27149             marker: _marker,
27150             circle: null,
27151             location: position,
27152             radius: this.radius,
27153             locationName: this.locationName,
27154             addressComponents: {
27155                 formatted_address: null,
27156                 addressLine1: null,
27157                 addressLine2: null,
27158                 streetName: null,
27159                 streetNumber: null,
27160                 city: null,
27161                 district: null,
27162                 state: null,
27163                 stateOrProvince: null
27164             },
27165             settings: this,
27166             domContainer: this.el.dom,
27167             geodecoder: new google.maps.Geocoder()
27168         };
27169     },
27170     
27171     drawCircle: function(center, radius, options) 
27172     {
27173         if (this.gMapContext.circle != null) {
27174             this.gMapContext.circle.setMap(null);
27175         }
27176         if (radius > 0) {
27177             radius *= 1;
27178             options = Roo.apply({}, options, {
27179                 strokeColor: "#0000FF",
27180                 strokeOpacity: .35,
27181                 strokeWeight: 2,
27182                 fillColor: "#0000FF",
27183                 fillOpacity: .2
27184             });
27185             
27186             options.map = this.gMapContext.map;
27187             options.radius = radius;
27188             options.center = center;
27189             this.gMapContext.circle = new google.maps.Circle(options);
27190             return this.gMapContext.circle;
27191         }
27192         
27193         return null;
27194     },
27195     
27196     setPosition: function(location) 
27197     {
27198         this.gMapContext.location = location;
27199         this.gMapContext.marker.setPosition(location);
27200         this.gMapContext.map.panTo(location);
27201         this.drawCircle(location, this.gMapContext.radius, {});
27202         
27203         var _this = this;
27204         
27205         if (this.gMapContext.settings.enableReverseGeocode) {
27206             this.gMapContext.geodecoder.geocode({
27207                 latLng: this.gMapContext.location
27208             }, function(results, status) {
27209                 
27210                 if (status == google.maps.GeocoderStatus.OK && results.length > 0) {
27211                     _this.gMapContext.locationName = results[0].formatted_address;
27212                     _this.gMapContext.addressComponents = _this.address_component_from_google_geocode(results[0].address_components);
27213                     
27214                     _this.fireEvent('positionchanged', this, location);
27215                 }
27216             });
27217             
27218             return;
27219         }
27220         
27221         this.fireEvent('positionchanged', this, location);
27222     },
27223     
27224     resize: function()
27225     {
27226         google.maps.event.trigger(this.gMapContext.map, "resize");
27227         
27228         this.gMapContext.map.setCenter(this.gMapContext.marker.position);
27229         
27230         this.fireEvent('resize', this);
27231     },
27232     
27233     setPositionByLatLng: function(latitude, longitude)
27234     {
27235         this.setPosition(new google.maps.LatLng(latitude, longitude));
27236     },
27237     
27238     getCurrentPosition: function() 
27239     {
27240         return {
27241             latitude: this.gMapContext.location.lat(),
27242             longitude: this.gMapContext.location.lng()
27243         };
27244     },
27245     
27246     getAddressName: function() 
27247     {
27248         return this.gMapContext.locationName;
27249     },
27250     
27251     getAddressComponents: function() 
27252     {
27253         return this.gMapContext.addressComponents;
27254     },
27255     
27256     address_component_from_google_geocode: function(address_components) 
27257     {
27258         var result = {};
27259         
27260         for (var i = 0; i < address_components.length; i++) {
27261             var component = address_components[i];
27262             if (component.types.indexOf("postal_code") >= 0) {
27263                 result.postalCode = component.short_name;
27264             } else if (component.types.indexOf("street_number") >= 0) {
27265                 result.streetNumber = component.short_name;
27266             } else if (component.types.indexOf("route") >= 0) {
27267                 result.streetName = component.short_name;
27268             } else if (component.types.indexOf("neighborhood") >= 0) {
27269                 result.city = component.short_name;
27270             } else if (component.types.indexOf("locality") >= 0) {
27271                 result.city = component.short_name;
27272             } else if (component.types.indexOf("sublocality") >= 0) {
27273                 result.district = component.short_name;
27274             } else if (component.types.indexOf("administrative_area_level_1") >= 0) {
27275                 result.stateOrProvince = component.short_name;
27276             } else if (component.types.indexOf("country") >= 0) {
27277                 result.country = component.short_name;
27278             }
27279         }
27280         
27281         result.addressLine1 = [ result.streetNumber, result.streetName ].join(" ").trim();
27282         result.addressLine2 = "";
27283         return result;
27284     },
27285     
27286     setZoomLevel: function(zoom)
27287     {
27288         this.gMapContext.map.setZoom(zoom);
27289     },
27290     
27291     show: function()
27292     {
27293         if(!this.el){
27294             return;
27295         }
27296         
27297         this.el.show();
27298         
27299         this.resize();
27300         
27301         this.fireEvent('show', this);
27302     },
27303     
27304     hide: function()
27305     {
27306         if(!this.el){
27307             return;
27308         }
27309         
27310         this.el.hide();
27311         
27312         this.fireEvent('hide', this);
27313     }
27314     
27315 });
27316
27317 Roo.apply(Roo.bootstrap.LocationPicker, {
27318     
27319     OverlayView : function(map, options)
27320     {
27321         options = options || {};
27322         
27323         this.setMap(map);
27324     }
27325     
27326     
27327 });/**
27328  * @class Roo.bootstrap.Alert
27329  * @extends Roo.bootstrap.Component
27330  * Bootstrap Alert class - shows an alert area box
27331  * eg
27332  * <div class="alert alert-danger" role="alert"><span class="fa fa-exclamation-triangle"></span><span class="sr-only">Error:</span>
27333   Enter a valid email address
27334 </div>
27335  * @licence LGPL
27336  * @cfg {String} title The title of alert
27337  * @cfg {String} html The content of alert
27338  * @cfg {String} weight (  success | info | warning | danger )
27339  * @cfg {String} faicon font-awesomeicon
27340  * 
27341  * @constructor
27342  * Create a new alert
27343  * @param {Object} config The config object
27344  */
27345
27346
27347 Roo.bootstrap.Alert = function(config){
27348     Roo.bootstrap.Alert.superclass.constructor.call(this, config);
27349     
27350 };
27351
27352 Roo.extend(Roo.bootstrap.Alert, Roo.bootstrap.Component,  {
27353     
27354     title: '',
27355     html: '',
27356     weight: false,
27357     faicon: false,
27358     
27359     getAutoCreate : function()
27360     {
27361         
27362         var cfg = {
27363             tag : 'div',
27364             cls : 'alert',
27365             cn : [
27366                 {
27367                     tag : 'i',
27368                     cls : 'roo-alert-icon'
27369                     
27370                 },
27371                 {
27372                     tag : 'b',
27373                     cls : 'roo-alert-title',
27374                     html : this.title
27375                 },
27376                 {
27377                     tag : 'span',
27378                     cls : 'roo-alert-text',
27379                     html : this.html
27380                 }
27381             ]
27382         };
27383         
27384         if(this.faicon){
27385             cfg.cn[0].cls += ' fa ' + this.faicon;
27386         }
27387         
27388         if(this.weight){
27389             cfg.cls += ' alert-' + this.weight;
27390         }
27391         
27392         return cfg;
27393     },
27394     
27395     initEvents: function() 
27396     {
27397         this.el.setVisibilityMode(Roo.Element.DISPLAY);
27398     },
27399     
27400     setTitle : function(str)
27401     {
27402         this.el.select('.roo-alert-title',true).first().dom.innerHTML = str;
27403     },
27404     
27405     setText : function(str)
27406     {
27407         this.el.select('.roo-alert-text',true).first().dom.innerHTML = str;
27408     },
27409     
27410     setWeight : function(weight)
27411     {
27412         if(this.weight){
27413             this.el.select('.alert',true).first().removeClass('alert-' + this.weight);
27414         }
27415         
27416         this.weight = weight;
27417         
27418         this.el.select('.alert',true).first().addClass('alert-' + this.weight);
27419     },
27420     
27421     setIcon : function(icon)
27422     {
27423         if(this.faicon){
27424             this.el.select('.roo-alert-icon',true).first().removeClass(['fa', 'fa-' + this.faicon]);
27425         }
27426         
27427         this.faicon = icon;
27428         
27429         this.el.select('.roo-alert-icon',true).first().addClass(['fa', 'fa-' + this.faicon]);
27430     },
27431     
27432     hide: function() 
27433     {
27434         this.el.hide();   
27435     },
27436     
27437     show: function() 
27438     {  
27439         this.el.show();   
27440     }
27441     
27442 });
27443
27444  
27445 /*
27446 * Licence: LGPL
27447 */
27448
27449 /**
27450  * @class Roo.bootstrap.UploadCropbox
27451  * @extends Roo.bootstrap.Component
27452  * Bootstrap UploadCropbox class
27453  * @cfg {String} emptyText show when image has been loaded
27454  * @cfg {String} rotateNotify show when image too small to rotate
27455  * @cfg {Number} errorTimeout default 3000
27456  * @cfg {Number} minWidth default 300
27457  * @cfg {Number} minHeight default 300
27458  * @cfg {Array} buttons default ['rotateLeft', 'pictureBtn', 'rotateRight']
27459  * @cfg {Boolean} isDocument (true|false) default false
27460  * @cfg {String} url action url
27461  * @cfg {String} paramName default 'imageUpload'
27462  * @cfg {String} method default POST
27463  * @cfg {Boolean} loadMask (true|false) default true
27464  * @cfg {Boolean} loadingText default 'Loading...'
27465  * 
27466  * @constructor
27467  * Create a new UploadCropbox
27468  * @param {Object} config The config object
27469  */
27470
27471 Roo.bootstrap.UploadCropbox = function(config){
27472     Roo.bootstrap.UploadCropbox.superclass.constructor.call(this, config);
27473     
27474     this.addEvents({
27475         /**
27476          * @event beforeselectfile
27477          * Fire before select file
27478          * @param {Roo.bootstrap.UploadCropbox} this
27479          */
27480         "beforeselectfile" : true,
27481         /**
27482          * @event initial
27483          * Fire after initEvent
27484          * @param {Roo.bootstrap.UploadCropbox} this
27485          */
27486         "initial" : true,
27487         /**
27488          * @event crop
27489          * Fire after initEvent
27490          * @param {Roo.bootstrap.UploadCropbox} this
27491          * @param {String} data
27492          */
27493         "crop" : true,
27494         /**
27495          * @event prepare
27496          * Fire when preparing the file data
27497          * @param {Roo.bootstrap.UploadCropbox} this
27498          * @param {Object} file
27499          */
27500         "prepare" : true,
27501         /**
27502          * @event exception
27503          * Fire when get exception
27504          * @param {Roo.bootstrap.UploadCropbox} this
27505          * @param {XMLHttpRequest} xhr
27506          */
27507         "exception" : true,
27508         /**
27509          * @event beforeloadcanvas
27510          * Fire before load the canvas
27511          * @param {Roo.bootstrap.UploadCropbox} this
27512          * @param {String} src
27513          */
27514         "beforeloadcanvas" : true,
27515         /**
27516          * @event trash
27517          * Fire when trash image
27518          * @param {Roo.bootstrap.UploadCropbox} this
27519          */
27520         "trash" : true,
27521         /**
27522          * @event download
27523          * Fire when download the image
27524          * @param {Roo.bootstrap.UploadCropbox} this
27525          */
27526         "download" : true,
27527         /**
27528          * @event footerbuttonclick
27529          * Fire when footerbuttonclick
27530          * @param {Roo.bootstrap.UploadCropbox} this
27531          * @param {String} type
27532          */
27533         "footerbuttonclick" : true,
27534         /**
27535          * @event resize
27536          * Fire when resize
27537          * @param {Roo.bootstrap.UploadCropbox} this
27538          */
27539         "resize" : true,
27540         /**
27541          * @event rotate
27542          * Fire when rotate the image
27543          * @param {Roo.bootstrap.UploadCropbox} this
27544          * @param {String} pos
27545          */
27546         "rotate" : true,
27547         /**
27548          * @event inspect
27549          * Fire when inspect the file
27550          * @param {Roo.bootstrap.UploadCropbox} this
27551          * @param {Object} file
27552          */
27553         "inspect" : true,
27554         /**
27555          * @event upload
27556          * Fire when xhr upload the file
27557          * @param {Roo.bootstrap.UploadCropbox} this
27558          * @param {Object} data
27559          */
27560         "upload" : true,
27561         /**
27562          * @event arrange
27563          * Fire when arrange the file data
27564          * @param {Roo.bootstrap.UploadCropbox} this
27565          * @param {Object} formData
27566          */
27567         "arrange" : true
27568     });
27569     
27570     this.buttons = this.buttons || Roo.bootstrap.UploadCropbox.footer.STANDARD;
27571 };
27572
27573 Roo.extend(Roo.bootstrap.UploadCropbox, Roo.bootstrap.Component,  {
27574     
27575     emptyText : 'Click to upload image',
27576     rotateNotify : 'Image is too small to rotate',
27577     errorTimeout : 3000,
27578     scale : 0,
27579     baseScale : 1,
27580     rotate : 0,
27581     dragable : false,
27582     pinching : false,
27583     mouseX : 0,
27584     mouseY : 0,
27585     cropData : false,
27586     minWidth : 300,
27587     minHeight : 300,
27588     file : false,
27589     exif : {},
27590     baseRotate : 1,
27591     cropType : 'image/jpeg',
27592     buttons : false,
27593     canvasLoaded : false,
27594     isDocument : false,
27595     method : 'POST',
27596     paramName : 'imageUpload',
27597     loadMask : true,
27598     loadingText : 'Loading...',
27599     maskEl : false,
27600     
27601     getAutoCreate : function()
27602     {
27603         var cfg = {
27604             tag : 'div',
27605             cls : 'roo-upload-cropbox',
27606             cn : [
27607                 {
27608                     tag : 'input',
27609                     cls : 'roo-upload-cropbox-selector',
27610                     type : 'file'
27611                 },
27612                 {
27613                     tag : 'div',
27614                     cls : 'roo-upload-cropbox-body',
27615                     style : 'cursor:pointer',
27616                     cn : [
27617                         {
27618                             tag : 'div',
27619                             cls : 'roo-upload-cropbox-preview'
27620                         },
27621                         {
27622                             tag : 'div',
27623                             cls : 'roo-upload-cropbox-thumb'
27624                         },
27625                         {
27626                             tag : 'div',
27627                             cls : 'roo-upload-cropbox-empty-notify',
27628                             html : this.emptyText
27629                         },
27630                         {
27631                             tag : 'div',
27632                             cls : 'roo-upload-cropbox-error-notify alert alert-danger',
27633                             html : this.rotateNotify
27634                         }
27635                     ]
27636                 },
27637                 {
27638                     tag : 'div',
27639                     cls : 'roo-upload-cropbox-footer',
27640                     cn : {
27641                         tag : 'div',
27642                         cls : 'btn-group btn-group-justified roo-upload-cropbox-btn-group',
27643                         cn : []
27644                     }
27645                 }
27646             ]
27647         };
27648         
27649         return cfg;
27650     },
27651     
27652     onRender : function(ct, position)
27653     {
27654         Roo.bootstrap.UploadCropbox.superclass.onRender.call(this, ct, position);
27655         
27656         if (this.buttons.length) {
27657             
27658             Roo.each(this.buttons, function(bb) {
27659                 
27660                 var btn = this.el.select('.roo-upload-cropbox-footer div.roo-upload-cropbox-btn-group').first().createChild(bb);
27661                 
27662                 btn.on('click', this.onFooterButtonClick.createDelegate(this, [bb.action], true));
27663                 
27664             }, this);
27665         }
27666         
27667         if(this.loadMask){
27668             this.maskEl = this.el;
27669         }
27670     },
27671     
27672     initEvents : function()
27673     {
27674         this.urlAPI = (window.createObjectURL && window) || 
27675                                 (window.URL && URL.revokeObjectURL && URL) || 
27676                                 (window.webkitURL && webkitURL);
27677                         
27678         this.bodyEl = this.el.select('.roo-upload-cropbox-body', true).first();
27679         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27680         
27681         this.selectorEl = this.el.select('.roo-upload-cropbox-selector', true).first();
27682         this.selectorEl.hide();
27683         
27684         this.previewEl = this.el.select('.roo-upload-cropbox-preview', true).first();
27685         this.previewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27686         
27687         this.thumbEl = this.el.select('.roo-upload-cropbox-thumb', true).first();
27688         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27689         this.thumbEl.hide();
27690         
27691         this.notifyEl = this.el.select('.roo-upload-cropbox-empty-notify', true).first();
27692         this.notifyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27693         
27694         this.errorEl = this.el.select('.roo-upload-cropbox-error-notify', true).first();
27695         this.errorEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27696         this.errorEl.hide();
27697         
27698         this.footerEl = this.el.select('.roo-upload-cropbox-footer', true).first();
27699         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27700         this.footerEl.hide();
27701         
27702         this.setThumbBoxSize();
27703         
27704         this.bind();
27705         
27706         this.resize();
27707         
27708         this.fireEvent('initial', this);
27709     },
27710
27711     bind : function()
27712     {
27713         var _this = this;
27714         
27715         window.addEventListener("resize", function() { _this.resize(); } );
27716         
27717         this.bodyEl.on('click', this.beforeSelectFile, this);
27718         
27719         if(Roo.isTouch){
27720             this.bodyEl.on('touchstart', this.onTouchStart, this);
27721             this.bodyEl.on('touchmove', this.onTouchMove, this);
27722             this.bodyEl.on('touchend', this.onTouchEnd, this);
27723         }
27724         
27725         if(!Roo.isTouch){
27726             this.bodyEl.on('mousedown', this.onMouseDown, this);
27727             this.bodyEl.on('mousemove', this.onMouseMove, this);
27728             var mousewheel = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel';
27729             this.bodyEl.on(mousewheel, this.onMouseWheel, this);
27730             Roo.get(document).on('mouseup', this.onMouseUp, this);
27731         }
27732         
27733         this.selectorEl.on('change', this.onFileSelected, this);
27734     },
27735     
27736     reset : function()
27737     {    
27738         this.scale = 0;
27739         this.baseScale = 1;
27740         this.rotate = 0;
27741         this.baseRotate = 1;
27742         this.dragable = false;
27743         this.pinching = false;
27744         this.mouseX = 0;
27745         this.mouseY = 0;
27746         this.cropData = false;
27747         this.notifyEl.dom.innerHTML = this.emptyText;
27748         
27749         this.selectorEl.dom.value = '';
27750         
27751     },
27752     
27753     resize : function()
27754     {
27755         if(this.fireEvent('resize', this) != false){
27756             this.setThumbBoxPosition();
27757             this.setCanvasPosition();
27758         }
27759     },
27760     
27761     onFooterButtonClick : function(e, el, o, type)
27762     {
27763         switch (type) {
27764             case 'rotate-left' :
27765                 this.onRotateLeft(e);
27766                 break;
27767             case 'rotate-right' :
27768                 this.onRotateRight(e);
27769                 break;
27770             case 'picture' :
27771                 this.beforeSelectFile(e);
27772                 break;
27773             case 'trash' :
27774                 this.trash(e);
27775                 break;
27776             case 'crop' :
27777                 this.crop(e);
27778                 break;
27779             case 'download' :
27780                 this.download(e);
27781                 break;
27782             default :
27783                 break;
27784         }
27785         
27786         this.fireEvent('footerbuttonclick', this, type);
27787     },
27788     
27789     beforeSelectFile : function(e)
27790     {
27791         e.preventDefault();
27792         
27793         if(this.fireEvent('beforeselectfile', this) != false){
27794             this.selectorEl.dom.click();
27795         }
27796     },
27797     
27798     onFileSelected : function(e)
27799     {
27800         e.preventDefault();
27801         
27802         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
27803             return;
27804         }
27805         
27806         var file = this.selectorEl.dom.files[0];
27807         
27808         if(this.fireEvent('inspect', this, file) != false){
27809             this.prepare(file);
27810         }
27811         
27812     },
27813     
27814     trash : function(e)
27815     {
27816         this.fireEvent('trash', this);
27817     },
27818     
27819     download : function(e)
27820     {
27821         this.fireEvent('download', this);
27822     },
27823     
27824     loadCanvas : function(src)
27825     {   
27826         if(this.fireEvent('beforeloadcanvas', this, src) != false){
27827             
27828             this.reset();
27829             
27830             this.imageEl = document.createElement('img');
27831             
27832             var _this = this;
27833             
27834             this.imageEl.addEventListener("load", function(){ _this.onLoadCanvas(); });
27835             
27836             this.imageEl.src = src;
27837         }
27838     },
27839     
27840     onLoadCanvas : function()
27841     {   
27842         this.imageEl.OriginWidth = this.imageEl.naturalWidth || this.imageEl.width;
27843         this.imageEl.OriginHeight = this.imageEl.naturalHeight || this.imageEl.height;
27844         
27845         this.bodyEl.un('click', this.beforeSelectFile, this);
27846         
27847         this.notifyEl.hide();
27848         this.thumbEl.show();
27849         this.footerEl.show();
27850         
27851         this.baseRotateLevel();
27852         
27853         if(this.isDocument){
27854             this.setThumbBoxSize();
27855         }
27856         
27857         this.setThumbBoxPosition();
27858         
27859         this.baseScaleLevel();
27860         
27861         this.draw();
27862         
27863         this.resize();
27864         
27865         this.canvasLoaded = true;
27866         
27867         if(this.loadMask){
27868             this.maskEl.unmask();
27869         }
27870         
27871     },
27872     
27873     setCanvasPosition : function()
27874     {   
27875         if(!this.canvasEl){
27876             return;
27877         }
27878         
27879         var pw = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
27880         var ph = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
27881         
27882         this.previewEl.setLeft(pw);
27883         this.previewEl.setTop(ph);
27884         
27885     },
27886     
27887     onMouseDown : function(e)
27888     {   
27889         e.stopEvent();
27890         
27891         this.dragable = true;
27892         this.pinching = false;
27893         
27894         if(this.isDocument && (this.canvasEl.width < this.thumbEl.getWidth() || this.canvasEl.height < this.thumbEl.getHeight())){
27895             this.dragable = false;
27896             return;
27897         }
27898         
27899         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27900         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27901         
27902     },
27903     
27904     onMouseMove : function(e)
27905     {   
27906         e.stopEvent();
27907         
27908         if(!this.canvasLoaded){
27909             return;
27910         }
27911         
27912         if (!this.dragable){
27913             return;
27914         }
27915         
27916         var minX = Math.ceil(this.thumbEl.getLeft(true));
27917         var minY = Math.ceil(this.thumbEl.getTop(true));
27918         
27919         var maxX = Math.ceil(minX + this.thumbEl.getWidth() - this.canvasEl.width);
27920         var maxY = Math.ceil(minY + this.thumbEl.getHeight() - this.canvasEl.height);
27921         
27922         var x = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27923         var y = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27924         
27925         x = x - this.mouseX;
27926         y = y - this.mouseY;
27927         
27928         var bgX = Math.ceil(x + this.previewEl.getLeft(true));
27929         var bgY = Math.ceil(y + this.previewEl.getTop(true));
27930         
27931         bgX = (minX < bgX) ? minX : ((maxX > bgX) ? maxX : bgX);
27932         bgY = (minY < bgY) ? minY : ((maxY > bgY) ? maxY : bgY);
27933         
27934         this.previewEl.setLeft(bgX);
27935         this.previewEl.setTop(bgY);
27936         
27937         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27938         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27939     },
27940     
27941     onMouseUp : function(e)
27942     {   
27943         e.stopEvent();
27944         
27945         this.dragable = false;
27946     },
27947     
27948     onMouseWheel : function(e)
27949     {   
27950         e.stopEvent();
27951         
27952         this.startScale = this.scale;
27953         
27954         this.scale = (e.getWheelDelta() == 1) ? (this.scale + 1) : (this.scale - 1);
27955         
27956         if(!this.zoomable()){
27957             this.scale = this.startScale;
27958             return;
27959         }
27960         
27961         this.draw();
27962         
27963         return;
27964     },
27965     
27966     zoomable : function()
27967     {
27968         var minScale = this.thumbEl.getWidth() / this.minWidth;
27969         
27970         if(this.minWidth < this.minHeight){
27971             minScale = this.thumbEl.getHeight() / this.minHeight;
27972         }
27973         
27974         var width = Math.ceil(this.imageEl.OriginWidth * this.getScaleLevel() / minScale);
27975         var height = Math.ceil(this.imageEl.OriginHeight * this.getScaleLevel() / minScale);
27976         
27977         if(
27978                 this.isDocument &&
27979                 (this.rotate == 0 || this.rotate == 180) && 
27980                 (
27981                     width > this.imageEl.OriginWidth || 
27982                     height > this.imageEl.OriginHeight ||
27983                     (width < this.minWidth && height < this.minHeight)
27984                 )
27985         ){
27986             return false;
27987         }
27988         
27989         if(
27990                 this.isDocument &&
27991                 (this.rotate == 90 || this.rotate == 270) && 
27992                 (
27993                     width > this.imageEl.OriginWidth || 
27994                     height > this.imageEl.OriginHeight ||
27995                     (width < this.minHeight && height < this.minWidth)
27996                 )
27997         ){
27998             return false;
27999         }
28000         
28001         if(
28002                 !this.isDocument &&
28003                 (this.rotate == 0 || this.rotate == 180) && 
28004                 (
28005                     width < this.minWidth || 
28006                     width > this.imageEl.OriginWidth || 
28007                     height < this.minHeight || 
28008                     height > this.imageEl.OriginHeight
28009                 )
28010         ){
28011             return false;
28012         }
28013         
28014         if(
28015                 !this.isDocument &&
28016                 (this.rotate == 90 || this.rotate == 270) && 
28017                 (
28018                     width < this.minHeight || 
28019                     width > this.imageEl.OriginWidth || 
28020                     height < this.minWidth || 
28021                     height > this.imageEl.OriginHeight
28022                 )
28023         ){
28024             return false;
28025         }
28026         
28027         return true;
28028         
28029     },
28030     
28031     onRotateLeft : function(e)
28032     {   
28033         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
28034             
28035             var minScale = this.thumbEl.getWidth() / this.minWidth;
28036             
28037             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
28038             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
28039             
28040             this.startScale = this.scale;
28041             
28042             while (this.getScaleLevel() < minScale){
28043             
28044                 this.scale = this.scale + 1;
28045                 
28046                 if(!this.zoomable()){
28047                     break;
28048                 }
28049                 
28050                 if(
28051                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
28052                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
28053                 ){
28054                     continue;
28055                 }
28056                 
28057                 this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
28058
28059                 this.draw();
28060                 
28061                 return;
28062             }
28063             
28064             this.scale = this.startScale;
28065             
28066             this.onRotateFail();
28067             
28068             return false;
28069         }
28070         
28071         this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
28072
28073         if(this.isDocument){
28074             this.setThumbBoxSize();
28075             this.setThumbBoxPosition();
28076             this.setCanvasPosition();
28077         }
28078         
28079         this.draw();
28080         
28081         this.fireEvent('rotate', this, 'left');
28082         
28083     },
28084     
28085     onRotateRight : function(e)
28086     {
28087         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
28088             
28089             var minScale = this.thumbEl.getWidth() / this.minWidth;
28090         
28091             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
28092             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
28093             
28094             this.startScale = this.scale;
28095             
28096             while (this.getScaleLevel() < minScale){
28097             
28098                 this.scale = this.scale + 1;
28099                 
28100                 if(!this.zoomable()){
28101                     break;
28102                 }
28103                 
28104                 if(
28105                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
28106                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
28107                 ){
28108                     continue;
28109                 }
28110                 
28111                 this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28112
28113                 this.draw();
28114                 
28115                 return;
28116             }
28117             
28118             this.scale = this.startScale;
28119             
28120             this.onRotateFail();
28121             
28122             return false;
28123         }
28124         
28125         this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28126
28127         if(this.isDocument){
28128             this.setThumbBoxSize();
28129             this.setThumbBoxPosition();
28130             this.setCanvasPosition();
28131         }
28132         
28133         this.draw();
28134         
28135         this.fireEvent('rotate', this, 'right');
28136     },
28137     
28138     onRotateFail : function()
28139     {
28140         this.errorEl.show(true);
28141         
28142         var _this = this;
28143         
28144         (function() { _this.errorEl.hide(true); }).defer(this.errorTimeout);
28145     },
28146     
28147     draw : function()
28148     {
28149         this.previewEl.dom.innerHTML = '';
28150         
28151         var canvasEl = document.createElement("canvas");
28152         
28153         var contextEl = canvasEl.getContext("2d");
28154         
28155         canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28156         canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28157         var center = this.imageEl.OriginWidth / 2;
28158         
28159         if(this.imageEl.OriginWidth < this.imageEl.OriginHeight){
28160             canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28161             canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28162             center = this.imageEl.OriginHeight / 2;
28163         }
28164         
28165         contextEl.scale(this.getScaleLevel(), this.getScaleLevel());
28166         
28167         contextEl.translate(center, center);
28168         contextEl.rotate(this.rotate * Math.PI / 180);
28169
28170         contextEl.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28171         
28172         this.canvasEl = document.createElement("canvas");
28173         
28174         this.contextEl = this.canvasEl.getContext("2d");
28175         
28176         switch (this.rotate) {
28177             case 0 :
28178                 
28179                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28180                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28181                 
28182                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28183                 
28184                 break;
28185             case 90 : 
28186                 
28187                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28188                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28189                 
28190                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28191                     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);
28192                     break;
28193                 }
28194                 
28195                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28196                 
28197                 break;
28198             case 180 :
28199                 
28200                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28201                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28202                 
28203                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28204                     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);
28205                     break;
28206                 }
28207                 
28208                 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);
28209                 
28210                 break;
28211             case 270 :
28212                 
28213                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28214                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28215         
28216                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28217                     this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28218                     break;
28219                 }
28220                 
28221                 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);
28222                 
28223                 break;
28224             default : 
28225                 break;
28226         }
28227         
28228         this.previewEl.appendChild(this.canvasEl);
28229         
28230         this.setCanvasPosition();
28231     },
28232     
28233     crop : function()
28234     {
28235         if(!this.canvasLoaded){
28236             return;
28237         }
28238         
28239         var imageCanvas = document.createElement("canvas");
28240         
28241         var imageContext = imageCanvas.getContext("2d");
28242         
28243         imageCanvas.width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28244         imageCanvas.height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28245         
28246         var center = imageCanvas.width / 2;
28247         
28248         imageContext.translate(center, center);
28249         
28250         imageContext.rotate(this.rotate * Math.PI / 180);
28251         
28252         imageContext.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28253         
28254         var canvas = document.createElement("canvas");
28255         
28256         var context = canvas.getContext("2d");
28257                 
28258         canvas.width = this.minWidth;
28259         canvas.height = this.minHeight;
28260
28261         switch (this.rotate) {
28262             case 0 :
28263                 
28264                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28265                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28266                 
28267                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28268                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28269                 
28270                 var targetWidth = this.minWidth - 2 * x;
28271                 var targetHeight = this.minHeight - 2 * y;
28272                 
28273                 var scale = 1;
28274                 
28275                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28276                     scale = targetWidth / width;
28277                 }
28278                 
28279                 if(x > 0 && y == 0){
28280                     scale = targetHeight / height;
28281                 }
28282                 
28283                 if(x > 0 && y > 0){
28284                     scale = targetWidth / width;
28285                     
28286                     if(width < height){
28287                         scale = targetHeight / height;
28288                     }
28289                 }
28290                 
28291                 context.scale(scale, scale);
28292                 
28293                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28294                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28295
28296                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28297                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28298
28299                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28300                 
28301                 break;
28302             case 90 : 
28303                 
28304                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28305                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28306                 
28307                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28308                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28309                 
28310                 var targetWidth = this.minWidth - 2 * x;
28311                 var targetHeight = this.minHeight - 2 * y;
28312                 
28313                 var scale = 1;
28314                 
28315                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28316                     scale = targetWidth / width;
28317                 }
28318                 
28319                 if(x > 0 && y == 0){
28320                     scale = targetHeight / height;
28321                 }
28322                 
28323                 if(x > 0 && y > 0){
28324                     scale = targetWidth / width;
28325                     
28326                     if(width < height){
28327                         scale = targetHeight / height;
28328                     }
28329                 }
28330                 
28331                 context.scale(scale, scale);
28332                 
28333                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28334                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28335
28336                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28337                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28338                 
28339                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28340                 
28341                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28342                 
28343                 break;
28344             case 180 :
28345                 
28346                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28347                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28348                 
28349                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28350                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28351                 
28352                 var targetWidth = this.minWidth - 2 * x;
28353                 var targetHeight = this.minHeight - 2 * y;
28354                 
28355                 var scale = 1;
28356                 
28357                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28358                     scale = targetWidth / width;
28359                 }
28360                 
28361                 if(x > 0 && y == 0){
28362                     scale = targetHeight / height;
28363                 }
28364                 
28365                 if(x > 0 && y > 0){
28366                     scale = targetWidth / width;
28367                     
28368                     if(width < height){
28369                         scale = targetHeight / height;
28370                     }
28371                 }
28372                 
28373                 context.scale(scale, scale);
28374                 
28375                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28376                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28377
28378                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28379                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28380
28381                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28382                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28383                 
28384                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28385                 
28386                 break;
28387             case 270 :
28388                 
28389                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28390                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28391                 
28392                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28393                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28394                 
28395                 var targetWidth = this.minWidth - 2 * x;
28396                 var targetHeight = this.minHeight - 2 * y;
28397                 
28398                 var scale = 1;
28399                 
28400                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28401                     scale = targetWidth / width;
28402                 }
28403                 
28404                 if(x > 0 && y == 0){
28405                     scale = targetHeight / height;
28406                 }
28407                 
28408                 if(x > 0 && y > 0){
28409                     scale = targetWidth / width;
28410                     
28411                     if(width < height){
28412                         scale = targetHeight / height;
28413                     }
28414                 }
28415                 
28416                 context.scale(scale, scale);
28417                 
28418                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28419                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28420
28421                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28422                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28423                 
28424                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28425                 
28426                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28427                 
28428                 break;
28429             default : 
28430                 break;
28431         }
28432         
28433         this.cropData = canvas.toDataURL(this.cropType);
28434         
28435         if(this.fireEvent('crop', this, this.cropData) !== false){
28436             this.process(this.file, this.cropData);
28437         }
28438         
28439         return;
28440         
28441     },
28442     
28443     setThumbBoxSize : function()
28444     {
28445         var width, height;
28446         
28447         if(this.isDocument && typeof(this.imageEl) != 'undefined'){
28448             width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.max(this.minWidth, this.minHeight) : Math.min(this.minWidth, this.minHeight);
28449             height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.min(this.minWidth, this.minHeight) : Math.max(this.minWidth, this.minHeight);
28450             
28451             this.minWidth = width;
28452             this.minHeight = height;
28453             
28454             if(this.rotate == 90 || this.rotate == 270){
28455                 this.minWidth = height;
28456                 this.minHeight = width;
28457             }
28458         }
28459         
28460         height = 300;
28461         width = Math.ceil(this.minWidth * height / this.minHeight);
28462         
28463         if(this.minWidth > this.minHeight){
28464             width = 300;
28465             height = Math.ceil(this.minHeight * width / this.minWidth);
28466         }
28467         
28468         this.thumbEl.setStyle({
28469             width : width + 'px',
28470             height : height + 'px'
28471         });
28472
28473         return;
28474             
28475     },
28476     
28477     setThumbBoxPosition : function()
28478     {
28479         var x = Math.ceil((this.bodyEl.getWidth() - this.thumbEl.getWidth()) / 2 );
28480         var y = Math.ceil((this.bodyEl.getHeight() - this.thumbEl.getHeight()) / 2);
28481         
28482         this.thumbEl.setLeft(x);
28483         this.thumbEl.setTop(y);
28484         
28485     },
28486     
28487     baseRotateLevel : function()
28488     {
28489         this.baseRotate = 1;
28490         
28491         if(
28492                 typeof(this.exif) != 'undefined' &&
28493                 typeof(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != 'undefined' &&
28494                 [1, 3, 6, 8].indexOf(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != -1
28495         ){
28496             this.baseRotate = this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']];
28497         }
28498         
28499         this.rotate = Roo.bootstrap.UploadCropbox['Orientation'][this.baseRotate];
28500         
28501     },
28502     
28503     baseScaleLevel : function()
28504     {
28505         var width, height;
28506         
28507         if(this.isDocument){
28508             
28509             if(this.baseRotate == 6 || this.baseRotate == 8){
28510             
28511                 height = this.thumbEl.getHeight();
28512                 this.baseScale = height / this.imageEl.OriginWidth;
28513
28514                 if(this.imageEl.OriginHeight * this.baseScale > this.thumbEl.getWidth()){
28515                     width = this.thumbEl.getWidth();
28516                     this.baseScale = width / this.imageEl.OriginHeight;
28517                 }
28518
28519                 return;
28520             }
28521
28522             height = this.thumbEl.getHeight();
28523             this.baseScale = height / this.imageEl.OriginHeight;
28524
28525             if(this.imageEl.OriginWidth * this.baseScale > this.thumbEl.getWidth()){
28526                 width = this.thumbEl.getWidth();
28527                 this.baseScale = width / this.imageEl.OriginWidth;
28528             }
28529
28530             return;
28531         }
28532         
28533         if(this.baseRotate == 6 || this.baseRotate == 8){
28534             
28535             width = this.thumbEl.getHeight();
28536             this.baseScale = width / this.imageEl.OriginHeight;
28537             
28538             if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getWidth()){
28539                 height = this.thumbEl.getWidth();
28540                 this.baseScale = height / this.imageEl.OriginHeight;
28541             }
28542             
28543             if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28544                 height = this.thumbEl.getWidth();
28545                 this.baseScale = height / this.imageEl.OriginHeight;
28546                 
28547                 if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getHeight()){
28548                     width = this.thumbEl.getHeight();
28549                     this.baseScale = width / this.imageEl.OriginWidth;
28550                 }
28551             }
28552             
28553             return;
28554         }
28555         
28556         width = this.thumbEl.getWidth();
28557         this.baseScale = width / this.imageEl.OriginWidth;
28558         
28559         if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getHeight()){
28560             height = this.thumbEl.getHeight();
28561             this.baseScale = height / this.imageEl.OriginHeight;
28562         }
28563         
28564         if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28565             
28566             height = this.thumbEl.getHeight();
28567             this.baseScale = height / this.imageEl.OriginHeight;
28568             
28569             if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getWidth()){
28570                 width = this.thumbEl.getWidth();
28571                 this.baseScale = width / this.imageEl.OriginWidth;
28572             }
28573             
28574         }
28575         
28576         return;
28577     },
28578     
28579     getScaleLevel : function()
28580     {
28581         return this.baseScale * Math.pow(1.1, this.scale);
28582     },
28583     
28584     onTouchStart : function(e)
28585     {
28586         if(!this.canvasLoaded){
28587             this.beforeSelectFile(e);
28588             return;
28589         }
28590         
28591         var touches = e.browserEvent.touches;
28592         
28593         if(!touches){
28594             return;
28595         }
28596         
28597         if(touches.length == 1){
28598             this.onMouseDown(e);
28599             return;
28600         }
28601         
28602         if(touches.length != 2){
28603             return;
28604         }
28605         
28606         var coords = [];
28607         
28608         for(var i = 0, finger; finger = touches[i]; i++){
28609             coords.push(finger.pageX, finger.pageY);
28610         }
28611         
28612         var x = Math.pow(coords[0] - coords[2], 2);
28613         var y = Math.pow(coords[1] - coords[3], 2);
28614         
28615         this.startDistance = Math.sqrt(x + y);
28616         
28617         this.startScale = this.scale;
28618         
28619         this.pinching = true;
28620         this.dragable = false;
28621         
28622     },
28623     
28624     onTouchMove : function(e)
28625     {
28626         if(!this.pinching && !this.dragable){
28627             return;
28628         }
28629         
28630         var touches = e.browserEvent.touches;
28631         
28632         if(!touches){
28633             return;
28634         }
28635         
28636         if(this.dragable){
28637             this.onMouseMove(e);
28638             return;
28639         }
28640         
28641         var coords = [];
28642         
28643         for(var i = 0, finger; finger = touches[i]; i++){
28644             coords.push(finger.pageX, finger.pageY);
28645         }
28646         
28647         var x = Math.pow(coords[0] - coords[2], 2);
28648         var y = Math.pow(coords[1] - coords[3], 2);
28649         
28650         this.endDistance = Math.sqrt(x + y);
28651         
28652         this.scale = this.startScale + Math.floor(Math.log(this.endDistance / this.startDistance) / Math.log(1.1));
28653         
28654         if(!this.zoomable()){
28655             this.scale = this.startScale;
28656             return;
28657         }
28658         
28659         this.draw();
28660         
28661     },
28662     
28663     onTouchEnd : function(e)
28664     {
28665         this.pinching = false;
28666         this.dragable = false;
28667         
28668     },
28669     
28670     process : function(file, crop)
28671     {
28672         if(this.loadMask){
28673             this.maskEl.mask(this.loadingText);
28674         }
28675         
28676         this.xhr = new XMLHttpRequest();
28677         
28678         file.xhr = this.xhr;
28679
28680         this.xhr.open(this.method, this.url, true);
28681         
28682         var headers = {
28683             "Accept": "application/json",
28684             "Cache-Control": "no-cache",
28685             "X-Requested-With": "XMLHttpRequest"
28686         };
28687         
28688         for (var headerName in headers) {
28689             var headerValue = headers[headerName];
28690             if (headerValue) {
28691                 this.xhr.setRequestHeader(headerName, headerValue);
28692             }
28693         }
28694         
28695         var _this = this;
28696         
28697         this.xhr.onload = function()
28698         {
28699             _this.xhrOnLoad(_this.xhr);
28700         }
28701         
28702         this.xhr.onerror = function()
28703         {
28704             _this.xhrOnError(_this.xhr);
28705         }
28706         
28707         var formData = new FormData();
28708
28709         formData.append('returnHTML', 'NO');
28710         
28711         if(crop){
28712             formData.append('crop', crop);
28713         }
28714         
28715         if(typeof(file) != 'undefined' && (typeof(file.id) == 'undefined' || file.id * 1 < 1)){
28716             formData.append(this.paramName, file, file.name);
28717         }
28718         
28719         if(typeof(file.filename) != 'undefined'){
28720             formData.append('filename', file.filename);
28721         }
28722         
28723         if(typeof(file.mimetype) != 'undefined'){
28724             formData.append('mimetype', file.mimetype);
28725         }
28726         
28727         if(this.fireEvent('arrange', this, formData) != false){
28728             this.xhr.send(formData);
28729         };
28730     },
28731     
28732     xhrOnLoad : function(xhr)
28733     {
28734         if(this.loadMask){
28735             this.maskEl.unmask();
28736         }
28737         
28738         if (xhr.readyState !== 4) {
28739             this.fireEvent('exception', this, xhr);
28740             return;
28741         }
28742
28743         var response = Roo.decode(xhr.responseText);
28744         
28745         if(!response.success){
28746             this.fireEvent('exception', this, xhr);
28747             return;
28748         }
28749         
28750         var response = Roo.decode(xhr.responseText);
28751         
28752         this.fireEvent('upload', this, response);
28753         
28754     },
28755     
28756     xhrOnError : function()
28757     {
28758         if(this.loadMask){
28759             this.maskEl.unmask();
28760         }
28761         
28762         Roo.log('xhr on error');
28763         
28764         var response = Roo.decode(xhr.responseText);
28765           
28766         Roo.log(response);
28767         
28768     },
28769     
28770     prepare : function(file)
28771     {   
28772         if(this.loadMask){
28773             this.maskEl.mask(this.loadingText);
28774         }
28775         
28776         this.file = false;
28777         this.exif = {};
28778         
28779         if(typeof(file) === 'string'){
28780             this.loadCanvas(file);
28781             return;
28782         }
28783         
28784         if(!file || !this.urlAPI){
28785             return;
28786         }
28787         
28788         this.file = file;
28789         this.cropType = file.type;
28790         
28791         var _this = this;
28792         
28793         if(this.fireEvent('prepare', this, this.file) != false){
28794             
28795             var reader = new FileReader();
28796             
28797             reader.onload = function (e) {
28798                 if (e.target.error) {
28799                     Roo.log(e.target.error);
28800                     return;
28801                 }
28802                 
28803                 var buffer = e.target.result,
28804                     dataView = new DataView(buffer),
28805                     offset = 2,
28806                     maxOffset = dataView.byteLength - 4,
28807                     markerBytes,
28808                     markerLength;
28809                 
28810                 if (dataView.getUint16(0) === 0xffd8) {
28811                     while (offset < maxOffset) {
28812                         markerBytes = dataView.getUint16(offset);
28813                         
28814                         if ((markerBytes >= 0xffe0 && markerBytes <= 0xffef) || markerBytes === 0xfffe) {
28815                             markerLength = dataView.getUint16(offset + 2) + 2;
28816                             if (offset + markerLength > dataView.byteLength) {
28817                                 Roo.log('Invalid meta data: Invalid segment size.');
28818                                 break;
28819                             }
28820                             
28821                             if(markerBytes == 0xffe1){
28822                                 _this.parseExifData(
28823                                     dataView,
28824                                     offset,
28825                                     markerLength
28826                                 );
28827                             }
28828                             
28829                             offset += markerLength;
28830                             
28831                             continue;
28832                         }
28833                         
28834                         break;
28835                     }
28836                     
28837                 }
28838                 
28839                 var url = _this.urlAPI.createObjectURL(_this.file);
28840                 
28841                 _this.loadCanvas(url);
28842                 
28843                 return;
28844             }
28845             
28846             reader.readAsArrayBuffer(this.file);
28847             
28848         }
28849         
28850     },
28851     
28852     parseExifData : function(dataView, offset, length)
28853     {
28854         var tiffOffset = offset + 10,
28855             littleEndian,
28856             dirOffset;
28857     
28858         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28859             // No Exif data, might be XMP data instead
28860             return;
28861         }
28862         
28863         // Check for the ASCII code for "Exif" (0x45786966):
28864         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28865             // No Exif data, might be XMP data instead
28866             return;
28867         }
28868         if (tiffOffset + 8 > dataView.byteLength) {
28869             Roo.log('Invalid Exif data: Invalid segment size.');
28870             return;
28871         }
28872         // Check for the two null bytes:
28873         if (dataView.getUint16(offset + 8) !== 0x0000) {
28874             Roo.log('Invalid Exif data: Missing byte alignment offset.');
28875             return;
28876         }
28877         // Check the byte alignment:
28878         switch (dataView.getUint16(tiffOffset)) {
28879         case 0x4949:
28880             littleEndian = true;
28881             break;
28882         case 0x4D4D:
28883             littleEndian = false;
28884             break;
28885         default:
28886             Roo.log('Invalid Exif data: Invalid byte alignment marker.');
28887             return;
28888         }
28889         // Check for the TIFF tag marker (0x002A):
28890         if (dataView.getUint16(tiffOffset + 2, littleEndian) !== 0x002A) {
28891             Roo.log('Invalid Exif data: Missing TIFF marker.');
28892             return;
28893         }
28894         // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
28895         dirOffset = dataView.getUint32(tiffOffset + 4, littleEndian);
28896         
28897         this.parseExifTags(
28898             dataView,
28899             tiffOffset,
28900             tiffOffset + dirOffset,
28901             littleEndian
28902         );
28903     },
28904     
28905     parseExifTags : function(dataView, tiffOffset, dirOffset, littleEndian)
28906     {
28907         var tagsNumber,
28908             dirEndOffset,
28909             i;
28910         if (dirOffset + 6 > dataView.byteLength) {
28911             Roo.log('Invalid Exif data: Invalid directory offset.');
28912             return;
28913         }
28914         tagsNumber = dataView.getUint16(dirOffset, littleEndian);
28915         dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
28916         if (dirEndOffset + 4 > dataView.byteLength) {
28917             Roo.log('Invalid Exif data: Invalid directory size.');
28918             return;
28919         }
28920         for (i = 0; i < tagsNumber; i += 1) {
28921             this.parseExifTag(
28922                 dataView,
28923                 tiffOffset,
28924                 dirOffset + 2 + 12 * i, // tag offset
28925                 littleEndian
28926             );
28927         }
28928         // Return the offset to the next directory:
28929         return dataView.getUint32(dirEndOffset, littleEndian);
28930     },
28931     
28932     parseExifTag : function (dataView, tiffOffset, offset, littleEndian) 
28933     {
28934         var tag = dataView.getUint16(offset, littleEndian);
28935         
28936         this.exif[tag] = this.getExifValue(
28937             dataView,
28938             tiffOffset,
28939             offset,
28940             dataView.getUint16(offset + 2, littleEndian), // tag type
28941             dataView.getUint32(offset + 4, littleEndian), // tag length
28942             littleEndian
28943         );
28944     },
28945     
28946     getExifValue : function (dataView, tiffOffset, offset, type, length, littleEndian)
28947     {
28948         var tagType = Roo.bootstrap.UploadCropbox.exifTagTypes[type],
28949             tagSize,
28950             dataOffset,
28951             values,
28952             i,
28953             str,
28954             c;
28955     
28956         if (!tagType) {
28957             Roo.log('Invalid Exif data: Invalid tag type.');
28958             return;
28959         }
28960         
28961         tagSize = tagType.size * length;
28962         // Determine if the value is contained in the dataOffset bytes,
28963         // or if the value at the dataOffset is a pointer to the actual data:
28964         dataOffset = tagSize > 4 ?
28965                 tiffOffset + dataView.getUint32(offset + 8, littleEndian) : (offset + 8);
28966         if (dataOffset + tagSize > dataView.byteLength) {
28967             Roo.log('Invalid Exif data: Invalid data offset.');
28968             return;
28969         }
28970         if (length === 1) {
28971             return tagType.getValue(dataView, dataOffset, littleEndian);
28972         }
28973         values = [];
28974         for (i = 0; i < length; i += 1) {
28975             values[i] = tagType.getValue(dataView, dataOffset + i * tagType.size, littleEndian);
28976         }
28977         
28978         if (tagType.ascii) {
28979             str = '';
28980             // Concatenate the chars:
28981             for (i = 0; i < values.length; i += 1) {
28982                 c = values[i];
28983                 // Ignore the terminating NULL byte(s):
28984                 if (c === '\u0000') {
28985                     break;
28986                 }
28987                 str += c;
28988             }
28989             return str;
28990         }
28991         return values;
28992     }
28993     
28994 });
28995
28996 Roo.apply(Roo.bootstrap.UploadCropbox, {
28997     tags : {
28998         'Orientation': 0x0112
28999     },
29000     
29001     Orientation: {
29002             1: 0, //'top-left',
29003 //            2: 'top-right',
29004             3: 180, //'bottom-right',
29005 //            4: 'bottom-left',
29006 //            5: 'left-top',
29007             6: 90, //'right-top',
29008 //            7: 'right-bottom',
29009             8: 270 //'left-bottom'
29010     },
29011     
29012     exifTagTypes : {
29013         // byte, 8-bit unsigned int:
29014         1: {
29015             getValue: function (dataView, dataOffset) {
29016                 return dataView.getUint8(dataOffset);
29017             },
29018             size: 1
29019         },
29020         // ascii, 8-bit byte:
29021         2: {
29022             getValue: function (dataView, dataOffset) {
29023                 return String.fromCharCode(dataView.getUint8(dataOffset));
29024             },
29025             size: 1,
29026             ascii: true
29027         },
29028         // short, 16 bit int:
29029         3: {
29030             getValue: function (dataView, dataOffset, littleEndian) {
29031                 return dataView.getUint16(dataOffset, littleEndian);
29032             },
29033             size: 2
29034         },
29035         // long, 32 bit int:
29036         4: {
29037             getValue: function (dataView, dataOffset, littleEndian) {
29038                 return dataView.getUint32(dataOffset, littleEndian);
29039             },
29040             size: 4
29041         },
29042         // rational = two long values, first is numerator, second is denominator:
29043         5: {
29044             getValue: function (dataView, dataOffset, littleEndian) {
29045                 return dataView.getUint32(dataOffset, littleEndian) /
29046                     dataView.getUint32(dataOffset + 4, littleEndian);
29047             },
29048             size: 8
29049         },
29050         // slong, 32 bit signed int:
29051         9: {
29052             getValue: function (dataView, dataOffset, littleEndian) {
29053                 return dataView.getInt32(dataOffset, littleEndian);
29054             },
29055             size: 4
29056         },
29057         // srational, two slongs, first is numerator, second is denominator:
29058         10: {
29059             getValue: function (dataView, dataOffset, littleEndian) {
29060                 return dataView.getInt32(dataOffset, littleEndian) /
29061                     dataView.getInt32(dataOffset + 4, littleEndian);
29062             },
29063             size: 8
29064         }
29065     },
29066     
29067     footer : {
29068         STANDARD : [
29069             {
29070                 tag : 'div',
29071                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29072                 action : 'rotate-left',
29073                 cn : [
29074                     {
29075                         tag : 'button',
29076                         cls : 'btn btn-default',
29077                         html : '<i class="fa fa-undo"></i>'
29078                     }
29079                 ]
29080             },
29081             {
29082                 tag : 'div',
29083                 cls : 'btn-group roo-upload-cropbox-picture',
29084                 action : 'picture',
29085                 cn : [
29086                     {
29087                         tag : 'button',
29088                         cls : 'btn btn-default',
29089                         html : '<i class="fa fa-picture-o"></i>'
29090                     }
29091                 ]
29092             },
29093             {
29094                 tag : 'div',
29095                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29096                 action : 'rotate-right',
29097                 cn : [
29098                     {
29099                         tag : 'button',
29100                         cls : 'btn btn-default',
29101                         html : '<i class="fa fa-repeat"></i>'
29102                     }
29103                 ]
29104             }
29105         ],
29106         DOCUMENT : [
29107             {
29108                 tag : 'div',
29109                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29110                 action : 'rotate-left',
29111                 cn : [
29112                     {
29113                         tag : 'button',
29114                         cls : 'btn btn-default',
29115                         html : '<i class="fa fa-undo"></i>'
29116                     }
29117                 ]
29118             },
29119             {
29120                 tag : 'div',
29121                 cls : 'btn-group roo-upload-cropbox-download',
29122                 action : 'download',
29123                 cn : [
29124                     {
29125                         tag : 'button',
29126                         cls : 'btn btn-default',
29127                         html : '<i class="fa fa-download"></i>'
29128                     }
29129                 ]
29130             },
29131             {
29132                 tag : 'div',
29133                 cls : 'btn-group roo-upload-cropbox-crop',
29134                 action : 'crop',
29135                 cn : [
29136                     {
29137                         tag : 'button',
29138                         cls : 'btn btn-default',
29139                         html : '<i class="fa fa-crop"></i>'
29140                     }
29141                 ]
29142             },
29143             {
29144                 tag : 'div',
29145                 cls : 'btn-group roo-upload-cropbox-trash',
29146                 action : 'trash',
29147                 cn : [
29148                     {
29149                         tag : 'button',
29150                         cls : 'btn btn-default',
29151                         html : '<i class="fa fa-trash"></i>'
29152                     }
29153                 ]
29154             },
29155             {
29156                 tag : 'div',
29157                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29158                 action : 'rotate-right',
29159                 cn : [
29160                     {
29161                         tag : 'button',
29162                         cls : 'btn btn-default',
29163                         html : '<i class="fa fa-repeat"></i>'
29164                     }
29165                 ]
29166             }
29167         ],
29168         ROTATOR : [
29169             {
29170                 tag : 'div',
29171                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29172                 action : 'rotate-left',
29173                 cn : [
29174                     {
29175                         tag : 'button',
29176                         cls : 'btn btn-default',
29177                         html : '<i class="fa fa-undo"></i>'
29178                     }
29179                 ]
29180             },
29181             {
29182                 tag : 'div',
29183                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29184                 action : 'rotate-right',
29185                 cn : [
29186                     {
29187                         tag : 'button',
29188                         cls : 'btn btn-default',
29189                         html : '<i class="fa fa-repeat"></i>'
29190                     }
29191                 ]
29192             }
29193         ]
29194     }
29195 });
29196
29197 /*
29198 * Licence: LGPL
29199 */
29200
29201 /**
29202  * @class Roo.bootstrap.DocumentManager
29203  * @extends Roo.bootstrap.Component
29204  * Bootstrap DocumentManager class
29205  * @cfg {String} paramName default 'imageUpload'
29206  * @cfg {String} toolTipName default 'filename'
29207  * @cfg {String} method default POST
29208  * @cfg {String} url action url
29209  * @cfg {Number} boxes number of boxes, 0 is no limit.. default 0
29210  * @cfg {Boolean} multiple multiple upload default true
29211  * @cfg {Number} thumbSize default 300
29212  * @cfg {String} fieldLabel
29213  * @cfg {Number} labelWidth default 4
29214  * @cfg {String} labelAlign (left|top) default left
29215  * @cfg {Boolean} editable (true|false) allow edit when upload a image default true
29216 * @cfg {Number} labellg set the width of label (1-12)
29217  * @cfg {Number} labelmd set the width of label (1-12)
29218  * @cfg {Number} labelsm set the width of label (1-12)
29219  * @cfg {Number} labelxs set the width of label (1-12)
29220  * 
29221  * @constructor
29222  * Create a new DocumentManager
29223  * @param {Object} config The config object
29224  */
29225
29226 Roo.bootstrap.DocumentManager = function(config){
29227     Roo.bootstrap.DocumentManager.superclass.constructor.call(this, config);
29228     
29229     this.files = [];
29230     this.delegates = [];
29231     
29232     this.addEvents({
29233         /**
29234          * @event initial
29235          * Fire when initial the DocumentManager
29236          * @param {Roo.bootstrap.DocumentManager} this
29237          */
29238         "initial" : true,
29239         /**
29240          * @event inspect
29241          * inspect selected file
29242          * @param {Roo.bootstrap.DocumentManager} this
29243          * @param {File} file
29244          */
29245         "inspect" : true,
29246         /**
29247          * @event exception
29248          * Fire when xhr load exception
29249          * @param {Roo.bootstrap.DocumentManager} this
29250          * @param {XMLHttpRequest} xhr
29251          */
29252         "exception" : true,
29253         /**
29254          * @event afterupload
29255          * Fire when xhr load exception
29256          * @param {Roo.bootstrap.DocumentManager} this
29257          * @param {XMLHttpRequest} xhr
29258          */
29259         "afterupload" : true,
29260         /**
29261          * @event prepare
29262          * prepare the form data
29263          * @param {Roo.bootstrap.DocumentManager} this
29264          * @param {Object} formData
29265          */
29266         "prepare" : true,
29267         /**
29268          * @event remove
29269          * Fire when remove the file
29270          * @param {Roo.bootstrap.DocumentManager} this
29271          * @param {Object} file
29272          */
29273         "remove" : true,
29274         /**
29275          * @event refresh
29276          * Fire after refresh the file
29277          * @param {Roo.bootstrap.DocumentManager} this
29278          */
29279         "refresh" : true,
29280         /**
29281          * @event click
29282          * Fire after click the image
29283          * @param {Roo.bootstrap.DocumentManager} this
29284          * @param {Object} file
29285          */
29286         "click" : true,
29287         /**
29288          * @event edit
29289          * Fire when upload a image and editable set to true
29290          * @param {Roo.bootstrap.DocumentManager} this
29291          * @param {Object} file
29292          */
29293         "edit" : true,
29294         /**
29295          * @event beforeselectfile
29296          * Fire before select file
29297          * @param {Roo.bootstrap.DocumentManager} this
29298          */
29299         "beforeselectfile" : true,
29300         /**
29301          * @event process
29302          * Fire before process file
29303          * @param {Roo.bootstrap.DocumentManager} this
29304          * @param {Object} file
29305          */
29306         "process" : true,
29307         /**
29308          * @event previewrendered
29309          * Fire when preview rendered
29310          * @param {Roo.bootstrap.DocumentManager} this
29311          * @param {Object} file
29312          */
29313         "previewrendered" : true,
29314         /**
29315          */
29316         "previewResize" : true
29317         
29318     });
29319 };
29320
29321 Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component,  {
29322     
29323     boxes : 0,
29324     inputName : '',
29325     thumbSize : 300,
29326     multiple : true,
29327     files : false,
29328     method : 'POST',
29329     url : '',
29330     paramName : 'imageUpload',
29331     toolTipName : 'filename',
29332     fieldLabel : '',
29333     labelWidth : 4,
29334     labelAlign : 'left',
29335     editable : true,
29336     delegates : false,
29337     xhr : false, 
29338     
29339     labellg : 0,
29340     labelmd : 0,
29341     labelsm : 0,
29342     labelxs : 0,
29343     
29344     getAutoCreate : function()
29345     {   
29346         var managerWidget = {
29347             tag : 'div',
29348             cls : 'roo-document-manager',
29349             cn : [
29350                 {
29351                     tag : 'input',
29352                     cls : 'roo-document-manager-selector',
29353                     type : 'file'
29354                 },
29355                 {
29356                     tag : 'div',
29357                     cls : 'roo-document-manager-uploader',
29358                     cn : [
29359                         {
29360                             tag : 'div',
29361                             cls : 'roo-document-manager-upload-btn',
29362                             html : '<i class="fa fa-plus"></i>'
29363                         }
29364                     ]
29365                     
29366                 }
29367             ]
29368         };
29369         
29370         var content = [
29371             {
29372                 tag : 'div',
29373                 cls : 'column col-md-12',
29374                 cn : managerWidget
29375             }
29376         ];
29377         
29378         if(this.fieldLabel.length){
29379             
29380             content = [
29381                 {
29382                     tag : 'div',
29383                     cls : 'column col-md-12',
29384                     html : this.fieldLabel
29385                 },
29386                 {
29387                     tag : 'div',
29388                     cls : 'column col-md-12',
29389                     cn : managerWidget
29390                 }
29391             ];
29392
29393             if(this.labelAlign == 'left'){
29394                 content = [
29395                     {
29396                         tag : 'div',
29397                         cls : 'column',
29398                         html : this.fieldLabel
29399                     },
29400                     {
29401                         tag : 'div',
29402                         cls : 'column',
29403                         cn : managerWidget
29404                     }
29405                 ];
29406                 
29407                 if(this.labelWidth > 12){
29408                     content[0].style = "width: " + this.labelWidth + 'px';
29409                 }
29410
29411                 if(this.labelWidth < 13 && this.labelmd == 0){
29412                     this.labelmd = this.labelWidth;
29413                 }
29414
29415                 if(this.labellg > 0){
29416                     content[0].cls += ' col-lg-' + this.labellg;
29417                     content[1].cls += ' col-lg-' + (12 - this.labellg);
29418                 }
29419
29420                 if(this.labelmd > 0){
29421                     content[0].cls += ' col-md-' + this.labelmd;
29422                     content[1].cls += ' col-md-' + (12 - this.labelmd);
29423                 }
29424
29425                 if(this.labelsm > 0){
29426                     content[0].cls += ' col-sm-' + this.labelsm;
29427                     content[1].cls += ' col-sm-' + (12 - this.labelsm);
29428                 }
29429
29430                 if(this.labelxs > 0){
29431                     content[0].cls += ' col-xs-' + this.labelxs;
29432                     content[1].cls += ' col-xs-' + (12 - this.labelxs);
29433                 }
29434                 
29435             }
29436         }
29437         
29438         var cfg = {
29439             tag : 'div',
29440             cls : 'row clearfix',
29441             cn : content
29442         };
29443         
29444         return cfg;
29445         
29446     },
29447     
29448     initEvents : function()
29449     {
29450         this.managerEl = this.el.select('.roo-document-manager', true).first();
29451         this.managerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29452         
29453         this.selectorEl = this.el.select('.roo-document-manager-selector', true).first();
29454         this.selectorEl.hide();
29455         
29456         if(this.multiple){
29457             this.selectorEl.attr('multiple', 'multiple');
29458         }
29459         
29460         this.selectorEl.on('change', this.onFileSelected, this);
29461         
29462         this.uploader = this.el.select('.roo-document-manager-uploader', true).first();
29463         this.uploader.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29464         
29465         this.uploader.on('click', this.onUploaderClick, this);
29466         
29467         this.renderProgressDialog();
29468         
29469         var _this = this;
29470         
29471         window.addEventListener("resize", function() { _this.refresh(); } );
29472         
29473         this.fireEvent('initial', this);
29474     },
29475     
29476     renderProgressDialog : function()
29477     {
29478         var _this = this;
29479         
29480         this.progressDialog = new Roo.bootstrap.Modal({
29481             cls : 'roo-document-manager-progress-dialog',
29482             allow_close : false,
29483             animate : false,
29484             title : '',
29485             buttons : [
29486                 {
29487                     name  :'cancel',
29488                     weight : 'danger',
29489                     html : 'Cancel'
29490                 }
29491             ], 
29492             listeners : { 
29493                 btnclick : function() {
29494                     _this.uploadCancel();
29495                     this.hide();
29496                 }
29497             }
29498         });
29499          
29500         this.progressDialog.render(Roo.get(document.body));
29501          
29502         this.progress = new Roo.bootstrap.Progress({
29503             cls : 'roo-document-manager-progress',
29504             active : true,
29505             striped : true
29506         });
29507         
29508         this.progress.render(this.progressDialog.getChildContainer());
29509         
29510         this.progressBar = new Roo.bootstrap.ProgressBar({
29511             cls : 'roo-document-manager-progress-bar',
29512             aria_valuenow : 0,
29513             aria_valuemin : 0,
29514             aria_valuemax : 12,
29515             panel : 'success'
29516         });
29517         
29518         this.progressBar.render(this.progress.getChildContainer());
29519     },
29520     
29521     onUploaderClick : function(e)
29522     {
29523         e.preventDefault();
29524      
29525         if(this.fireEvent('beforeselectfile', this) != false){
29526             this.selectorEl.dom.click();
29527         }
29528         
29529     },
29530     
29531     onFileSelected : function(e)
29532     {
29533         e.preventDefault();
29534         
29535         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
29536             return;
29537         }
29538         
29539         Roo.each(this.selectorEl.dom.files, function(file){
29540             if(this.fireEvent('inspect', this, file) != false){
29541                 this.files.push(file);
29542             }
29543         }, this);
29544         
29545         this.queue();
29546         
29547     },
29548     
29549     queue : function()
29550     {
29551         this.selectorEl.dom.value = '';
29552         
29553         if(!this.files || !this.files.length){
29554             return;
29555         }
29556         
29557         if(this.boxes > 0 && this.files.length > this.boxes){
29558             this.files = this.files.slice(0, this.boxes);
29559         }
29560         
29561         this.uploader.show();
29562         
29563         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29564             this.uploader.hide();
29565         }
29566         
29567         var _this = this;
29568         
29569         var files = [];
29570         
29571         var docs = [];
29572         
29573         Roo.each(this.files, function(file){
29574             
29575             if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29576                 var f = this.renderPreview(file);
29577                 files.push(f);
29578                 return;
29579             }
29580             
29581             if(file.type.indexOf('image') != -1){
29582                 this.delegates.push(
29583                     (function(){
29584                         _this.process(file);
29585                     }).createDelegate(this)
29586                 );
29587         
29588                 return;
29589             }
29590             
29591             docs.push(
29592                 (function(){
29593                     _this.process(file);
29594                 }).createDelegate(this)
29595             );
29596             
29597         }, this);
29598         
29599         this.files = files;
29600         
29601         this.delegates = this.delegates.concat(docs);
29602         
29603         if(!this.delegates.length){
29604             this.refresh();
29605             return;
29606         }
29607         
29608         this.progressBar.aria_valuemax = this.delegates.length;
29609         
29610         this.arrange();
29611         
29612         return;
29613     },
29614     
29615     arrange : function()
29616     {
29617         if(!this.delegates.length){
29618             this.progressDialog.hide();
29619             this.refresh();
29620             return;
29621         }
29622         
29623         var delegate = this.delegates.shift();
29624         
29625         this.progressDialog.show();
29626         
29627         this.progressDialog.setTitle((this.progressBar.aria_valuemax - this.delegates.length) + ' / ' + this.progressBar.aria_valuemax);
29628         
29629         this.progressBar.update(this.progressBar.aria_valuemax - this.delegates.length);
29630         
29631         delegate();
29632     },
29633     
29634     refresh : function()
29635     {
29636         this.uploader.show();
29637         
29638         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29639             this.uploader.hide();
29640         }
29641         
29642         Roo.isTouch ? this.closable(false) : this.closable(true);
29643         
29644         this.fireEvent('refresh', this);
29645     },
29646     
29647     onRemove : function(e, el, o)
29648     {
29649         e.preventDefault();
29650         
29651         this.fireEvent('remove', this, o);
29652         
29653     },
29654     
29655     remove : function(o)
29656     {
29657         var files = [];
29658         
29659         Roo.each(this.files, function(file){
29660             if(typeof(file.id) == 'undefined' || file.id * 1 < 1 || file.id != o.id){
29661                 files.push(file);
29662                 return;
29663             }
29664
29665             o.target.remove();
29666
29667         }, this);
29668         
29669         this.files = files;
29670         
29671         this.refresh();
29672     },
29673     
29674     clear : function()
29675     {
29676         Roo.each(this.files, function(file){
29677             if(!file.target){
29678                 return;
29679             }
29680             
29681             file.target.remove();
29682
29683         }, this);
29684         
29685         this.files = [];
29686         
29687         this.refresh();
29688     },
29689     
29690     onClick : function(e, el, o)
29691     {
29692         e.preventDefault();
29693         
29694         this.fireEvent('click', this, o);
29695         
29696     },
29697     
29698     closable : function(closable)
29699     {
29700         Roo.each(this.managerEl.select('.roo-document-manager-preview > button.close', true).elements, function(el){
29701             
29702             el.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29703             
29704             if(closable){
29705                 el.show();
29706                 return;
29707             }
29708             
29709             el.hide();
29710             
29711         }, this);
29712     },
29713     
29714     xhrOnLoad : function(xhr)
29715     {
29716         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29717             el.remove();
29718         }, this);
29719         
29720         if (xhr.readyState !== 4) {
29721             this.arrange();
29722             this.fireEvent('exception', this, xhr);
29723             return;
29724         }
29725
29726         var response = Roo.decode(xhr.responseText);
29727         
29728         if(!response.success){
29729             this.arrange();
29730             this.fireEvent('exception', this, xhr);
29731             return;
29732         }
29733         
29734         var file = this.renderPreview(response.data);
29735         
29736         this.files.push(file);
29737         
29738         this.arrange();
29739         
29740         this.fireEvent('afterupload', this, xhr);
29741         
29742     },
29743     
29744     xhrOnError : function(xhr)
29745     {
29746         Roo.log('xhr on error');
29747         
29748         var response = Roo.decode(xhr.responseText);
29749           
29750         Roo.log(response);
29751         
29752         this.arrange();
29753     },
29754     
29755     process : function(file)
29756     {
29757         if(this.fireEvent('process', this, file) !== false){
29758             if(this.editable && file.type.indexOf('image') != -1){
29759                 this.fireEvent('edit', this, file);
29760                 return;
29761             }
29762
29763             this.uploadStart(file, false);
29764
29765             return;
29766         }
29767         
29768     },
29769     
29770     uploadStart : function(file, crop)
29771     {
29772         this.xhr = new XMLHttpRequest();
29773         
29774         if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29775             this.arrange();
29776             return;
29777         }
29778         
29779         file.xhr = this.xhr;
29780             
29781         this.managerEl.createChild({
29782             tag : 'div',
29783             cls : 'roo-document-manager-loading',
29784             cn : [
29785                 {
29786                     tag : 'div',
29787                     tooltip : file.name,
29788                     cls : 'roo-document-manager-thumb',
29789                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29790                 }
29791             ]
29792
29793         });
29794
29795         this.xhr.open(this.method, this.url, true);
29796         
29797         var headers = {
29798             "Accept": "application/json",
29799             "Cache-Control": "no-cache",
29800             "X-Requested-With": "XMLHttpRequest"
29801         };
29802         
29803         for (var headerName in headers) {
29804             var headerValue = headers[headerName];
29805             if (headerValue) {
29806                 this.xhr.setRequestHeader(headerName, headerValue);
29807             }
29808         }
29809         
29810         var _this = this;
29811         
29812         this.xhr.onload = function()
29813         {
29814             _this.xhrOnLoad(_this.xhr);
29815         }
29816         
29817         this.xhr.onerror = function()
29818         {
29819             _this.xhrOnError(_this.xhr);
29820         }
29821         
29822         var formData = new FormData();
29823
29824         formData.append('returnHTML', 'NO');
29825         
29826         if(crop){
29827             formData.append('crop', crop);
29828         }
29829         
29830         formData.append(this.paramName, file, file.name);
29831         
29832         var options = {
29833             file : file, 
29834             manually : false
29835         };
29836         
29837         if(this.fireEvent('prepare', this, formData, options) != false){
29838             
29839             if(options.manually){
29840                 return;
29841             }
29842             
29843             this.xhr.send(formData);
29844             return;
29845         };
29846         
29847         this.uploadCancel();
29848     },
29849     
29850     uploadCancel : function()
29851     {
29852         if (this.xhr) {
29853             this.xhr.abort();
29854         }
29855         
29856         this.delegates = [];
29857         
29858         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29859             el.remove();
29860         }, this);
29861         
29862         this.arrange();
29863     },
29864     
29865     renderPreview : function(file)
29866     {
29867         if(typeof(file.target) != 'undefined' && file.target){
29868             return file;
29869         }
29870         
29871         var img_src = encodeURI(baseURL +'/Images/Thumb/' + this.thumbSize + '/' + file.id + '/' + file.filename);
29872         
29873         var previewEl = this.managerEl.createChild({
29874             tag : 'div',
29875             cls : 'roo-document-manager-preview',
29876             cn : [
29877                 {
29878                     tag : 'div',
29879                     tooltip : file[this.toolTipName],
29880                     cls : 'roo-document-manager-thumb',
29881                     html : '<img tooltip="' + file[this.toolTipName] + '" src="' + img_src + '">'
29882                 },
29883                 {
29884                     tag : 'button',
29885                     cls : 'close',
29886                     html : '<i class="fa fa-times-circle"></i>'
29887                 }
29888             ]
29889         });
29890
29891         var close = previewEl.select('button.close', true).first();
29892
29893         close.on('click', this.onRemove, this, file);
29894
29895         file.target = previewEl;
29896
29897         var image = previewEl.select('img', true).first();
29898         
29899         var _this = this;
29900         
29901         image.dom.addEventListener("load", function(){ _this.onPreviewLoad(file, image); });
29902         
29903         image.on('click', this.onClick, this, file);
29904         
29905         this.fireEvent('previewrendered', this, file);
29906         
29907         return file;
29908         
29909     },
29910     
29911     onPreviewLoad : function(file, image)
29912     {
29913         if(typeof(file.target) == 'undefined' || !file.target){
29914             return;
29915         }
29916         
29917         var width = image.dom.naturalWidth || image.dom.width;
29918         var height = image.dom.naturalHeight || image.dom.height;
29919         
29920         if(!this.previewResize) {
29921             return;
29922         }
29923         
29924         if(width > height){
29925             file.target.addClass('wide');
29926             return;
29927         }
29928         
29929         file.target.addClass('tall');
29930         return;
29931         
29932     },
29933     
29934     uploadFromSource : function(file, crop)
29935     {
29936         this.xhr = new XMLHttpRequest();
29937         
29938         this.managerEl.createChild({
29939             tag : 'div',
29940             cls : 'roo-document-manager-loading',
29941             cn : [
29942                 {
29943                     tag : 'div',
29944                     tooltip : file.name,
29945                     cls : 'roo-document-manager-thumb',
29946                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29947                 }
29948             ]
29949
29950         });
29951
29952         this.xhr.open(this.method, this.url, true);
29953         
29954         var headers = {
29955             "Accept": "application/json",
29956             "Cache-Control": "no-cache",
29957             "X-Requested-With": "XMLHttpRequest"
29958         };
29959         
29960         for (var headerName in headers) {
29961             var headerValue = headers[headerName];
29962             if (headerValue) {
29963                 this.xhr.setRequestHeader(headerName, headerValue);
29964             }
29965         }
29966         
29967         var _this = this;
29968         
29969         this.xhr.onload = function()
29970         {
29971             _this.xhrOnLoad(_this.xhr);
29972         }
29973         
29974         this.xhr.onerror = function()
29975         {
29976             _this.xhrOnError(_this.xhr);
29977         }
29978         
29979         var formData = new FormData();
29980
29981         formData.append('returnHTML', 'NO');
29982         
29983         formData.append('crop', crop);
29984         
29985         if(typeof(file.filename) != 'undefined'){
29986             formData.append('filename', file.filename);
29987         }
29988         
29989         if(typeof(file.mimetype) != 'undefined'){
29990             formData.append('mimetype', file.mimetype);
29991         }
29992         
29993         Roo.log(formData);
29994         
29995         if(this.fireEvent('prepare', this, formData) != false){
29996             this.xhr.send(formData);
29997         };
29998     }
29999 });
30000
30001 /*
30002 * Licence: LGPL
30003 */
30004
30005 /**
30006  * @class Roo.bootstrap.DocumentViewer
30007  * @extends Roo.bootstrap.Component
30008  * Bootstrap DocumentViewer class
30009  * @cfg {Boolean} showDownload (true|false) show download button (default true)
30010  * @cfg {Boolean} showTrash (true|false) show trash button (default true)
30011  * 
30012  * @constructor
30013  * Create a new DocumentViewer
30014  * @param {Object} config The config object
30015  */
30016
30017 Roo.bootstrap.DocumentViewer = function(config){
30018     Roo.bootstrap.DocumentViewer.superclass.constructor.call(this, config);
30019     
30020     this.addEvents({
30021         /**
30022          * @event initial
30023          * Fire after initEvent
30024          * @param {Roo.bootstrap.DocumentViewer} this
30025          */
30026         "initial" : true,
30027         /**
30028          * @event click
30029          * Fire after click
30030          * @param {Roo.bootstrap.DocumentViewer} this
30031          */
30032         "click" : true,
30033         /**
30034          * @event download
30035          * Fire after download button
30036          * @param {Roo.bootstrap.DocumentViewer} this
30037          */
30038         "download" : true,
30039         /**
30040          * @event trash
30041          * Fire after trash button
30042          * @param {Roo.bootstrap.DocumentViewer} this
30043          */
30044         "trash" : true
30045         
30046     });
30047 };
30048
30049 Roo.extend(Roo.bootstrap.DocumentViewer, Roo.bootstrap.Component,  {
30050     
30051     showDownload : true,
30052     
30053     showTrash : true,
30054     
30055     getAutoCreate : function()
30056     {
30057         var cfg = {
30058             tag : 'div',
30059             cls : 'roo-document-viewer',
30060             cn : [
30061                 {
30062                     tag : 'div',
30063                     cls : 'roo-document-viewer-body',
30064                     cn : [
30065                         {
30066                             tag : 'div',
30067                             cls : 'roo-document-viewer-thumb',
30068                             cn : [
30069                                 {
30070                                     tag : 'img',
30071                                     cls : 'roo-document-viewer-image'
30072                                 }
30073                             ]
30074                         }
30075                     ]
30076                 },
30077                 {
30078                     tag : 'div',
30079                     cls : 'roo-document-viewer-footer',
30080                     cn : {
30081                         tag : 'div',
30082                         cls : 'btn-group btn-group-justified roo-document-viewer-btn-group',
30083                         cn : [
30084                             {
30085                                 tag : 'div',
30086                                 cls : 'btn-group roo-document-viewer-download',
30087                                 cn : [
30088                                     {
30089                                         tag : 'button',
30090                                         cls : 'btn btn-default',
30091                                         html : '<i class="fa fa-download"></i>'
30092                                     }
30093                                 ]
30094                             },
30095                             {
30096                                 tag : 'div',
30097                                 cls : 'btn-group roo-document-viewer-trash',
30098                                 cn : [
30099                                     {
30100                                         tag : 'button',
30101                                         cls : 'btn btn-default',
30102                                         html : '<i class="fa fa-trash"></i>'
30103                                     }
30104                                 ]
30105                             }
30106                         ]
30107                     }
30108                 }
30109             ]
30110         };
30111         
30112         return cfg;
30113     },
30114     
30115     initEvents : function()
30116     {
30117         this.bodyEl = this.el.select('.roo-document-viewer-body', true).first();
30118         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
30119         
30120         this.thumbEl = this.el.select('.roo-document-viewer-thumb', true).first();
30121         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
30122         
30123         this.imageEl = this.el.select('.roo-document-viewer-image', true).first();
30124         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
30125         
30126         this.footerEl = this.el.select('.roo-document-viewer-footer', true).first();
30127         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY);
30128         
30129         this.downloadBtn = this.el.select('.roo-document-viewer-download', true).first();
30130         this.downloadBtn.setVisibilityMode(Roo.Element.DISPLAY);
30131         
30132         this.trashBtn = this.el.select('.roo-document-viewer-trash', true).first();
30133         this.trashBtn.setVisibilityMode(Roo.Element.DISPLAY);
30134         
30135         this.bodyEl.on('click', this.onClick, this);
30136         this.downloadBtn.on('click', this.onDownload, this);
30137         this.trashBtn.on('click', this.onTrash, this);
30138         
30139         this.downloadBtn.hide();
30140         this.trashBtn.hide();
30141         
30142         if(this.showDownload){
30143             this.downloadBtn.show();
30144         }
30145         
30146         if(this.showTrash){
30147             this.trashBtn.show();
30148         }
30149         
30150         if(!this.showDownload && !this.showTrash) {
30151             this.footerEl.hide();
30152         }
30153         
30154     },
30155     
30156     initial : function()
30157     {
30158         this.fireEvent('initial', this);
30159         
30160     },
30161     
30162     onClick : function(e)
30163     {
30164         e.preventDefault();
30165         
30166         this.fireEvent('click', this);
30167     },
30168     
30169     onDownload : function(e)
30170     {
30171         e.preventDefault();
30172         
30173         this.fireEvent('download', this);
30174     },
30175     
30176     onTrash : function(e)
30177     {
30178         e.preventDefault();
30179         
30180         this.fireEvent('trash', this);
30181     }
30182     
30183 });
30184 /*
30185  * - LGPL
30186  *
30187  * nav progress bar
30188  * 
30189  */
30190
30191 /**
30192  * @class Roo.bootstrap.NavProgressBar
30193  * @extends Roo.bootstrap.Component
30194  * Bootstrap NavProgressBar class
30195  * 
30196  * @constructor
30197  * Create a new nav progress bar
30198  * @param {Object} config The config object
30199  */
30200
30201 Roo.bootstrap.NavProgressBar = function(config){
30202     Roo.bootstrap.NavProgressBar.superclass.constructor.call(this, config);
30203
30204     this.bullets = this.bullets || [];
30205    
30206 //    Roo.bootstrap.NavProgressBar.register(this);
30207      this.addEvents({
30208         /**
30209              * @event changed
30210              * Fires when the active item changes
30211              * @param {Roo.bootstrap.NavProgressBar} this
30212              * @param {Roo.bootstrap.NavProgressItem} selected The item selected
30213              * @param {Roo.bootstrap.NavProgressItem} prev The previously selected item 
30214          */
30215         'changed': true
30216      });
30217     
30218 };
30219
30220 Roo.extend(Roo.bootstrap.NavProgressBar, Roo.bootstrap.Component,  {
30221     
30222     bullets : [],
30223     barItems : [],
30224     
30225     getAutoCreate : function()
30226     {
30227         var cfg = Roo.apply({}, Roo.bootstrap.NavProgressBar.superclass.getAutoCreate.call(this));
30228         
30229         cfg = {
30230             tag : 'div',
30231             cls : 'roo-navigation-bar-group',
30232             cn : [
30233                 {
30234                     tag : 'div',
30235                     cls : 'roo-navigation-top-bar'
30236                 },
30237                 {
30238                     tag : 'div',
30239                     cls : 'roo-navigation-bullets-bar',
30240                     cn : [
30241                         {
30242                             tag : 'ul',
30243                             cls : 'roo-navigation-bar'
30244                         }
30245                     ]
30246                 },
30247                 
30248                 {
30249                     tag : 'div',
30250                     cls : 'roo-navigation-bottom-bar'
30251                 }
30252             ]
30253             
30254         };
30255         
30256         return cfg;
30257         
30258     },
30259     
30260     initEvents: function() 
30261     {
30262         
30263     },
30264     
30265     onRender : function(ct, position) 
30266     {
30267         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30268         
30269         if(this.bullets.length){
30270             Roo.each(this.bullets, function(b){
30271                this.addItem(b);
30272             }, this);
30273         }
30274         
30275         this.format();
30276         
30277     },
30278     
30279     addItem : function(cfg)
30280     {
30281         var item = new Roo.bootstrap.NavProgressItem(cfg);
30282         
30283         item.parentId = this.id;
30284         item.render(this.el.select('.roo-navigation-bar', true).first(), null);
30285         
30286         if(cfg.html){
30287             var top = new Roo.bootstrap.Element({
30288                 tag : 'div',
30289                 cls : 'roo-navigation-bar-text'
30290             });
30291             
30292             var bottom = new Roo.bootstrap.Element({
30293                 tag : 'div',
30294                 cls : 'roo-navigation-bar-text'
30295             });
30296             
30297             top.onRender(this.el.select('.roo-navigation-top-bar', true).first(), null);
30298             bottom.onRender(this.el.select('.roo-navigation-bottom-bar', true).first(), null);
30299             
30300             var topText = new Roo.bootstrap.Element({
30301                 tag : 'span',
30302                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? cfg.html : ''
30303             });
30304             
30305             var bottomText = new Roo.bootstrap.Element({
30306                 tag : 'span',
30307                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? '' : cfg.html
30308             });
30309             
30310             topText.onRender(top.el, null);
30311             bottomText.onRender(bottom.el, null);
30312             
30313             item.topEl = top;
30314             item.bottomEl = bottom;
30315         }
30316         
30317         this.barItems.push(item);
30318         
30319         return item;
30320     },
30321     
30322     getActive : function()
30323     {
30324         var active = false;
30325         
30326         Roo.each(this.barItems, function(v){
30327             
30328             if (!v.isActive()) {
30329                 return;
30330             }
30331             
30332             active = v;
30333             return false;
30334             
30335         });
30336         
30337         return active;
30338     },
30339     
30340     setActiveItem : function(item)
30341     {
30342         var prev = false;
30343         
30344         Roo.each(this.barItems, function(v){
30345             if (v.rid == item.rid) {
30346                 return ;
30347             }
30348             
30349             if (v.isActive()) {
30350                 v.setActive(false);
30351                 prev = v;
30352             }
30353         });
30354
30355         item.setActive(true);
30356         
30357         this.fireEvent('changed', this, item, prev);
30358     },
30359     
30360     getBarItem: function(rid)
30361     {
30362         var ret = false;
30363         
30364         Roo.each(this.barItems, function(e) {
30365             if (e.rid != rid) {
30366                 return;
30367             }
30368             
30369             ret =  e;
30370             return false;
30371         });
30372         
30373         return ret;
30374     },
30375     
30376     indexOfItem : function(item)
30377     {
30378         var index = false;
30379         
30380         Roo.each(this.barItems, function(v, i){
30381             
30382             if (v.rid != item.rid) {
30383                 return;
30384             }
30385             
30386             index = i;
30387             return false
30388         });
30389         
30390         return index;
30391     },
30392     
30393     setActiveNext : function()
30394     {
30395         var i = this.indexOfItem(this.getActive());
30396         
30397         if (i > this.barItems.length) {
30398             return;
30399         }
30400         
30401         this.setActiveItem(this.barItems[i+1]);
30402     },
30403     
30404     setActivePrev : function()
30405     {
30406         var i = this.indexOfItem(this.getActive());
30407         
30408         if (i  < 1) {
30409             return;
30410         }
30411         
30412         this.setActiveItem(this.barItems[i-1]);
30413     },
30414     
30415     format : function()
30416     {
30417         if(!this.barItems.length){
30418             return;
30419         }
30420      
30421         var width = 100 / this.barItems.length;
30422         
30423         Roo.each(this.barItems, function(i){
30424             i.el.setStyle('width', width + '%');
30425             i.topEl.el.setStyle('width', width + '%');
30426             i.bottomEl.el.setStyle('width', width + '%');
30427         }, this);
30428         
30429     }
30430     
30431 });
30432 /*
30433  * - LGPL
30434  *
30435  * Nav Progress Item
30436  * 
30437  */
30438
30439 /**
30440  * @class Roo.bootstrap.NavProgressItem
30441  * @extends Roo.bootstrap.Component
30442  * Bootstrap NavProgressItem class
30443  * @cfg {String} rid the reference id
30444  * @cfg {Boolean} active (true|false) Is item active default false
30445  * @cfg {Boolean} disabled (true|false) Is item active default false
30446  * @cfg {String} html
30447  * @cfg {String} position (top|bottom) text position default bottom
30448  * @cfg {String} icon show icon instead of number
30449  * 
30450  * @constructor
30451  * Create a new NavProgressItem
30452  * @param {Object} config The config object
30453  */
30454 Roo.bootstrap.NavProgressItem = function(config){
30455     Roo.bootstrap.NavProgressItem.superclass.constructor.call(this, config);
30456     this.addEvents({
30457         // raw events
30458         /**
30459          * @event click
30460          * The raw click event for the entire grid.
30461          * @param {Roo.bootstrap.NavProgressItem} this
30462          * @param {Roo.EventObject} e
30463          */
30464         "click" : true
30465     });
30466    
30467 };
30468
30469 Roo.extend(Roo.bootstrap.NavProgressItem, Roo.bootstrap.Component,  {
30470     
30471     rid : '',
30472     active : false,
30473     disabled : false,
30474     html : '',
30475     position : 'bottom',
30476     icon : false,
30477     
30478     getAutoCreate : function()
30479     {
30480         var iconCls = 'roo-navigation-bar-item-icon';
30481         
30482         iconCls += ((this.icon) ? (' ' + this.icon) : (' step-number')) ;
30483         
30484         var cfg = {
30485             tag: 'li',
30486             cls: 'roo-navigation-bar-item',
30487             cn : [
30488                 {
30489                     tag : 'i',
30490                     cls : iconCls
30491                 }
30492             ]
30493         };
30494         
30495         if(this.active){
30496             cfg.cls += ' active';
30497         }
30498         if(this.disabled){
30499             cfg.cls += ' disabled';
30500         }
30501         
30502         return cfg;
30503     },
30504     
30505     disable : function()
30506     {
30507         this.setDisabled(true);
30508     },
30509     
30510     enable : function()
30511     {
30512         this.setDisabled(false);
30513     },
30514     
30515     initEvents: function() 
30516     {
30517         this.iconEl = this.el.select('.roo-navigation-bar-item-icon', true).first();
30518         
30519         this.iconEl.on('click', this.onClick, this);
30520     },
30521     
30522     onClick : function(e)
30523     {
30524         e.preventDefault();
30525         
30526         if(this.disabled){
30527             return;
30528         }
30529         
30530         if(this.fireEvent('click', this, e) === false){
30531             return;
30532         };
30533         
30534         this.parent().setActiveItem(this);
30535     },
30536     
30537     isActive: function () 
30538     {
30539         return this.active;
30540     },
30541     
30542     setActive : function(state)
30543     {
30544         if(this.active == state){
30545             return;
30546         }
30547         
30548         this.active = state;
30549         
30550         if (state) {
30551             this.el.addClass('active');
30552             return;
30553         }
30554         
30555         this.el.removeClass('active');
30556         
30557         return;
30558     },
30559     
30560     setDisabled : function(state)
30561     {
30562         if(this.disabled == state){
30563             return;
30564         }
30565         
30566         this.disabled = state;
30567         
30568         if (state) {
30569             this.el.addClass('disabled');
30570             return;
30571         }
30572         
30573         this.el.removeClass('disabled');
30574     },
30575     
30576     tooltipEl : function()
30577     {
30578         return this.el.select('.roo-navigation-bar-item-icon', true).first();;
30579     }
30580 });
30581  
30582
30583  /*
30584  * - LGPL
30585  *
30586  * FieldLabel
30587  * 
30588  */
30589
30590 /**
30591  * @class Roo.bootstrap.FieldLabel
30592  * @extends Roo.bootstrap.Component
30593  * Bootstrap FieldLabel class
30594  * @cfg {String} html contents of the element
30595  * @cfg {String} tag tag of the element default label
30596  * @cfg {String} cls class of the element
30597  * @cfg {String} target label target 
30598  * @cfg {Boolean} allowBlank (true|false) target allowBlank default true
30599  * @cfg {String} invalidClass DEPRICATED - BS4 uses is-invalid
30600  * @cfg {String} validClass DEPRICATED - BS4 uses is-valid
30601  * @cfg {String} iconTooltip default "This field is required"
30602  * @cfg {String} indicatorpos (left|right) default left
30603  * 
30604  * @constructor
30605  * Create a new FieldLabel
30606  * @param {Object} config The config object
30607  */
30608
30609 Roo.bootstrap.FieldLabel = function(config){
30610     Roo.bootstrap.Element.superclass.constructor.call(this, config);
30611     
30612     this.addEvents({
30613             /**
30614              * @event invalid
30615              * Fires after the field has been marked as invalid.
30616              * @param {Roo.form.FieldLabel} this
30617              * @param {String} msg The validation message
30618              */
30619             invalid : true,
30620             /**
30621              * @event valid
30622              * Fires after the field has been validated with no errors.
30623              * @param {Roo.form.FieldLabel} this
30624              */
30625             valid : true
30626         });
30627 };
30628
30629 Roo.extend(Roo.bootstrap.FieldLabel, Roo.bootstrap.Component,  {
30630     
30631     tag: 'label',
30632     cls: '',
30633     html: '',
30634     target: '',
30635     allowBlank : true,
30636     invalidClass : 'has-warning',
30637     validClass : 'has-success',
30638     iconTooltip : 'This field is required',
30639     indicatorpos : 'left',
30640     
30641     getAutoCreate : function(){
30642         
30643         var cls = "";
30644         if (!this.allowBlank) {
30645             cls  = "visible";
30646         }
30647         
30648         var cfg = {
30649             tag : this.tag,
30650             cls : 'roo-bootstrap-field-label ' + this.cls,
30651             for : this.target,
30652             cn : [
30653                 {
30654                     tag : 'i',
30655                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star ' + cls,
30656                     tooltip : this.iconTooltip
30657                 },
30658                 {
30659                     tag : 'span',
30660                     html : this.html
30661                 }
30662             ] 
30663         };
30664         
30665         if(this.indicatorpos == 'right'){
30666             var cfg = {
30667                 tag : this.tag,
30668                 cls : 'roo-bootstrap-field-label ' + this.cls,
30669                 for : this.target,
30670                 cn : [
30671                     {
30672                         tag : 'span',
30673                         html : this.html
30674                     },
30675                     {
30676                         tag : 'i',
30677                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star '+ cls,
30678                         tooltip : this.iconTooltip
30679                     }
30680                 ] 
30681             };
30682         }
30683         
30684         return cfg;
30685     },
30686     
30687     initEvents: function() 
30688     {
30689         Roo.bootstrap.Element.superclass.initEvents.call(this);
30690         
30691         this.indicator = this.indicatorEl();
30692         
30693         if(this.indicator){
30694             this.indicator.removeClass('visible');
30695             this.indicator.addClass('invisible');
30696         }
30697         
30698         Roo.bootstrap.FieldLabel.register(this);
30699     },
30700     
30701     indicatorEl : function()
30702     {
30703         var indicator = this.el.select('i.roo-required-indicator',true).first();
30704         
30705         if(!indicator){
30706             return false;
30707         }
30708         
30709         return indicator;
30710         
30711     },
30712     
30713     /**
30714      * Mark this field as valid
30715      */
30716     markValid : function()
30717     {
30718         if(this.indicator){
30719             this.indicator.removeClass('visible');
30720             this.indicator.addClass('invisible');
30721         }
30722         if (Roo.bootstrap.version == 3) {
30723             this.el.removeClass(this.invalidClass);
30724             this.el.addClass(this.validClass);
30725         } else {
30726             this.el.removeClass('is-invalid');
30727             this.el.addClass('is-valid');
30728         }
30729         
30730         
30731         this.fireEvent('valid', this);
30732     },
30733     
30734     /**
30735      * Mark this field as invalid
30736      * @param {String} msg The validation message
30737      */
30738     markInvalid : function(msg)
30739     {
30740         if(this.indicator){
30741             this.indicator.removeClass('invisible');
30742             this.indicator.addClass('visible');
30743         }
30744           if (Roo.bootstrap.version == 3) {
30745             this.el.removeClass(this.validClass);
30746             this.el.addClass(this.invalidClass);
30747         } else {
30748             this.el.removeClass('is-valid');
30749             this.el.addClass('is-invalid');
30750         }
30751         
30752         
30753         this.fireEvent('invalid', this, msg);
30754     }
30755     
30756    
30757 });
30758
30759 Roo.apply(Roo.bootstrap.FieldLabel, {
30760     
30761     groups: {},
30762     
30763      /**
30764     * register a FieldLabel Group
30765     * @param {Roo.bootstrap.FieldLabel} the FieldLabel to add
30766     */
30767     register : function(label)
30768     {
30769         if(this.groups.hasOwnProperty(label.target)){
30770             return;
30771         }
30772      
30773         this.groups[label.target] = label;
30774         
30775     },
30776     /**
30777     * fetch a FieldLabel Group based on the target
30778     * @param {string} target
30779     * @returns {Roo.bootstrap.FieldLabel} the CheckBox group
30780     */
30781     get: function(target) {
30782         if (typeof(this.groups[target]) == 'undefined') {
30783             return false;
30784         }
30785         
30786         return this.groups[target] ;
30787     }
30788 });
30789
30790  
30791
30792  /*
30793  * - LGPL
30794  *
30795  * page DateSplitField.
30796  * 
30797  */
30798
30799
30800 /**
30801  * @class Roo.bootstrap.DateSplitField
30802  * @extends Roo.bootstrap.Component
30803  * Bootstrap DateSplitField class
30804  * @cfg {string} fieldLabel - the label associated
30805  * @cfg {Number} labelWidth set the width of label (0-12)
30806  * @cfg {String} labelAlign (top|left)
30807  * @cfg {Boolean} dayAllowBlank (true|false) default false
30808  * @cfg {Boolean} monthAllowBlank (true|false) default false
30809  * @cfg {Boolean} yearAllowBlank (true|false) default false
30810  * @cfg {string} dayPlaceholder 
30811  * @cfg {string} monthPlaceholder
30812  * @cfg {string} yearPlaceholder
30813  * @cfg {string} dayFormat default 'd'
30814  * @cfg {string} monthFormat default 'm'
30815  * @cfg {string} yearFormat default 'Y'
30816  * @cfg {Number} labellg set the width of label (1-12)
30817  * @cfg {Number} labelmd set the width of label (1-12)
30818  * @cfg {Number} labelsm set the width of label (1-12)
30819  * @cfg {Number} labelxs set the width of label (1-12)
30820
30821  *     
30822  * @constructor
30823  * Create a new DateSplitField
30824  * @param {Object} config The config object
30825  */
30826
30827 Roo.bootstrap.DateSplitField = function(config){
30828     Roo.bootstrap.DateSplitField.superclass.constructor.call(this, config);
30829     
30830     this.addEvents({
30831         // raw events
30832          /**
30833          * @event years
30834          * getting the data of years
30835          * @param {Roo.bootstrap.DateSplitField} this
30836          * @param {Object} years
30837          */
30838         "years" : true,
30839         /**
30840          * @event days
30841          * getting the data of days
30842          * @param {Roo.bootstrap.DateSplitField} this
30843          * @param {Object} days
30844          */
30845         "days" : true,
30846         /**
30847          * @event invalid
30848          * Fires after the field has been marked as invalid.
30849          * @param {Roo.form.Field} this
30850          * @param {String} msg The validation message
30851          */
30852         invalid : true,
30853        /**
30854          * @event valid
30855          * Fires after the field has been validated with no errors.
30856          * @param {Roo.form.Field} this
30857          */
30858         valid : true
30859     });
30860 };
30861
30862 Roo.extend(Roo.bootstrap.DateSplitField, Roo.bootstrap.Component,  {
30863     
30864     fieldLabel : '',
30865     labelAlign : 'top',
30866     labelWidth : 3,
30867     dayAllowBlank : false,
30868     monthAllowBlank : false,
30869     yearAllowBlank : false,
30870     dayPlaceholder : '',
30871     monthPlaceholder : '',
30872     yearPlaceholder : '',
30873     dayFormat : 'd',
30874     monthFormat : 'm',
30875     yearFormat : 'Y',
30876     isFormField : true,
30877     labellg : 0,
30878     labelmd : 0,
30879     labelsm : 0,
30880     labelxs : 0,
30881     
30882     getAutoCreate : function()
30883     {
30884         var cfg = {
30885             tag : 'div',
30886             cls : 'row roo-date-split-field-group',
30887             cn : [
30888                 {
30889                     tag : 'input',
30890                     type : 'hidden',
30891                     cls : 'form-hidden-field roo-date-split-field-group-value',
30892                     name : this.name
30893                 }
30894             ]
30895         };
30896         
30897         var labelCls = 'col-md-12';
30898         var contentCls = 'col-md-4';
30899         
30900         if(this.fieldLabel){
30901             
30902             var label = {
30903                 tag : 'div',
30904                 cls : 'column roo-date-split-field-label col-md-' + ((this.labelAlign == 'top') ? '12' : this.labelWidth),
30905                 cn : [
30906                     {
30907                         tag : 'label',
30908                         html : this.fieldLabel
30909                     }
30910                 ]
30911             };
30912             
30913             if(this.labelAlign == 'left'){
30914             
30915                 if(this.labelWidth > 12){
30916                     label.style = "width: " + this.labelWidth + 'px';
30917                 }
30918
30919                 if(this.labelWidth < 13 && this.labelmd == 0){
30920                     this.labelmd = this.labelWidth;
30921                 }
30922
30923                 if(this.labellg > 0){
30924                     labelCls = ' col-lg-' + this.labellg;
30925                     contentCls = ' col-lg-' + ((12 - this.labellg) / 3);
30926                 }
30927
30928                 if(this.labelmd > 0){
30929                     labelCls = ' col-md-' + this.labelmd;
30930                     contentCls = ' col-md-' + ((12 - this.labelmd) / 3);
30931                 }
30932
30933                 if(this.labelsm > 0){
30934                     labelCls = ' col-sm-' + this.labelsm;
30935                     contentCls = ' col-sm-' + ((12 - this.labelsm) / 3);
30936                 }
30937
30938                 if(this.labelxs > 0){
30939                     labelCls = ' col-xs-' + this.labelxs;
30940                     contentCls = ' col-xs-' + ((12 - this.labelxs) / 3);
30941                 }
30942             }
30943             
30944             label.cls += ' ' + labelCls;
30945             
30946             cfg.cn.push(label);
30947         }
30948         
30949         Roo.each(['day', 'month', 'year'], function(t){
30950             cfg.cn.push({
30951                 tag : 'div',
30952                 cls : 'column roo-date-split-field-' + t + ' ' + contentCls
30953             });
30954         }, this);
30955         
30956         return cfg;
30957     },
30958     
30959     inputEl: function ()
30960     {
30961         return this.el.select('.roo-date-split-field-group-value', true).first();
30962     },
30963     
30964     onRender : function(ct, position) 
30965     {
30966         var _this = this;
30967         
30968         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30969         
30970         this.inputEl = this.el.select('.roo-date-split-field-group-value', true).first();
30971         
30972         this.dayField = new Roo.bootstrap.ComboBox({
30973             allowBlank : this.dayAllowBlank,
30974             alwaysQuery : true,
30975             displayField : 'value',
30976             editable : false,
30977             fieldLabel : '',
30978             forceSelection : true,
30979             mode : 'local',
30980             placeholder : this.dayPlaceholder,
30981             selectOnFocus : true,
30982             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
30983             triggerAction : 'all',
30984             typeAhead : true,
30985             valueField : 'value',
30986             store : new Roo.data.SimpleStore({
30987                 data : (function() {    
30988                     var days = [];
30989                     _this.fireEvent('days', _this, days);
30990                     return days;
30991                 })(),
30992                 fields : [ 'value' ]
30993             }),
30994             listeners : {
30995                 select : function (_self, record, index)
30996                 {
30997                     _this.setValue(_this.getValue());
30998                 }
30999             }
31000         });
31001
31002         this.dayField.render(this.el.select('.roo-date-split-field-day', true).first(), null);
31003         
31004         this.monthField = new Roo.bootstrap.MonthField({
31005             after : '<i class=\"fa fa-calendar\"></i>',
31006             allowBlank : this.monthAllowBlank,
31007             placeholder : this.monthPlaceholder,
31008             readOnly : true,
31009             listeners : {
31010                 render : function (_self)
31011                 {
31012                     this.el.select('span.input-group-addon', true).first().on('click', function(e){
31013                         e.preventDefault();
31014                         _self.focus();
31015                     });
31016                 },
31017                 select : function (_self, oldvalue, newvalue)
31018                 {
31019                     _this.setValue(_this.getValue());
31020                 }
31021             }
31022         });
31023         
31024         this.monthField.render(this.el.select('.roo-date-split-field-month', true).first(), null);
31025         
31026         this.yearField = new Roo.bootstrap.ComboBox({
31027             allowBlank : this.yearAllowBlank,
31028             alwaysQuery : true,
31029             displayField : 'value',
31030             editable : false,
31031             fieldLabel : '',
31032             forceSelection : true,
31033             mode : 'local',
31034             placeholder : this.yearPlaceholder,
31035             selectOnFocus : true,
31036             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
31037             triggerAction : 'all',
31038             typeAhead : true,
31039             valueField : 'value',
31040             store : new Roo.data.SimpleStore({
31041                 data : (function() {
31042                     var years = [];
31043                     _this.fireEvent('years', _this, years);
31044                     return years;
31045                 })(),
31046                 fields : [ 'value' ]
31047             }),
31048             listeners : {
31049                 select : function (_self, record, index)
31050                 {
31051                     _this.setValue(_this.getValue());
31052                 }
31053             }
31054         });
31055
31056         this.yearField.render(this.el.select('.roo-date-split-field-year', true).first(), null);
31057     },
31058     
31059     setValue : function(v, format)
31060     {
31061         this.inputEl.dom.value = v;
31062         
31063         var f = format || (this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat);
31064         
31065         var d = Date.parseDate(v, f);
31066         
31067         if(!d){
31068             this.validate();
31069             return;
31070         }
31071         
31072         this.setDay(d.format(this.dayFormat));
31073         this.setMonth(d.format(this.monthFormat));
31074         this.setYear(d.format(this.yearFormat));
31075         
31076         this.validate();
31077         
31078         return;
31079     },
31080     
31081     setDay : function(v)
31082     {
31083         this.dayField.setValue(v);
31084         this.inputEl.dom.value = this.getValue();
31085         this.validate();
31086         return;
31087     },
31088     
31089     setMonth : function(v)
31090     {
31091         this.monthField.setValue(v, true);
31092         this.inputEl.dom.value = this.getValue();
31093         this.validate();
31094         return;
31095     },
31096     
31097     setYear : function(v)
31098     {
31099         this.yearField.setValue(v);
31100         this.inputEl.dom.value = this.getValue();
31101         this.validate();
31102         return;
31103     },
31104     
31105     getDay : function()
31106     {
31107         return this.dayField.getValue();
31108     },
31109     
31110     getMonth : function()
31111     {
31112         return this.monthField.getValue();
31113     },
31114     
31115     getYear : function()
31116     {
31117         return this.yearField.getValue();
31118     },
31119     
31120     getValue : function()
31121     {
31122         var f = this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat;
31123         
31124         var date = this.yearField.getValue() + '-' + this.monthField.getValue() + '-' + this.dayField.getValue();
31125         
31126         return date;
31127     },
31128     
31129     reset : function()
31130     {
31131         this.setDay('');
31132         this.setMonth('');
31133         this.setYear('');
31134         this.inputEl.dom.value = '';
31135         this.validate();
31136         return;
31137     },
31138     
31139     validate : function()
31140     {
31141         var d = this.dayField.validate();
31142         var m = this.monthField.validate();
31143         var y = this.yearField.validate();
31144         
31145         var valid = true;
31146         
31147         if(
31148                 (!this.dayAllowBlank && !d) ||
31149                 (!this.monthAllowBlank && !m) ||
31150                 (!this.yearAllowBlank && !y)
31151         ){
31152             valid = false;
31153         }
31154         
31155         if(this.dayAllowBlank && this.monthAllowBlank && this.yearAllowBlank){
31156             return valid;
31157         }
31158         
31159         if(valid){
31160             this.markValid();
31161             return valid;
31162         }
31163         
31164         this.markInvalid();
31165         
31166         return valid;
31167     },
31168     
31169     markValid : function()
31170     {
31171         
31172         var label = this.el.select('label', true).first();
31173         var icon = this.el.select('i.fa-star', true).first();
31174
31175         if(label && icon){
31176             icon.remove();
31177         }
31178         
31179         this.fireEvent('valid', this);
31180     },
31181     
31182      /**
31183      * Mark this field as invalid
31184      * @param {String} msg The validation message
31185      */
31186     markInvalid : function(msg)
31187     {
31188         
31189         var label = this.el.select('label', true).first();
31190         var icon = this.el.select('i.fa-star', true).first();
31191
31192         if(label && !icon){
31193             this.el.select('.roo-date-split-field-label', true).createChild({
31194                 tag : 'i',
31195                 cls : 'text-danger fa fa-lg fa-star',
31196                 tooltip : 'This field is required',
31197                 style : 'margin-right:5px;'
31198             }, label, true);
31199         }
31200         
31201         this.fireEvent('invalid', this, msg);
31202     },
31203     
31204     clearInvalid : function()
31205     {
31206         var label = this.el.select('label', true).first();
31207         var icon = this.el.select('i.fa-star', true).first();
31208
31209         if(label && icon){
31210             icon.remove();
31211         }
31212         
31213         this.fireEvent('valid', this);
31214     },
31215     
31216     getName: function()
31217     {
31218         return this.name;
31219     }
31220     
31221 });
31222
31223  /**
31224  *
31225  * This is based on 
31226  * http://masonry.desandro.com
31227  *
31228  * The idea is to render all the bricks based on vertical width...
31229  *
31230  * The original code extends 'outlayer' - we might need to use that....
31231  * 
31232  */
31233
31234
31235 /**
31236  * @class Roo.bootstrap.LayoutMasonry
31237  * @extends Roo.bootstrap.Component
31238  * Bootstrap Layout Masonry class
31239  * 
31240  * @constructor
31241  * Create a new Element
31242  * @param {Object} config The config object
31243  */
31244
31245 Roo.bootstrap.LayoutMasonry = function(config){
31246     
31247     Roo.bootstrap.LayoutMasonry.superclass.constructor.call(this, config);
31248     
31249     this.bricks = [];
31250     
31251     Roo.bootstrap.LayoutMasonry.register(this);
31252     
31253     this.addEvents({
31254         // raw events
31255         /**
31256          * @event layout
31257          * Fire after layout the items
31258          * @param {Roo.bootstrap.LayoutMasonry} this
31259          * @param {Roo.EventObject} e
31260          */
31261         "layout" : true
31262     });
31263     
31264 };
31265
31266 Roo.extend(Roo.bootstrap.LayoutMasonry, Roo.bootstrap.Component,  {
31267     
31268     /**
31269      * @cfg {Boolean} isLayoutInstant = no animation?
31270      */   
31271     isLayoutInstant : false, // needed?
31272    
31273     /**
31274      * @cfg {Number} boxWidth  width of the columns
31275      */   
31276     boxWidth : 450,
31277     
31278       /**
31279      * @cfg {Number} boxHeight  - 0 for square, or fix it at a certian height
31280      */   
31281     boxHeight : 0,
31282     
31283     /**
31284      * @cfg {Number} padWidth padding below box..
31285      */   
31286     padWidth : 10, 
31287     
31288     /**
31289      * @cfg {Number} gutter gutter width..
31290      */   
31291     gutter : 10,
31292     
31293      /**
31294      * @cfg {Number} maxCols maximum number of columns
31295      */   
31296     
31297     maxCols: 0,
31298     
31299     /**
31300      * @cfg {Boolean} isAutoInitial defalut true
31301      */   
31302     isAutoInitial : true, 
31303     
31304     containerWidth: 0,
31305     
31306     /**
31307      * @cfg {Boolean} isHorizontal defalut false
31308      */   
31309     isHorizontal : false, 
31310
31311     currentSize : null,
31312     
31313     tag: 'div',
31314     
31315     cls: '',
31316     
31317     bricks: null, //CompositeElement
31318     
31319     cols : 1,
31320     
31321     _isLayoutInited : false,
31322     
31323 //    isAlternative : false, // only use for vertical layout...
31324     
31325     /**
31326      * @cfg {Number} alternativePadWidth padding below box..
31327      */   
31328     alternativePadWidth : 50,
31329     
31330     selectedBrick : [],
31331     
31332     getAutoCreate : function(){
31333         
31334         var cfg = Roo.apply({}, Roo.bootstrap.LayoutMasonry.superclass.getAutoCreate.call(this));
31335         
31336         var cfg = {
31337             tag: this.tag,
31338             cls: 'blog-masonary-wrapper ' + this.cls,
31339             cn : {
31340                 cls : 'mas-boxes masonary'
31341             }
31342         };
31343         
31344         return cfg;
31345     },
31346     
31347     getChildContainer: function( )
31348     {
31349         if (this.boxesEl) {
31350             return this.boxesEl;
31351         }
31352         
31353         this.boxesEl = this.el.select('.mas-boxes').first();
31354         
31355         return this.boxesEl;
31356     },
31357     
31358     
31359     initEvents : function()
31360     {
31361         var _this = this;
31362         
31363         if(this.isAutoInitial){
31364             Roo.log('hook children rendered');
31365             this.on('childrenrendered', function() {
31366                 Roo.log('children rendered');
31367                 _this.initial();
31368             } ,this);
31369         }
31370     },
31371     
31372     initial : function()
31373     {
31374         this.selectedBrick = [];
31375         
31376         this.currentSize = this.el.getBox(true);
31377         
31378         Roo.EventManager.onWindowResize(this.resize, this); 
31379
31380         if(!this.isAutoInitial){
31381             this.layout();
31382             return;
31383         }
31384         
31385         this.layout();
31386         
31387         return;
31388         //this.layout.defer(500,this);
31389         
31390     },
31391     
31392     resize : function()
31393     {
31394         var cs = this.el.getBox(true);
31395         
31396         if (
31397                 this.currentSize.width == cs.width && 
31398                 this.currentSize.x == cs.x && 
31399                 this.currentSize.height == cs.height && 
31400                 this.currentSize.y == cs.y 
31401         ) {
31402             Roo.log("no change in with or X or Y");
31403             return;
31404         }
31405         
31406         this.currentSize = cs;
31407         
31408         this.layout();
31409         
31410     },
31411     
31412     layout : function()
31413     {   
31414         this._resetLayout();
31415         
31416         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
31417         
31418         this.layoutItems( isInstant );
31419       
31420         this._isLayoutInited = true;
31421         
31422         this.fireEvent('layout', this);
31423         
31424     },
31425     
31426     _resetLayout : function()
31427     {
31428         if(this.isHorizontal){
31429             this.horizontalMeasureColumns();
31430             return;
31431         }
31432         
31433         this.verticalMeasureColumns();
31434         
31435     },
31436     
31437     verticalMeasureColumns : function()
31438     {
31439         this.getContainerWidth();
31440         
31441 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31442 //            this.colWidth = Math.floor(this.containerWidth * 0.8);
31443 //            return;
31444 //        }
31445         
31446         var boxWidth = this.boxWidth + this.padWidth;
31447         
31448         if(this.containerWidth < this.boxWidth){
31449             boxWidth = this.containerWidth
31450         }
31451         
31452         var containerWidth = this.containerWidth;
31453         
31454         var cols = Math.floor(containerWidth / boxWidth);
31455         
31456         this.cols = Math.max( cols, 1 );
31457         
31458         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
31459         
31460         var totalBoxWidth = this.cols * boxWidth - this.padWidth;
31461         
31462         var avail = Math.floor((containerWidth - totalBoxWidth) / this.cols);
31463         
31464         this.colWidth = boxWidth + avail - this.padWidth;
31465         
31466         this.unitWidth = Math.round((this.colWidth - (this.gutter * 2)) / 3);
31467         this.unitHeight = this.boxHeight > 0 ? this.boxHeight  : this.unitWidth;
31468     },
31469     
31470     horizontalMeasureColumns : function()
31471     {
31472         this.getContainerWidth();
31473         
31474         var boxWidth = this.boxWidth;
31475         
31476         if(this.containerWidth < boxWidth){
31477             boxWidth = this.containerWidth;
31478         }
31479         
31480         this.unitWidth = Math.floor((boxWidth - (this.gutter * 2)) / 3);
31481         
31482         this.el.setHeight(boxWidth);
31483         
31484     },
31485     
31486     getContainerWidth : function()
31487     {
31488         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
31489     },
31490     
31491     layoutItems : function( isInstant )
31492     {
31493         Roo.log(this.bricks);
31494         
31495         var items = Roo.apply([], this.bricks);
31496         
31497         if(this.isHorizontal){
31498             this._horizontalLayoutItems( items , isInstant );
31499             return;
31500         }
31501         
31502 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31503 //            this._verticalAlternativeLayoutItems( items , isInstant );
31504 //            return;
31505 //        }
31506         
31507         this._verticalLayoutItems( items , isInstant );
31508         
31509     },
31510     
31511     _verticalLayoutItems : function ( items , isInstant)
31512     {
31513         if ( !items || !items.length ) {
31514             return;
31515         }
31516         
31517         var standard = [
31518             ['xs', 'xs', 'xs', 'tall'],
31519             ['xs', 'xs', 'tall'],
31520             ['xs', 'xs', 'sm'],
31521             ['xs', 'xs', 'xs'],
31522             ['xs', 'tall'],
31523             ['xs', 'sm'],
31524             ['xs', 'xs'],
31525             ['xs'],
31526             
31527             ['sm', 'xs', 'xs'],
31528             ['sm', 'xs'],
31529             ['sm'],
31530             
31531             ['tall', 'xs', 'xs', 'xs'],
31532             ['tall', 'xs', 'xs'],
31533             ['tall', 'xs'],
31534             ['tall']
31535             
31536         ];
31537         
31538         var queue = [];
31539         
31540         var boxes = [];
31541         
31542         var box = [];
31543         
31544         Roo.each(items, function(item, k){
31545             
31546             switch (item.size) {
31547                 // these layouts take up a full box,
31548                 case 'md' :
31549                 case 'md-left' :
31550                 case 'md-right' :
31551                 case 'wide' :
31552                     
31553                     if(box.length){
31554                         boxes.push(box);
31555                         box = [];
31556                     }
31557                     
31558                     boxes.push([item]);
31559                     
31560                     break;
31561                     
31562                 case 'xs' :
31563                 case 'sm' :
31564                 case 'tall' :
31565                     
31566                     box.push(item);
31567                     
31568                     break;
31569                 default :
31570                     break;
31571                     
31572             }
31573             
31574         }, this);
31575         
31576         if(box.length){
31577             boxes.push(box);
31578             box = [];
31579         }
31580         
31581         var filterPattern = function(box, length)
31582         {
31583             if(!box.length){
31584                 return;
31585             }
31586             
31587             var match = false;
31588             
31589             var pattern = box.slice(0, length);
31590             
31591             var format = [];
31592             
31593             Roo.each(pattern, function(i){
31594                 format.push(i.size);
31595             }, this);
31596             
31597             Roo.each(standard, function(s){
31598                 
31599                 if(String(s) != String(format)){
31600                     return;
31601                 }
31602                 
31603                 match = true;
31604                 return false;
31605                 
31606             }, this);
31607             
31608             if(!match && length == 1){
31609                 return;
31610             }
31611             
31612             if(!match){
31613                 filterPattern(box, length - 1);
31614                 return;
31615             }
31616                 
31617             queue.push(pattern);
31618
31619             box = box.slice(length, box.length);
31620
31621             filterPattern(box, 4);
31622
31623             return;
31624             
31625         }
31626         
31627         Roo.each(boxes, function(box, k){
31628             
31629             if(!box.length){
31630                 return;
31631             }
31632             
31633             if(box.length == 1){
31634                 queue.push(box);
31635                 return;
31636             }
31637             
31638             filterPattern(box, 4);
31639             
31640         }, this);
31641         
31642         this._processVerticalLayoutQueue( queue, isInstant );
31643         
31644     },
31645     
31646 //    _verticalAlternativeLayoutItems : function( items , isInstant )
31647 //    {
31648 //        if ( !items || !items.length ) {
31649 //            return;
31650 //        }
31651 //
31652 //        this._processVerticalAlternativeLayoutQueue( items, isInstant );
31653 //        
31654 //    },
31655     
31656     _horizontalLayoutItems : function ( items , isInstant)
31657     {
31658         if ( !items || !items.length || items.length < 3) {
31659             return;
31660         }
31661         
31662         items.reverse();
31663         
31664         var eItems = items.slice(0, 3);
31665         
31666         items = items.slice(3, items.length);
31667         
31668         var standard = [
31669             ['xs', 'xs', 'xs', 'wide'],
31670             ['xs', 'xs', 'wide'],
31671             ['xs', 'xs', 'sm'],
31672             ['xs', 'xs', 'xs'],
31673             ['xs', 'wide'],
31674             ['xs', 'sm'],
31675             ['xs', 'xs'],
31676             ['xs'],
31677             
31678             ['sm', 'xs', 'xs'],
31679             ['sm', 'xs'],
31680             ['sm'],
31681             
31682             ['wide', 'xs', 'xs', 'xs'],
31683             ['wide', 'xs', 'xs'],
31684             ['wide', 'xs'],
31685             ['wide'],
31686             
31687             ['wide-thin']
31688         ];
31689         
31690         var queue = [];
31691         
31692         var boxes = [];
31693         
31694         var box = [];
31695         
31696         Roo.each(items, function(item, k){
31697             
31698             switch (item.size) {
31699                 case 'md' :
31700                 case 'md-left' :
31701                 case 'md-right' :
31702                 case 'tall' :
31703                     
31704                     if(box.length){
31705                         boxes.push(box);
31706                         box = [];
31707                     }
31708                     
31709                     boxes.push([item]);
31710                     
31711                     break;
31712                     
31713                 case 'xs' :
31714                 case 'sm' :
31715                 case 'wide' :
31716                 case 'wide-thin' :
31717                     
31718                     box.push(item);
31719                     
31720                     break;
31721                 default :
31722                     break;
31723                     
31724             }
31725             
31726         }, this);
31727         
31728         if(box.length){
31729             boxes.push(box);
31730             box = [];
31731         }
31732         
31733         var filterPattern = function(box, length)
31734         {
31735             if(!box.length){
31736                 return;
31737             }
31738             
31739             var match = false;
31740             
31741             var pattern = box.slice(0, length);
31742             
31743             var format = [];
31744             
31745             Roo.each(pattern, function(i){
31746                 format.push(i.size);
31747             }, this);
31748             
31749             Roo.each(standard, function(s){
31750                 
31751                 if(String(s) != String(format)){
31752                     return;
31753                 }
31754                 
31755                 match = true;
31756                 return false;
31757                 
31758             }, this);
31759             
31760             if(!match && length == 1){
31761                 return;
31762             }
31763             
31764             if(!match){
31765                 filterPattern(box, length - 1);
31766                 return;
31767             }
31768                 
31769             queue.push(pattern);
31770
31771             box = box.slice(length, box.length);
31772
31773             filterPattern(box, 4);
31774
31775             return;
31776             
31777         }
31778         
31779         Roo.each(boxes, function(box, k){
31780             
31781             if(!box.length){
31782                 return;
31783             }
31784             
31785             if(box.length == 1){
31786                 queue.push(box);
31787                 return;
31788             }
31789             
31790             filterPattern(box, 4);
31791             
31792         }, this);
31793         
31794         
31795         var prune = [];
31796         
31797         var pos = this.el.getBox(true);
31798         
31799         var minX = pos.x;
31800         
31801         var maxX = pos.right - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
31802         
31803         var hit_end = false;
31804         
31805         Roo.each(queue, function(box){
31806             
31807             if(hit_end){
31808                 
31809                 Roo.each(box, function(b){
31810                 
31811                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31812                     b.el.hide();
31813
31814                 }, this);
31815
31816                 return;
31817             }
31818             
31819             var mx = 0;
31820             
31821             Roo.each(box, function(b){
31822                 
31823                 b.el.setVisibilityMode(Roo.Element.DISPLAY);
31824                 b.el.show();
31825
31826                 mx = Math.max(mx, b.x);
31827                 
31828             }, this);
31829             
31830             maxX = maxX - this.unitWidth * mx - this.gutter * (mx - 1) - this.padWidth;
31831             
31832             if(maxX < minX){
31833                 
31834                 Roo.each(box, function(b){
31835                 
31836                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31837                     b.el.hide();
31838                     
31839                 }, this);
31840                 
31841                 hit_end = true;
31842                 
31843                 return;
31844             }
31845             
31846             prune.push(box);
31847             
31848         }, this);
31849         
31850         this._processHorizontalLayoutQueue( prune, eItems, isInstant );
31851     },
31852     
31853     /** Sets position of item in DOM
31854     * @param {Element} item
31855     * @param {Number} x - horizontal position
31856     * @param {Number} y - vertical position
31857     * @param {Boolean} isInstant - disables transitions
31858     */
31859     _processVerticalLayoutQueue : function( queue, isInstant )
31860     {
31861         var pos = this.el.getBox(true);
31862         var x = pos.x;
31863         var y = pos.y;
31864         var maxY = [];
31865         
31866         for (var i = 0; i < this.cols; i++){
31867             maxY[i] = pos.y;
31868         }
31869         
31870         Roo.each(queue, function(box, k){
31871             
31872             var col = k % this.cols;
31873             
31874             Roo.each(box, function(b,kk){
31875                 
31876                 b.el.position('absolute');
31877                 
31878                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31879                 var height = Math.floor(this.unitHeight * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31880                 
31881                 if(b.size == 'md-left' || b.size == 'md-right'){
31882                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
31883                     height = Math.floor(this.unitHeight * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
31884                 }
31885                 
31886                 b.el.setWidth(width);
31887                 b.el.setHeight(height);
31888                 // iframe?
31889                 b.el.select('iframe',true).setSize(width,height);
31890                 
31891             }, this);
31892             
31893             for (var i = 0; i < this.cols; i++){
31894                 
31895                 if(maxY[i] < maxY[col]){
31896                     col = i;
31897                     continue;
31898                 }
31899                 
31900                 col = Math.min(col, i);
31901                 
31902             }
31903             
31904             x = pos.x + col * (this.colWidth + this.padWidth);
31905             
31906             y = maxY[col];
31907             
31908             var positions = [];
31909             
31910             switch (box.length){
31911                 case 1 :
31912                     positions = this.getVerticalOneBoxColPositions(x, y, box);
31913                     break;
31914                 case 2 :
31915                     positions = this.getVerticalTwoBoxColPositions(x, y, box);
31916                     break;
31917                 case 3 :
31918                     positions = this.getVerticalThreeBoxColPositions(x, y, box);
31919                     break;
31920                 case 4 :
31921                     positions = this.getVerticalFourBoxColPositions(x, y, box);
31922                     break;
31923                 default :
31924                     break;
31925             }
31926             
31927             Roo.each(box, function(b,kk){
31928                 
31929                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
31930                 
31931                 var sz = b.el.getSize();
31932                 
31933                 maxY[col] = Math.max(maxY[col], positions[kk].y + sz.height + this.padWidth);
31934                 
31935             }, this);
31936             
31937         }, this);
31938         
31939         var mY = 0;
31940         
31941         for (var i = 0; i < this.cols; i++){
31942             mY = Math.max(mY, maxY[i]);
31943         }
31944         
31945         this.el.setHeight(mY - pos.y);
31946         
31947     },
31948     
31949 //    _processVerticalAlternativeLayoutQueue : function( items, isInstant )
31950 //    {
31951 //        var pos = this.el.getBox(true);
31952 //        var x = pos.x;
31953 //        var y = pos.y;
31954 //        var maxX = pos.right;
31955 //        
31956 //        var maxHeight = 0;
31957 //        
31958 //        Roo.each(items, function(item, k){
31959 //            
31960 //            var c = k % 2;
31961 //            
31962 //            item.el.position('absolute');
31963 //                
31964 //            var width = Math.floor(this.colWidth + item.el.getPadding('lr'));
31965 //
31966 //            item.el.setWidth(width);
31967 //
31968 //            var height = Math.floor(this.colWidth * item.y / item.x + item.el.getPadding('tb'));
31969 //
31970 //            item.el.setHeight(height);
31971 //            
31972 //            if(c == 0){
31973 //                item.el.setXY([x, y], isInstant ? false : true);
31974 //            } else {
31975 //                item.el.setXY([maxX - width, y], isInstant ? false : true);
31976 //            }
31977 //            
31978 //            y = y + height + this.alternativePadWidth;
31979 //            
31980 //            maxHeight = maxHeight + height + this.alternativePadWidth;
31981 //            
31982 //        }, this);
31983 //        
31984 //        this.el.setHeight(maxHeight);
31985 //        
31986 //    },
31987     
31988     _processHorizontalLayoutQueue : function( queue, eItems, isInstant )
31989     {
31990         var pos = this.el.getBox(true);
31991         
31992         var minX = pos.x;
31993         var minY = pos.y;
31994         
31995         var maxX = pos.right;
31996         
31997         this._processHorizontalEndItem(eItems, maxX, minX, minY, isInstant);
31998         
31999         var maxX = maxX - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
32000         
32001         Roo.each(queue, function(box, k){
32002             
32003             Roo.each(box, function(b, kk){
32004                 
32005                 b.el.position('absolute');
32006                 
32007                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
32008                 var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
32009                 
32010                 if(b.size == 'md-left' || b.size == 'md-right'){
32011                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
32012                     height = Math.floor(this.unitWidth * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
32013                 }
32014                 
32015                 b.el.setWidth(width);
32016                 b.el.setHeight(height);
32017                 
32018             }, this);
32019             
32020             if(!box.length){
32021                 return;
32022             }
32023             
32024             var positions = [];
32025             
32026             switch (box.length){
32027                 case 1 :
32028                     positions = this.getHorizontalOneBoxColPositions(maxX, minY, box);
32029                     break;
32030                 case 2 :
32031                     positions = this.getHorizontalTwoBoxColPositions(maxX, minY, box);
32032                     break;
32033                 case 3 :
32034                     positions = this.getHorizontalThreeBoxColPositions(maxX, minY, box);
32035                     break;
32036                 case 4 :
32037                     positions = this.getHorizontalFourBoxColPositions(maxX, minY, box);
32038                     break;
32039                 default :
32040                     break;
32041             }
32042             
32043             Roo.each(box, function(b,kk){
32044                 
32045                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
32046                 
32047                 maxX = Math.min(maxX, positions[kk].x - this.padWidth);
32048                 
32049             }, this);
32050             
32051         }, this);
32052         
32053     },
32054     
32055     _processHorizontalEndItem : function(eItems, maxX, minX, minY, isInstant)
32056     {
32057         Roo.each(eItems, function(b,k){
32058             
32059             b.size = (k == 0) ? 'sm' : 'xs';
32060             b.x = (k == 0) ? 2 : 1;
32061             b.y = (k == 0) ? 2 : 1;
32062             
32063             b.el.position('absolute');
32064             
32065             var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
32066                 
32067             b.el.setWidth(width);
32068             
32069             var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
32070             
32071             b.el.setHeight(height);
32072             
32073         }, this);
32074
32075         var positions = [];
32076         
32077         positions.push({
32078             x : maxX - this.unitWidth * 2 - this.gutter,
32079             y : minY
32080         });
32081         
32082         positions.push({
32083             x : maxX - this.unitWidth,
32084             y : minY + (this.unitWidth + this.gutter) * 2
32085         });
32086         
32087         positions.push({
32088             x : maxX - this.unitWidth * 3 - this.gutter * 2,
32089             y : minY
32090         });
32091         
32092         Roo.each(eItems, function(b,k){
32093             
32094             b.el.setXY([positions[k].x, positions[k].y], isInstant ? false : true);
32095
32096         }, this);
32097         
32098     },
32099     
32100     getVerticalOneBoxColPositions : function(x, y, box)
32101     {
32102         var pos = [];
32103         
32104         var rand = Math.floor(Math.random() * ((4 - box[0].x)));
32105         
32106         if(box[0].size == 'md-left'){
32107             rand = 0;
32108         }
32109         
32110         if(box[0].size == 'md-right'){
32111             rand = 1;
32112         }
32113         
32114         pos.push({
32115             x : x + (this.unitWidth + this.gutter) * rand,
32116             y : y
32117         });
32118         
32119         return pos;
32120     },
32121     
32122     getVerticalTwoBoxColPositions : function(x, y, box)
32123     {
32124         var pos = [];
32125         
32126         if(box[0].size == 'xs'){
32127             
32128             pos.push({
32129                 x : x,
32130                 y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[1].y))
32131             });
32132
32133             pos.push({
32134                 x : x + (this.unitWidth + this.gutter) * (3 - box[1].x),
32135                 y : y
32136             });
32137             
32138             return pos;
32139             
32140         }
32141         
32142         pos.push({
32143             x : x,
32144             y : y
32145         });
32146
32147         pos.push({
32148             x : x + (this.unitWidth + this.gutter) * 2,
32149             y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[0].y))
32150         });
32151         
32152         return pos;
32153         
32154     },
32155     
32156     getVerticalThreeBoxColPositions : function(x, y, box)
32157     {
32158         var pos = [];
32159         
32160         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32161             
32162             pos.push({
32163                 x : x,
32164                 y : y
32165             });
32166
32167             pos.push({
32168                 x : x + (this.unitWidth + this.gutter) * 1,
32169                 y : y
32170             });
32171             
32172             pos.push({
32173                 x : x + (this.unitWidth + this.gutter) * 2,
32174                 y : y
32175             });
32176             
32177             return pos;
32178             
32179         }
32180         
32181         if(box[0].size == 'xs' && box[1].size == 'xs'){
32182             
32183             pos.push({
32184                 x : x,
32185                 y : y
32186             });
32187
32188             pos.push({
32189                 x : x,
32190                 y : y + ((this.unitHeight + this.gutter) * (box[2].y - 1))
32191             });
32192             
32193             pos.push({
32194                 x : x + (this.unitWidth + this.gutter) * 1,
32195                 y : y
32196             });
32197             
32198             return pos;
32199             
32200         }
32201         
32202         pos.push({
32203             x : x,
32204             y : y
32205         });
32206
32207         pos.push({
32208             x : x + (this.unitWidth + this.gutter) * 2,
32209             y : y
32210         });
32211
32212         pos.push({
32213             x : x + (this.unitWidth + this.gutter) * 2,
32214             y : y + (this.unitHeight + this.gutter) * (box[0].y - 1)
32215         });
32216             
32217         return pos;
32218         
32219     },
32220     
32221     getVerticalFourBoxColPositions : function(x, y, box)
32222     {
32223         var pos = [];
32224         
32225         if(box[0].size == 'xs'){
32226             
32227             pos.push({
32228                 x : x,
32229                 y : y
32230             });
32231
32232             pos.push({
32233                 x : x,
32234                 y : y + (this.unitHeight + this.gutter) * 1
32235             });
32236             
32237             pos.push({
32238                 x : x,
32239                 y : y + (this.unitHeight + this.gutter) * 2
32240             });
32241             
32242             pos.push({
32243                 x : x + (this.unitWidth + this.gutter) * 1,
32244                 y : y
32245             });
32246             
32247             return pos;
32248             
32249         }
32250         
32251         pos.push({
32252             x : x,
32253             y : y
32254         });
32255
32256         pos.push({
32257             x : x + (this.unitWidth + this.gutter) * 2,
32258             y : y
32259         });
32260
32261         pos.push({
32262             x : x + (this.unitHeightunitWidth + this.gutter) * 2,
32263             y : y + (this.unitHeight + this.gutter) * 1
32264         });
32265
32266         pos.push({
32267             x : x + (this.unitWidth + this.gutter) * 2,
32268             y : y + (this.unitWidth + this.gutter) * 2
32269         });
32270
32271         return pos;
32272         
32273     },
32274     
32275     getHorizontalOneBoxColPositions : function(maxX, minY, box)
32276     {
32277         var pos = [];
32278         
32279         if(box[0].size == 'md-left'){
32280             pos.push({
32281                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32282                 y : minY
32283             });
32284             
32285             return pos;
32286         }
32287         
32288         if(box[0].size == 'md-right'){
32289             pos.push({
32290                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32291                 y : minY + (this.unitWidth + this.gutter) * 1
32292             });
32293             
32294             return pos;
32295         }
32296         
32297         var rand = Math.floor(Math.random() * (4 - box[0].y));
32298         
32299         pos.push({
32300             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32301             y : minY + (this.unitWidth + this.gutter) * rand
32302         });
32303         
32304         return pos;
32305         
32306     },
32307     
32308     getHorizontalTwoBoxColPositions : function(maxX, minY, box)
32309     {
32310         var pos = [];
32311         
32312         if(box[0].size == 'xs'){
32313             
32314             pos.push({
32315                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32316                 y : minY
32317             });
32318
32319             pos.push({
32320                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32321                 y : minY + (this.unitWidth + this.gutter) * (3 - box[1].y)
32322             });
32323             
32324             return pos;
32325             
32326         }
32327         
32328         pos.push({
32329             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32330             y : minY
32331         });
32332
32333         pos.push({
32334             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32335             y : minY + (this.unitWidth + this.gutter) * 2
32336         });
32337         
32338         return pos;
32339         
32340     },
32341     
32342     getHorizontalThreeBoxColPositions : function(maxX, minY, box)
32343     {
32344         var pos = [];
32345         
32346         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32347             
32348             pos.push({
32349                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32350                 y : minY
32351             });
32352
32353             pos.push({
32354                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32355                 y : minY + (this.unitWidth + this.gutter) * 1
32356             });
32357             
32358             pos.push({
32359                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32360                 y : minY + (this.unitWidth + this.gutter) * 2
32361             });
32362             
32363             return pos;
32364             
32365         }
32366         
32367         if(box[0].size == 'xs' && box[1].size == 'xs'){
32368             
32369             pos.push({
32370                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32371                 y : minY
32372             });
32373
32374             pos.push({
32375                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32376                 y : minY
32377             });
32378             
32379             pos.push({
32380                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32381                 y : minY + (this.unitWidth + this.gutter) * 1
32382             });
32383             
32384             return pos;
32385             
32386         }
32387         
32388         pos.push({
32389             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32390             y : minY
32391         });
32392
32393         pos.push({
32394             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32395             y : minY + (this.unitWidth + this.gutter) * 2
32396         });
32397
32398         pos.push({
32399             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32400             y : minY + (this.unitWidth + this.gutter) * 2
32401         });
32402             
32403         return pos;
32404         
32405     },
32406     
32407     getHorizontalFourBoxColPositions : function(maxX, minY, box)
32408     {
32409         var pos = [];
32410         
32411         if(box[0].size == 'xs'){
32412             
32413             pos.push({
32414                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32415                 y : minY
32416             });
32417
32418             pos.push({
32419                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32420                 y : minY
32421             });
32422             
32423             pos.push({
32424                 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),
32425                 y : minY
32426             });
32427             
32428             pos.push({
32429                 x : maxX - this.unitWidth * box[3].x - this.gutter * (box[3].x - 1),
32430                 y : minY + (this.unitWidth + this.gutter) * 1
32431             });
32432             
32433             return pos;
32434             
32435         }
32436         
32437         pos.push({
32438             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32439             y : minY
32440         });
32441         
32442         pos.push({
32443             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32444             y : minY + (this.unitWidth + this.gutter) * 2
32445         });
32446         
32447         pos.push({
32448             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32449             y : minY + (this.unitWidth + this.gutter) * 2
32450         });
32451         
32452         pos.push({
32453             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),
32454             y : minY + (this.unitWidth + this.gutter) * 2
32455         });
32456
32457         return pos;
32458         
32459     },
32460     
32461     /**
32462     * remove a Masonry Brick
32463     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to remove
32464     */
32465     removeBrick : function(brick_id)
32466     {
32467         if (!brick_id) {
32468             return;
32469         }
32470         
32471         for (var i = 0; i<this.bricks.length; i++) {
32472             if (this.bricks[i].id == brick_id) {
32473                 this.bricks.splice(i,1);
32474                 this.el.dom.removeChild(Roo.get(brick_id).dom);
32475                 this.initial();
32476             }
32477         }
32478     },
32479     
32480     /**
32481     * adds a Masonry Brick
32482     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32483     */
32484     addBrick : function(cfg)
32485     {
32486         var cn = new Roo.bootstrap.MasonryBrick(cfg);
32487         //this.register(cn);
32488         cn.parentId = this.id;
32489         cn.render(this.el);
32490         return cn;
32491     },
32492     
32493     /**
32494     * register a Masonry Brick
32495     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32496     */
32497     
32498     register : function(brick)
32499     {
32500         this.bricks.push(brick);
32501         brick.masonryId = this.id;
32502     },
32503     
32504     /**
32505     * clear all the Masonry Brick
32506     */
32507     clearAll : function()
32508     {
32509         this.bricks = [];
32510         //this.getChildContainer().dom.innerHTML = "";
32511         this.el.dom.innerHTML = '';
32512     },
32513     
32514     getSelected : function()
32515     {
32516         if (!this.selectedBrick) {
32517             return false;
32518         }
32519         
32520         return this.selectedBrick;
32521     }
32522 });
32523
32524 Roo.apply(Roo.bootstrap.LayoutMasonry, {
32525     
32526     groups: {},
32527      /**
32528     * register a Masonry Layout
32529     * @param {Roo.bootstrap.LayoutMasonry} the masonry layout to add
32530     */
32531     
32532     register : function(layout)
32533     {
32534         this.groups[layout.id] = layout;
32535     },
32536     /**
32537     * fetch a  Masonry Layout based on the masonry layout ID
32538     * @param {string} the masonry layout to add
32539     * @returns {Roo.bootstrap.LayoutMasonry} the masonry layout
32540     */
32541     
32542     get: function(layout_id) {
32543         if (typeof(this.groups[layout_id]) == 'undefined') {
32544             return false;
32545         }
32546         return this.groups[layout_id] ;
32547     }
32548     
32549     
32550     
32551 });
32552
32553  
32554
32555  /**
32556  *
32557  * This is based on 
32558  * http://masonry.desandro.com
32559  *
32560  * The idea is to render all the bricks based on vertical width...
32561  *
32562  * The original code extends 'outlayer' - we might need to use that....
32563  * 
32564  */
32565
32566
32567 /**
32568  * @class Roo.bootstrap.LayoutMasonryAuto
32569  * @extends Roo.bootstrap.Component
32570  * Bootstrap Layout Masonry class
32571  * 
32572  * @constructor
32573  * Create a new Element
32574  * @param {Object} config The config object
32575  */
32576
32577 Roo.bootstrap.LayoutMasonryAuto = function(config){
32578     Roo.bootstrap.LayoutMasonryAuto.superclass.constructor.call(this, config);
32579 };
32580
32581 Roo.extend(Roo.bootstrap.LayoutMasonryAuto, Roo.bootstrap.Component,  {
32582     
32583       /**
32584      * @cfg {Boolean} isFitWidth  - resize the width..
32585      */   
32586     isFitWidth : false,  // options..
32587     /**
32588      * @cfg {Boolean} isOriginLeft = left align?
32589      */   
32590     isOriginLeft : true,
32591     /**
32592      * @cfg {Boolean} isOriginTop = top align?
32593      */   
32594     isOriginTop : false,
32595     /**
32596      * @cfg {Boolean} isLayoutInstant = no animation?
32597      */   
32598     isLayoutInstant : false, // needed?
32599     /**
32600      * @cfg {Boolean} isResizingContainer = not sure if this is used..
32601      */   
32602     isResizingContainer : true,
32603     /**
32604      * @cfg {Number} columnWidth  width of the columns 
32605      */   
32606     
32607     columnWidth : 0,
32608     
32609     /**
32610      * @cfg {Number} maxCols maximum number of columns
32611      */   
32612     
32613     maxCols: 0,
32614     /**
32615      * @cfg {Number} padHeight padding below box..
32616      */   
32617     
32618     padHeight : 10, 
32619     
32620     /**
32621      * @cfg {Boolean} isAutoInitial defalut true
32622      */   
32623     
32624     isAutoInitial : true, 
32625     
32626     // private?
32627     gutter : 0,
32628     
32629     containerWidth: 0,
32630     initialColumnWidth : 0,
32631     currentSize : null,
32632     
32633     colYs : null, // array.
32634     maxY : 0,
32635     padWidth: 10,
32636     
32637     
32638     tag: 'div',
32639     cls: '',
32640     bricks: null, //CompositeElement
32641     cols : 0, // array?
32642     // element : null, // wrapped now this.el
32643     _isLayoutInited : null, 
32644     
32645     
32646     getAutoCreate : function(){
32647         
32648         var cfg = {
32649             tag: this.tag,
32650             cls: 'blog-masonary-wrapper ' + this.cls,
32651             cn : {
32652                 cls : 'mas-boxes masonary'
32653             }
32654         };
32655         
32656         return cfg;
32657     },
32658     
32659     getChildContainer: function( )
32660     {
32661         if (this.boxesEl) {
32662             return this.boxesEl;
32663         }
32664         
32665         this.boxesEl = this.el.select('.mas-boxes').first();
32666         
32667         return this.boxesEl;
32668     },
32669     
32670     
32671     initEvents : function()
32672     {
32673         var _this = this;
32674         
32675         if(this.isAutoInitial){
32676             Roo.log('hook children rendered');
32677             this.on('childrenrendered', function() {
32678                 Roo.log('children rendered');
32679                 _this.initial();
32680             } ,this);
32681         }
32682         
32683     },
32684     
32685     initial : function()
32686     {
32687         this.reloadItems();
32688
32689         this.currentSize = this.el.getBox(true);
32690
32691         /// was window resize... - let's see if this works..
32692         Roo.EventManager.onWindowResize(this.resize, this); 
32693
32694         if(!this.isAutoInitial){
32695             this.layout();
32696             return;
32697         }
32698         
32699         this.layout.defer(500,this);
32700     },
32701     
32702     reloadItems: function()
32703     {
32704         this.bricks = this.el.select('.masonry-brick', true);
32705         
32706         this.bricks.each(function(b) {
32707             //Roo.log(b.getSize());
32708             if (!b.attr('originalwidth')) {
32709                 b.attr('originalwidth',  b.getSize().width);
32710             }
32711             
32712         });
32713         
32714         Roo.log(this.bricks.elements.length);
32715     },
32716     
32717     resize : function()
32718     {
32719         Roo.log('resize');
32720         var cs = this.el.getBox(true);
32721         
32722         if (this.currentSize.width == cs.width && this.currentSize.x == cs.x ) {
32723             Roo.log("no change in with or X");
32724             return;
32725         }
32726         this.currentSize = cs;
32727         this.layout();
32728     },
32729     
32730     layout : function()
32731     {
32732          Roo.log('layout');
32733         this._resetLayout();
32734         //this._manageStamps();
32735       
32736         // don't animate first layout
32737         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
32738         this.layoutItems( isInstant );
32739       
32740         // flag for initalized
32741         this._isLayoutInited = true;
32742     },
32743     
32744     layoutItems : function( isInstant )
32745     {
32746         //var items = this._getItemsForLayout( this.items );
32747         // original code supports filtering layout items.. we just ignore it..
32748         
32749         this._layoutItems( this.bricks , isInstant );
32750       
32751         this._postLayout();
32752     },
32753     _layoutItems : function ( items , isInstant)
32754     {
32755        //this.fireEvent( 'layout', this, items );
32756     
32757
32758         if ( !items || !items.elements.length ) {
32759           // no items, emit event with empty array
32760             return;
32761         }
32762
32763         var queue = [];
32764         items.each(function(item) {
32765             Roo.log("layout item");
32766             Roo.log(item);
32767             // get x/y object from method
32768             var position = this._getItemLayoutPosition( item );
32769             // enqueue
32770             position.item = item;
32771             position.isInstant = isInstant; // || item.isLayoutInstant; << not set yet...
32772             queue.push( position );
32773         }, this);
32774       
32775         this._processLayoutQueue( queue );
32776     },
32777     /** Sets position of item in DOM
32778     * @param {Element} item
32779     * @param {Number} x - horizontal position
32780     * @param {Number} y - vertical position
32781     * @param {Boolean} isInstant - disables transitions
32782     */
32783     _processLayoutQueue : function( queue )
32784     {
32785         for ( var i=0, len = queue.length; i < len; i++ ) {
32786             var obj = queue[i];
32787             obj.item.position('absolute');
32788             obj.item.setXY([obj.x,obj.y], obj.isInstant ? false : true);
32789         }
32790     },
32791       
32792     
32793     /**
32794     * Any logic you want to do after each layout,
32795     * i.e. size the container
32796     */
32797     _postLayout : function()
32798     {
32799         this.resizeContainer();
32800     },
32801     
32802     resizeContainer : function()
32803     {
32804         if ( !this.isResizingContainer ) {
32805             return;
32806         }
32807         var size = this._getContainerSize();
32808         if ( size ) {
32809             this.el.setSize(size.width,size.height);
32810             this.boxesEl.setSize(size.width,size.height);
32811         }
32812     },
32813     
32814     
32815     
32816     _resetLayout : function()
32817     {
32818         //this.getSize();  // -- does not really do anything.. it probably applies left/right etc. to obuject but not used
32819         this.colWidth = this.el.getWidth();
32820         //this.gutter = this.el.getWidth(); 
32821         
32822         this.measureColumns();
32823
32824         // reset column Y
32825         var i = this.cols;
32826         this.colYs = [];
32827         while (i--) {
32828             this.colYs.push( 0 );
32829         }
32830     
32831         this.maxY = 0;
32832     },
32833
32834     measureColumns : function()
32835     {
32836         this.getContainerWidth();
32837       // if columnWidth is 0, default to outerWidth of first item
32838         if ( !this.columnWidth ) {
32839             var firstItem = this.bricks.first();
32840             Roo.log(firstItem);
32841             this.columnWidth  = this.containerWidth;
32842             if (firstItem && firstItem.attr('originalwidth') ) {
32843                 this.columnWidth = 1* (firstItem.attr('originalwidth') || firstItem.getWidth());
32844             }
32845             // columnWidth fall back to item of first element
32846             Roo.log("set column width?");
32847                         this.initialColumnWidth = this.columnWidth  ;
32848
32849             // if first elem has no width, default to size of container
32850             
32851         }
32852         
32853         
32854         if (this.initialColumnWidth) {
32855             this.columnWidth = this.initialColumnWidth;
32856         }
32857         
32858         
32859             
32860         // column width is fixed at the top - however if container width get's smaller we should
32861         // reduce it...
32862         
32863         // this bit calcs how man columns..
32864             
32865         var columnWidth = this.columnWidth += this.gutter;
32866       
32867         // calculate columns
32868         var containerWidth = this.containerWidth + this.gutter;
32869         
32870         var cols = (containerWidth - this.padWidth) / (columnWidth - this.padWidth);
32871         // fix rounding errors, typically with gutters
32872         var excess = columnWidth - containerWidth % columnWidth;
32873         
32874         
32875         // if overshoot is less than a pixel, round up, otherwise floor it
32876         var mathMethod = excess && excess < 1 ? 'round' : 'floor';
32877         cols = Math[ mathMethod ]( cols );
32878         this.cols = Math.max( cols, 1 );
32879         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
32880         
32881          // padding positioning..
32882         var totalColWidth = this.cols * this.columnWidth;
32883         var padavail = this.containerWidth - totalColWidth;
32884         // so for 2 columns - we need 3 'pads'
32885         
32886         var padNeeded = (1+this.cols) * this.padWidth;
32887         
32888         var padExtra = Math.floor((padavail - padNeeded) / this.cols);
32889         
32890         this.columnWidth += padExtra
32891         //this.padWidth = Math.floor(padavail /  ( this.cols));
32892         
32893         // adjust colum width so that padding is fixed??
32894         
32895         // we have 3 columns ... total = width * 3
32896         // we have X left over... that should be used by 
32897         
32898         //if (this.expandC) {
32899             
32900         //}
32901         
32902         
32903         
32904     },
32905     
32906     getContainerWidth : function()
32907     {
32908        /* // container is parent if fit width
32909         var container = this.isFitWidth ? this.element.parentNode : this.element;
32910         // check that this.size and size are there
32911         // IE8 triggers resize on body size change, so they might not be
32912         
32913         var size = getSize( container );  //FIXME
32914         this.containerWidth = size && size.innerWidth; //FIXME
32915         */
32916          
32917         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
32918         
32919     },
32920     
32921     _getItemLayoutPosition : function( item )  // what is item?
32922     {
32923         // we resize the item to our columnWidth..
32924       
32925         item.setWidth(this.columnWidth);
32926         item.autoBoxAdjust  = false;
32927         
32928         var sz = item.getSize();
32929  
32930         // how many columns does this brick span
32931         var remainder = this.containerWidth % this.columnWidth;
32932         
32933         var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil';
32934         // round if off by 1 pixel, otherwise use ceil
32935         var colSpan = Math[ mathMethod ]( sz.width  / this.columnWidth );
32936         colSpan = Math.min( colSpan, this.cols );
32937         
32938         // normally this should be '1' as we dont' currently allow multi width columns..
32939         
32940         var colGroup = this._getColGroup( colSpan );
32941         // get the minimum Y value from the columns
32942         var minimumY = Math.min.apply( Math, colGroup );
32943         Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32944         
32945         var shortColIndex = colGroup.indexOf(  minimumY ); // broken on ie8..?? probably...
32946          
32947         // position the brick
32948         var position = {
32949             x: this.currentSize.x + (this.padWidth /2) + ((this.columnWidth + this.padWidth )* shortColIndex),
32950             y: this.currentSize.y + minimumY + this.padHeight
32951         };
32952         
32953         Roo.log(position);
32954         // apply setHeight to necessary columns
32955         var setHeight = minimumY + sz.height + this.padHeight;
32956         //Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32957         
32958         var setSpan = this.cols + 1 - colGroup.length;
32959         for ( var i = 0; i < setSpan; i++ ) {
32960           this.colYs[ shortColIndex + i ] = setHeight ;
32961         }
32962       
32963         return position;
32964     },
32965     
32966     /**
32967      * @param {Number} colSpan - number of columns the element spans
32968      * @returns {Array} colGroup
32969      */
32970     _getColGroup : function( colSpan )
32971     {
32972         if ( colSpan < 2 ) {
32973           // if brick spans only one column, use all the column Ys
32974           return this.colYs;
32975         }
32976       
32977         var colGroup = [];
32978         // how many different places could this brick fit horizontally
32979         var groupCount = this.cols + 1 - colSpan;
32980         // for each group potential horizontal position
32981         for ( var i = 0; i < groupCount; i++ ) {
32982           // make an array of colY values for that one group
32983           var groupColYs = this.colYs.slice( i, i + colSpan );
32984           // and get the max value of the array
32985           colGroup[i] = Math.max.apply( Math, groupColYs );
32986         }
32987         return colGroup;
32988     },
32989     /*
32990     _manageStamp : function( stamp )
32991     {
32992         var stampSize =  stamp.getSize();
32993         var offset = stamp.getBox();
32994         // get the columns that this stamp affects
32995         var firstX = this.isOriginLeft ? offset.x : offset.right;
32996         var lastX = firstX + stampSize.width;
32997         var firstCol = Math.floor( firstX / this.columnWidth );
32998         firstCol = Math.max( 0, firstCol );
32999         
33000         var lastCol = Math.floor( lastX / this.columnWidth );
33001         // lastCol should not go over if multiple of columnWidth #425
33002         lastCol -= lastX % this.columnWidth ? 0 : 1;
33003         lastCol = Math.min( this.cols - 1, lastCol );
33004         
33005         // set colYs to bottom of the stamp
33006         var stampMaxY = ( this.isOriginTop ? offset.y : offset.bottom ) +
33007             stampSize.height;
33008             
33009         for ( var i = firstCol; i <= lastCol; i++ ) {
33010           this.colYs[i] = Math.max( stampMaxY, this.colYs[i] );
33011         }
33012     },
33013     */
33014     
33015     _getContainerSize : function()
33016     {
33017         this.maxY = Math.max.apply( Math, this.colYs );
33018         var size = {
33019             height: this.maxY
33020         };
33021       
33022         if ( this.isFitWidth ) {
33023             size.width = this._getContainerFitWidth();
33024         }
33025       
33026         return size;
33027     },
33028     
33029     _getContainerFitWidth : function()
33030     {
33031         var unusedCols = 0;
33032         // count unused columns
33033         var i = this.cols;
33034         while ( --i ) {
33035           if ( this.colYs[i] !== 0 ) {
33036             break;
33037           }
33038           unusedCols++;
33039         }
33040         // fit container to columns that have been used
33041         return ( this.cols - unusedCols ) * this.columnWidth - this.gutter;
33042     },
33043     
33044     needsResizeLayout : function()
33045     {
33046         var previousWidth = this.containerWidth;
33047         this.getContainerWidth();
33048         return previousWidth !== this.containerWidth;
33049     }
33050  
33051 });
33052
33053  
33054
33055  /*
33056  * - LGPL
33057  *
33058  * element
33059  * 
33060  */
33061
33062 /**
33063  * @class Roo.bootstrap.MasonryBrick
33064  * @extends Roo.bootstrap.Component
33065  * Bootstrap MasonryBrick class
33066  * 
33067  * @constructor
33068  * Create a new MasonryBrick
33069  * @param {Object} config The config object
33070  */
33071
33072 Roo.bootstrap.MasonryBrick = function(config){
33073     
33074     Roo.bootstrap.MasonryBrick.superclass.constructor.call(this, config);
33075     
33076     Roo.bootstrap.MasonryBrick.register(this);
33077     
33078     this.addEvents({
33079         // raw events
33080         /**
33081          * @event click
33082          * When a MasonryBrick is clcik
33083          * @param {Roo.bootstrap.MasonryBrick} this
33084          * @param {Roo.EventObject} e
33085          */
33086         "click" : true
33087     });
33088 };
33089
33090 Roo.extend(Roo.bootstrap.MasonryBrick, Roo.bootstrap.Component,  {
33091     
33092     /**
33093      * @cfg {String} title
33094      */   
33095     title : '',
33096     /**
33097      * @cfg {String} html
33098      */   
33099     html : '',
33100     /**
33101      * @cfg {String} bgimage
33102      */   
33103     bgimage : '',
33104     /**
33105      * @cfg {String} videourl
33106      */   
33107     videourl : '',
33108     /**
33109      * @cfg {String} cls
33110      */   
33111     cls : '',
33112     /**
33113      * @cfg {String} href
33114      */   
33115     href : '',
33116     /**
33117      * @cfg {String} size (xs|sm|md|md-left|md-right|tall|wide)
33118      */   
33119     size : 'xs',
33120     
33121     /**
33122      * @cfg {String} placetitle (center|bottom)
33123      */   
33124     placetitle : '',
33125     
33126     /**
33127      * @cfg {Boolean} isFitContainer defalut true
33128      */   
33129     isFitContainer : true, 
33130     
33131     /**
33132      * @cfg {Boolean} preventDefault defalut false
33133      */   
33134     preventDefault : false, 
33135     
33136     /**
33137      * @cfg {Boolean} inverse defalut false
33138      */   
33139     maskInverse : false, 
33140     
33141     getAutoCreate : function()
33142     {
33143         if(!this.isFitContainer){
33144             return this.getSplitAutoCreate();
33145         }
33146         
33147         var cls = 'masonry-brick masonry-brick-full';
33148         
33149         if(this.href.length){
33150             cls += ' masonry-brick-link';
33151         }
33152         
33153         if(this.bgimage.length){
33154             cls += ' masonry-brick-image';
33155         }
33156         
33157         if(this.maskInverse){
33158             cls += ' mask-inverse';
33159         }
33160         
33161         if(!this.html.length && !this.maskInverse && !this.videourl.length){
33162             cls += ' enable-mask';
33163         }
33164         
33165         if(this.size){
33166             cls += ' masonry-' + this.size + '-brick';
33167         }
33168         
33169         if(this.placetitle.length){
33170             
33171             switch (this.placetitle) {
33172                 case 'center' :
33173                     cls += ' masonry-center-title';
33174                     break;
33175                 case 'bottom' :
33176                     cls += ' masonry-bottom-title';
33177                     break;
33178                 default:
33179                     break;
33180             }
33181             
33182         } else {
33183             if(!this.html.length && !this.bgimage.length){
33184                 cls += ' masonry-center-title';
33185             }
33186
33187             if(!this.html.length && this.bgimage.length){
33188                 cls += ' masonry-bottom-title';
33189             }
33190         }
33191         
33192         if(this.cls){
33193             cls += ' ' + this.cls;
33194         }
33195         
33196         var cfg = {
33197             tag: (this.href.length) ? 'a' : 'div',
33198             cls: cls,
33199             cn: [
33200                 {
33201                     tag: 'div',
33202                     cls: 'masonry-brick-mask'
33203                 },
33204                 {
33205                     tag: 'div',
33206                     cls: 'masonry-brick-paragraph',
33207                     cn: []
33208                 }
33209             ]
33210         };
33211         
33212         if(this.href.length){
33213             cfg.href = this.href;
33214         }
33215         
33216         var cn = cfg.cn[1].cn;
33217         
33218         if(this.title.length){
33219             cn.push({
33220                 tag: 'h4',
33221                 cls: 'masonry-brick-title',
33222                 html: this.title
33223             });
33224         }
33225         
33226         if(this.html.length){
33227             cn.push({
33228                 tag: 'p',
33229                 cls: 'masonry-brick-text',
33230                 html: this.html
33231             });
33232         }
33233         
33234         if (!this.title.length && !this.html.length) {
33235             cfg.cn[1].cls += ' hide';
33236         }
33237         
33238         if(this.bgimage.length){
33239             cfg.cn.push({
33240                 tag: 'img',
33241                 cls: 'masonry-brick-image-view',
33242                 src: this.bgimage
33243             });
33244         }
33245         
33246         if(this.videourl.length){
33247             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33248             // youtube support only?
33249             cfg.cn.push({
33250                 tag: 'iframe',
33251                 cls: 'masonry-brick-image-view',
33252                 src: vurl,
33253                 frameborder : 0,
33254                 allowfullscreen : true
33255             });
33256         }
33257         
33258         return cfg;
33259         
33260     },
33261     
33262     getSplitAutoCreate : function()
33263     {
33264         var cls = 'masonry-brick masonry-brick-split';
33265         
33266         if(this.href.length){
33267             cls += ' masonry-brick-link';
33268         }
33269         
33270         if(this.bgimage.length){
33271             cls += ' masonry-brick-image';
33272         }
33273         
33274         if(this.size){
33275             cls += ' masonry-' + this.size + '-brick';
33276         }
33277         
33278         switch (this.placetitle) {
33279             case 'center' :
33280                 cls += ' masonry-center-title';
33281                 break;
33282             case 'bottom' :
33283                 cls += ' masonry-bottom-title';
33284                 break;
33285             default:
33286                 if(!this.bgimage.length){
33287                     cls += ' masonry-center-title';
33288                 }
33289
33290                 if(this.bgimage.length){
33291                     cls += ' masonry-bottom-title';
33292                 }
33293                 break;
33294         }
33295         
33296         if(this.cls){
33297             cls += ' ' + this.cls;
33298         }
33299         
33300         var cfg = {
33301             tag: (this.href.length) ? 'a' : 'div',
33302             cls: cls,
33303             cn: [
33304                 {
33305                     tag: 'div',
33306                     cls: 'masonry-brick-split-head',
33307                     cn: [
33308                         {
33309                             tag: 'div',
33310                             cls: 'masonry-brick-paragraph',
33311                             cn: []
33312                         }
33313                     ]
33314                 },
33315                 {
33316                     tag: 'div',
33317                     cls: 'masonry-brick-split-body',
33318                     cn: []
33319                 }
33320             ]
33321         };
33322         
33323         if(this.href.length){
33324             cfg.href = this.href;
33325         }
33326         
33327         if(this.title.length){
33328             cfg.cn[0].cn[0].cn.push({
33329                 tag: 'h4',
33330                 cls: 'masonry-brick-title',
33331                 html: this.title
33332             });
33333         }
33334         
33335         if(this.html.length){
33336             cfg.cn[1].cn.push({
33337                 tag: 'p',
33338                 cls: 'masonry-brick-text',
33339                 html: this.html
33340             });
33341         }
33342
33343         if(this.bgimage.length){
33344             cfg.cn[0].cn.push({
33345                 tag: 'img',
33346                 cls: 'masonry-brick-image-view',
33347                 src: this.bgimage
33348             });
33349         }
33350         
33351         if(this.videourl.length){
33352             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33353             // youtube support only?
33354             cfg.cn[0].cn.cn.push({
33355                 tag: 'iframe',
33356                 cls: 'masonry-brick-image-view',
33357                 src: vurl,
33358                 frameborder : 0,
33359                 allowfullscreen : true
33360             });
33361         }
33362         
33363         return cfg;
33364     },
33365     
33366     initEvents: function() 
33367     {
33368         switch (this.size) {
33369             case 'xs' :
33370                 this.x = 1;
33371                 this.y = 1;
33372                 break;
33373             case 'sm' :
33374                 this.x = 2;
33375                 this.y = 2;
33376                 break;
33377             case 'md' :
33378             case 'md-left' :
33379             case 'md-right' :
33380                 this.x = 3;
33381                 this.y = 3;
33382                 break;
33383             case 'tall' :
33384                 this.x = 2;
33385                 this.y = 3;
33386                 break;
33387             case 'wide' :
33388                 this.x = 3;
33389                 this.y = 2;
33390                 break;
33391             case 'wide-thin' :
33392                 this.x = 3;
33393                 this.y = 1;
33394                 break;
33395                         
33396             default :
33397                 break;
33398         }
33399         
33400         if(Roo.isTouch){
33401             this.el.on('touchstart', this.onTouchStart, this);
33402             this.el.on('touchmove', this.onTouchMove, this);
33403             this.el.on('touchend', this.onTouchEnd, this);
33404             this.el.on('contextmenu', this.onContextMenu, this);
33405         } else {
33406             this.el.on('mouseenter'  ,this.enter, this);
33407             this.el.on('mouseleave', this.leave, this);
33408             this.el.on('click', this.onClick, this);
33409         }
33410         
33411         if (typeof(this.parent().bricks) == 'object' && this.parent().bricks != null) {
33412             this.parent().bricks.push(this);   
33413         }
33414         
33415     },
33416     
33417     onClick: function(e, el)
33418     {
33419         var time = this.endTimer - this.startTimer;
33420         // Roo.log(e.preventDefault());
33421         if(Roo.isTouch){
33422             if(time > 1000){
33423                 e.preventDefault();
33424                 return;
33425             }
33426         }
33427         
33428         if(!this.preventDefault){
33429             return;
33430         }
33431         
33432         e.preventDefault();
33433         
33434         if (this.activeClass != '') {
33435             this.selectBrick();
33436         }
33437         
33438         this.fireEvent('click', this, e);
33439     },
33440     
33441     enter: function(e, el)
33442     {
33443         e.preventDefault();
33444         
33445         if(!this.isFitContainer || this.maskInverse || this.videourl.length){
33446             return;
33447         }
33448         
33449         if(this.bgimage.length && this.html.length){
33450             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33451         }
33452     },
33453     
33454     leave: function(e, el)
33455     {
33456         e.preventDefault();
33457         
33458         if(!this.isFitContainer || this.maskInverse  || this.videourl.length){
33459             return;
33460         }
33461         
33462         if(this.bgimage.length && this.html.length){
33463             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33464         }
33465     },
33466     
33467     onTouchStart: function(e, el)
33468     {
33469 //        e.preventDefault();
33470         
33471         this.touchmoved = false;
33472         
33473         if(!this.isFitContainer){
33474             return;
33475         }
33476         
33477         if(!this.bgimage.length || !this.html.length){
33478             return;
33479         }
33480         
33481         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33482         
33483         this.timer = new Date().getTime();
33484         
33485     },
33486     
33487     onTouchMove: function(e, el)
33488     {
33489         this.touchmoved = true;
33490     },
33491     
33492     onContextMenu : function(e,el)
33493     {
33494         e.preventDefault();
33495         e.stopPropagation();
33496         return false;
33497     },
33498     
33499     onTouchEnd: function(e, el)
33500     {
33501 //        e.preventDefault();
33502         
33503         if((new Date().getTime() - this.timer > 1000) || !this.href.length || this.touchmoved){
33504         
33505             this.leave(e,el);
33506             
33507             return;
33508         }
33509         
33510         if(!this.bgimage.length || !this.html.length){
33511             
33512             if(this.href.length){
33513                 window.location.href = this.href;
33514             }
33515             
33516             return;
33517         }
33518         
33519         if(!this.isFitContainer){
33520             return;
33521         }
33522         
33523         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33524         
33525         window.location.href = this.href;
33526     },
33527     
33528     //selection on single brick only
33529     selectBrick : function() {
33530         
33531         if (!this.parentId) {
33532             return;
33533         }
33534         
33535         var m = Roo.bootstrap.LayoutMasonry.get(this.parentId);
33536         var index = m.selectedBrick.indexOf(this.id);
33537         
33538         if ( index > -1) {
33539             m.selectedBrick.splice(index,1);
33540             this.el.removeClass(this.activeClass);
33541             return;
33542         }
33543         
33544         for(var i = 0; i < m.selectedBrick.length; i++) {
33545             var b = Roo.bootstrap.MasonryBrick.get(m.selectedBrick[i]);
33546             b.el.removeClass(b.activeClass);
33547         }
33548         
33549         m.selectedBrick = [];
33550         
33551         m.selectedBrick.push(this.id);
33552         this.el.addClass(this.activeClass);
33553         return;
33554     },
33555     
33556     isSelected : function(){
33557         return this.el.hasClass(this.activeClass);
33558         
33559     }
33560 });
33561
33562 Roo.apply(Roo.bootstrap.MasonryBrick, {
33563     
33564     //groups: {},
33565     groups : new Roo.util.MixedCollection(false, function(o) { return o.el.id; }),
33566      /**
33567     * register a Masonry Brick
33568     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
33569     */
33570     
33571     register : function(brick)
33572     {
33573         //this.groups[brick.id] = brick;
33574         this.groups.add(brick.id, brick);
33575     },
33576     /**
33577     * fetch a  masonry brick based on the masonry brick ID
33578     * @param {string} the masonry brick to add
33579     * @returns {Roo.bootstrap.MasonryBrick} the masonry brick
33580     */
33581     
33582     get: function(brick_id) 
33583     {
33584         // if (typeof(this.groups[brick_id]) == 'undefined') {
33585         //     return false;
33586         // }
33587         // return this.groups[brick_id] ;
33588         
33589         if(this.groups.key(brick_id)) {
33590             return this.groups.key(brick_id);
33591         }
33592         
33593         return false;
33594     }
33595     
33596     
33597     
33598 });
33599
33600  /*
33601  * - LGPL
33602  *
33603  * element
33604  * 
33605  */
33606
33607 /**
33608  * @class Roo.bootstrap.Brick
33609  * @extends Roo.bootstrap.Component
33610  * Bootstrap Brick class
33611  * 
33612  * @constructor
33613  * Create a new Brick
33614  * @param {Object} config The config object
33615  */
33616
33617 Roo.bootstrap.Brick = function(config){
33618     Roo.bootstrap.Brick.superclass.constructor.call(this, config);
33619     
33620     this.addEvents({
33621         // raw events
33622         /**
33623          * @event click
33624          * When a Brick is click
33625          * @param {Roo.bootstrap.Brick} this
33626          * @param {Roo.EventObject} e
33627          */
33628         "click" : true
33629     });
33630 };
33631
33632 Roo.extend(Roo.bootstrap.Brick, Roo.bootstrap.Component,  {
33633     
33634     /**
33635      * @cfg {String} title
33636      */   
33637     title : '',
33638     /**
33639      * @cfg {String} html
33640      */   
33641     html : '',
33642     /**
33643      * @cfg {String} bgimage
33644      */   
33645     bgimage : '',
33646     /**
33647      * @cfg {String} cls
33648      */   
33649     cls : '',
33650     /**
33651      * @cfg {String} href
33652      */   
33653     href : '',
33654     /**
33655      * @cfg {String} video
33656      */   
33657     video : '',
33658     /**
33659      * @cfg {Boolean} square
33660      */   
33661     square : true,
33662     
33663     getAutoCreate : function()
33664     {
33665         var cls = 'roo-brick';
33666         
33667         if(this.href.length){
33668             cls += ' roo-brick-link';
33669         }
33670         
33671         if(this.bgimage.length){
33672             cls += ' roo-brick-image';
33673         }
33674         
33675         if(!this.html.length && !this.bgimage.length){
33676             cls += ' roo-brick-center-title';
33677         }
33678         
33679         if(!this.html.length && this.bgimage.length){
33680             cls += ' roo-brick-bottom-title';
33681         }
33682         
33683         if(this.cls){
33684             cls += ' ' + this.cls;
33685         }
33686         
33687         var cfg = {
33688             tag: (this.href.length) ? 'a' : 'div',
33689             cls: cls,
33690             cn: [
33691                 {
33692                     tag: 'div',
33693                     cls: 'roo-brick-paragraph',
33694                     cn: []
33695                 }
33696             ]
33697         };
33698         
33699         if(this.href.length){
33700             cfg.href = this.href;
33701         }
33702         
33703         var cn = cfg.cn[0].cn;
33704         
33705         if(this.title.length){
33706             cn.push({
33707                 tag: 'h4',
33708                 cls: 'roo-brick-title',
33709                 html: this.title
33710             });
33711         }
33712         
33713         if(this.html.length){
33714             cn.push({
33715                 tag: 'p',
33716                 cls: 'roo-brick-text',
33717                 html: this.html
33718             });
33719         } else {
33720             cn.cls += ' hide';
33721         }
33722         
33723         if(this.bgimage.length){
33724             cfg.cn.push({
33725                 tag: 'img',
33726                 cls: 'roo-brick-image-view',
33727                 src: this.bgimage
33728             });
33729         }
33730         
33731         return cfg;
33732     },
33733     
33734     initEvents: function() 
33735     {
33736         if(this.title.length || this.html.length){
33737             this.el.on('mouseenter'  ,this.enter, this);
33738             this.el.on('mouseleave', this.leave, this);
33739         }
33740         
33741         Roo.EventManager.onWindowResize(this.resize, this); 
33742         
33743         if(this.bgimage.length){
33744             this.imageEl = this.el.select('.roo-brick-image-view', true).first();
33745             this.imageEl.on('load', this.onImageLoad, this);
33746             return;
33747         }
33748         
33749         this.resize();
33750     },
33751     
33752     onImageLoad : function()
33753     {
33754         this.resize();
33755     },
33756     
33757     resize : function()
33758     {
33759         var paragraph = this.el.select('.roo-brick-paragraph', true).first();
33760         
33761         paragraph.setHeight(paragraph.getWidth() + paragraph.getPadding('tb'));
33762         
33763         if(this.bgimage.length){
33764             var image = this.el.select('.roo-brick-image-view', true).first();
33765             
33766             image.setWidth(paragraph.getWidth());
33767             
33768             if(this.square){
33769                 image.setHeight(paragraph.getWidth());
33770             }
33771             
33772             this.el.setHeight(image.getHeight());
33773             paragraph.setHeight(image.getHeight());
33774             
33775         }
33776         
33777     },
33778     
33779     enter: function(e, el)
33780     {
33781         e.preventDefault();
33782         
33783         if(this.bgimage.length){
33784             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0.9, true);
33785             this.el.select('.roo-brick-image-view', true).first().setOpacity(0.1, true);
33786         }
33787     },
33788     
33789     leave: function(e, el)
33790     {
33791         e.preventDefault();
33792         
33793         if(this.bgimage.length){
33794             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0, true);
33795             this.el.select('.roo-brick-image-view', true).first().setOpacity(1, true);
33796         }
33797     }
33798     
33799 });
33800
33801  
33802
33803  /*
33804  * - LGPL
33805  *
33806  * Number field 
33807  */
33808
33809 /**
33810  * @class Roo.bootstrap.NumberField
33811  * @extends Roo.bootstrap.Input
33812  * Bootstrap NumberField class
33813  * 
33814  * 
33815  * 
33816  * 
33817  * @constructor
33818  * Create a new NumberField
33819  * @param {Object} config The config object
33820  */
33821
33822 Roo.bootstrap.NumberField = function(config){
33823     Roo.bootstrap.NumberField.superclass.constructor.call(this, config);
33824 };
33825
33826 Roo.extend(Roo.bootstrap.NumberField, Roo.bootstrap.Input, {
33827     
33828     /**
33829      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
33830      */
33831     allowDecimals : true,
33832     /**
33833      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
33834      */
33835     decimalSeparator : ".",
33836     /**
33837      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
33838      */
33839     decimalPrecision : 2,
33840     /**
33841      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
33842      */
33843     allowNegative : true,
33844     
33845     /**
33846      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
33847      */
33848     allowZero: true,
33849     /**
33850      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
33851      */
33852     minValue : Number.NEGATIVE_INFINITY,
33853     /**
33854      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
33855      */
33856     maxValue : Number.MAX_VALUE,
33857     /**
33858      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
33859      */
33860     minText : "The minimum value for this field is {0}",
33861     /**
33862      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
33863      */
33864     maxText : "The maximum value for this field is {0}",
33865     /**
33866      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
33867      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
33868      */
33869     nanText : "{0} is not a valid number",
33870     /**
33871      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
33872      */
33873     thousandsDelimiter : false,
33874     /**
33875      * @cfg {String} valueAlign alignment of value
33876      */
33877     valueAlign : "left",
33878
33879     getAutoCreate : function()
33880     {
33881         var hiddenInput = {
33882             tag: 'input',
33883             type: 'hidden',
33884             id: Roo.id(),
33885             cls: 'hidden-number-input'
33886         };
33887         
33888         if (this.name) {
33889             hiddenInput.name = this.name;
33890         }
33891         
33892         this.name = '';
33893         
33894         var cfg = Roo.bootstrap.NumberField.superclass.getAutoCreate.call(this);
33895         
33896         this.name = hiddenInput.name;
33897         
33898         if(cfg.cn.length > 0) {
33899             cfg.cn.push(hiddenInput);
33900         }
33901         
33902         return cfg;
33903     },
33904
33905     // private
33906     initEvents : function()
33907     {   
33908         Roo.bootstrap.NumberField.superclass.initEvents.call(this);
33909         
33910         var allowed = "0123456789";
33911         
33912         if(this.allowDecimals){
33913             allowed += this.decimalSeparator;
33914         }
33915         
33916         if(this.allowNegative){
33917             allowed += "-";
33918         }
33919         
33920         if(this.thousandsDelimiter) {
33921             allowed += ",";
33922         }
33923         
33924         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
33925         
33926         var keyPress = function(e){
33927             
33928             var k = e.getKey();
33929             
33930             var c = e.getCharCode();
33931             
33932             if(
33933                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
33934                     allowed.indexOf(String.fromCharCode(c)) === -1
33935             ){
33936                 e.stopEvent();
33937                 return;
33938             }
33939             
33940             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
33941                 return;
33942             }
33943             
33944             if(allowed.indexOf(String.fromCharCode(c)) === -1){
33945                 e.stopEvent();
33946             }
33947         };
33948         
33949         this.el.on("keypress", keyPress, this);
33950     },
33951     
33952     validateValue : function(value)
33953     {
33954         
33955         if(!Roo.bootstrap.NumberField.superclass.validateValue.call(this, value)){
33956             return false;
33957         }
33958         
33959         var num = this.parseValue(value);
33960         
33961         if(isNaN(num)){
33962             this.markInvalid(String.format(this.nanText, value));
33963             return false;
33964         }
33965         
33966         if(num < this.minValue){
33967             this.markInvalid(String.format(this.minText, this.minValue));
33968             return false;
33969         }
33970         
33971         if(num > this.maxValue){
33972             this.markInvalid(String.format(this.maxText, this.maxValue));
33973             return false;
33974         }
33975         
33976         return true;
33977     },
33978
33979     getValue : function()
33980     {
33981         var v = this.hiddenEl().getValue();
33982         
33983         return this.fixPrecision(this.parseValue(v));
33984     },
33985
33986     parseValue : function(value)
33987     {
33988         if(this.thousandsDelimiter) {
33989             value += "";
33990             r = new RegExp(",", "g");
33991             value = value.replace(r, "");
33992         }
33993         
33994         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
33995         return isNaN(value) ? '' : value;
33996     },
33997
33998     fixPrecision : function(value)
33999     {
34000         if(this.thousandsDelimiter) {
34001             value += "";
34002             r = new RegExp(",", "g");
34003             value = value.replace(r, "");
34004         }
34005         
34006         var nan = isNaN(value);
34007         
34008         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
34009             return nan ? '' : value;
34010         }
34011         return parseFloat(value).toFixed(this.decimalPrecision);
34012     },
34013
34014     setValue : function(v)
34015     {
34016         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
34017         
34018         this.value = v;
34019         
34020         if(this.rendered){
34021             
34022             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
34023             
34024             this.inputEl().dom.value = (v == '') ? '' :
34025                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
34026             
34027             if(!this.allowZero && v === '0') {
34028                 this.hiddenEl().dom.value = '';
34029                 this.inputEl().dom.value = '';
34030             }
34031             
34032             this.validate();
34033         }
34034     },
34035
34036     decimalPrecisionFcn : function(v)
34037     {
34038         return Math.floor(v);
34039     },
34040
34041     beforeBlur : function()
34042     {
34043         var v = this.parseValue(this.getRawValue());
34044         
34045         if(v || v === 0 || v === ''){
34046             this.setValue(v);
34047         }
34048     },
34049     
34050     hiddenEl : function()
34051     {
34052         return this.el.select('input.hidden-number-input',true).first();
34053     }
34054     
34055 });
34056
34057  
34058
34059 /*
34060 * Licence: LGPL
34061 */
34062
34063 /**
34064  * @class Roo.bootstrap.DocumentSlider
34065  * @extends Roo.bootstrap.Component
34066  * Bootstrap DocumentSlider class
34067  * 
34068  * @constructor
34069  * Create a new DocumentViewer
34070  * @param {Object} config The config object
34071  */
34072
34073 Roo.bootstrap.DocumentSlider = function(config){
34074     Roo.bootstrap.DocumentSlider.superclass.constructor.call(this, config);
34075     
34076     this.files = [];
34077     
34078     this.addEvents({
34079         /**
34080          * @event initial
34081          * Fire after initEvent
34082          * @param {Roo.bootstrap.DocumentSlider} this
34083          */
34084         "initial" : true,
34085         /**
34086          * @event update
34087          * Fire after update
34088          * @param {Roo.bootstrap.DocumentSlider} this
34089          */
34090         "update" : true,
34091         /**
34092          * @event click
34093          * Fire after click
34094          * @param {Roo.bootstrap.DocumentSlider} this
34095          */
34096         "click" : true
34097     });
34098 };
34099
34100 Roo.extend(Roo.bootstrap.DocumentSlider, Roo.bootstrap.Component,  {
34101     
34102     files : false,
34103     
34104     indicator : 0,
34105     
34106     getAutoCreate : function()
34107     {
34108         var cfg = {
34109             tag : 'div',
34110             cls : 'roo-document-slider',
34111             cn : [
34112                 {
34113                     tag : 'div',
34114                     cls : 'roo-document-slider-header',
34115                     cn : [
34116                         {
34117                             tag : 'div',
34118                             cls : 'roo-document-slider-header-title'
34119                         }
34120                     ]
34121                 },
34122                 {
34123                     tag : 'div',
34124                     cls : 'roo-document-slider-body',
34125                     cn : [
34126                         {
34127                             tag : 'div',
34128                             cls : 'roo-document-slider-prev',
34129                             cn : [
34130                                 {
34131                                     tag : 'i',
34132                                     cls : 'fa fa-chevron-left'
34133                                 }
34134                             ]
34135                         },
34136                         {
34137                             tag : 'div',
34138                             cls : 'roo-document-slider-thumb',
34139                             cn : [
34140                                 {
34141                                     tag : 'img',
34142                                     cls : 'roo-document-slider-image'
34143                                 }
34144                             ]
34145                         },
34146                         {
34147                             tag : 'div',
34148                             cls : 'roo-document-slider-next',
34149                             cn : [
34150                                 {
34151                                     tag : 'i',
34152                                     cls : 'fa fa-chevron-right'
34153                                 }
34154                             ]
34155                         }
34156                     ]
34157                 }
34158             ]
34159         };
34160         
34161         return cfg;
34162     },
34163     
34164     initEvents : function()
34165     {
34166         this.headerEl = this.el.select('.roo-document-slider-header', true).first();
34167         this.headerEl.setVisibilityMode(Roo.Element.DISPLAY);
34168         
34169         this.titleEl = this.el.select('.roo-document-slider-header .roo-document-slider-header-title', true).first();
34170         this.titleEl.setVisibilityMode(Roo.Element.DISPLAY);
34171         
34172         this.bodyEl = this.el.select('.roo-document-slider-body', true).first();
34173         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
34174         
34175         this.thumbEl = this.el.select('.roo-document-slider-thumb', true).first();
34176         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
34177         
34178         this.imageEl = this.el.select('.roo-document-slider-image', true).first();
34179         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
34180         
34181         this.prevIndicator = this.el.select('.roo-document-slider-prev i', true).first();
34182         this.prevIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34183         
34184         this.nextIndicator = this.el.select('.roo-document-slider-next i', true).first();
34185         this.nextIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34186         
34187         this.thumbEl.on('click', this.onClick, this);
34188         
34189         this.prevIndicator.on('click', this.prev, this);
34190         
34191         this.nextIndicator.on('click', this.next, this);
34192         
34193     },
34194     
34195     initial : function()
34196     {
34197         if(this.files.length){
34198             this.indicator = 1;
34199             this.update()
34200         }
34201         
34202         this.fireEvent('initial', this);
34203     },
34204     
34205     update : function()
34206     {
34207         this.imageEl.attr('src', this.files[this.indicator - 1]);
34208         
34209         this.titleEl.dom.innerHTML = String.format('{0} / {1}', this.indicator, this.files.length);
34210         
34211         this.prevIndicator.show();
34212         
34213         if(this.indicator == 1){
34214             this.prevIndicator.hide();
34215         }
34216         
34217         this.nextIndicator.show();
34218         
34219         if(this.indicator == this.files.length){
34220             this.nextIndicator.hide();
34221         }
34222         
34223         this.thumbEl.scrollTo('top');
34224         
34225         this.fireEvent('update', this);
34226     },
34227     
34228     onClick : function(e)
34229     {
34230         e.preventDefault();
34231         
34232         this.fireEvent('click', this);
34233     },
34234     
34235     prev : function(e)
34236     {
34237         e.preventDefault();
34238         
34239         this.indicator = Math.max(1, this.indicator - 1);
34240         
34241         this.update();
34242     },
34243     
34244     next : function(e)
34245     {
34246         e.preventDefault();
34247         
34248         this.indicator = Math.min(this.files.length, this.indicator + 1);
34249         
34250         this.update();
34251     }
34252 });
34253 /*
34254  * - LGPL
34255  *
34256  * RadioSet
34257  *
34258  *
34259  */
34260
34261 /**
34262  * @class Roo.bootstrap.RadioSet
34263  * @extends Roo.bootstrap.Input
34264  * Bootstrap RadioSet class
34265  * @cfg {String} indicatorpos (left|right) default left
34266  * @cfg {Boolean} inline (true|false) inline the element (default true)
34267  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the radio
34268  * @constructor
34269  * Create a new RadioSet
34270  * @param {Object} config The config object
34271  */
34272
34273 Roo.bootstrap.RadioSet = function(config){
34274     
34275     Roo.bootstrap.RadioSet.superclass.constructor.call(this, config);
34276     
34277     this.radioes = [];
34278     
34279     Roo.bootstrap.RadioSet.register(this);
34280     
34281     this.addEvents({
34282         /**
34283         * @event check
34284         * Fires when the element is checked or unchecked.
34285         * @param {Roo.bootstrap.RadioSet} this This radio
34286         * @param {Roo.bootstrap.Radio} item The checked item
34287         */
34288        check : true,
34289        /**
34290         * @event click
34291         * Fires when the element is click.
34292         * @param {Roo.bootstrap.RadioSet} this This radio set
34293         * @param {Roo.bootstrap.Radio} item The checked item
34294         * @param {Roo.EventObject} e The event object
34295         */
34296        click : true
34297     });
34298     
34299 };
34300
34301 Roo.extend(Roo.bootstrap.RadioSet, Roo.bootstrap.Input,  {
34302
34303     radioes : false,
34304     
34305     inline : true,
34306     
34307     weight : '',
34308     
34309     indicatorpos : 'left',
34310     
34311     getAutoCreate : function()
34312     {
34313         var label = {
34314             tag : 'label',
34315             cls : 'roo-radio-set-label',
34316             cn : [
34317                 {
34318                     tag : 'span',
34319                     html : this.fieldLabel
34320                 }
34321             ]
34322         };
34323         if (Roo.bootstrap.version == 3) {
34324             
34325             
34326             if(this.indicatorpos == 'left'){
34327                 label.cn.unshift({
34328                     tag : 'i',
34329                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
34330                     tooltip : 'This field is required'
34331                 });
34332             } else {
34333                 label.cn.push({
34334                     tag : 'i',
34335                     cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
34336                     tooltip : 'This field is required'
34337                 });
34338             }
34339         }
34340         var items = {
34341             tag : 'div',
34342             cls : 'roo-radio-set-items'
34343         };
34344         
34345         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
34346         
34347         if (align === 'left' && this.fieldLabel.length) {
34348             
34349             items = {
34350                 cls : "roo-radio-set-right", 
34351                 cn: [
34352                     items
34353                 ]
34354             };
34355             
34356             if(this.labelWidth > 12){
34357                 label.style = "width: " + this.labelWidth + 'px';
34358             }
34359             
34360             if(this.labelWidth < 13 && this.labelmd == 0){
34361                 this.labelmd = this.labelWidth;
34362             }
34363             
34364             if(this.labellg > 0){
34365                 label.cls += ' col-lg-' + this.labellg;
34366                 items.cls += ' col-lg-' + (12 - this.labellg);
34367             }
34368             
34369             if(this.labelmd > 0){
34370                 label.cls += ' col-md-' + this.labelmd;
34371                 items.cls += ' col-md-' + (12 - this.labelmd);
34372             }
34373             
34374             if(this.labelsm > 0){
34375                 label.cls += ' col-sm-' + this.labelsm;
34376                 items.cls += ' col-sm-' + (12 - this.labelsm);
34377             }
34378             
34379             if(this.labelxs > 0){
34380                 label.cls += ' col-xs-' + this.labelxs;
34381                 items.cls += ' col-xs-' + (12 - this.labelxs);
34382             }
34383         }
34384         
34385         var cfg = {
34386             tag : 'div',
34387             cls : 'roo-radio-set',
34388             cn : [
34389                 {
34390                     tag : 'input',
34391                     cls : 'roo-radio-set-input',
34392                     type : 'hidden',
34393                     name : this.name,
34394                     value : this.value ? this.value :  ''
34395                 },
34396                 label,
34397                 items
34398             ]
34399         };
34400         
34401         if(this.weight.length){
34402             cfg.cls += ' roo-radio-' + this.weight;
34403         }
34404         
34405         if(this.inline) {
34406             cfg.cls += ' roo-radio-set-inline';
34407         }
34408         
34409         var settings=this;
34410         ['xs','sm','md','lg'].map(function(size){
34411             if (settings[size]) {
34412                 cfg.cls += ' col-' + size + '-' + settings[size];
34413             }
34414         });
34415         
34416         return cfg;
34417         
34418     },
34419
34420     initEvents : function()
34421     {
34422         this.labelEl = this.el.select('.roo-radio-set-label', true).first();
34423         this.labelEl.setVisibilityMode(Roo.Element.DISPLAY);
34424         
34425         if(!this.fieldLabel.length){
34426             this.labelEl.hide();
34427         }
34428         
34429         this.itemsEl = this.el.select('.roo-radio-set-items', true).first();
34430         this.itemsEl.setVisibilityMode(Roo.Element.DISPLAY);
34431         
34432         this.indicator = this.indicatorEl();
34433         
34434         if(this.indicator){
34435             this.indicator.addClass('invisible');
34436         }
34437         
34438         this.originalValue = this.getValue();
34439         
34440     },
34441     
34442     inputEl: function ()
34443     {
34444         return this.el.select('.roo-radio-set-input', true).first();
34445     },
34446     
34447     getChildContainer : function()
34448     {
34449         return this.itemsEl;
34450     },
34451     
34452     register : function(item)
34453     {
34454         this.radioes.push(item);
34455         
34456     },
34457     
34458     validate : function()
34459     {   
34460         if(this.getVisibilityEl().hasClass('hidden')){
34461             return true;
34462         }
34463         
34464         var valid = false;
34465         
34466         Roo.each(this.radioes, function(i){
34467             if(!i.checked){
34468                 return;
34469             }
34470             
34471             valid = true;
34472             return false;
34473         });
34474         
34475         if(this.allowBlank) {
34476             return true;
34477         }
34478         
34479         if(this.disabled || valid){
34480             this.markValid();
34481             return true;
34482         }
34483         
34484         this.markInvalid();
34485         return false;
34486         
34487     },
34488     
34489     markValid : function()
34490     {
34491         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34492             this.indicatorEl().removeClass('visible');
34493             this.indicatorEl().addClass('invisible');
34494         }
34495         
34496         
34497         if (Roo.bootstrap.version == 3) {
34498             this.el.removeClass([this.invalidClass, this.validClass]);
34499             this.el.addClass(this.validClass);
34500         } else {
34501             this.el.removeClass(['is-invalid','is-valid']);
34502             this.el.addClass(['is-valid']);
34503         }
34504         this.fireEvent('valid', this);
34505     },
34506     
34507     markInvalid : function(msg)
34508     {
34509         if(this.allowBlank || this.disabled){
34510             return;
34511         }
34512         
34513         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34514             this.indicatorEl().removeClass('invisible');
34515             this.indicatorEl().addClass('visible');
34516         }
34517         if (Roo.bootstrap.version == 3) {
34518             this.el.removeClass([this.invalidClass, this.validClass]);
34519             this.el.addClass(this.invalidClass);
34520         } else {
34521             this.el.removeClass(['is-invalid','is-valid']);
34522             this.el.addClass(['is-invalid']);
34523         }
34524         
34525         this.fireEvent('invalid', this, msg);
34526         
34527     },
34528     
34529     setValue : function(v, suppressEvent)
34530     {   
34531         if(this.value === v){
34532             return;
34533         }
34534         
34535         this.value = v;
34536         
34537         if(this.rendered){
34538             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
34539         }
34540         
34541         Roo.each(this.radioes, function(i){
34542             i.checked = false;
34543             i.el.removeClass('checked');
34544         });
34545         
34546         Roo.each(this.radioes, function(i){
34547             
34548             if(i.value === v || i.value.toString() === v.toString()){
34549                 i.checked = true;
34550                 i.el.addClass('checked');
34551                 
34552                 if(suppressEvent !== true){
34553                     this.fireEvent('check', this, i);
34554                 }
34555                 
34556                 return false;
34557             }
34558             
34559         }, this);
34560         
34561         this.validate();
34562     },
34563     
34564     clearInvalid : function(){
34565         
34566         if(!this.el || this.preventMark){
34567             return;
34568         }
34569         
34570         this.el.removeClass([this.invalidClass]);
34571         
34572         this.fireEvent('valid', this);
34573     }
34574     
34575 });
34576
34577 Roo.apply(Roo.bootstrap.RadioSet, {
34578     
34579     groups: {},
34580     
34581     register : function(set)
34582     {
34583         this.groups[set.name] = set;
34584     },
34585     
34586     get: function(name) 
34587     {
34588         if (typeof(this.groups[name]) == 'undefined') {
34589             return false;
34590         }
34591         
34592         return this.groups[name] ;
34593     }
34594     
34595 });
34596 /*
34597  * Based on:
34598  * Ext JS Library 1.1.1
34599  * Copyright(c) 2006-2007, Ext JS, LLC.
34600  *
34601  * Originally Released Under LGPL - original licence link has changed is not relivant.
34602  *
34603  * Fork - LGPL
34604  * <script type="text/javascript">
34605  */
34606
34607
34608 /**
34609  * @class Roo.bootstrap.SplitBar
34610  * @extends Roo.util.Observable
34611  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
34612  * <br><br>
34613  * Usage:
34614  * <pre><code>
34615 var split = new Roo.bootstrap.SplitBar("elementToDrag", "elementToSize",
34616                    Roo.bootstrap.SplitBar.HORIZONTAL, Roo.bootstrap.SplitBar.LEFT);
34617 split.setAdapter(new Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter("container"));
34618 split.minSize = 100;
34619 split.maxSize = 600;
34620 split.animate = true;
34621 split.on('moved', splitterMoved);
34622 </code></pre>
34623  * @constructor
34624  * Create a new SplitBar
34625  * @config {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
34626  * @config {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
34627  * @config {Number} orientation (optional) Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34628  * @config {Number} placement (optional) Either Roo.bootstrap.SplitBar.LEFT or Roo.bootstrap.SplitBar.RIGHT for horizontal or  
34629                         Roo.bootstrap.SplitBar.TOP or Roo.bootstrap.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
34630                         position of the SplitBar).
34631  */
34632 Roo.bootstrap.SplitBar = function(cfg){
34633     
34634     /** @private */
34635     
34636     //{
34637     //  dragElement : elm
34638     //  resizingElement: el,
34639         // optional..
34640     //    orientation : Either Roo.bootstrap.SplitBar.HORIZONTAL
34641     //    placement : Roo.bootstrap.SplitBar.LEFT  ,
34642         // existingProxy ???
34643     //}
34644     
34645     this.el = Roo.get(cfg.dragElement, true);
34646     this.el.dom.unselectable = "on";
34647     /** @private */
34648     this.resizingEl = Roo.get(cfg.resizingElement, true);
34649
34650     /**
34651      * @private
34652      * The orientation of the split. Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34653      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
34654      * @type Number
34655      */
34656     this.orientation = cfg.orientation || Roo.bootstrap.SplitBar.HORIZONTAL;
34657     
34658     /**
34659      * The minimum size of the resizing element. (Defaults to 0)
34660      * @type Number
34661      */
34662     this.minSize = 0;
34663     
34664     /**
34665      * The maximum size of the resizing element. (Defaults to 2000)
34666      * @type Number
34667      */
34668     this.maxSize = 2000;
34669     
34670     /**
34671      * Whether to animate the transition to the new size
34672      * @type Boolean
34673      */
34674     this.animate = false;
34675     
34676     /**
34677      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
34678      * @type Boolean
34679      */
34680     this.useShim = false;
34681     
34682     /** @private */
34683     this.shim = null;
34684     
34685     if(!cfg.existingProxy){
34686         /** @private */
34687         this.proxy = Roo.bootstrap.SplitBar.createProxy(this.orientation);
34688     }else{
34689         this.proxy = Roo.get(cfg.existingProxy).dom;
34690     }
34691     /** @private */
34692     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
34693     
34694     /** @private */
34695     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
34696     
34697     /** @private */
34698     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
34699     
34700     /** @private */
34701     this.dragSpecs = {};
34702     
34703     /**
34704      * @private The adapter to use to positon and resize elements
34705      */
34706     this.adapter = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34707     this.adapter.init(this);
34708     
34709     if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34710         /** @private */
34711         this.placement = cfg.placement || (this.el.getX() > this.resizingEl.getX() ? Roo.bootstrap.SplitBar.LEFT : Roo.bootstrap.SplitBar.RIGHT);
34712         this.el.addClass("roo-splitbar-h");
34713     }else{
34714         /** @private */
34715         this.placement = cfg.placement || (this.el.getY() > this.resizingEl.getY() ? Roo.bootstrap.SplitBar.TOP : Roo.bootstrap.SplitBar.BOTTOM);
34716         this.el.addClass("roo-splitbar-v");
34717     }
34718     
34719     this.addEvents({
34720         /**
34721          * @event resize
34722          * Fires when the splitter is moved (alias for {@link #event-moved})
34723          * @param {Roo.bootstrap.SplitBar} this
34724          * @param {Number} newSize the new width or height
34725          */
34726         "resize" : true,
34727         /**
34728          * @event moved
34729          * Fires when the splitter is moved
34730          * @param {Roo.bootstrap.SplitBar} this
34731          * @param {Number} newSize the new width or height
34732          */
34733         "moved" : true,
34734         /**
34735          * @event beforeresize
34736          * Fires before the splitter is dragged
34737          * @param {Roo.bootstrap.SplitBar} this
34738          */
34739         "beforeresize" : true,
34740
34741         "beforeapply" : true
34742     });
34743
34744     Roo.util.Observable.call(this);
34745 };
34746
34747 Roo.extend(Roo.bootstrap.SplitBar, Roo.util.Observable, {
34748     onStartProxyDrag : function(x, y){
34749         this.fireEvent("beforeresize", this);
34750         if(!this.overlay){
34751             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "roo-drag-overlay", html: "&#160;"}, true);
34752             o.unselectable();
34753             o.enableDisplayMode("block");
34754             // all splitbars share the same overlay
34755             Roo.bootstrap.SplitBar.prototype.overlay = o;
34756         }
34757         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34758         this.overlay.show();
34759         Roo.get(this.proxy).setDisplayed("block");
34760         var size = this.adapter.getElementSize(this);
34761         this.activeMinSize = this.getMinimumSize();;
34762         this.activeMaxSize = this.getMaximumSize();;
34763         var c1 = size - this.activeMinSize;
34764         var c2 = Math.max(this.activeMaxSize - size, 0);
34765         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34766             this.dd.resetConstraints();
34767             this.dd.setXConstraint(
34768                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c1 : c2, 
34769                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c2 : c1
34770             );
34771             this.dd.setYConstraint(0, 0);
34772         }else{
34773             this.dd.resetConstraints();
34774             this.dd.setXConstraint(0, 0);
34775             this.dd.setYConstraint(
34776                 this.placement == Roo.bootstrap.SplitBar.TOP ? c1 : c2, 
34777                 this.placement == Roo.bootstrap.SplitBar.TOP ? c2 : c1
34778             );
34779          }
34780         this.dragSpecs.startSize = size;
34781         this.dragSpecs.startPoint = [x, y];
34782         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
34783     },
34784     
34785     /** 
34786      * @private Called after the drag operation by the DDProxy
34787      */
34788     onEndProxyDrag : function(e){
34789         Roo.get(this.proxy).setDisplayed(false);
34790         var endPoint = Roo.lib.Event.getXY(e);
34791         if(this.overlay){
34792             this.overlay.hide();
34793         }
34794         var newSize;
34795         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34796             newSize = this.dragSpecs.startSize + 
34797                 (this.placement == Roo.bootstrap.SplitBar.LEFT ?
34798                     endPoint[0] - this.dragSpecs.startPoint[0] :
34799                     this.dragSpecs.startPoint[0] - endPoint[0]
34800                 );
34801         }else{
34802             newSize = this.dragSpecs.startSize + 
34803                 (this.placement == Roo.bootstrap.SplitBar.TOP ?
34804                     endPoint[1] - this.dragSpecs.startPoint[1] :
34805                     this.dragSpecs.startPoint[1] - endPoint[1]
34806                 );
34807         }
34808         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
34809         if(newSize != this.dragSpecs.startSize){
34810             if(this.fireEvent('beforeapply', this, newSize) !== false){
34811                 this.adapter.setElementSize(this, newSize);
34812                 this.fireEvent("moved", this, newSize);
34813                 this.fireEvent("resize", this, newSize);
34814             }
34815         }
34816     },
34817     
34818     /**
34819      * Get the adapter this SplitBar uses
34820      * @return The adapter object
34821      */
34822     getAdapter : function(){
34823         return this.adapter;
34824     },
34825     
34826     /**
34827      * Set the adapter this SplitBar uses
34828      * @param {Object} adapter A SplitBar adapter object
34829      */
34830     setAdapter : function(adapter){
34831         this.adapter = adapter;
34832         this.adapter.init(this);
34833     },
34834     
34835     /**
34836      * Gets the minimum size for the resizing element
34837      * @return {Number} The minimum size
34838      */
34839     getMinimumSize : function(){
34840         return this.minSize;
34841     },
34842     
34843     /**
34844      * Sets the minimum size for the resizing element
34845      * @param {Number} minSize The minimum size
34846      */
34847     setMinimumSize : function(minSize){
34848         this.minSize = minSize;
34849     },
34850     
34851     /**
34852      * Gets the maximum size for the resizing element
34853      * @return {Number} The maximum size
34854      */
34855     getMaximumSize : function(){
34856         return this.maxSize;
34857     },
34858     
34859     /**
34860      * Sets the maximum size for the resizing element
34861      * @param {Number} maxSize The maximum size
34862      */
34863     setMaximumSize : function(maxSize){
34864         this.maxSize = maxSize;
34865     },
34866     
34867     /**
34868      * Sets the initialize size for the resizing element
34869      * @param {Number} size The initial size
34870      */
34871     setCurrentSize : function(size){
34872         var oldAnimate = this.animate;
34873         this.animate = false;
34874         this.adapter.setElementSize(this, size);
34875         this.animate = oldAnimate;
34876     },
34877     
34878     /**
34879      * Destroy this splitbar. 
34880      * @param {Boolean} removeEl True to remove the element
34881      */
34882     destroy : function(removeEl){
34883         if(this.shim){
34884             this.shim.remove();
34885         }
34886         this.dd.unreg();
34887         this.proxy.parentNode.removeChild(this.proxy);
34888         if(removeEl){
34889             this.el.remove();
34890         }
34891     }
34892 });
34893
34894 /**
34895  * @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.
34896  */
34897 Roo.bootstrap.SplitBar.createProxy = function(dir){
34898     var proxy = new Roo.Element(document.createElement("div"));
34899     proxy.unselectable();
34900     var cls = 'roo-splitbar-proxy';
34901     proxy.addClass(cls + ' ' + (dir == Roo.bootstrap.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
34902     document.body.appendChild(proxy.dom);
34903     return proxy.dom;
34904 };
34905
34906 /** 
34907  * @class Roo.bootstrap.SplitBar.BasicLayoutAdapter
34908  * Default Adapter. It assumes the splitter and resizing element are not positioned
34909  * elements and only gets/sets the width of the element. Generally used for table based layouts.
34910  */
34911 Roo.bootstrap.SplitBar.BasicLayoutAdapter = function(){
34912 };
34913
34914 Roo.bootstrap.SplitBar.BasicLayoutAdapter.prototype = {
34915     // do nothing for now
34916     init : function(s){
34917     
34918     },
34919     /**
34920      * Called before drag operations to get the current size of the resizing element. 
34921      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34922      */
34923      getElementSize : function(s){
34924         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34925             return s.resizingEl.getWidth();
34926         }else{
34927             return s.resizingEl.getHeight();
34928         }
34929     },
34930     
34931     /**
34932      * Called after drag operations to set the size of the resizing element.
34933      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34934      * @param {Number} newSize The new size to set
34935      * @param {Function} onComplete A function to be invoked when resizing is complete
34936      */
34937     setElementSize : function(s, newSize, onComplete){
34938         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34939             if(!s.animate){
34940                 s.resizingEl.setWidth(newSize);
34941                 if(onComplete){
34942                     onComplete(s, newSize);
34943                 }
34944             }else{
34945                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
34946             }
34947         }else{
34948             
34949             if(!s.animate){
34950                 s.resizingEl.setHeight(newSize);
34951                 if(onComplete){
34952                     onComplete(s, newSize);
34953                 }
34954             }else{
34955                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
34956             }
34957         }
34958     }
34959 };
34960
34961 /** 
34962  *@class Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter
34963  * @extends Roo.bootstrap.SplitBar.BasicLayoutAdapter
34964  * Adapter that  moves the splitter element to align with the resized sizing element. 
34965  * Used with an absolute positioned SplitBar.
34966  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
34967  * document.body, make sure you assign an id to the body element.
34968  */
34969 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter = function(container){
34970     this.basic = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34971     this.container = Roo.get(container);
34972 };
34973
34974 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter.prototype = {
34975     init : function(s){
34976         this.basic.init(s);
34977     },
34978     
34979     getElementSize : function(s){
34980         return this.basic.getElementSize(s);
34981     },
34982     
34983     setElementSize : function(s, newSize, onComplete){
34984         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
34985     },
34986     
34987     moveSplitter : function(s){
34988         var yes = Roo.bootstrap.SplitBar;
34989         switch(s.placement){
34990             case yes.LEFT:
34991                 s.el.setX(s.resizingEl.getRight());
34992                 break;
34993             case yes.RIGHT:
34994                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
34995                 break;
34996             case yes.TOP:
34997                 s.el.setY(s.resizingEl.getBottom());
34998                 break;
34999             case yes.BOTTOM:
35000                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
35001                 break;
35002         }
35003     }
35004 };
35005
35006 /**
35007  * Orientation constant - Create a vertical SplitBar
35008  * @static
35009  * @type Number
35010  */
35011 Roo.bootstrap.SplitBar.VERTICAL = 1;
35012
35013 /**
35014  * Orientation constant - Create a horizontal SplitBar
35015  * @static
35016  * @type Number
35017  */
35018 Roo.bootstrap.SplitBar.HORIZONTAL = 2;
35019
35020 /**
35021  * Placement constant - The resizing element is to the left of the splitter element
35022  * @static
35023  * @type Number
35024  */
35025 Roo.bootstrap.SplitBar.LEFT = 1;
35026
35027 /**
35028  * Placement constant - The resizing element is to the right of the splitter element
35029  * @static
35030  * @type Number
35031  */
35032 Roo.bootstrap.SplitBar.RIGHT = 2;
35033
35034 /**
35035  * Placement constant - The resizing element is positioned above the splitter element
35036  * @static
35037  * @type Number
35038  */
35039 Roo.bootstrap.SplitBar.TOP = 3;
35040
35041 /**
35042  * Placement constant - The resizing element is positioned under splitter element
35043  * @static
35044  * @type Number
35045  */
35046 Roo.bootstrap.SplitBar.BOTTOM = 4;
35047 Roo.namespace("Roo.bootstrap.layout");/*
35048  * Based on:
35049  * Ext JS Library 1.1.1
35050  * Copyright(c) 2006-2007, Ext JS, LLC.
35051  *
35052  * Originally Released Under LGPL - original licence link has changed is not relivant.
35053  *
35054  * Fork - LGPL
35055  * <script type="text/javascript">
35056  */
35057
35058 /**
35059  * @class Roo.bootstrap.layout.Manager
35060  * @extends Roo.bootstrap.Component
35061  * Base class for layout managers.
35062  */
35063 Roo.bootstrap.layout.Manager = function(config)
35064 {
35065     Roo.bootstrap.layout.Manager.superclass.constructor.call(this,config);
35066
35067
35068
35069
35070
35071     /** false to disable window resize monitoring @type Boolean */
35072     this.monitorWindowResize = true;
35073     this.regions = {};
35074     this.addEvents({
35075         /**
35076          * @event layout
35077          * Fires when a layout is performed.
35078          * @param {Roo.LayoutManager} this
35079          */
35080         "layout" : true,
35081         /**
35082          * @event regionresized
35083          * Fires when the user resizes a region.
35084          * @param {Roo.LayoutRegion} region The resized region
35085          * @param {Number} newSize The new size (width for east/west, height for north/south)
35086          */
35087         "regionresized" : true,
35088         /**
35089          * @event regioncollapsed
35090          * Fires when a region is collapsed.
35091          * @param {Roo.LayoutRegion} region The collapsed region
35092          */
35093         "regioncollapsed" : true,
35094         /**
35095          * @event regionexpanded
35096          * Fires when a region is expanded.
35097          * @param {Roo.LayoutRegion} region The expanded region
35098          */
35099         "regionexpanded" : true
35100     });
35101     this.updating = false;
35102
35103     if (config.el) {
35104         this.el = Roo.get(config.el);
35105         this.initEvents();
35106     }
35107
35108 };
35109
35110 Roo.extend(Roo.bootstrap.layout.Manager, Roo.bootstrap.Component, {
35111
35112
35113     regions : null,
35114
35115     monitorWindowResize : true,
35116
35117
35118     updating : false,
35119
35120
35121     onRender : function(ct, position)
35122     {
35123         if(!this.el){
35124             this.el = Roo.get(ct);
35125             this.initEvents();
35126         }
35127         //this.fireEvent('render',this);
35128     },
35129
35130
35131     initEvents: function()
35132     {
35133
35134
35135         // ie scrollbar fix
35136         if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
35137             document.body.scroll = "no";
35138         }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
35139             this.el.position('relative');
35140         }
35141         this.id = this.el.id;
35142         this.el.addClass("roo-layout-container");
35143         Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
35144         if(this.el.dom != document.body ) {
35145             this.el.on('resize', this.layout,this);
35146             this.el.on('show', this.layout,this);
35147         }
35148
35149     },
35150
35151     /**
35152      * Returns true if this layout is currently being updated
35153      * @return {Boolean}
35154      */
35155     isUpdating : function(){
35156         return this.updating;
35157     },
35158
35159     /**
35160      * Suspend the LayoutManager from doing auto-layouts while
35161      * making multiple add or remove calls
35162      */
35163     beginUpdate : function(){
35164         this.updating = true;
35165     },
35166
35167     /**
35168      * Restore auto-layouts and optionally disable the manager from performing a layout
35169      * @param {Boolean} noLayout true to disable a layout update
35170      */
35171     endUpdate : function(noLayout){
35172         this.updating = false;
35173         if(!noLayout){
35174             this.layout();
35175         }
35176     },
35177
35178     layout: function(){
35179         // abstract...
35180     },
35181
35182     onRegionResized : function(region, newSize){
35183         this.fireEvent("regionresized", region, newSize);
35184         this.layout();
35185     },
35186
35187     onRegionCollapsed : function(region){
35188         this.fireEvent("regioncollapsed", region);
35189     },
35190
35191     onRegionExpanded : function(region){
35192         this.fireEvent("regionexpanded", region);
35193     },
35194
35195     /**
35196      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
35197      * performs box-model adjustments.
35198      * @return {Object} The size as an object {width: (the width), height: (the height)}
35199      */
35200     getViewSize : function()
35201     {
35202         var size;
35203         if(this.el.dom != document.body){
35204             size = this.el.getSize();
35205         }else{
35206             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
35207         }
35208         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
35209         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
35210         return size;
35211     },
35212
35213     /**
35214      * Returns the Element this layout is bound to.
35215      * @return {Roo.Element}
35216      */
35217     getEl : function(){
35218         return this.el;
35219     },
35220
35221     /**
35222      * Returns the specified region.
35223      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
35224      * @return {Roo.LayoutRegion}
35225      */
35226     getRegion : function(target){
35227         return this.regions[target.toLowerCase()];
35228     },
35229
35230     onWindowResize : function(){
35231         if(this.monitorWindowResize){
35232             this.layout();
35233         }
35234     }
35235 });
35236 /*
35237  * Based on:
35238  * Ext JS Library 1.1.1
35239  * Copyright(c) 2006-2007, Ext JS, LLC.
35240  *
35241  * Originally Released Under LGPL - original licence link has changed is not relivant.
35242  *
35243  * Fork - LGPL
35244  * <script type="text/javascript">
35245  */
35246 /**
35247  * @class Roo.bootstrap.layout.Border
35248  * @extends Roo.bootstrap.layout.Manager
35249  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
35250  * please see: examples/bootstrap/nested.html<br><br>
35251  
35252 <b>The container the layout is rendered into can be either the body element or any other element.
35253 If it is not the body element, the container needs to either be an absolute positioned element,
35254 or you will need to add "position:relative" to the css of the container.  You will also need to specify
35255 the container size if it is not the body element.</b>
35256
35257 * @constructor
35258 * Create a new Border
35259 * @param {Object} config Configuration options
35260  */
35261 Roo.bootstrap.layout.Border = function(config){
35262     config = config || {};
35263     Roo.bootstrap.layout.Border.superclass.constructor.call(this, config);
35264     
35265     
35266     
35267     Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35268         if(config[region]){
35269             config[region].region = region;
35270             this.addRegion(config[region]);
35271         }
35272     },this);
35273     
35274 };
35275
35276 Roo.bootstrap.layout.Border.regions =  ["north","south","east","west","center"];
35277
35278 Roo.extend(Roo.bootstrap.layout.Border, Roo.bootstrap.layout.Manager, {
35279     
35280     parent : false, // this might point to a 'nest' or a ???
35281     
35282     /**
35283      * Creates and adds a new region if it doesn't already exist.
35284      * @param {String} target The target region key (north, south, east, west or center).
35285      * @param {Object} config The regions config object
35286      * @return {BorderLayoutRegion} The new region
35287      */
35288     addRegion : function(config)
35289     {
35290         if(!this.regions[config.region]){
35291             var r = this.factory(config);
35292             this.bindRegion(r);
35293         }
35294         return this.regions[config.region];
35295     },
35296
35297     // private (kinda)
35298     bindRegion : function(r){
35299         this.regions[r.config.region] = r;
35300         
35301         r.on("visibilitychange",    this.layout, this);
35302         r.on("paneladded",          this.layout, this);
35303         r.on("panelremoved",        this.layout, this);
35304         r.on("invalidated",         this.layout, this);
35305         r.on("resized",             this.onRegionResized, this);
35306         r.on("collapsed",           this.onRegionCollapsed, this);
35307         r.on("expanded",            this.onRegionExpanded, this);
35308     },
35309
35310     /**
35311      * Performs a layout update.
35312      */
35313     layout : function()
35314     {
35315         if(this.updating) {
35316             return;
35317         }
35318         
35319         // render all the rebions if they have not been done alreayd?
35320         Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35321             if(this.regions[region] && !this.regions[region].bodyEl){
35322                 this.regions[region].onRender(this.el)
35323             }
35324         },this);
35325         
35326         var size = this.getViewSize();
35327         var w = size.width;
35328         var h = size.height;
35329         var centerW = w;
35330         var centerH = h;
35331         var centerY = 0;
35332         var centerX = 0;
35333         //var x = 0, y = 0;
35334
35335         var rs = this.regions;
35336         var north = rs["north"];
35337         var south = rs["south"]; 
35338         var west = rs["west"];
35339         var east = rs["east"];
35340         var center = rs["center"];
35341         //if(this.hideOnLayout){ // not supported anymore
35342             //c.el.setStyle("display", "none");
35343         //}
35344         if(north && north.isVisible()){
35345             var b = north.getBox();
35346             var m = north.getMargins();
35347             b.width = w - (m.left+m.right);
35348             b.x = m.left;
35349             b.y = m.top;
35350             centerY = b.height + b.y + m.bottom;
35351             centerH -= centerY;
35352             north.updateBox(this.safeBox(b));
35353         }
35354         if(south && south.isVisible()){
35355             var b = south.getBox();
35356             var m = south.getMargins();
35357             b.width = w - (m.left+m.right);
35358             b.x = m.left;
35359             var totalHeight = (b.height + m.top + m.bottom);
35360             b.y = h - totalHeight + m.top;
35361             centerH -= totalHeight;
35362             south.updateBox(this.safeBox(b));
35363         }
35364         if(west && west.isVisible()){
35365             var b = west.getBox();
35366             var m = west.getMargins();
35367             b.height = centerH - (m.top+m.bottom);
35368             b.x = m.left;
35369             b.y = centerY + m.top;
35370             var totalWidth = (b.width + m.left + m.right);
35371             centerX += totalWidth;
35372             centerW -= totalWidth;
35373             west.updateBox(this.safeBox(b));
35374         }
35375         if(east && east.isVisible()){
35376             var b = east.getBox();
35377             var m = east.getMargins();
35378             b.height = centerH - (m.top+m.bottom);
35379             var totalWidth = (b.width + m.left + m.right);
35380             b.x = w - totalWidth + m.left;
35381             b.y = centerY + m.top;
35382             centerW -= totalWidth;
35383             east.updateBox(this.safeBox(b));
35384         }
35385         if(center){
35386             var m = center.getMargins();
35387             var centerBox = {
35388                 x: centerX + m.left,
35389                 y: centerY + m.top,
35390                 width: centerW - (m.left+m.right),
35391                 height: centerH - (m.top+m.bottom)
35392             };
35393             //if(this.hideOnLayout){
35394                 //center.el.setStyle("display", "block");
35395             //}
35396             center.updateBox(this.safeBox(centerBox));
35397         }
35398         this.el.repaint();
35399         this.fireEvent("layout", this);
35400     },
35401
35402     // private
35403     safeBox : function(box){
35404         box.width = Math.max(0, box.width);
35405         box.height = Math.max(0, box.height);
35406         return box;
35407     },
35408
35409     /**
35410      * Adds a ContentPanel (or subclass) to this layout.
35411      * @param {String} target The target region key (north, south, east, west or center).
35412      * @param {Roo.ContentPanel} panel The panel to add
35413      * @return {Roo.ContentPanel} The added panel
35414      */
35415     add : function(target, panel){
35416          
35417         target = target.toLowerCase();
35418         return this.regions[target].add(panel);
35419     },
35420
35421     /**
35422      * Remove a ContentPanel (or subclass) to this layout.
35423      * @param {String} target The target region key (north, south, east, west or center).
35424      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
35425      * @return {Roo.ContentPanel} The removed panel
35426      */
35427     remove : function(target, panel){
35428         target = target.toLowerCase();
35429         return this.regions[target].remove(panel);
35430     },
35431
35432     /**
35433      * Searches all regions for a panel with the specified id
35434      * @param {String} panelId
35435      * @return {Roo.ContentPanel} The panel or null if it wasn't found
35436      */
35437     findPanel : function(panelId){
35438         var rs = this.regions;
35439         for(var target in rs){
35440             if(typeof rs[target] != "function"){
35441                 var p = rs[target].getPanel(panelId);
35442                 if(p){
35443                     return p;
35444                 }
35445             }
35446         }
35447         return null;
35448     },
35449
35450     /**
35451      * Searches all regions for a panel with the specified id and activates (shows) it.
35452      * @param {String/ContentPanel} panelId The panels id or the panel itself
35453      * @return {Roo.ContentPanel} The shown panel or null
35454      */
35455     showPanel : function(panelId) {
35456       var rs = this.regions;
35457       for(var target in rs){
35458          var r = rs[target];
35459          if(typeof r != "function"){
35460             if(r.hasPanel(panelId)){
35461                return r.showPanel(panelId);
35462             }
35463          }
35464       }
35465       return null;
35466    },
35467
35468    /**
35469      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
35470      * @param {Roo.state.Provider} provider (optional) An alternate state provider
35471      */
35472    /*
35473     restoreState : function(provider){
35474         if(!provider){
35475             provider = Roo.state.Manager;
35476         }
35477         var sm = new Roo.LayoutStateManager();
35478         sm.init(this, provider);
35479     },
35480 */
35481  
35482  
35483     /**
35484      * Adds a xtype elements to the layout.
35485      * <pre><code>
35486
35487 layout.addxtype({
35488        xtype : 'ContentPanel',
35489        region: 'west',
35490        items: [ .... ]
35491    }
35492 );
35493
35494 layout.addxtype({
35495         xtype : 'NestedLayoutPanel',
35496         region: 'west',
35497         layout: {
35498            center: { },
35499            west: { }   
35500         },
35501         items : [ ... list of content panels or nested layout panels.. ]
35502    }
35503 );
35504 </code></pre>
35505      * @param {Object} cfg Xtype definition of item to add.
35506      */
35507     addxtype : function(cfg)
35508     {
35509         // basically accepts a pannel...
35510         // can accept a layout region..!?!?
35511         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
35512         
35513         
35514         // theory?  children can only be panels??
35515         
35516         //if (!cfg.xtype.match(/Panel$/)) {
35517         //    return false;
35518         //}
35519         var ret = false;
35520         
35521         if (typeof(cfg.region) == 'undefined') {
35522             Roo.log("Failed to add Panel, region was not set");
35523             Roo.log(cfg);
35524             return false;
35525         }
35526         var region = cfg.region;
35527         delete cfg.region;
35528         
35529           
35530         var xitems = [];
35531         if (cfg.items) {
35532             xitems = cfg.items;
35533             delete cfg.items;
35534         }
35535         var nb = false;
35536         
35537         if ( region == 'center') {
35538             Roo.log("Center: " + cfg.title);
35539         }
35540         
35541         
35542         switch(cfg.xtype) 
35543         {
35544             case 'Content':  // ContentPanel (el, cfg)
35545             case 'Scroll':  // ContentPanel (el, cfg)
35546             case 'View': 
35547                 cfg.autoCreate = cfg.autoCreate || true;
35548                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35549                 //} else {
35550                 //    var el = this.el.createChild();
35551                 //    ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
35552                 //}
35553                 
35554                 this.add(region, ret);
35555                 break;
35556             
35557             /*
35558             case 'TreePanel': // our new panel!
35559                 cfg.el = this.el.createChild();
35560                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35561                 this.add(region, ret);
35562                 break;
35563             */
35564             
35565             case 'Nest': 
35566                 // create a new Layout (which is  a Border Layout...
35567                 
35568                 var clayout = cfg.layout;
35569                 clayout.el  = this.el.createChild();
35570                 clayout.items   = clayout.items  || [];
35571                 
35572                 delete cfg.layout;
35573                 
35574                 // replace this exitems with the clayout ones..
35575                 xitems = clayout.items;
35576                  
35577                 // force background off if it's in center...
35578                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
35579                     cfg.background = false;
35580                 }
35581                 cfg.layout  = new Roo.bootstrap.layout.Border(clayout);
35582                 
35583                 
35584                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35585                 //console.log('adding nested layout panel '  + cfg.toSource());
35586                 this.add(region, ret);
35587                 nb = {}; /// find first...
35588                 break;
35589             
35590             case 'Grid':
35591                 
35592                 // needs grid and region
35593                 
35594                 //var el = this.getRegion(region).el.createChild();
35595                 /*
35596                  *var el = this.el.createChild();
35597                 // create the grid first...
35598                 cfg.grid.container = el;
35599                 cfg.grid = new cfg.grid.xns[cfg.grid.xtype](cfg.grid);
35600                 */
35601                 
35602                 if (region == 'center' && this.active ) {
35603                     cfg.background = false;
35604                 }
35605                 
35606                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35607                 
35608                 this.add(region, ret);
35609                 /*
35610                 if (cfg.background) {
35611                     // render grid on panel activation (if panel background)
35612                     ret.on('activate', function(gp) {
35613                         if (!gp.grid.rendered) {
35614                     //        gp.grid.render(el);
35615                         }
35616                     });
35617                 } else {
35618                   //  cfg.grid.render(el);
35619                 }
35620                 */
35621                 break;
35622            
35623            
35624             case 'Border': // it can get called on it'self... - might need to check if this is fixed?
35625                 // it was the old xcomponent building that caused this before.
35626                 // espeically if border is the top element in the tree.
35627                 ret = this;
35628                 break; 
35629                 
35630                     
35631                 
35632                 
35633                 
35634             default:
35635                 /*
35636                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
35637                     
35638                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35639                     this.add(region, ret);
35640                 } else {
35641                 */
35642                     Roo.log(cfg);
35643                     throw "Can not add '" + cfg.xtype + "' to Border";
35644                     return null;
35645              
35646                                 
35647              
35648         }
35649         this.beginUpdate();
35650         // add children..
35651         var region = '';
35652         var abn = {};
35653         Roo.each(xitems, function(i)  {
35654             region = nb && i.region ? i.region : false;
35655             
35656             var add = ret.addxtype(i);
35657            
35658             if (region) {
35659                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
35660                 if (!i.background) {
35661                     abn[region] = nb[region] ;
35662                 }
35663             }
35664             
35665         });
35666         this.endUpdate();
35667
35668         // make the last non-background panel active..
35669         //if (nb) { Roo.log(abn); }
35670         if (nb) {
35671             
35672             for(var r in abn) {
35673                 region = this.getRegion(r);
35674                 if (region) {
35675                     // tried using nb[r], but it does not work..
35676                      
35677                     region.showPanel(abn[r]);
35678                    
35679                 }
35680             }
35681         }
35682         return ret;
35683         
35684     },
35685     
35686     
35687 // private
35688     factory : function(cfg)
35689     {
35690         
35691         var validRegions = Roo.bootstrap.layout.Border.regions;
35692
35693         var target = cfg.region;
35694         cfg.mgr = this;
35695         
35696         var r = Roo.bootstrap.layout;
35697         Roo.log(target);
35698         switch(target){
35699             case "north":
35700                 return new r.North(cfg);
35701             case "south":
35702                 return new r.South(cfg);
35703             case "east":
35704                 return new r.East(cfg);
35705             case "west":
35706                 return new r.West(cfg);
35707             case "center":
35708                 return new r.Center(cfg);
35709         }
35710         throw 'Layout region "'+target+'" not supported.';
35711     }
35712     
35713     
35714 });
35715  /*
35716  * Based on:
35717  * Ext JS Library 1.1.1
35718  * Copyright(c) 2006-2007, Ext JS, LLC.
35719  *
35720  * Originally Released Under LGPL - original licence link has changed is not relivant.
35721  *
35722  * Fork - LGPL
35723  * <script type="text/javascript">
35724  */
35725  
35726 /**
35727  * @class Roo.bootstrap.layout.Basic
35728  * @extends Roo.util.Observable
35729  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
35730  * and does not have a titlebar, tabs or any other features. All it does is size and position 
35731  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
35732  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
35733  * @cfg {string}   region  the region that it inhabits..
35734  * @cfg {bool}   skipConfig skip config?
35735  * 
35736
35737  */
35738 Roo.bootstrap.layout.Basic = function(config){
35739     
35740     this.mgr = config.mgr;
35741     
35742     this.position = config.region;
35743     
35744     var skipConfig = config.skipConfig;
35745     
35746     this.events = {
35747         /**
35748          * @scope Roo.BasicLayoutRegion
35749          */
35750         
35751         /**
35752          * @event beforeremove
35753          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
35754          * @param {Roo.LayoutRegion} this
35755          * @param {Roo.ContentPanel} panel The panel
35756          * @param {Object} e The cancel event object
35757          */
35758         "beforeremove" : true,
35759         /**
35760          * @event invalidated
35761          * Fires when the layout for this region is changed.
35762          * @param {Roo.LayoutRegion} this
35763          */
35764         "invalidated" : true,
35765         /**
35766          * @event visibilitychange
35767          * Fires when this region is shown or hidden 
35768          * @param {Roo.LayoutRegion} this
35769          * @param {Boolean} visibility true or false
35770          */
35771         "visibilitychange" : true,
35772         /**
35773          * @event paneladded
35774          * Fires when a panel is added. 
35775          * @param {Roo.LayoutRegion} this
35776          * @param {Roo.ContentPanel} panel The panel
35777          */
35778         "paneladded" : true,
35779         /**
35780          * @event panelremoved
35781          * Fires when a panel is removed. 
35782          * @param {Roo.LayoutRegion} this
35783          * @param {Roo.ContentPanel} panel The panel
35784          */
35785         "panelremoved" : true,
35786         /**
35787          * @event beforecollapse
35788          * Fires when this region before collapse.
35789          * @param {Roo.LayoutRegion} this
35790          */
35791         "beforecollapse" : true,
35792         /**
35793          * @event collapsed
35794          * Fires when this region is collapsed.
35795          * @param {Roo.LayoutRegion} this
35796          */
35797         "collapsed" : true,
35798         /**
35799          * @event expanded
35800          * Fires when this region is expanded.
35801          * @param {Roo.LayoutRegion} this
35802          */
35803         "expanded" : true,
35804         /**
35805          * @event slideshow
35806          * Fires when this region is slid into view.
35807          * @param {Roo.LayoutRegion} this
35808          */
35809         "slideshow" : true,
35810         /**
35811          * @event slidehide
35812          * Fires when this region slides out of view. 
35813          * @param {Roo.LayoutRegion} this
35814          */
35815         "slidehide" : true,
35816         /**
35817          * @event panelactivated
35818          * Fires when a panel is activated. 
35819          * @param {Roo.LayoutRegion} this
35820          * @param {Roo.ContentPanel} panel The activated panel
35821          */
35822         "panelactivated" : true,
35823         /**
35824          * @event resized
35825          * Fires when the user resizes this region. 
35826          * @param {Roo.LayoutRegion} this
35827          * @param {Number} newSize The new size (width for east/west, height for north/south)
35828          */
35829         "resized" : true
35830     };
35831     /** A collection of panels in this region. @type Roo.util.MixedCollection */
35832     this.panels = new Roo.util.MixedCollection();
35833     this.panels.getKey = this.getPanelId.createDelegate(this);
35834     this.box = null;
35835     this.activePanel = null;
35836     // ensure listeners are added...
35837     
35838     if (config.listeners || config.events) {
35839         Roo.bootstrap.layout.Basic.superclass.constructor.call(this, {
35840             listeners : config.listeners || {},
35841             events : config.events || {}
35842         });
35843     }
35844     
35845     if(skipConfig !== true){
35846         this.applyConfig(config);
35847     }
35848 };
35849
35850 Roo.extend(Roo.bootstrap.layout.Basic, Roo.util.Observable,
35851 {
35852     getPanelId : function(p){
35853         return p.getId();
35854     },
35855     
35856     applyConfig : function(config){
35857         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
35858         this.config = config;
35859         
35860     },
35861     
35862     /**
35863      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
35864      * the width, for horizontal (north, south) the height.
35865      * @param {Number} newSize The new width or height
35866      */
35867     resizeTo : function(newSize){
35868         var el = this.el ? this.el :
35869                  (this.activePanel ? this.activePanel.getEl() : null);
35870         if(el){
35871             switch(this.position){
35872                 case "east":
35873                 case "west":
35874                     el.setWidth(newSize);
35875                     this.fireEvent("resized", this, newSize);
35876                 break;
35877                 case "north":
35878                 case "south":
35879                     el.setHeight(newSize);
35880                     this.fireEvent("resized", this, newSize);
35881                 break;                
35882             }
35883         }
35884     },
35885     
35886     getBox : function(){
35887         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
35888     },
35889     
35890     getMargins : function(){
35891         return this.margins;
35892     },
35893     
35894     updateBox : function(box){
35895         this.box = box;
35896         var el = this.activePanel.getEl();
35897         el.dom.style.left = box.x + "px";
35898         el.dom.style.top = box.y + "px";
35899         this.activePanel.setSize(box.width, box.height);
35900     },
35901     
35902     /**
35903      * Returns the container element for this region.
35904      * @return {Roo.Element}
35905      */
35906     getEl : function(){
35907         return this.activePanel;
35908     },
35909     
35910     /**
35911      * Returns true if this region is currently visible.
35912      * @return {Boolean}
35913      */
35914     isVisible : function(){
35915         return this.activePanel ? true : false;
35916     },
35917     
35918     setActivePanel : function(panel){
35919         panel = this.getPanel(panel);
35920         if(this.activePanel && this.activePanel != panel){
35921             this.activePanel.setActiveState(false);
35922             this.activePanel.getEl().setLeftTop(-10000,-10000);
35923         }
35924         this.activePanel = panel;
35925         panel.setActiveState(true);
35926         if(this.box){
35927             panel.setSize(this.box.width, this.box.height);
35928         }
35929         this.fireEvent("panelactivated", this, panel);
35930         this.fireEvent("invalidated");
35931     },
35932     
35933     /**
35934      * Show the specified panel.
35935      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
35936      * @return {Roo.ContentPanel} The shown panel or null
35937      */
35938     showPanel : function(panel){
35939         panel = this.getPanel(panel);
35940         if(panel){
35941             this.setActivePanel(panel);
35942         }
35943         return panel;
35944     },
35945     
35946     /**
35947      * Get the active panel for this region.
35948      * @return {Roo.ContentPanel} The active panel or null
35949      */
35950     getActivePanel : function(){
35951         return this.activePanel;
35952     },
35953     
35954     /**
35955      * Add the passed ContentPanel(s)
35956      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
35957      * @return {Roo.ContentPanel} The panel added (if only one was added)
35958      */
35959     add : function(panel){
35960         if(arguments.length > 1){
35961             for(var i = 0, len = arguments.length; i < len; i++) {
35962                 this.add(arguments[i]);
35963             }
35964             return null;
35965         }
35966         if(this.hasPanel(panel)){
35967             this.showPanel(panel);
35968             return panel;
35969         }
35970         var el = panel.getEl();
35971         if(el.dom.parentNode != this.mgr.el.dom){
35972             this.mgr.el.dom.appendChild(el.dom);
35973         }
35974         if(panel.setRegion){
35975             panel.setRegion(this);
35976         }
35977         this.panels.add(panel);
35978         el.setStyle("position", "absolute");
35979         if(!panel.background){
35980             this.setActivePanel(panel);
35981             if(this.config.initialSize && this.panels.getCount()==1){
35982                 this.resizeTo(this.config.initialSize);
35983             }
35984         }
35985         this.fireEvent("paneladded", this, panel);
35986         return panel;
35987     },
35988     
35989     /**
35990      * Returns true if the panel is in this region.
35991      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35992      * @return {Boolean}
35993      */
35994     hasPanel : function(panel){
35995         if(typeof panel == "object"){ // must be panel obj
35996             panel = panel.getId();
35997         }
35998         return this.getPanel(panel) ? true : false;
35999     },
36000     
36001     /**
36002      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
36003      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
36004      * @param {Boolean} preservePanel Overrides the config preservePanel option
36005      * @return {Roo.ContentPanel} The panel that was removed
36006      */
36007     remove : function(panel, preservePanel){
36008         panel = this.getPanel(panel);
36009         if(!panel){
36010             return null;
36011         }
36012         var e = {};
36013         this.fireEvent("beforeremove", this, panel, e);
36014         if(e.cancel === true){
36015             return null;
36016         }
36017         var panelId = panel.getId();
36018         this.panels.removeKey(panelId);
36019         return panel;
36020     },
36021     
36022     /**
36023      * Returns the panel specified or null if it's not in this region.
36024      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
36025      * @return {Roo.ContentPanel}
36026      */
36027     getPanel : function(id){
36028         if(typeof id == "object"){ // must be panel obj
36029             return id;
36030         }
36031         return this.panels.get(id);
36032     },
36033     
36034     /**
36035      * Returns this regions position (north/south/east/west/center).
36036      * @return {String} 
36037      */
36038     getPosition: function(){
36039         return this.position;    
36040     }
36041 });/*
36042  * Based on:
36043  * Ext JS Library 1.1.1
36044  * Copyright(c) 2006-2007, Ext JS, LLC.
36045  *
36046  * Originally Released Under LGPL - original licence link has changed is not relivant.
36047  *
36048  * Fork - LGPL
36049  * <script type="text/javascript">
36050  */
36051  
36052 /**
36053  * @class Roo.bootstrap.layout.Region
36054  * @extends Roo.bootstrap.layout.Basic
36055  * This class represents a region in a layout manager.
36056  
36057  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
36058  * @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})
36059  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
36060  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
36061  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
36062  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
36063  * @cfg {String}    title           The title for the region (overrides panel titles)
36064  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
36065  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
36066  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
36067  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
36068  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
36069  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
36070  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
36071  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
36072  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
36073  * @cfg {String}    overflow       (hidden|visible) if you have menus in the region, then you need to set this to visible.
36074
36075  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
36076  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
36077  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
36078  * @cfg {Number}    width           For East/West panels
36079  * @cfg {Number}    height          For North/South panels
36080  * @cfg {Boolean}   split           To show the splitter
36081  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
36082  * 
36083  * @cfg {string}   cls             Extra CSS classes to add to region
36084  * 
36085  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
36086  * @cfg {string}   region  the region that it inhabits..
36087  *
36088
36089  * @xxxcfg {Boolean}   collapsible     DISABLED False to disable collapsing (defaults to true)
36090  * @xxxcfg {Boolean}   collapsed       DISABLED True to set the initial display to collapsed (defaults to false)
36091
36092  * @xxxcfg {String}    collapsedTitle  DISABLED Optional string message to display in the collapsed block of a north or south region
36093  * @xxxxcfg {Boolean}   floatable       DISABLED False to disable floating (defaults to true)
36094  * @xxxxcfg {Boolean}   showPin         True to show a pin button NOT SUPPORTED YET
36095  */
36096 Roo.bootstrap.layout.Region = function(config)
36097 {
36098     this.applyConfig(config);
36099
36100     var mgr = config.mgr;
36101     var pos = config.region;
36102     config.skipConfig = true;
36103     Roo.bootstrap.layout.Region.superclass.constructor.call(this, config);
36104     
36105     if (mgr.el) {
36106         this.onRender(mgr.el);   
36107     }
36108      
36109     this.visible = true;
36110     this.collapsed = false;
36111     this.unrendered_panels = [];
36112 };
36113
36114 Roo.extend(Roo.bootstrap.layout.Region, Roo.bootstrap.layout.Basic, {
36115
36116     position: '', // set by wrapper (eg. north/south etc..)
36117     unrendered_panels : null,  // unrendered panels.
36118     
36119     tabPosition : false,
36120     
36121     mgr: false, // points to 'Border'
36122     
36123     
36124     createBody : function(){
36125         /** This region's body element 
36126         * @type Roo.Element */
36127         this.bodyEl = this.el.createChild({
36128                 tag: "div",
36129                 cls: "roo-layout-panel-body tab-content" // bootstrap added...
36130         });
36131     },
36132
36133     onRender: function(ctr, pos)
36134     {
36135         var dh = Roo.DomHelper;
36136         /** This region's container element 
36137         * @type Roo.Element */
36138         this.el = dh.append(ctr.dom, {
36139                 tag: "div",
36140                 cls: (this.config.cls || '') + " roo-layout-region roo-layout-panel roo-layout-panel-" + this.position
36141             }, true);
36142         /** This region's title element 
36143         * @type Roo.Element */
36144     
36145         this.titleEl = dh.append(this.el.dom,  {
36146                 tag: "div",
36147                 unselectable: "on",
36148                 cls: "roo-unselectable roo-layout-panel-hd breadcrumb roo-layout-title-" + this.position,
36149                 children:[
36150                     {tag: "span", cls: "roo-unselectable roo-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
36151                     {tag: "div", cls: "roo-unselectable roo-layout-panel-hd-tools", unselectable: "on"}
36152                 ]
36153             }, true);
36154         
36155         this.titleEl.enableDisplayMode();
36156         /** This region's title text element 
36157         * @type HTMLElement */
36158         this.titleTextEl = this.titleEl.dom.firstChild;
36159         this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
36160         /*
36161         this.closeBtn = this.createTool(this.tools.dom, "roo-layout-close");
36162         this.closeBtn.enableDisplayMode();
36163         this.closeBtn.on("click", this.closeClicked, this);
36164         this.closeBtn.hide();
36165     */
36166         this.createBody(this.config);
36167         if(this.config.hideWhenEmpty){
36168             this.hide();
36169             this.on("paneladded", this.validateVisibility, this);
36170             this.on("panelremoved", this.validateVisibility, this);
36171         }
36172         if(this.autoScroll){
36173             this.bodyEl.setStyle("overflow", "auto");
36174         }else{
36175             this.bodyEl.setStyle("overflow", this.config.overflow || 'hidden');
36176         }
36177         //if(c.titlebar !== false){
36178             if((!this.config.titlebar && !this.config.title) || this.config.titlebar === false){
36179                 this.titleEl.hide();
36180             }else{
36181                 this.titleEl.show();
36182                 if(this.config.title){
36183                     this.titleTextEl.innerHTML = this.config.title;
36184                 }
36185             }
36186         //}
36187         if(this.config.collapsed){
36188             this.collapse(true);
36189         }
36190         if(this.config.hidden){
36191             this.hide();
36192         }
36193         
36194         if (this.unrendered_panels && this.unrendered_panels.length) {
36195             for (var i =0;i< this.unrendered_panels.length; i++) {
36196                 this.add(this.unrendered_panels[i]);
36197             }
36198             this.unrendered_panels = null;
36199             
36200         }
36201         
36202     },
36203     
36204     applyConfig : function(c)
36205     {
36206         /*
36207          *if(c.collapsible && this.position != "center" && !this.collapsedEl){
36208             var dh = Roo.DomHelper;
36209             if(c.titlebar !== false){
36210                 this.collapseBtn = this.createTool(this.tools.dom, "roo-layout-collapse-"+this.position);
36211                 this.collapseBtn.on("click", this.collapse, this);
36212                 this.collapseBtn.enableDisplayMode();
36213                 /*
36214                 if(c.showPin === true || this.showPin){
36215                     this.stickBtn = this.createTool(this.tools.dom, "roo-layout-stick");
36216                     this.stickBtn.enableDisplayMode();
36217                     this.stickBtn.on("click", this.expand, this);
36218                     this.stickBtn.hide();
36219                 }
36220                 
36221             }
36222             */
36223             /** This region's collapsed element
36224             * @type Roo.Element */
36225             /*
36226              *
36227             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
36228                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
36229             ]}, true);
36230             
36231             if(c.floatable !== false){
36232                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
36233                this.collapsedEl.on("click", this.collapseClick, this);
36234             }
36235
36236             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
36237                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
36238                    id: "message", unselectable: "on", style:{"float":"left"}});
36239                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
36240              }
36241             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
36242             this.expandBtn.on("click", this.expand, this);
36243             
36244         }
36245         
36246         if(this.collapseBtn){
36247             this.collapseBtn.setVisible(c.collapsible == true);
36248         }
36249         
36250         this.cmargins = c.cmargins || this.cmargins ||
36251                          (this.position == "west" || this.position == "east" ?
36252                              {top: 0, left: 2, right:2, bottom: 0} :
36253                              {top: 2, left: 0, right:0, bottom: 2});
36254         */
36255         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
36256         
36257         
36258         this.tabPosition = [ 'top','bottom', 'west'].indexOf(c.tabPosition) > -1 ? c.tabPosition : "top";
36259         
36260         this.autoScroll = c.autoScroll || false;
36261         
36262         
36263        
36264         
36265         this.duration = c.duration || .30;
36266         this.slideDuration = c.slideDuration || .45;
36267         this.config = c;
36268        
36269     },
36270     /**
36271      * Returns true if this region is currently visible.
36272      * @return {Boolean}
36273      */
36274     isVisible : function(){
36275         return this.visible;
36276     },
36277
36278     /**
36279      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
36280      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
36281      */
36282     //setCollapsedTitle : function(title){
36283     //    title = title || "&#160;";
36284      //   if(this.collapsedTitleTextEl){
36285       //      this.collapsedTitleTextEl.innerHTML = title;
36286        // }
36287     //},
36288
36289     getBox : function(){
36290         var b;
36291       //  if(!this.collapsed){
36292             b = this.el.getBox(false, true);
36293        // }else{
36294           //  b = this.collapsedEl.getBox(false, true);
36295         //}
36296         return b;
36297     },
36298
36299     getMargins : function(){
36300         return this.margins;
36301         //return this.collapsed ? this.cmargins : this.margins;
36302     },
36303 /*
36304     highlight : function(){
36305         this.el.addClass("x-layout-panel-dragover");
36306     },
36307
36308     unhighlight : function(){
36309         this.el.removeClass("x-layout-panel-dragover");
36310     },
36311 */
36312     updateBox : function(box)
36313     {
36314         if (!this.bodyEl) {
36315             return; // not rendered yet..
36316         }
36317         
36318         this.box = box;
36319         if(!this.collapsed){
36320             this.el.dom.style.left = box.x + "px";
36321             this.el.dom.style.top = box.y + "px";
36322             this.updateBody(box.width, box.height);
36323         }else{
36324             this.collapsedEl.dom.style.left = box.x + "px";
36325             this.collapsedEl.dom.style.top = box.y + "px";
36326             this.collapsedEl.setSize(box.width, box.height);
36327         }
36328         if(this.tabs){
36329             this.tabs.autoSizeTabs();
36330         }
36331     },
36332
36333     updateBody : function(w, h)
36334     {
36335         if(w !== null){
36336             this.el.setWidth(w);
36337             w -= this.el.getBorderWidth("rl");
36338             if(this.config.adjustments){
36339                 w += this.config.adjustments[0];
36340             }
36341         }
36342         if(h !== null && h > 0){
36343             this.el.setHeight(h);
36344             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
36345             h -= this.el.getBorderWidth("tb");
36346             if(this.config.adjustments){
36347                 h += this.config.adjustments[1];
36348             }
36349             this.bodyEl.setHeight(h);
36350             if(this.tabs){
36351                 h = this.tabs.syncHeight(h);
36352             }
36353         }
36354         if(this.panelSize){
36355             w = w !== null ? w : this.panelSize.width;
36356             h = h !== null ? h : this.panelSize.height;
36357         }
36358         if(this.activePanel){
36359             var el = this.activePanel.getEl();
36360             w = w !== null ? w : el.getWidth();
36361             h = h !== null ? h : el.getHeight();
36362             this.panelSize = {width: w, height: h};
36363             this.activePanel.setSize(w, h);
36364         }
36365         if(Roo.isIE && this.tabs){
36366             this.tabs.el.repaint();
36367         }
36368     },
36369
36370     /**
36371      * Returns the container element for this region.
36372      * @return {Roo.Element}
36373      */
36374     getEl : function(){
36375         return this.el;
36376     },
36377
36378     /**
36379      * Hides this region.
36380      */
36381     hide : function(){
36382         //if(!this.collapsed){
36383             this.el.dom.style.left = "-2000px";
36384             this.el.hide();
36385         //}else{
36386          //   this.collapsedEl.dom.style.left = "-2000px";
36387          //   this.collapsedEl.hide();
36388        // }
36389         this.visible = false;
36390         this.fireEvent("visibilitychange", this, false);
36391     },
36392
36393     /**
36394      * Shows this region if it was previously hidden.
36395      */
36396     show : function(){
36397         //if(!this.collapsed){
36398             this.el.show();
36399         //}else{
36400         //    this.collapsedEl.show();
36401        // }
36402         this.visible = true;
36403         this.fireEvent("visibilitychange", this, true);
36404     },
36405 /*
36406     closeClicked : function(){
36407         if(this.activePanel){
36408             this.remove(this.activePanel);
36409         }
36410     },
36411
36412     collapseClick : function(e){
36413         if(this.isSlid){
36414            e.stopPropagation();
36415            this.slideIn();
36416         }else{
36417            e.stopPropagation();
36418            this.slideOut();
36419         }
36420     },
36421 */
36422     /**
36423      * Collapses this region.
36424      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
36425      */
36426     /*
36427     collapse : function(skipAnim, skipCheck = false){
36428         if(this.collapsed) {
36429             return;
36430         }
36431         
36432         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
36433             
36434             this.collapsed = true;
36435             if(this.split){
36436                 this.split.el.hide();
36437             }
36438             if(this.config.animate && skipAnim !== true){
36439                 this.fireEvent("invalidated", this);
36440                 this.animateCollapse();
36441             }else{
36442                 this.el.setLocation(-20000,-20000);
36443                 this.el.hide();
36444                 this.collapsedEl.show();
36445                 this.fireEvent("collapsed", this);
36446                 this.fireEvent("invalidated", this);
36447             }
36448         }
36449         
36450     },
36451 */
36452     animateCollapse : function(){
36453         // overridden
36454     },
36455
36456     /**
36457      * Expands this region if it was previously collapsed.
36458      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
36459      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
36460      */
36461     /*
36462     expand : function(e, skipAnim){
36463         if(e) {
36464             e.stopPropagation();
36465         }
36466         if(!this.collapsed || this.el.hasActiveFx()) {
36467             return;
36468         }
36469         if(this.isSlid){
36470             this.afterSlideIn();
36471             skipAnim = true;
36472         }
36473         this.collapsed = false;
36474         if(this.config.animate && skipAnim !== true){
36475             this.animateExpand();
36476         }else{
36477             this.el.show();
36478             if(this.split){
36479                 this.split.el.show();
36480             }
36481             this.collapsedEl.setLocation(-2000,-2000);
36482             this.collapsedEl.hide();
36483             this.fireEvent("invalidated", this);
36484             this.fireEvent("expanded", this);
36485         }
36486     },
36487 */
36488     animateExpand : function(){
36489         // overridden
36490     },
36491
36492     initTabs : function()
36493     {
36494         //this.bodyEl.setStyle("overflow", "hidden"); -- this is set in render?
36495         
36496         var ts = new Roo.bootstrap.panel.Tabs({
36497             el: this.bodyEl.dom,
36498             region : this,
36499             tabPosition: this.tabPosition ? this.tabPosition  : 'top',
36500             disableTooltips: this.config.disableTabTips,
36501             toolbar : this.config.toolbar
36502         });
36503         
36504         if(this.config.hideTabs){
36505             ts.stripWrap.setDisplayed(false);
36506         }
36507         this.tabs = ts;
36508         ts.resizeTabs = this.config.resizeTabs === true;
36509         ts.minTabWidth = this.config.minTabWidth || 40;
36510         ts.maxTabWidth = this.config.maxTabWidth || 250;
36511         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
36512         ts.monitorResize = false;
36513         //ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden"); // this is set in render?
36514         ts.bodyEl.addClass('roo-layout-tabs-body');
36515         this.panels.each(this.initPanelAsTab, this);
36516     },
36517
36518     initPanelAsTab : function(panel){
36519         var ti = this.tabs.addTab(
36520             panel.getEl().id,
36521             panel.getTitle(),
36522             null,
36523             this.config.closeOnTab && panel.isClosable(),
36524             panel.tpl
36525         );
36526         if(panel.tabTip !== undefined){
36527             ti.setTooltip(panel.tabTip);
36528         }
36529         ti.on("activate", function(){
36530               this.setActivePanel(panel);
36531         }, this);
36532         
36533         if(this.config.closeOnTab){
36534             ti.on("beforeclose", function(t, e){
36535                 e.cancel = true;
36536                 this.remove(panel);
36537             }, this);
36538         }
36539         
36540         panel.tabItem = ti;
36541         
36542         return ti;
36543     },
36544
36545     updatePanelTitle : function(panel, title)
36546     {
36547         if(this.activePanel == panel){
36548             this.updateTitle(title);
36549         }
36550         if(this.tabs){
36551             var ti = this.tabs.getTab(panel.getEl().id);
36552             ti.setText(title);
36553             if(panel.tabTip !== undefined){
36554                 ti.setTooltip(panel.tabTip);
36555             }
36556         }
36557     },
36558
36559     updateTitle : function(title){
36560         if(this.titleTextEl && !this.config.title){
36561             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
36562         }
36563     },
36564
36565     setActivePanel : function(panel)
36566     {
36567         panel = this.getPanel(panel);
36568         if(this.activePanel && this.activePanel != panel){
36569             if(this.activePanel.setActiveState(false) === false){
36570                 return;
36571             }
36572         }
36573         this.activePanel = panel;
36574         panel.setActiveState(true);
36575         if(this.panelSize){
36576             panel.setSize(this.panelSize.width, this.panelSize.height);
36577         }
36578         if(this.closeBtn){
36579             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
36580         }
36581         this.updateTitle(panel.getTitle());
36582         if(this.tabs){
36583             this.fireEvent("invalidated", this);
36584         }
36585         this.fireEvent("panelactivated", this, panel);
36586     },
36587
36588     /**
36589      * Shows the specified panel.
36590      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
36591      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
36592      */
36593     showPanel : function(panel)
36594     {
36595         panel = this.getPanel(panel);
36596         if(panel){
36597             if(this.tabs){
36598                 var tab = this.tabs.getTab(panel.getEl().id);
36599                 if(tab.isHidden()){
36600                     this.tabs.unhideTab(tab.id);
36601                 }
36602                 tab.activate();
36603             }else{
36604                 this.setActivePanel(panel);
36605             }
36606         }
36607         return panel;
36608     },
36609
36610     /**
36611      * Get the active panel for this region.
36612      * @return {Roo.ContentPanel} The active panel or null
36613      */
36614     getActivePanel : function(){
36615         return this.activePanel;
36616     },
36617
36618     validateVisibility : function(){
36619         if(this.panels.getCount() < 1){
36620             this.updateTitle("&#160;");
36621             this.closeBtn.hide();
36622             this.hide();
36623         }else{
36624             if(!this.isVisible()){
36625                 this.show();
36626             }
36627         }
36628     },
36629
36630     /**
36631      * Adds the passed ContentPanel(s) to this region.
36632      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
36633      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
36634      */
36635     add : function(panel)
36636     {
36637         if(arguments.length > 1){
36638             for(var i = 0, len = arguments.length; i < len; i++) {
36639                 this.add(arguments[i]);
36640             }
36641             return null;
36642         }
36643         
36644         // if we have not been rendered yet, then we can not really do much of this..
36645         if (!this.bodyEl) {
36646             this.unrendered_panels.push(panel);
36647             return panel;
36648         }
36649         
36650         
36651         
36652         
36653         if(this.hasPanel(panel)){
36654             this.showPanel(panel);
36655             return panel;
36656         }
36657         panel.setRegion(this);
36658         this.panels.add(panel);
36659        /* if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
36660             // sinle panel - no tab...?? would it not be better to render it with the tabs,
36661             // and hide them... ???
36662             this.bodyEl.dom.appendChild(panel.getEl().dom);
36663             if(panel.background !== true){
36664                 this.setActivePanel(panel);
36665             }
36666             this.fireEvent("paneladded", this, panel);
36667             return panel;
36668         }
36669         */
36670         if(!this.tabs){
36671             this.initTabs();
36672         }else{
36673             this.initPanelAsTab(panel);
36674         }
36675         
36676         
36677         if(panel.background !== true){
36678             this.tabs.activate(panel.getEl().id);
36679         }
36680         this.fireEvent("paneladded", this, panel);
36681         return panel;
36682     },
36683
36684     /**
36685      * Hides the tab for the specified panel.
36686      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36687      */
36688     hidePanel : function(panel){
36689         if(this.tabs && (panel = this.getPanel(panel))){
36690             this.tabs.hideTab(panel.getEl().id);
36691         }
36692     },
36693
36694     /**
36695      * Unhides the tab for a previously hidden panel.
36696      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36697      */
36698     unhidePanel : function(panel){
36699         if(this.tabs && (panel = this.getPanel(panel))){
36700             this.tabs.unhideTab(panel.getEl().id);
36701         }
36702     },
36703
36704     clearPanels : function(){
36705         while(this.panels.getCount() > 0){
36706              this.remove(this.panels.first());
36707         }
36708     },
36709
36710     /**
36711      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
36712      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36713      * @param {Boolean} preservePanel Overrides the config preservePanel option
36714      * @return {Roo.ContentPanel} The panel that was removed
36715      */
36716     remove : function(panel, preservePanel)
36717     {
36718         panel = this.getPanel(panel);
36719         if(!panel){
36720             return null;
36721         }
36722         var e = {};
36723         this.fireEvent("beforeremove", this, panel, e);
36724         if(e.cancel === true){
36725             return null;
36726         }
36727         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
36728         var panelId = panel.getId();
36729         this.panels.removeKey(panelId);
36730         if(preservePanel){
36731             document.body.appendChild(panel.getEl().dom);
36732         }
36733         if(this.tabs){
36734             this.tabs.removeTab(panel.getEl().id);
36735         }else if (!preservePanel){
36736             this.bodyEl.dom.removeChild(panel.getEl().dom);
36737         }
36738         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
36739             var p = this.panels.first();
36740             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
36741             tempEl.appendChild(p.getEl().dom);
36742             this.bodyEl.update("");
36743             this.bodyEl.dom.appendChild(p.getEl().dom);
36744             tempEl = null;
36745             this.updateTitle(p.getTitle());
36746             this.tabs = null;
36747             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
36748             this.setActivePanel(p);
36749         }
36750         panel.setRegion(null);
36751         if(this.activePanel == panel){
36752             this.activePanel = null;
36753         }
36754         if(this.config.autoDestroy !== false && preservePanel !== true){
36755             try{panel.destroy();}catch(e){}
36756         }
36757         this.fireEvent("panelremoved", this, panel);
36758         return panel;
36759     },
36760
36761     /**
36762      * Returns the TabPanel component used by this region
36763      * @return {Roo.TabPanel}
36764      */
36765     getTabs : function(){
36766         return this.tabs;
36767     },
36768
36769     createTool : function(parentEl, className){
36770         var btn = Roo.DomHelper.append(parentEl, {
36771             tag: "div",
36772             cls: "x-layout-tools-button",
36773             children: [ {
36774                 tag: "div",
36775                 cls: "roo-layout-tools-button-inner " + className,
36776                 html: "&#160;"
36777             }]
36778         }, true);
36779         btn.addClassOnOver("roo-layout-tools-button-over");
36780         return btn;
36781     }
36782 });/*
36783  * Based on:
36784  * Ext JS Library 1.1.1
36785  * Copyright(c) 2006-2007, Ext JS, LLC.
36786  *
36787  * Originally Released Under LGPL - original licence link has changed is not relivant.
36788  *
36789  * Fork - LGPL
36790  * <script type="text/javascript">
36791  */
36792  
36793
36794
36795 /**
36796  * @class Roo.SplitLayoutRegion
36797  * @extends Roo.LayoutRegion
36798  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
36799  */
36800 Roo.bootstrap.layout.Split = function(config){
36801     this.cursor = config.cursor;
36802     Roo.bootstrap.layout.Split.superclass.constructor.call(this, config);
36803 };
36804
36805 Roo.extend(Roo.bootstrap.layout.Split, Roo.bootstrap.layout.Region,
36806 {
36807     splitTip : "Drag to resize.",
36808     collapsibleSplitTip : "Drag to resize. Double click to hide.",
36809     useSplitTips : false,
36810
36811     applyConfig : function(config){
36812         Roo.bootstrap.layout.Split.superclass.applyConfig.call(this, config);
36813     },
36814     
36815     onRender : function(ctr,pos) {
36816         
36817         Roo.bootstrap.layout.Split.superclass.onRender.call(this, ctr,pos);
36818         if(!this.config.split){
36819             return;
36820         }
36821         if(!this.split){
36822             
36823             var splitEl = Roo.DomHelper.append(ctr.dom,  {
36824                             tag: "div",
36825                             id: this.el.id + "-split",
36826                             cls: "roo-layout-split roo-layout-split-"+this.position,
36827                             html: "&#160;"
36828             });
36829             /** The SplitBar for this region 
36830             * @type Roo.SplitBar */
36831             // does not exist yet...
36832             Roo.log([this.position, this.orientation]);
36833             
36834             this.split = new Roo.bootstrap.SplitBar({
36835                 dragElement : splitEl,
36836                 resizingElement: this.el,
36837                 orientation : this.orientation
36838             });
36839             
36840             this.split.on("moved", this.onSplitMove, this);
36841             this.split.useShim = this.config.useShim === true;
36842             this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
36843             if(this.useSplitTips){
36844                 this.split.el.dom.title = this.config.collapsible ? this.collapsibleSplitTip : this.splitTip;
36845             }
36846             //if(config.collapsible){
36847             //    this.split.el.on("dblclick", this.collapse,  this);
36848             //}
36849         }
36850         if(typeof this.config.minSize != "undefined"){
36851             this.split.minSize = this.config.minSize;
36852         }
36853         if(typeof this.config.maxSize != "undefined"){
36854             this.split.maxSize = this.config.maxSize;
36855         }
36856         if(this.config.hideWhenEmpty || this.config.hidden || this.config.collapsed){
36857             this.hideSplitter();
36858         }
36859         
36860     },
36861
36862     getHMaxSize : function(){
36863          var cmax = this.config.maxSize || 10000;
36864          var center = this.mgr.getRegion("center");
36865          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
36866     },
36867
36868     getVMaxSize : function(){
36869          var cmax = this.config.maxSize || 10000;
36870          var center = this.mgr.getRegion("center");
36871          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
36872     },
36873
36874     onSplitMove : function(split, newSize){
36875         this.fireEvent("resized", this, newSize);
36876     },
36877     
36878     /** 
36879      * Returns the {@link Roo.SplitBar} for this region.
36880      * @return {Roo.SplitBar}
36881      */
36882     getSplitBar : function(){
36883         return this.split;
36884     },
36885     
36886     hide : function(){
36887         this.hideSplitter();
36888         Roo.bootstrap.layout.Split.superclass.hide.call(this);
36889     },
36890
36891     hideSplitter : function(){
36892         if(this.split){
36893             this.split.el.setLocation(-2000,-2000);
36894             this.split.el.hide();
36895         }
36896     },
36897
36898     show : function(){
36899         if(this.split){
36900             this.split.el.show();
36901         }
36902         Roo.bootstrap.layout.Split.superclass.show.call(this);
36903     },
36904     
36905     beforeSlide: function(){
36906         if(Roo.isGecko){// firefox overflow auto bug workaround
36907             this.bodyEl.clip();
36908             if(this.tabs) {
36909                 this.tabs.bodyEl.clip();
36910             }
36911             if(this.activePanel){
36912                 this.activePanel.getEl().clip();
36913                 
36914                 if(this.activePanel.beforeSlide){
36915                     this.activePanel.beforeSlide();
36916                 }
36917             }
36918         }
36919     },
36920     
36921     afterSlide : function(){
36922         if(Roo.isGecko){// firefox overflow auto bug workaround
36923             this.bodyEl.unclip();
36924             if(this.tabs) {
36925                 this.tabs.bodyEl.unclip();
36926             }
36927             if(this.activePanel){
36928                 this.activePanel.getEl().unclip();
36929                 if(this.activePanel.afterSlide){
36930                     this.activePanel.afterSlide();
36931                 }
36932             }
36933         }
36934     },
36935
36936     initAutoHide : function(){
36937         if(this.autoHide !== false){
36938             if(!this.autoHideHd){
36939                 var st = new Roo.util.DelayedTask(this.slideIn, this);
36940                 this.autoHideHd = {
36941                     "mouseout": function(e){
36942                         if(!e.within(this.el, true)){
36943                             st.delay(500);
36944                         }
36945                     },
36946                     "mouseover" : function(e){
36947                         st.cancel();
36948                     },
36949                     scope : this
36950                 };
36951             }
36952             this.el.on(this.autoHideHd);
36953         }
36954     },
36955
36956     clearAutoHide : function(){
36957         if(this.autoHide !== false){
36958             this.el.un("mouseout", this.autoHideHd.mouseout);
36959             this.el.un("mouseover", this.autoHideHd.mouseover);
36960         }
36961     },
36962
36963     clearMonitor : function(){
36964         Roo.get(document).un("click", this.slideInIf, this);
36965     },
36966
36967     // these names are backwards but not changed for compat
36968     slideOut : function(){
36969         if(this.isSlid || this.el.hasActiveFx()){
36970             return;
36971         }
36972         this.isSlid = true;
36973         if(this.collapseBtn){
36974             this.collapseBtn.hide();
36975         }
36976         this.closeBtnState = this.closeBtn.getStyle('display');
36977         this.closeBtn.hide();
36978         if(this.stickBtn){
36979             this.stickBtn.show();
36980         }
36981         this.el.show();
36982         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
36983         this.beforeSlide();
36984         this.el.setStyle("z-index", 10001);
36985         this.el.slideIn(this.getSlideAnchor(), {
36986             callback: function(){
36987                 this.afterSlide();
36988                 this.initAutoHide();
36989                 Roo.get(document).on("click", this.slideInIf, this);
36990                 this.fireEvent("slideshow", this);
36991             },
36992             scope: this,
36993             block: true
36994         });
36995     },
36996
36997     afterSlideIn : function(){
36998         this.clearAutoHide();
36999         this.isSlid = false;
37000         this.clearMonitor();
37001         this.el.setStyle("z-index", "");
37002         if(this.collapseBtn){
37003             this.collapseBtn.show();
37004         }
37005         this.closeBtn.setStyle('display', this.closeBtnState);
37006         if(this.stickBtn){
37007             this.stickBtn.hide();
37008         }
37009         this.fireEvent("slidehide", this);
37010     },
37011
37012     slideIn : function(cb){
37013         if(!this.isSlid || this.el.hasActiveFx()){
37014             Roo.callback(cb);
37015             return;
37016         }
37017         this.isSlid = false;
37018         this.beforeSlide();
37019         this.el.slideOut(this.getSlideAnchor(), {
37020             callback: function(){
37021                 this.el.setLeftTop(-10000, -10000);
37022                 this.afterSlide();
37023                 this.afterSlideIn();
37024                 Roo.callback(cb);
37025             },
37026             scope: this,
37027             block: true
37028         });
37029     },
37030     
37031     slideInIf : function(e){
37032         if(!e.within(this.el)){
37033             this.slideIn();
37034         }
37035     },
37036
37037     animateCollapse : function(){
37038         this.beforeSlide();
37039         this.el.setStyle("z-index", 20000);
37040         var anchor = this.getSlideAnchor();
37041         this.el.slideOut(anchor, {
37042             callback : function(){
37043                 this.el.setStyle("z-index", "");
37044                 this.collapsedEl.slideIn(anchor, {duration:.3});
37045                 this.afterSlide();
37046                 this.el.setLocation(-10000,-10000);
37047                 this.el.hide();
37048                 this.fireEvent("collapsed", this);
37049             },
37050             scope: this,
37051             block: true
37052         });
37053     },
37054
37055     animateExpand : function(){
37056         this.beforeSlide();
37057         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
37058         this.el.setStyle("z-index", 20000);
37059         this.collapsedEl.hide({
37060             duration:.1
37061         });
37062         this.el.slideIn(this.getSlideAnchor(), {
37063             callback : function(){
37064                 this.el.setStyle("z-index", "");
37065                 this.afterSlide();
37066                 if(this.split){
37067                     this.split.el.show();
37068                 }
37069                 this.fireEvent("invalidated", this);
37070                 this.fireEvent("expanded", this);
37071             },
37072             scope: this,
37073             block: true
37074         });
37075     },
37076
37077     anchors : {
37078         "west" : "left",
37079         "east" : "right",
37080         "north" : "top",
37081         "south" : "bottom"
37082     },
37083
37084     sanchors : {
37085         "west" : "l",
37086         "east" : "r",
37087         "north" : "t",
37088         "south" : "b"
37089     },
37090
37091     canchors : {
37092         "west" : "tl-tr",
37093         "east" : "tr-tl",
37094         "north" : "tl-bl",
37095         "south" : "bl-tl"
37096     },
37097
37098     getAnchor : function(){
37099         return this.anchors[this.position];
37100     },
37101
37102     getCollapseAnchor : function(){
37103         return this.canchors[this.position];
37104     },
37105
37106     getSlideAnchor : function(){
37107         return this.sanchors[this.position];
37108     },
37109
37110     getAlignAdj : function(){
37111         var cm = this.cmargins;
37112         switch(this.position){
37113             case "west":
37114                 return [0, 0];
37115             break;
37116             case "east":
37117                 return [0, 0];
37118             break;
37119             case "north":
37120                 return [0, 0];
37121             break;
37122             case "south":
37123                 return [0, 0];
37124             break;
37125         }
37126     },
37127
37128     getExpandAdj : function(){
37129         var c = this.collapsedEl, cm = this.cmargins;
37130         switch(this.position){
37131             case "west":
37132                 return [-(cm.right+c.getWidth()+cm.left), 0];
37133             break;
37134             case "east":
37135                 return [cm.right+c.getWidth()+cm.left, 0];
37136             break;
37137             case "north":
37138                 return [0, -(cm.top+cm.bottom+c.getHeight())];
37139             break;
37140             case "south":
37141                 return [0, cm.top+cm.bottom+c.getHeight()];
37142             break;
37143         }
37144     }
37145 });/*
37146  * Based on:
37147  * Ext JS Library 1.1.1
37148  * Copyright(c) 2006-2007, Ext JS, LLC.
37149  *
37150  * Originally Released Under LGPL - original licence link has changed is not relivant.
37151  *
37152  * Fork - LGPL
37153  * <script type="text/javascript">
37154  */
37155 /*
37156  * These classes are private internal classes
37157  */
37158 Roo.bootstrap.layout.Center = function(config){
37159     config.region = "center";
37160     Roo.bootstrap.layout.Region.call(this, config);
37161     this.visible = true;
37162     this.minWidth = config.minWidth || 20;
37163     this.minHeight = config.minHeight || 20;
37164 };
37165
37166 Roo.extend(Roo.bootstrap.layout.Center, Roo.bootstrap.layout.Region, {
37167     hide : function(){
37168         // center panel can't be hidden
37169     },
37170     
37171     show : function(){
37172         // center panel can't be hidden
37173     },
37174     
37175     getMinWidth: function(){
37176         return this.minWidth;
37177     },
37178     
37179     getMinHeight: function(){
37180         return this.minHeight;
37181     }
37182 });
37183
37184
37185
37186
37187  
37188
37189
37190
37191
37192
37193
37194 Roo.bootstrap.layout.North = function(config)
37195 {
37196     config.region = 'north';
37197     config.cursor = 'n-resize';
37198     
37199     Roo.bootstrap.layout.Split.call(this, config);
37200     
37201     
37202     if(this.split){
37203         this.split.placement = Roo.bootstrap.SplitBar.TOP;
37204         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37205         this.split.el.addClass("roo-layout-split-v");
37206     }
37207     var size = config.initialSize || config.height;
37208     if(typeof size != "undefined"){
37209         this.el.setHeight(size);
37210     }
37211 };
37212 Roo.extend(Roo.bootstrap.layout.North, Roo.bootstrap.layout.Split,
37213 {
37214     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37215     
37216     
37217     
37218     getBox : function(){
37219         if(this.collapsed){
37220             return this.collapsedEl.getBox();
37221         }
37222         var box = this.el.getBox();
37223         if(this.split){
37224             box.height += this.split.el.getHeight();
37225         }
37226         return box;
37227     },
37228     
37229     updateBox : function(box){
37230         if(this.split && !this.collapsed){
37231             box.height -= this.split.el.getHeight();
37232             this.split.el.setLeft(box.x);
37233             this.split.el.setTop(box.y+box.height);
37234             this.split.el.setWidth(box.width);
37235         }
37236         if(this.collapsed){
37237             this.updateBody(box.width, null);
37238         }
37239         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37240     }
37241 });
37242
37243
37244
37245
37246
37247 Roo.bootstrap.layout.South = function(config){
37248     config.region = 'south';
37249     config.cursor = 's-resize';
37250     Roo.bootstrap.layout.Split.call(this, config);
37251     if(this.split){
37252         this.split.placement = Roo.bootstrap.SplitBar.BOTTOM;
37253         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37254         this.split.el.addClass("roo-layout-split-v");
37255     }
37256     var size = config.initialSize || config.height;
37257     if(typeof size != "undefined"){
37258         this.el.setHeight(size);
37259     }
37260 };
37261
37262 Roo.extend(Roo.bootstrap.layout.South, Roo.bootstrap.layout.Split, {
37263     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37264     getBox : function(){
37265         if(this.collapsed){
37266             return this.collapsedEl.getBox();
37267         }
37268         var box = this.el.getBox();
37269         if(this.split){
37270             var sh = this.split.el.getHeight();
37271             box.height += sh;
37272             box.y -= sh;
37273         }
37274         return box;
37275     },
37276     
37277     updateBox : function(box){
37278         if(this.split && !this.collapsed){
37279             var sh = this.split.el.getHeight();
37280             box.height -= sh;
37281             box.y += sh;
37282             this.split.el.setLeft(box.x);
37283             this.split.el.setTop(box.y-sh);
37284             this.split.el.setWidth(box.width);
37285         }
37286         if(this.collapsed){
37287             this.updateBody(box.width, null);
37288         }
37289         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37290     }
37291 });
37292
37293 Roo.bootstrap.layout.East = function(config){
37294     config.region = "east";
37295     config.cursor = "e-resize";
37296     Roo.bootstrap.layout.Split.call(this, config);
37297     if(this.split){
37298         this.split.placement = Roo.bootstrap.SplitBar.RIGHT;
37299         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37300         this.split.el.addClass("roo-layout-split-h");
37301     }
37302     var size = config.initialSize || config.width;
37303     if(typeof size != "undefined"){
37304         this.el.setWidth(size);
37305     }
37306 };
37307 Roo.extend(Roo.bootstrap.layout.East, Roo.bootstrap.layout.Split, {
37308     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37309     getBox : function(){
37310         if(this.collapsed){
37311             return this.collapsedEl.getBox();
37312         }
37313         var box = this.el.getBox();
37314         if(this.split){
37315             var sw = this.split.el.getWidth();
37316             box.width += sw;
37317             box.x -= sw;
37318         }
37319         return box;
37320     },
37321
37322     updateBox : function(box){
37323         if(this.split && !this.collapsed){
37324             var sw = this.split.el.getWidth();
37325             box.width -= sw;
37326             this.split.el.setLeft(box.x);
37327             this.split.el.setTop(box.y);
37328             this.split.el.setHeight(box.height);
37329             box.x += sw;
37330         }
37331         if(this.collapsed){
37332             this.updateBody(null, box.height);
37333         }
37334         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37335     }
37336 });
37337
37338 Roo.bootstrap.layout.West = function(config){
37339     config.region = "west";
37340     config.cursor = "w-resize";
37341     
37342     Roo.bootstrap.layout.Split.call(this, config);
37343     if(this.split){
37344         this.split.placement = Roo.bootstrap.SplitBar.LEFT;
37345         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37346         this.split.el.addClass("roo-layout-split-h");
37347     }
37348     
37349 };
37350 Roo.extend(Roo.bootstrap.layout.West, Roo.bootstrap.layout.Split, {
37351     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37352     
37353     onRender: function(ctr, pos)
37354     {
37355         Roo.bootstrap.layout.West.superclass.onRender.call(this, ctr,pos);
37356         var size = this.config.initialSize || this.config.width;
37357         if(typeof size != "undefined"){
37358             this.el.setWidth(size);
37359         }
37360     },
37361     
37362     getBox : function(){
37363         if(this.collapsed){
37364             return this.collapsedEl.getBox();
37365         }
37366         var box = this.el.getBox();
37367         if(this.split){
37368             box.width += this.split.el.getWidth();
37369         }
37370         return box;
37371     },
37372     
37373     updateBox : function(box){
37374         if(this.split && !this.collapsed){
37375             var sw = this.split.el.getWidth();
37376             box.width -= sw;
37377             this.split.el.setLeft(box.x+box.width);
37378             this.split.el.setTop(box.y);
37379             this.split.el.setHeight(box.height);
37380         }
37381         if(this.collapsed){
37382             this.updateBody(null, box.height);
37383         }
37384         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37385     }
37386 });Roo.namespace("Roo.bootstrap.panel");/*
37387  * Based on:
37388  * Ext JS Library 1.1.1
37389  * Copyright(c) 2006-2007, Ext JS, LLC.
37390  *
37391  * Originally Released Under LGPL - original licence link has changed is not relivant.
37392  *
37393  * Fork - LGPL
37394  * <script type="text/javascript">
37395  */
37396 /**
37397  * @class Roo.ContentPanel
37398  * @extends Roo.util.Observable
37399  * A basic ContentPanel element.
37400  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
37401  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
37402  * @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
37403  * @cfg {Boolean}   closable      True if the panel can be closed/removed
37404  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
37405  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
37406  * @cfg {Toolbar}   toolbar       A toolbar for this panel
37407  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
37408  * @cfg {String} title          The title for this panel
37409  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
37410  * @cfg {String} url            Calls {@link #setUrl} with this value
37411  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
37412  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
37413  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
37414  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
37415  * @cfg {Boolean} badges render the badges
37416
37417  * @constructor
37418  * Create a new ContentPanel.
37419  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
37420  * @param {String/Object} config A string to set only the title or a config object
37421  * @param {String} content (optional) Set the HTML content for this panel
37422  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
37423  */
37424 Roo.bootstrap.panel.Content = function( config){
37425     
37426     this.tpl = config.tpl || false;
37427     
37428     var el = config.el;
37429     var content = config.content;
37430
37431     if(config.autoCreate){ // xtype is available if this is called from factory
37432         el = Roo.id();
37433     }
37434     this.el = Roo.get(el);
37435     if(!this.el && config && config.autoCreate){
37436         if(typeof config.autoCreate == "object"){
37437             if(!config.autoCreate.id){
37438                 config.autoCreate.id = config.id||el;
37439             }
37440             this.el = Roo.DomHelper.append(document.body,
37441                         config.autoCreate, true);
37442         }else{
37443             var elcfg =  {   tag: "div",
37444                             cls: "roo-layout-inactive-content",
37445                             id: config.id||el
37446                             };
37447             if (config.html) {
37448                 elcfg.html = config.html;
37449                 
37450             }
37451                         
37452             this.el = Roo.DomHelper.append(document.body, elcfg , true);
37453         }
37454     } 
37455     this.closable = false;
37456     this.loaded = false;
37457     this.active = false;
37458    
37459       
37460     if (config.toolbar && !config.toolbar.el && config.toolbar.xtype) {
37461         
37462         this.toolbar = new config.toolbar.xns[config.toolbar.xtype](config.toolbar);
37463         
37464         this.wrapEl = this.el; //this.el.wrap();
37465         var ti = [];
37466         if (config.toolbar.items) {
37467             ti = config.toolbar.items ;
37468             delete config.toolbar.items ;
37469         }
37470         
37471         var nitems = [];
37472         this.toolbar.render(this.wrapEl, 'before');
37473         for(var i =0;i < ti.length;i++) {
37474           //  Roo.log(['add child', items[i]]);
37475             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37476         }
37477         this.toolbar.items = nitems;
37478         this.toolbar.el.insertBefore(this.wrapEl.dom.firstChild);
37479         delete config.toolbar;
37480         
37481     }
37482     /*
37483     // xtype created footer. - not sure if will work as we normally have to render first..
37484     if (this.footer && !this.footer.el && this.footer.xtype) {
37485         if (!this.wrapEl) {
37486             this.wrapEl = this.el.wrap();
37487         }
37488     
37489         this.footer.container = this.wrapEl.createChild();
37490          
37491         this.footer = Roo.factory(this.footer, Roo);
37492         
37493     }
37494     */
37495     
37496      if(typeof config == "string"){
37497         this.title = config;
37498     }else{
37499         Roo.apply(this, config);
37500     }
37501     
37502     if(this.resizeEl){
37503         this.resizeEl = Roo.get(this.resizeEl, true);
37504     }else{
37505         this.resizeEl = this.el;
37506     }
37507     // handle view.xtype
37508     
37509  
37510     
37511     
37512     this.addEvents({
37513         /**
37514          * @event activate
37515          * Fires when this panel is activated. 
37516          * @param {Roo.ContentPanel} this
37517          */
37518         "activate" : true,
37519         /**
37520          * @event deactivate
37521          * Fires when this panel is activated. 
37522          * @param {Roo.ContentPanel} this
37523          */
37524         "deactivate" : true,
37525
37526         /**
37527          * @event resize
37528          * Fires when this panel is resized if fitToFrame is true.
37529          * @param {Roo.ContentPanel} this
37530          * @param {Number} width The width after any component adjustments
37531          * @param {Number} height The height after any component adjustments
37532          */
37533         "resize" : true,
37534         
37535          /**
37536          * @event render
37537          * Fires when this tab is created
37538          * @param {Roo.ContentPanel} this
37539          */
37540         "render" : true
37541         
37542         
37543         
37544     });
37545     
37546
37547     
37548     
37549     if(this.autoScroll){
37550         this.resizeEl.setStyle("overflow", "auto");
37551     } else {
37552         // fix randome scrolling
37553         //this.el.on('scroll', function() {
37554         //    Roo.log('fix random scolling');
37555         //    this.scrollTo('top',0); 
37556         //});
37557     }
37558     content = content || this.content;
37559     if(content){
37560         this.setContent(content);
37561     }
37562     if(config && config.url){
37563         this.setUrl(this.url, this.params, this.loadOnce);
37564     }
37565     
37566     
37567     
37568     Roo.bootstrap.panel.Content.superclass.constructor.call(this);
37569     
37570     if (this.view && typeof(this.view.xtype) != 'undefined') {
37571         this.view.el = this.el.appendChild(document.createElement("div"));
37572         this.view = Roo.factory(this.view); 
37573         this.view.render  &&  this.view.render(false, '');  
37574     }
37575     
37576     
37577     this.fireEvent('render', this);
37578 };
37579
37580 Roo.extend(Roo.bootstrap.panel.Content, Roo.bootstrap.Component, {
37581     
37582     tabTip : '',
37583     
37584     setRegion : function(region){
37585         this.region = region;
37586         this.setActiveClass(region && !this.background);
37587     },
37588     
37589     
37590     setActiveClass: function(state)
37591     {
37592         if(state){
37593            this.el.replaceClass("roo-layout-inactive-content", "roo-layout-active-content");
37594            this.el.setStyle('position','relative');
37595         }else{
37596            this.el.replaceClass("roo-layout-active-content", "roo-layout-inactive-content");
37597            this.el.setStyle('position', 'absolute');
37598         } 
37599     },
37600     
37601     /**
37602      * Returns the toolbar for this Panel if one was configured. 
37603      * @return {Roo.Toolbar} 
37604      */
37605     getToolbar : function(){
37606         return this.toolbar;
37607     },
37608     
37609     setActiveState : function(active)
37610     {
37611         this.active = active;
37612         this.setActiveClass(active);
37613         if(!active){
37614             if(this.fireEvent("deactivate", this) === false){
37615                 return false;
37616             }
37617             return true;
37618         }
37619         this.fireEvent("activate", this);
37620         return true;
37621     },
37622     /**
37623      * Updates this panel's element
37624      * @param {String} content The new content
37625      * @param {Boolean} loadScripts (optional) true to look for and process scripts
37626     */
37627     setContent : function(content, loadScripts){
37628         this.el.update(content, loadScripts);
37629     },
37630
37631     ignoreResize : function(w, h){
37632         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
37633             return true;
37634         }else{
37635             this.lastSize = {width: w, height: h};
37636             return false;
37637         }
37638     },
37639     /**
37640      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
37641      * @return {Roo.UpdateManager} The UpdateManager
37642      */
37643     getUpdateManager : function(){
37644         return this.el.getUpdateManager();
37645     },
37646      /**
37647      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
37648      * @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:
37649 <pre><code>
37650 panel.load({
37651     url: "your-url.php",
37652     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
37653     callback: yourFunction,
37654     scope: yourObject, //(optional scope)
37655     discardUrl: false,
37656     nocache: false,
37657     text: "Loading...",
37658     timeout: 30,
37659     scripts: false
37660 });
37661 </code></pre>
37662      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
37663      * 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.
37664      * @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}
37665      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
37666      * @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.
37667      * @return {Roo.ContentPanel} this
37668      */
37669     load : function(){
37670         var um = this.el.getUpdateManager();
37671         um.update.apply(um, arguments);
37672         return this;
37673     },
37674
37675
37676     /**
37677      * 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.
37678      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
37679      * @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)
37680      * @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)
37681      * @return {Roo.UpdateManager} The UpdateManager
37682      */
37683     setUrl : function(url, params, loadOnce){
37684         if(this.refreshDelegate){
37685             this.removeListener("activate", this.refreshDelegate);
37686         }
37687         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
37688         this.on("activate", this.refreshDelegate);
37689         return this.el.getUpdateManager();
37690     },
37691     
37692     _handleRefresh : function(url, params, loadOnce){
37693         if(!loadOnce || !this.loaded){
37694             var updater = this.el.getUpdateManager();
37695             updater.update(url, params, this._setLoaded.createDelegate(this));
37696         }
37697     },
37698     
37699     _setLoaded : function(){
37700         this.loaded = true;
37701     }, 
37702     
37703     /**
37704      * Returns this panel's id
37705      * @return {String} 
37706      */
37707     getId : function(){
37708         return this.el.id;
37709     },
37710     
37711     /** 
37712      * Returns this panel's element - used by regiosn to add.
37713      * @return {Roo.Element} 
37714      */
37715     getEl : function(){
37716         return this.wrapEl || this.el;
37717     },
37718     
37719    
37720     
37721     adjustForComponents : function(width, height)
37722     {
37723         //Roo.log('adjustForComponents ');
37724         if(this.resizeEl != this.el){
37725             width -= this.el.getFrameWidth('lr');
37726             height -= this.el.getFrameWidth('tb');
37727         }
37728         if(this.toolbar){
37729             var te = this.toolbar.getEl();
37730             te.setWidth(width);
37731             height -= te.getHeight();
37732         }
37733         if(this.footer){
37734             var te = this.footer.getEl();
37735             te.setWidth(width);
37736             height -= te.getHeight();
37737         }
37738         
37739         
37740         if(this.adjustments){
37741             width += this.adjustments[0];
37742             height += this.adjustments[1];
37743         }
37744         return {"width": width, "height": height};
37745     },
37746     
37747     setSize : function(width, height){
37748         if(this.fitToFrame && !this.ignoreResize(width, height)){
37749             if(this.fitContainer && this.resizeEl != this.el){
37750                 this.el.setSize(width, height);
37751             }
37752             var size = this.adjustForComponents(width, height);
37753             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
37754             this.fireEvent('resize', this, size.width, size.height);
37755         }
37756     },
37757     
37758     /**
37759      * Returns this panel's title
37760      * @return {String} 
37761      */
37762     getTitle : function(){
37763         
37764         if (typeof(this.title) != 'object') {
37765             return this.title;
37766         }
37767         
37768         var t = '';
37769         for (var k in this.title) {
37770             if (!this.title.hasOwnProperty(k)) {
37771                 continue;
37772             }
37773             
37774             if (k.indexOf('-') >= 0) {
37775                 var s = k.split('-');
37776                 for (var i = 0; i<s.length; i++) {
37777                     t += "<span class='visible-"+s[i]+"'>"+this.title[k]+"</span>";
37778                 }
37779             } else {
37780                 t += "<span class='visible-"+k+"'>"+this.title[k]+"</span>";
37781             }
37782         }
37783         return t;
37784     },
37785     
37786     /**
37787      * Set this panel's title
37788      * @param {String} title
37789      */
37790     setTitle : function(title){
37791         this.title = title;
37792         if(this.region){
37793             this.region.updatePanelTitle(this, title);
37794         }
37795     },
37796     
37797     /**
37798      * Returns true is this panel was configured to be closable
37799      * @return {Boolean} 
37800      */
37801     isClosable : function(){
37802         return this.closable;
37803     },
37804     
37805     beforeSlide : function(){
37806         this.el.clip();
37807         this.resizeEl.clip();
37808     },
37809     
37810     afterSlide : function(){
37811         this.el.unclip();
37812         this.resizeEl.unclip();
37813     },
37814     
37815     /**
37816      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
37817      *   Will fail silently if the {@link #setUrl} method has not been called.
37818      *   This does not activate the panel, just updates its content.
37819      */
37820     refresh : function(){
37821         if(this.refreshDelegate){
37822            this.loaded = false;
37823            this.refreshDelegate();
37824         }
37825     },
37826     
37827     /**
37828      * Destroys this panel
37829      */
37830     destroy : function(){
37831         this.el.removeAllListeners();
37832         var tempEl = document.createElement("span");
37833         tempEl.appendChild(this.el.dom);
37834         tempEl.innerHTML = "";
37835         this.el.remove();
37836         this.el = null;
37837     },
37838     
37839     /**
37840      * form - if the content panel contains a form - this is a reference to it.
37841      * @type {Roo.form.Form}
37842      */
37843     form : false,
37844     /**
37845      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
37846      *    This contains a reference to it.
37847      * @type {Roo.View}
37848      */
37849     view : false,
37850     
37851       /**
37852      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
37853      * <pre><code>
37854
37855 layout.addxtype({
37856        xtype : 'Form',
37857        items: [ .... ]
37858    }
37859 );
37860
37861 </code></pre>
37862      * @param {Object} cfg Xtype definition of item to add.
37863      */
37864     
37865     
37866     getChildContainer: function () {
37867         return this.getEl();
37868     }
37869     
37870     
37871     /*
37872         var  ret = new Roo.factory(cfg);
37873         return ret;
37874         
37875         
37876         // add form..
37877         if (cfg.xtype.match(/^Form$/)) {
37878             
37879             var el;
37880             //if (this.footer) {
37881             //    el = this.footer.container.insertSibling(false, 'before');
37882             //} else {
37883                 el = this.el.createChild();
37884             //}
37885
37886             this.form = new  Roo.form.Form(cfg);
37887             
37888             
37889             if ( this.form.allItems.length) {
37890                 this.form.render(el.dom);
37891             }
37892             return this.form;
37893         }
37894         // should only have one of theses..
37895         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
37896             // views.. should not be just added - used named prop 'view''
37897             
37898             cfg.el = this.el.appendChild(document.createElement("div"));
37899             // factory?
37900             
37901             var ret = new Roo.factory(cfg);
37902              
37903              ret.render && ret.render(false, ''); // render blank..
37904             this.view = ret;
37905             return ret;
37906         }
37907         return false;
37908     }
37909     \*/
37910 });
37911  
37912 /**
37913  * @class Roo.bootstrap.panel.Grid
37914  * @extends Roo.bootstrap.panel.Content
37915  * @constructor
37916  * Create a new GridPanel.
37917  * @cfg {Roo.bootstrap.Table} grid The grid for this panel
37918  * @param {Object} config A the config object
37919   
37920  */
37921
37922
37923
37924 Roo.bootstrap.panel.Grid = function(config)
37925 {
37926     
37927       
37928     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
37929         {tag: "div", cls: "roo-layout-grid-wrapper roo-layout-inactive-content"}, true);
37930
37931     config.el = this.wrapper;
37932     //this.el = this.wrapper;
37933     
37934       if (config.container) {
37935         // ctor'ed from a Border/panel.grid
37936         
37937         
37938         this.wrapper.setStyle("overflow", "hidden");
37939         this.wrapper.addClass('roo-grid-container');
37940
37941     }
37942     
37943     
37944     if(config.toolbar){
37945         var tool_el = this.wrapper.createChild();    
37946         this.toolbar = Roo.factory(config.toolbar);
37947         var ti = [];
37948         if (config.toolbar.items) {
37949             ti = config.toolbar.items ;
37950             delete config.toolbar.items ;
37951         }
37952         
37953         var nitems = [];
37954         this.toolbar.render(tool_el);
37955         for(var i =0;i < ti.length;i++) {
37956           //  Roo.log(['add child', items[i]]);
37957             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37958         }
37959         this.toolbar.items = nitems;
37960         
37961         delete config.toolbar;
37962     }
37963     
37964     Roo.bootstrap.panel.Grid.superclass.constructor.call(this, config);
37965     config.grid.scrollBody = true;;
37966     config.grid.monitorWindowResize = false; // turn off autosizing
37967     config.grid.autoHeight = false;
37968     config.grid.autoWidth = false;
37969     
37970     this.grid = new config.grid.xns[config.grid.xtype](config.grid);
37971     
37972     if (config.background) {
37973         // render grid on panel activation (if panel background)
37974         this.on('activate', function(gp) {
37975             if (!gp.grid.rendered) {
37976                 gp.grid.render(this.wrapper);
37977                 gp.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");   
37978             }
37979         });
37980             
37981     } else {
37982         this.grid.render(this.wrapper);
37983         this.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");               
37984
37985     }
37986     //this.wrapper.dom.appendChild(config.grid.getGridEl().dom);
37987     // ??? needed ??? config.el = this.wrapper;
37988     
37989     
37990     
37991   
37992     // xtype created footer. - not sure if will work as we normally have to render first..
37993     if (this.footer && !this.footer.el && this.footer.xtype) {
37994         
37995         var ctr = this.grid.getView().getFooterPanel(true);
37996         this.footer.dataSource = this.grid.dataSource;
37997         this.footer = Roo.factory(this.footer, Roo);
37998         this.footer.render(ctr);
37999         
38000     }
38001     
38002     
38003     
38004     
38005      
38006 };
38007
38008 Roo.extend(Roo.bootstrap.panel.Grid, Roo.bootstrap.panel.Content, {
38009     getId : function(){
38010         return this.grid.id;
38011     },
38012     
38013     /**
38014      * Returns the grid for this panel
38015      * @return {Roo.bootstrap.Table} 
38016      */
38017     getGrid : function(){
38018         return this.grid;    
38019     },
38020     
38021     setSize : function(width, height){
38022         if(!this.ignoreResize(width, height)){
38023             var grid = this.grid;
38024             var size = this.adjustForComponents(width, height);
38025             var gridel = grid.getGridEl();
38026             gridel.setSize(size.width, size.height);
38027             /*
38028             var thd = grid.getGridEl().select('thead',true).first();
38029             var tbd = grid.getGridEl().select('tbody', true).first();
38030             if (tbd) {
38031                 tbd.setSize(width, height - thd.getHeight());
38032             }
38033             */
38034             grid.autoSize();
38035         }
38036     },
38037      
38038     
38039     
38040     beforeSlide : function(){
38041         this.grid.getView().scroller.clip();
38042     },
38043     
38044     afterSlide : function(){
38045         this.grid.getView().scroller.unclip();
38046     },
38047     
38048     destroy : function(){
38049         this.grid.destroy();
38050         delete this.grid;
38051         Roo.bootstrap.panel.Grid.superclass.destroy.call(this); 
38052     }
38053 });
38054
38055 /**
38056  * @class Roo.bootstrap.panel.Nest
38057  * @extends Roo.bootstrap.panel.Content
38058  * @constructor
38059  * Create a new Panel, that can contain a layout.Border.
38060  * 
38061  * 
38062  * @param {Roo.BorderLayout} layout The layout for this panel
38063  * @param {String/Object} config A string to set only the title or a config object
38064  */
38065 Roo.bootstrap.panel.Nest = function(config)
38066 {
38067     // construct with only one argument..
38068     /* FIXME - implement nicer consturctors
38069     if (layout.layout) {
38070         config = layout;
38071         layout = config.layout;
38072         delete config.layout;
38073     }
38074     if (layout.xtype && !layout.getEl) {
38075         // then layout needs constructing..
38076         layout = Roo.factory(layout, Roo);
38077     }
38078     */
38079     
38080     config.el =  config.layout.getEl();
38081     
38082     Roo.bootstrap.panel.Nest.superclass.constructor.call(this, config);
38083     
38084     config.layout.monitorWindowResize = false; // turn off autosizing
38085     this.layout = config.layout;
38086     this.layout.getEl().addClass("roo-layout-nested-layout");
38087     this.layout.parent = this;
38088     
38089     
38090     
38091     
38092 };
38093
38094 Roo.extend(Roo.bootstrap.panel.Nest, Roo.bootstrap.panel.Content, {
38095
38096     setSize : function(width, height){
38097         if(!this.ignoreResize(width, height)){
38098             var size = this.adjustForComponents(width, height);
38099             var el = this.layout.getEl();
38100             if (size.height < 1) {
38101                 el.setWidth(size.width);   
38102             } else {
38103                 el.setSize(size.width, size.height);
38104             }
38105             var touch = el.dom.offsetWidth;
38106             this.layout.layout();
38107             // ie requires a double layout on the first pass
38108             if(Roo.isIE && !this.initialized){
38109                 this.initialized = true;
38110                 this.layout.layout();
38111             }
38112         }
38113     },
38114     
38115     // activate all subpanels if not currently active..
38116     
38117     setActiveState : function(active){
38118         this.active = active;
38119         this.setActiveClass(active);
38120         
38121         if(!active){
38122             this.fireEvent("deactivate", this);
38123             return;
38124         }
38125         
38126         this.fireEvent("activate", this);
38127         // not sure if this should happen before or after..
38128         if (!this.layout) {
38129             return; // should not happen..
38130         }
38131         var reg = false;
38132         for (var r in this.layout.regions) {
38133             reg = this.layout.getRegion(r);
38134             if (reg.getActivePanel()) {
38135                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
38136                 reg.setActivePanel(reg.getActivePanel());
38137                 continue;
38138             }
38139             if (!reg.panels.length) {
38140                 continue;
38141             }
38142             reg.showPanel(reg.getPanel(0));
38143         }
38144         
38145         
38146         
38147         
38148     },
38149     
38150     /**
38151      * Returns the nested BorderLayout for this panel
38152      * @return {Roo.BorderLayout} 
38153      */
38154     getLayout : function(){
38155         return this.layout;
38156     },
38157     
38158      /**
38159      * Adds a xtype elements to the layout of the nested panel
38160      * <pre><code>
38161
38162 panel.addxtype({
38163        xtype : 'ContentPanel',
38164        region: 'west',
38165        items: [ .... ]
38166    }
38167 );
38168
38169 panel.addxtype({
38170         xtype : 'NestedLayoutPanel',
38171         region: 'west',
38172         layout: {
38173            center: { },
38174            west: { }   
38175         },
38176         items : [ ... list of content panels or nested layout panels.. ]
38177    }
38178 );
38179 </code></pre>
38180      * @param {Object} cfg Xtype definition of item to add.
38181      */
38182     addxtype : function(cfg) {
38183         return this.layout.addxtype(cfg);
38184     
38185     }
38186 });/*
38187  * Based on:
38188  * Ext JS Library 1.1.1
38189  * Copyright(c) 2006-2007, Ext JS, LLC.
38190  *
38191  * Originally Released Under LGPL - original licence link has changed is not relivant.
38192  *
38193  * Fork - LGPL
38194  * <script type="text/javascript">
38195  */
38196 /**
38197  * @class Roo.TabPanel
38198  * @extends Roo.util.Observable
38199  * A lightweight tab container.
38200  * <br><br>
38201  * Usage:
38202  * <pre><code>
38203 // basic tabs 1, built from existing content
38204 var tabs = new Roo.TabPanel("tabs1");
38205 tabs.addTab("script", "View Script");
38206 tabs.addTab("markup", "View Markup");
38207 tabs.activate("script");
38208
38209 // more advanced tabs, built from javascript
38210 var jtabs = new Roo.TabPanel("jtabs");
38211 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
38212
38213 // set up the UpdateManager
38214 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
38215 var updater = tab2.getUpdateManager();
38216 updater.setDefaultUrl("ajax1.htm");
38217 tab2.on('activate', updater.refresh, updater, true);
38218
38219 // Use setUrl for Ajax loading
38220 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
38221 tab3.setUrl("ajax2.htm", null, true);
38222
38223 // Disabled tab
38224 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
38225 tab4.disable();
38226
38227 jtabs.activate("jtabs-1");
38228  * </code></pre>
38229  * @constructor
38230  * Create a new TabPanel.
38231  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
38232  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
38233  */
38234 Roo.bootstrap.panel.Tabs = function(config){
38235     /**
38236     * The container element for this TabPanel.
38237     * @type Roo.Element
38238     */
38239     this.el = Roo.get(config.el);
38240     delete config.el;
38241     if(config){
38242         if(typeof config == "boolean"){
38243             this.tabPosition = config ? "bottom" : "top";
38244         }else{
38245             Roo.apply(this, config);
38246         }
38247     }
38248     
38249     if(this.tabPosition == "bottom"){
38250         // if tabs are at the bottom = create the body first.
38251         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38252         this.el.addClass("roo-tabs-bottom");
38253     }
38254     // next create the tabs holders
38255     
38256     if (this.tabPosition == "west"){
38257         
38258         var reg = this.region; // fake it..
38259         while (reg) {
38260             if (!reg.mgr.parent) {
38261                 break;
38262             }
38263             reg = reg.mgr.parent.region;
38264         }
38265         Roo.log("got nest?");
38266         Roo.log(reg);
38267         if (reg.mgr.getRegion('west')) {
38268             var ctrdom = reg.mgr.getRegion('west').bodyEl.dom;
38269             this.stripWrap = Roo.get(this.createStrip(ctrdom ), true);
38270             this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38271             this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38272             this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38273         
38274             
38275         }
38276         
38277         
38278     } else {
38279      
38280         this.stripWrap = Roo.get(this.createStrip(this.el.dom), 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     if(Roo.isIE){
38288         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
38289     }
38290     
38291     // finally - if tabs are at the top, then create the body last..
38292     if(this.tabPosition != "bottom"){
38293         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
38294          * @type Roo.Element
38295          */
38296         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38297         this.el.addClass("roo-tabs-top");
38298     }
38299     this.items = [];
38300
38301     this.bodyEl.setStyle("position", "relative");
38302
38303     this.active = null;
38304     this.activateDelegate = this.activate.createDelegate(this);
38305
38306     this.addEvents({
38307         /**
38308          * @event tabchange
38309          * Fires when the active tab changes
38310          * @param {Roo.TabPanel} this
38311          * @param {Roo.TabPanelItem} activePanel The new active tab
38312          */
38313         "tabchange": true,
38314         /**
38315          * @event beforetabchange
38316          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
38317          * @param {Roo.TabPanel} this
38318          * @param {Object} e Set cancel to true on this object to cancel the tab change
38319          * @param {Roo.TabPanelItem} tab The tab being changed to
38320          */
38321         "beforetabchange" : true
38322     });
38323
38324     Roo.EventManager.onWindowResize(this.onResize, this);
38325     this.cpad = this.el.getPadding("lr");
38326     this.hiddenCount = 0;
38327
38328
38329     // toolbar on the tabbar support...
38330     if (this.toolbar) {
38331         alert("no toolbar support yet");
38332         this.toolbar  = false;
38333         /*
38334         var tcfg = this.toolbar;
38335         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
38336         this.toolbar = new Roo.Toolbar(tcfg);
38337         if (Roo.isSafari) {
38338             var tbl = tcfg.container.child('table', true);
38339             tbl.setAttribute('width', '100%');
38340         }
38341         */
38342         
38343     }
38344    
38345
38346
38347     Roo.bootstrap.panel.Tabs.superclass.constructor.call(this);
38348 };
38349
38350 Roo.extend(Roo.bootstrap.panel.Tabs, Roo.util.Observable, {
38351     /*
38352      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
38353      */
38354     tabPosition : "top",
38355     /*
38356      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
38357      */
38358     currentTabWidth : 0,
38359     /*
38360      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
38361      */
38362     minTabWidth : 40,
38363     /*
38364      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
38365      */
38366     maxTabWidth : 250,
38367     /*
38368      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
38369      */
38370     preferredTabWidth : 175,
38371     /*
38372      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
38373      */
38374     resizeTabs : false,
38375     /*
38376      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
38377      */
38378     monitorResize : true,
38379     /*
38380      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
38381      */
38382     toolbar : false,  // set by caller..
38383     
38384     region : false, /// set by caller
38385     
38386     disableTooltips : true, // not used yet...
38387
38388     /**
38389      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
38390      * @param {String} id The id of the div to use <b>or create</b>
38391      * @param {String} text The text for the tab
38392      * @param {String} content (optional) Content to put in the TabPanelItem body
38393      * @param {Boolean} closable (optional) True to create a close icon on the tab
38394      * @return {Roo.TabPanelItem} The created TabPanelItem
38395      */
38396     addTab : function(id, text, content, closable, tpl)
38397     {
38398         var item = new Roo.bootstrap.panel.TabItem({
38399             panel: this,
38400             id : id,
38401             text : text,
38402             closable : closable,
38403             tpl : tpl
38404         });
38405         this.addTabItem(item);
38406         if(content){
38407             item.setContent(content);
38408         }
38409         return item;
38410     },
38411
38412     /**
38413      * Returns the {@link Roo.TabPanelItem} with the specified id/index
38414      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
38415      * @return {Roo.TabPanelItem}
38416      */
38417     getTab : function(id){
38418         return this.items[id];
38419     },
38420
38421     /**
38422      * Hides the {@link Roo.TabPanelItem} with the specified id/index
38423      * @param {String/Number} id The id or index of the TabPanelItem to hide.
38424      */
38425     hideTab : function(id){
38426         var t = this.items[id];
38427         if(!t.isHidden()){
38428            t.setHidden(true);
38429            this.hiddenCount++;
38430            this.autoSizeTabs();
38431         }
38432     },
38433
38434     /**
38435      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
38436      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
38437      */
38438     unhideTab : function(id){
38439         var t = this.items[id];
38440         if(t.isHidden()){
38441            t.setHidden(false);
38442            this.hiddenCount--;
38443            this.autoSizeTabs();
38444         }
38445     },
38446
38447     /**
38448      * Adds an existing {@link Roo.TabPanelItem}.
38449      * @param {Roo.TabPanelItem} item The TabPanelItem to add
38450      */
38451     addTabItem : function(item)
38452     {
38453         this.items[item.id] = item;
38454         this.items.push(item);
38455         this.autoSizeTabs();
38456       //  if(this.resizeTabs){
38457     //       item.setWidth(this.currentTabWidth || this.preferredTabWidth);
38458   //         this.autoSizeTabs();
38459 //        }else{
38460 //            item.autoSize();
38461        // }
38462     },
38463
38464     /**
38465      * Removes a {@link Roo.TabPanelItem}.
38466      * @param {String/Number} id The id or index of the TabPanelItem to remove.
38467      */
38468     removeTab : function(id){
38469         var items = this.items;
38470         var tab = items[id];
38471         if(!tab) { return; }
38472         var index = items.indexOf(tab);
38473         if(this.active == tab && items.length > 1){
38474             var newTab = this.getNextAvailable(index);
38475             if(newTab) {
38476                 newTab.activate();
38477             }
38478         }
38479         this.stripEl.dom.removeChild(tab.pnode.dom);
38480         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
38481             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
38482         }
38483         items.splice(index, 1);
38484         delete this.items[tab.id];
38485         tab.fireEvent("close", tab);
38486         tab.purgeListeners();
38487         this.autoSizeTabs();
38488     },
38489
38490     getNextAvailable : function(start){
38491         var items = this.items;
38492         var index = start;
38493         // look for a next tab that will slide over to
38494         // replace the one being removed
38495         while(index < items.length){
38496             var item = items[++index];
38497             if(item && !item.isHidden()){
38498                 return item;
38499             }
38500         }
38501         // if one isn't found select the previous tab (on the left)
38502         index = start;
38503         while(index >= 0){
38504             var item = items[--index];
38505             if(item && !item.isHidden()){
38506                 return item;
38507             }
38508         }
38509         return null;
38510     },
38511
38512     /**
38513      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
38514      * @param {String/Number} id The id or index of the TabPanelItem to disable.
38515      */
38516     disableTab : function(id){
38517         var tab = this.items[id];
38518         if(tab && this.active != tab){
38519             tab.disable();
38520         }
38521     },
38522
38523     /**
38524      * Enables a {@link Roo.TabPanelItem} that is disabled.
38525      * @param {String/Number} id The id or index of the TabPanelItem to enable.
38526      */
38527     enableTab : function(id){
38528         var tab = this.items[id];
38529         tab.enable();
38530     },
38531
38532     /**
38533      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
38534      * @param {String/Number} id The id or index of the TabPanelItem to activate.
38535      * @return {Roo.TabPanelItem} The TabPanelItem.
38536      */
38537     activate : function(id)
38538     {
38539         //Roo.log('activite:'  + id);
38540         
38541         var tab = this.items[id];
38542         if(!tab){
38543             return null;
38544         }
38545         if(tab == this.active || tab.disabled){
38546             return tab;
38547         }
38548         var e = {};
38549         this.fireEvent("beforetabchange", this, e, tab);
38550         if(e.cancel !== true && !tab.disabled){
38551             if(this.active){
38552                 this.active.hide();
38553             }
38554             this.active = this.items[id];
38555             this.active.show();
38556             this.fireEvent("tabchange", this, this.active);
38557         }
38558         return tab;
38559     },
38560
38561     /**
38562      * Gets the active {@link Roo.TabPanelItem}.
38563      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
38564      */
38565     getActiveTab : function(){
38566         return this.active;
38567     },
38568
38569     /**
38570      * Updates the tab body element to fit the height of the container element
38571      * for overflow scrolling
38572      * @param {Number} targetHeight (optional) Override the starting height from the elements height
38573      */
38574     syncHeight : function(targetHeight){
38575         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
38576         var bm = this.bodyEl.getMargins();
38577         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
38578         this.bodyEl.setHeight(newHeight);
38579         return newHeight;
38580     },
38581
38582     onResize : function(){
38583         if(this.monitorResize){
38584             this.autoSizeTabs();
38585         }
38586     },
38587
38588     /**
38589      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
38590      */
38591     beginUpdate : function(){
38592         this.updating = true;
38593     },
38594
38595     /**
38596      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
38597      */
38598     endUpdate : function(){
38599         this.updating = false;
38600         this.autoSizeTabs();
38601     },
38602
38603     /**
38604      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
38605      */
38606     autoSizeTabs : function()
38607     {
38608         var count = this.items.length;
38609         var vcount = count - this.hiddenCount;
38610         
38611         if (vcount < 2) {
38612             this.stripEl.hide();
38613         } else {
38614             this.stripEl.show();
38615         }
38616         
38617         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
38618             return;
38619         }
38620         
38621         
38622         var w = Math.max(this.el.getWidth() - this.cpad, 10);
38623         var availWidth = Math.floor(w / vcount);
38624         var b = this.stripBody;
38625         if(b.getWidth() > w){
38626             var tabs = this.items;
38627             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
38628             if(availWidth < this.minTabWidth){
38629                 /*if(!this.sleft){    // incomplete scrolling code
38630                     this.createScrollButtons();
38631                 }
38632                 this.showScroll();
38633                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
38634             }
38635         }else{
38636             if(this.currentTabWidth < this.preferredTabWidth){
38637                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
38638             }
38639         }
38640     },
38641
38642     /**
38643      * Returns the number of tabs in this TabPanel.
38644      * @return {Number}
38645      */
38646      getCount : function(){
38647          return this.items.length;
38648      },
38649
38650     /**
38651      * Resizes all the tabs to the passed width
38652      * @param {Number} The new width
38653      */
38654     setTabWidth : function(width){
38655         this.currentTabWidth = width;
38656         for(var i = 0, len = this.items.length; i < len; i++) {
38657                 if(!this.items[i].isHidden()) {
38658                 this.items[i].setWidth(width);
38659             }
38660         }
38661     },
38662
38663     /**
38664      * Destroys this TabPanel
38665      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
38666      */
38667     destroy : function(removeEl){
38668         Roo.EventManager.removeResizeListener(this.onResize, this);
38669         for(var i = 0, len = this.items.length; i < len; i++){
38670             this.items[i].purgeListeners();
38671         }
38672         if(removeEl === true){
38673             this.el.update("");
38674             this.el.remove();
38675         }
38676     },
38677     
38678     createStrip : function(container)
38679     {
38680         var strip = document.createElement("nav");
38681         strip.className = Roo.bootstrap.version == 4 ?
38682             "navbar-light bg-light" : 
38683             "navbar navbar-default"; //"x-tabs-wrap";
38684         container.appendChild(strip);
38685         return strip;
38686     },
38687     
38688     createStripList : function(strip)
38689     {
38690         // div wrapper for retard IE
38691         // returns the "tr" element.
38692         strip.innerHTML = '<ul class="nav nav-tabs" role="tablist"></ul>';
38693         //'<div class="x-tabs-strip-wrap">'+
38694           //  '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
38695           //  '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
38696         return strip.firstChild; //.firstChild.firstChild.firstChild;
38697     },
38698     createBody : function(container)
38699     {
38700         var body = document.createElement("div");
38701         Roo.id(body, "tab-body");
38702         //Roo.fly(body).addClass("x-tabs-body");
38703         Roo.fly(body).addClass("tab-content");
38704         container.appendChild(body);
38705         return body;
38706     },
38707     createItemBody :function(bodyEl, id){
38708         var body = Roo.getDom(id);
38709         if(!body){
38710             body = document.createElement("div");
38711             body.id = id;
38712         }
38713         //Roo.fly(body).addClass("x-tabs-item-body");
38714         Roo.fly(body).addClass("tab-pane");
38715          bodyEl.insertBefore(body, bodyEl.firstChild);
38716         return body;
38717     },
38718     /** @private */
38719     createStripElements :  function(stripEl, text, closable, tpl)
38720     {
38721         var td = document.createElement("li"); // was td..
38722         td.className = 'nav-item';
38723         
38724         //stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
38725         
38726         
38727         stripEl.appendChild(td);
38728         /*if(closable){
38729             td.className = "x-tabs-closable";
38730             if(!this.closeTpl){
38731                 this.closeTpl = new Roo.Template(
38732                    '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38733                    '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
38734                    '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
38735                 );
38736             }
38737             var el = this.closeTpl.overwrite(td, {"text": text});
38738             var close = el.getElementsByTagName("div")[0];
38739             var inner = el.getElementsByTagName("em")[0];
38740             return {"el": el, "close": close, "inner": inner};
38741         } else {
38742         */
38743         // not sure what this is..
38744 //            if(!this.tabTpl){
38745                 //this.tabTpl = new Roo.Template(
38746                 //   '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38747                 //   '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
38748                 //);
38749 //                this.tabTpl = new Roo.Template(
38750 //                   '<a href="#">' +
38751 //                   '<span unselectable="on"' +
38752 //                            (this.disableTooltips ? '' : ' title="{text}"') +
38753 //                            ' >{text}</span></a>'
38754 //                );
38755 //                
38756 //            }
38757
38758
38759             var template = tpl || this.tabTpl || false;
38760             
38761             if(!template){
38762                 template =  new Roo.Template(
38763                         Roo.bootstrap.version == 4 ? 
38764                             (
38765                                 '<a class="nav-link" href="#" unselectable="on"' +
38766                                      (this.disableTooltips ? '' : ' title="{text}"') +
38767                                      ' >{text}</a>'
38768                             ) : (
38769                                 '<a class="nav-link" href="#">' +
38770                                 '<span unselectable="on"' +
38771                                          (this.disableTooltips ? '' : ' title="{text}"') +
38772                                     ' >{text}</span></a>'
38773                             )
38774                 );
38775             }
38776             
38777             switch (typeof(template)) {
38778                 case 'object' :
38779                     break;
38780                 case 'string' :
38781                     template = new Roo.Template(template);
38782                     break;
38783                 default :
38784                     break;
38785             }
38786             
38787             var el = template.overwrite(td, {"text": text});
38788             
38789             var inner = el.getElementsByTagName("span")[0];
38790             
38791             return {"el": el, "inner": inner};
38792             
38793     }
38794         
38795     
38796 });
38797
38798 /**
38799  * @class Roo.TabPanelItem
38800  * @extends Roo.util.Observable
38801  * Represents an individual item (tab plus body) in a TabPanel.
38802  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
38803  * @param {String} id The id of this TabPanelItem
38804  * @param {String} text The text for the tab of this TabPanelItem
38805  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
38806  */
38807 Roo.bootstrap.panel.TabItem = function(config){
38808     /**
38809      * The {@link Roo.TabPanel} this TabPanelItem belongs to
38810      * @type Roo.TabPanel
38811      */
38812     this.tabPanel = config.panel;
38813     /**
38814      * The id for this TabPanelItem
38815      * @type String
38816      */
38817     this.id = config.id;
38818     /** @private */
38819     this.disabled = false;
38820     /** @private */
38821     this.text = config.text;
38822     /** @private */
38823     this.loaded = false;
38824     this.closable = config.closable;
38825
38826     /**
38827      * The body element for this TabPanelItem.
38828      * @type Roo.Element
38829      */
38830     this.bodyEl = Roo.get(this.tabPanel.createItemBody(this.tabPanel.bodyEl.dom, config.id));
38831     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
38832     this.bodyEl.setStyle("display", "block");
38833     this.bodyEl.setStyle("zoom", "1");
38834     //this.hideAction();
38835
38836     var els = this.tabPanel.createStripElements(this.tabPanel.stripEl.dom, config.text, config.closable, config.tpl);
38837     /** @private */
38838     this.el = Roo.get(els.el);
38839     this.inner = Roo.get(els.inner, true);
38840      this.textEl = Roo.bootstrap.version == 4 ?
38841         this.el : Roo.get(this.el.dom.firstChild, true);
38842
38843     this.pnode = this.linode = Roo.get(els.el.parentNode, true);
38844     this.status_node = Roo.bootstrap.version == 4 ? this.el : this.linode;
38845
38846     
38847 //    this.el.on("mousedown", this.onTabMouseDown, this);
38848     this.el.on("click", this.onTabClick, this);
38849     /** @private */
38850     if(config.closable){
38851         var c = Roo.get(els.close, true);
38852         c.dom.title = this.closeText;
38853         c.addClassOnOver("close-over");
38854         c.on("click", this.closeClick, this);
38855      }
38856
38857     this.addEvents({
38858          /**
38859          * @event activate
38860          * Fires when this tab becomes the active tab.
38861          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38862          * @param {Roo.TabPanelItem} this
38863          */
38864         "activate": true,
38865         /**
38866          * @event beforeclose
38867          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
38868          * @param {Roo.TabPanelItem} this
38869          * @param {Object} e Set cancel to true on this object to cancel the close.
38870          */
38871         "beforeclose": true,
38872         /**
38873          * @event close
38874          * Fires when this tab is closed.
38875          * @param {Roo.TabPanelItem} this
38876          */
38877          "close": true,
38878         /**
38879          * @event deactivate
38880          * Fires when this tab is no longer the active tab.
38881          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38882          * @param {Roo.TabPanelItem} this
38883          */
38884          "deactivate" : true
38885     });
38886     this.hidden = false;
38887
38888     Roo.bootstrap.panel.TabItem.superclass.constructor.call(this);
38889 };
38890
38891 Roo.extend(Roo.bootstrap.panel.TabItem, Roo.util.Observable,
38892            {
38893     purgeListeners : function(){
38894        Roo.util.Observable.prototype.purgeListeners.call(this);
38895        this.el.removeAllListeners();
38896     },
38897     /**
38898      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
38899      */
38900     show : function(){
38901         this.status_node.addClass("active");
38902         this.showAction();
38903         if(Roo.isOpera){
38904             this.tabPanel.stripWrap.repaint();
38905         }
38906         this.fireEvent("activate", this.tabPanel, this);
38907     },
38908
38909     /**
38910      * Returns true if this tab is the active tab.
38911      * @return {Boolean}
38912      */
38913     isActive : function(){
38914         return this.tabPanel.getActiveTab() == this;
38915     },
38916
38917     /**
38918      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
38919      */
38920     hide : function(){
38921         this.status_node.removeClass("active");
38922         this.hideAction();
38923         this.fireEvent("deactivate", this.tabPanel, this);
38924     },
38925
38926     hideAction : function(){
38927         this.bodyEl.hide();
38928         this.bodyEl.setStyle("position", "absolute");
38929         this.bodyEl.setLeft("-20000px");
38930         this.bodyEl.setTop("-20000px");
38931     },
38932
38933     showAction : function(){
38934         this.bodyEl.setStyle("position", "relative");
38935         this.bodyEl.setTop("");
38936         this.bodyEl.setLeft("");
38937         this.bodyEl.show();
38938     },
38939
38940     /**
38941      * Set the tooltip for the tab.
38942      * @param {String} tooltip The tab's tooltip
38943      */
38944     setTooltip : function(text){
38945         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
38946             this.textEl.dom.qtip = text;
38947             this.textEl.dom.removeAttribute('title');
38948         }else{
38949             this.textEl.dom.title = text;
38950         }
38951     },
38952
38953     onTabClick : function(e){
38954         e.preventDefault();
38955         this.tabPanel.activate(this.id);
38956     },
38957
38958     onTabMouseDown : function(e){
38959         e.preventDefault();
38960         this.tabPanel.activate(this.id);
38961     },
38962 /*
38963     getWidth : function(){
38964         return this.inner.getWidth();
38965     },
38966
38967     setWidth : function(width){
38968         var iwidth = width - this.linode.getPadding("lr");
38969         this.inner.setWidth(iwidth);
38970         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
38971         this.linode.setWidth(width);
38972     },
38973 */
38974     /**
38975      * Show or hide the tab
38976      * @param {Boolean} hidden True to hide or false to show.
38977      */
38978     setHidden : function(hidden){
38979         this.hidden = hidden;
38980         this.linode.setStyle("display", hidden ? "none" : "");
38981     },
38982
38983     /**
38984      * Returns true if this tab is "hidden"
38985      * @return {Boolean}
38986      */
38987     isHidden : function(){
38988         return this.hidden;
38989     },
38990
38991     /**
38992      * Returns the text for this tab
38993      * @return {String}
38994      */
38995     getText : function(){
38996         return this.text;
38997     },
38998     /*
38999     autoSize : function(){
39000         //this.el.beginMeasure();
39001         this.textEl.setWidth(1);
39002         /*
39003          *  #2804 [new] Tabs in Roojs
39004          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
39005          */
39006         //this.setWidth(this.textEl.dom.scrollWidth+this.linode.getPadding("lr")+this.inner.getPadding("lr") + 2);
39007         //this.el.endMeasure();
39008     //},
39009
39010     /**
39011      * Sets the text for the tab (Note: this also sets the tooltip text)
39012      * @param {String} text The tab's text and tooltip
39013      */
39014     setText : function(text){
39015         this.text = text;
39016         this.textEl.update(text);
39017         this.setTooltip(text);
39018         //if(!this.tabPanel.resizeTabs){
39019         //    this.autoSize();
39020         //}
39021     },
39022     /**
39023      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
39024      */
39025     activate : function(){
39026         this.tabPanel.activate(this.id);
39027     },
39028
39029     /**
39030      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
39031      */
39032     disable : function(){
39033         if(this.tabPanel.active != this){
39034             this.disabled = true;
39035             this.status_node.addClass("disabled");
39036         }
39037     },
39038
39039     /**
39040      * Enables this TabPanelItem if it was previously disabled.
39041      */
39042     enable : function(){
39043         this.disabled = false;
39044         this.status_node.removeClass("disabled");
39045     },
39046
39047     /**
39048      * Sets the content for this TabPanelItem.
39049      * @param {String} content The content
39050      * @param {Boolean} loadScripts true to look for and load scripts
39051      */
39052     setContent : function(content, loadScripts){
39053         this.bodyEl.update(content, loadScripts);
39054     },
39055
39056     /**
39057      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
39058      * @return {Roo.UpdateManager} The UpdateManager
39059      */
39060     getUpdateManager : function(){
39061         return this.bodyEl.getUpdateManager();
39062     },
39063
39064     /**
39065      * Set a URL to be used to load the content for this TabPanelItem.
39066      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
39067      * @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)
39068      * @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)
39069      * @return {Roo.UpdateManager} The UpdateManager
39070      */
39071     setUrl : function(url, params, loadOnce){
39072         if(this.refreshDelegate){
39073             this.un('activate', this.refreshDelegate);
39074         }
39075         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
39076         this.on("activate", this.refreshDelegate);
39077         return this.bodyEl.getUpdateManager();
39078     },
39079
39080     /** @private */
39081     _handleRefresh : function(url, params, loadOnce){
39082         if(!loadOnce || !this.loaded){
39083             var updater = this.bodyEl.getUpdateManager();
39084             updater.update(url, params, this._setLoaded.createDelegate(this));
39085         }
39086     },
39087
39088     /**
39089      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
39090      *   Will fail silently if the setUrl method has not been called.
39091      *   This does not activate the panel, just updates its content.
39092      */
39093     refresh : function(){
39094         if(this.refreshDelegate){
39095            this.loaded = false;
39096            this.refreshDelegate();
39097         }
39098     },
39099
39100     /** @private */
39101     _setLoaded : function(){
39102         this.loaded = true;
39103     },
39104
39105     /** @private */
39106     closeClick : function(e){
39107         var o = {};
39108         e.stopEvent();
39109         this.fireEvent("beforeclose", this, o);
39110         if(o.cancel !== true){
39111             this.tabPanel.removeTab(this.id);
39112         }
39113     },
39114     /**
39115      * The text displayed in the tooltip for the close icon.
39116      * @type String
39117      */
39118     closeText : "Close this tab"
39119 });
39120 /**
39121 *    This script refer to:
39122 *    Title: International Telephone Input
39123 *    Author: Jack O'Connor
39124 *    Code version:  v12.1.12
39125 *    Availability: https://github.com/jackocnr/intl-tel-input.git
39126 **/
39127
39128 Roo.bootstrap.PhoneInputData = function() {
39129     var d = [
39130       [
39131         "Afghanistan (‫افغانستان‬‎)",
39132         "af",
39133         "93"
39134       ],
39135       [
39136         "Albania (Shqipëri)",
39137         "al",
39138         "355"
39139       ],
39140       [
39141         "Algeria (‫الجزائر‬‎)",
39142         "dz",
39143         "213"
39144       ],
39145       [
39146         "American Samoa",
39147         "as",
39148         "1684"
39149       ],
39150       [
39151         "Andorra",
39152         "ad",
39153         "376"
39154       ],
39155       [
39156         "Angola",
39157         "ao",
39158         "244"
39159       ],
39160       [
39161         "Anguilla",
39162         "ai",
39163         "1264"
39164       ],
39165       [
39166         "Antigua and Barbuda",
39167         "ag",
39168         "1268"
39169       ],
39170       [
39171         "Argentina",
39172         "ar",
39173         "54"
39174       ],
39175       [
39176         "Armenia (Հայաստան)",
39177         "am",
39178         "374"
39179       ],
39180       [
39181         "Aruba",
39182         "aw",
39183         "297"
39184       ],
39185       [
39186         "Australia",
39187         "au",
39188         "61",
39189         0
39190       ],
39191       [
39192         "Austria (Österreich)",
39193         "at",
39194         "43"
39195       ],
39196       [
39197         "Azerbaijan (Azərbaycan)",
39198         "az",
39199         "994"
39200       ],
39201       [
39202         "Bahamas",
39203         "bs",
39204         "1242"
39205       ],
39206       [
39207         "Bahrain (‫البحرين‬‎)",
39208         "bh",
39209         "973"
39210       ],
39211       [
39212         "Bangladesh (বাংলাদেশ)",
39213         "bd",
39214         "880"
39215       ],
39216       [
39217         "Barbados",
39218         "bb",
39219         "1246"
39220       ],
39221       [
39222         "Belarus (Беларусь)",
39223         "by",
39224         "375"
39225       ],
39226       [
39227         "Belgium (België)",
39228         "be",
39229         "32"
39230       ],
39231       [
39232         "Belize",
39233         "bz",
39234         "501"
39235       ],
39236       [
39237         "Benin (Bénin)",
39238         "bj",
39239         "229"
39240       ],
39241       [
39242         "Bermuda",
39243         "bm",
39244         "1441"
39245       ],
39246       [
39247         "Bhutan (འབྲུག)",
39248         "bt",
39249         "975"
39250       ],
39251       [
39252         "Bolivia",
39253         "bo",
39254         "591"
39255       ],
39256       [
39257         "Bosnia and Herzegovina (Босна и Херцеговина)",
39258         "ba",
39259         "387"
39260       ],
39261       [
39262         "Botswana",
39263         "bw",
39264         "267"
39265       ],
39266       [
39267         "Brazil (Brasil)",
39268         "br",
39269         "55"
39270       ],
39271       [
39272         "British Indian Ocean Territory",
39273         "io",
39274         "246"
39275       ],
39276       [
39277         "British Virgin Islands",
39278         "vg",
39279         "1284"
39280       ],
39281       [
39282         "Brunei",
39283         "bn",
39284         "673"
39285       ],
39286       [
39287         "Bulgaria (България)",
39288         "bg",
39289         "359"
39290       ],
39291       [
39292         "Burkina Faso",
39293         "bf",
39294         "226"
39295       ],
39296       [
39297         "Burundi (Uburundi)",
39298         "bi",
39299         "257"
39300       ],
39301       [
39302         "Cambodia (កម្ពុជា)",
39303         "kh",
39304         "855"
39305       ],
39306       [
39307         "Cameroon (Cameroun)",
39308         "cm",
39309         "237"
39310       ],
39311       [
39312         "Canada",
39313         "ca",
39314         "1",
39315         1,
39316         ["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"]
39317       ],
39318       [
39319         "Cape Verde (Kabu Verdi)",
39320         "cv",
39321         "238"
39322       ],
39323       [
39324         "Caribbean Netherlands",
39325         "bq",
39326         "599",
39327         1
39328       ],
39329       [
39330         "Cayman Islands",
39331         "ky",
39332         "1345"
39333       ],
39334       [
39335         "Central African Republic (République centrafricaine)",
39336         "cf",
39337         "236"
39338       ],
39339       [
39340         "Chad (Tchad)",
39341         "td",
39342         "235"
39343       ],
39344       [
39345         "Chile",
39346         "cl",
39347         "56"
39348       ],
39349       [
39350         "China (中国)",
39351         "cn",
39352         "86"
39353       ],
39354       [
39355         "Christmas Island",
39356         "cx",
39357         "61",
39358         2
39359       ],
39360       [
39361         "Cocos (Keeling) Islands",
39362         "cc",
39363         "61",
39364         1
39365       ],
39366       [
39367         "Colombia",
39368         "co",
39369         "57"
39370       ],
39371       [
39372         "Comoros (‫جزر القمر‬‎)",
39373         "km",
39374         "269"
39375       ],
39376       [
39377         "Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)",
39378         "cd",
39379         "243"
39380       ],
39381       [
39382         "Congo (Republic) (Congo-Brazzaville)",
39383         "cg",
39384         "242"
39385       ],
39386       [
39387         "Cook Islands",
39388         "ck",
39389         "682"
39390       ],
39391       [
39392         "Costa Rica",
39393         "cr",
39394         "506"
39395       ],
39396       [
39397         "Côte d’Ivoire",
39398         "ci",
39399         "225"
39400       ],
39401       [
39402         "Croatia (Hrvatska)",
39403         "hr",
39404         "385"
39405       ],
39406       [
39407         "Cuba",
39408         "cu",
39409         "53"
39410       ],
39411       [
39412         "Curaçao",
39413         "cw",
39414         "599",
39415         0
39416       ],
39417       [
39418         "Cyprus (Κύπρος)",
39419         "cy",
39420         "357"
39421       ],
39422       [
39423         "Czech Republic (Česká republika)",
39424         "cz",
39425         "420"
39426       ],
39427       [
39428         "Denmark (Danmark)",
39429         "dk",
39430         "45"
39431       ],
39432       [
39433         "Djibouti",
39434         "dj",
39435         "253"
39436       ],
39437       [
39438         "Dominica",
39439         "dm",
39440         "1767"
39441       ],
39442       [
39443         "Dominican Republic (República Dominicana)",
39444         "do",
39445         "1",
39446         2,
39447         ["809", "829", "849"]
39448       ],
39449       [
39450         "Ecuador",
39451         "ec",
39452         "593"
39453       ],
39454       [
39455         "Egypt (‫مصر‬‎)",
39456         "eg",
39457         "20"
39458       ],
39459       [
39460         "El Salvador",
39461         "sv",
39462         "503"
39463       ],
39464       [
39465         "Equatorial Guinea (Guinea Ecuatorial)",
39466         "gq",
39467         "240"
39468       ],
39469       [
39470         "Eritrea",
39471         "er",
39472         "291"
39473       ],
39474       [
39475         "Estonia (Eesti)",
39476         "ee",
39477         "372"
39478       ],
39479       [
39480         "Ethiopia",
39481         "et",
39482         "251"
39483       ],
39484       [
39485         "Falkland Islands (Islas Malvinas)",
39486         "fk",
39487         "500"
39488       ],
39489       [
39490         "Faroe Islands (Føroyar)",
39491         "fo",
39492         "298"
39493       ],
39494       [
39495         "Fiji",
39496         "fj",
39497         "679"
39498       ],
39499       [
39500         "Finland (Suomi)",
39501         "fi",
39502         "358",
39503         0
39504       ],
39505       [
39506         "France",
39507         "fr",
39508         "33"
39509       ],
39510       [
39511         "French Guiana (Guyane française)",
39512         "gf",
39513         "594"
39514       ],
39515       [
39516         "French Polynesia (Polynésie française)",
39517         "pf",
39518         "689"
39519       ],
39520       [
39521         "Gabon",
39522         "ga",
39523         "241"
39524       ],
39525       [
39526         "Gambia",
39527         "gm",
39528         "220"
39529       ],
39530       [
39531         "Georgia (საქართველო)",
39532         "ge",
39533         "995"
39534       ],
39535       [
39536         "Germany (Deutschland)",
39537         "de",
39538         "49"
39539       ],
39540       [
39541         "Ghana (Gaana)",
39542         "gh",
39543         "233"
39544       ],
39545       [
39546         "Gibraltar",
39547         "gi",
39548         "350"
39549       ],
39550       [
39551         "Greece (Ελλάδα)",
39552         "gr",
39553         "30"
39554       ],
39555       [
39556         "Greenland (Kalaallit Nunaat)",
39557         "gl",
39558         "299"
39559       ],
39560       [
39561         "Grenada",
39562         "gd",
39563         "1473"
39564       ],
39565       [
39566         "Guadeloupe",
39567         "gp",
39568         "590",
39569         0
39570       ],
39571       [
39572         "Guam",
39573         "gu",
39574         "1671"
39575       ],
39576       [
39577         "Guatemala",
39578         "gt",
39579         "502"
39580       ],
39581       [
39582         "Guernsey",
39583         "gg",
39584         "44",
39585         1
39586       ],
39587       [
39588         "Guinea (Guinée)",
39589         "gn",
39590         "224"
39591       ],
39592       [
39593         "Guinea-Bissau (Guiné Bissau)",
39594         "gw",
39595         "245"
39596       ],
39597       [
39598         "Guyana",
39599         "gy",
39600         "592"
39601       ],
39602       [
39603         "Haiti",
39604         "ht",
39605         "509"
39606       ],
39607       [
39608         "Honduras",
39609         "hn",
39610         "504"
39611       ],
39612       [
39613         "Hong Kong (香港)",
39614         "hk",
39615         "852"
39616       ],
39617       [
39618         "Hungary (Magyarország)",
39619         "hu",
39620         "36"
39621       ],
39622       [
39623         "Iceland (Ísland)",
39624         "is",
39625         "354"
39626       ],
39627       [
39628         "India (भारत)",
39629         "in",
39630         "91"
39631       ],
39632       [
39633         "Indonesia",
39634         "id",
39635         "62"
39636       ],
39637       [
39638         "Iran (‫ایران‬‎)",
39639         "ir",
39640         "98"
39641       ],
39642       [
39643         "Iraq (‫العراق‬‎)",
39644         "iq",
39645         "964"
39646       ],
39647       [
39648         "Ireland",
39649         "ie",
39650         "353"
39651       ],
39652       [
39653         "Isle of Man",
39654         "im",
39655         "44",
39656         2
39657       ],
39658       [
39659         "Israel (‫ישראל‬‎)",
39660         "il",
39661         "972"
39662       ],
39663       [
39664         "Italy (Italia)",
39665         "it",
39666         "39",
39667         0
39668       ],
39669       [
39670         "Jamaica",
39671         "jm",
39672         "1876"
39673       ],
39674       [
39675         "Japan (日本)",
39676         "jp",
39677         "81"
39678       ],
39679       [
39680         "Jersey",
39681         "je",
39682         "44",
39683         3
39684       ],
39685       [
39686         "Jordan (‫الأردن‬‎)",
39687         "jo",
39688         "962"
39689       ],
39690       [
39691         "Kazakhstan (Казахстан)",
39692         "kz",
39693         "7",
39694         1
39695       ],
39696       [
39697         "Kenya",
39698         "ke",
39699         "254"
39700       ],
39701       [
39702         "Kiribati",
39703         "ki",
39704         "686"
39705       ],
39706       [
39707         "Kosovo",
39708         "xk",
39709         "383"
39710       ],
39711       [
39712         "Kuwait (‫الكويت‬‎)",
39713         "kw",
39714         "965"
39715       ],
39716       [
39717         "Kyrgyzstan (Кыргызстан)",
39718         "kg",
39719         "996"
39720       ],
39721       [
39722         "Laos (ລາວ)",
39723         "la",
39724         "856"
39725       ],
39726       [
39727         "Latvia (Latvija)",
39728         "lv",
39729         "371"
39730       ],
39731       [
39732         "Lebanon (‫لبنان‬‎)",
39733         "lb",
39734         "961"
39735       ],
39736       [
39737         "Lesotho",
39738         "ls",
39739         "266"
39740       ],
39741       [
39742         "Liberia",
39743         "lr",
39744         "231"
39745       ],
39746       [
39747         "Libya (‫ليبيا‬‎)",
39748         "ly",
39749         "218"
39750       ],
39751       [
39752         "Liechtenstein",
39753         "li",
39754         "423"
39755       ],
39756       [
39757         "Lithuania (Lietuva)",
39758         "lt",
39759         "370"
39760       ],
39761       [
39762         "Luxembourg",
39763         "lu",
39764         "352"
39765       ],
39766       [
39767         "Macau (澳門)",
39768         "mo",
39769         "853"
39770       ],
39771       [
39772         "Macedonia (FYROM) (Македонија)",
39773         "mk",
39774         "389"
39775       ],
39776       [
39777         "Madagascar (Madagasikara)",
39778         "mg",
39779         "261"
39780       ],
39781       [
39782         "Malawi",
39783         "mw",
39784         "265"
39785       ],
39786       [
39787         "Malaysia",
39788         "my",
39789         "60"
39790       ],
39791       [
39792         "Maldives",
39793         "mv",
39794         "960"
39795       ],
39796       [
39797         "Mali",
39798         "ml",
39799         "223"
39800       ],
39801       [
39802         "Malta",
39803         "mt",
39804         "356"
39805       ],
39806       [
39807         "Marshall Islands",
39808         "mh",
39809         "692"
39810       ],
39811       [
39812         "Martinique",
39813         "mq",
39814         "596"
39815       ],
39816       [
39817         "Mauritania (‫موريتانيا‬‎)",
39818         "mr",
39819         "222"
39820       ],
39821       [
39822         "Mauritius (Moris)",
39823         "mu",
39824         "230"
39825       ],
39826       [
39827         "Mayotte",
39828         "yt",
39829         "262",
39830         1
39831       ],
39832       [
39833         "Mexico (México)",
39834         "mx",
39835         "52"
39836       ],
39837       [
39838         "Micronesia",
39839         "fm",
39840         "691"
39841       ],
39842       [
39843         "Moldova (Republica Moldova)",
39844         "md",
39845         "373"
39846       ],
39847       [
39848         "Monaco",
39849         "mc",
39850         "377"
39851       ],
39852       [
39853         "Mongolia (Монгол)",
39854         "mn",
39855         "976"
39856       ],
39857       [
39858         "Montenegro (Crna Gora)",
39859         "me",
39860         "382"
39861       ],
39862       [
39863         "Montserrat",
39864         "ms",
39865         "1664"
39866       ],
39867       [
39868         "Morocco (‫المغرب‬‎)",
39869         "ma",
39870         "212",
39871         0
39872       ],
39873       [
39874         "Mozambique (Moçambique)",
39875         "mz",
39876         "258"
39877       ],
39878       [
39879         "Myanmar (Burma) (မြန်မာ)",
39880         "mm",
39881         "95"
39882       ],
39883       [
39884         "Namibia (Namibië)",
39885         "na",
39886         "264"
39887       ],
39888       [
39889         "Nauru",
39890         "nr",
39891         "674"
39892       ],
39893       [
39894         "Nepal (नेपाल)",
39895         "np",
39896         "977"
39897       ],
39898       [
39899         "Netherlands (Nederland)",
39900         "nl",
39901         "31"
39902       ],
39903       [
39904         "New Caledonia (Nouvelle-Calédonie)",
39905         "nc",
39906         "687"
39907       ],
39908       [
39909         "New Zealand",
39910         "nz",
39911         "64"
39912       ],
39913       [
39914         "Nicaragua",
39915         "ni",
39916         "505"
39917       ],
39918       [
39919         "Niger (Nijar)",
39920         "ne",
39921         "227"
39922       ],
39923       [
39924         "Nigeria",
39925         "ng",
39926         "234"
39927       ],
39928       [
39929         "Niue",
39930         "nu",
39931         "683"
39932       ],
39933       [
39934         "Norfolk Island",
39935         "nf",
39936         "672"
39937       ],
39938       [
39939         "North Korea (조선 민주주의 인민 공화국)",
39940         "kp",
39941         "850"
39942       ],
39943       [
39944         "Northern Mariana Islands",
39945         "mp",
39946         "1670"
39947       ],
39948       [
39949         "Norway (Norge)",
39950         "no",
39951         "47",
39952         0
39953       ],
39954       [
39955         "Oman (‫عُمان‬‎)",
39956         "om",
39957         "968"
39958       ],
39959       [
39960         "Pakistan (‫پاکستان‬‎)",
39961         "pk",
39962         "92"
39963       ],
39964       [
39965         "Palau",
39966         "pw",
39967         "680"
39968       ],
39969       [
39970         "Palestine (‫فلسطين‬‎)",
39971         "ps",
39972         "970"
39973       ],
39974       [
39975         "Panama (Panamá)",
39976         "pa",
39977         "507"
39978       ],
39979       [
39980         "Papua New Guinea",
39981         "pg",
39982         "675"
39983       ],
39984       [
39985         "Paraguay",
39986         "py",
39987         "595"
39988       ],
39989       [
39990         "Peru (Perú)",
39991         "pe",
39992         "51"
39993       ],
39994       [
39995         "Philippines",
39996         "ph",
39997         "63"
39998       ],
39999       [
40000         "Poland (Polska)",
40001         "pl",
40002         "48"
40003       ],
40004       [
40005         "Portugal",
40006         "pt",
40007         "351"
40008       ],
40009       [
40010         "Puerto Rico",
40011         "pr",
40012         "1",
40013         3,
40014         ["787", "939"]
40015       ],
40016       [
40017         "Qatar (‫قطر‬‎)",
40018         "qa",
40019         "974"
40020       ],
40021       [
40022         "Réunion (La Réunion)",
40023         "re",
40024         "262",
40025         0
40026       ],
40027       [
40028         "Romania (România)",
40029         "ro",
40030         "40"
40031       ],
40032       [
40033         "Russia (Россия)",
40034         "ru",
40035         "7",
40036         0
40037       ],
40038       [
40039         "Rwanda",
40040         "rw",
40041         "250"
40042       ],
40043       [
40044         "Saint Barthélemy",
40045         "bl",
40046         "590",
40047         1
40048       ],
40049       [
40050         "Saint Helena",
40051         "sh",
40052         "290"
40053       ],
40054       [
40055         "Saint Kitts and Nevis",
40056         "kn",
40057         "1869"
40058       ],
40059       [
40060         "Saint Lucia",
40061         "lc",
40062         "1758"
40063       ],
40064       [
40065         "Saint Martin (Saint-Martin (partie française))",
40066         "mf",
40067         "590",
40068         2
40069       ],
40070       [
40071         "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)",
40072         "pm",
40073         "508"
40074       ],
40075       [
40076         "Saint Vincent and the Grenadines",
40077         "vc",
40078         "1784"
40079       ],
40080       [
40081         "Samoa",
40082         "ws",
40083         "685"
40084       ],
40085       [
40086         "San Marino",
40087         "sm",
40088         "378"
40089       ],
40090       [
40091         "São Tomé and Príncipe (São Tomé e Príncipe)",
40092         "st",
40093         "239"
40094       ],
40095       [
40096         "Saudi Arabia (‫المملكة العربية السعودية‬‎)",
40097         "sa",
40098         "966"
40099       ],
40100       [
40101         "Senegal (Sénégal)",
40102         "sn",
40103         "221"
40104       ],
40105       [
40106         "Serbia (Србија)",
40107         "rs",
40108         "381"
40109       ],
40110       [
40111         "Seychelles",
40112         "sc",
40113         "248"
40114       ],
40115       [
40116         "Sierra Leone",
40117         "sl",
40118         "232"
40119       ],
40120       [
40121         "Singapore",
40122         "sg",
40123         "65"
40124       ],
40125       [
40126         "Sint Maarten",
40127         "sx",
40128         "1721"
40129       ],
40130       [
40131         "Slovakia (Slovensko)",
40132         "sk",
40133         "421"
40134       ],
40135       [
40136         "Slovenia (Slovenija)",
40137         "si",
40138         "386"
40139       ],
40140       [
40141         "Solomon Islands",
40142         "sb",
40143         "677"
40144       ],
40145       [
40146         "Somalia (Soomaaliya)",
40147         "so",
40148         "252"
40149       ],
40150       [
40151         "South Africa",
40152         "za",
40153         "27"
40154       ],
40155       [
40156         "South Korea (대한민국)",
40157         "kr",
40158         "82"
40159       ],
40160       [
40161         "South Sudan (‫جنوب السودان‬‎)",
40162         "ss",
40163         "211"
40164       ],
40165       [
40166         "Spain (España)",
40167         "es",
40168         "34"
40169       ],
40170       [
40171         "Sri Lanka (ශ්‍රී ලංකාව)",
40172         "lk",
40173         "94"
40174       ],
40175       [
40176         "Sudan (‫السودان‬‎)",
40177         "sd",
40178         "249"
40179       ],
40180       [
40181         "Suriname",
40182         "sr",
40183         "597"
40184       ],
40185       [
40186         "Svalbard and Jan Mayen",
40187         "sj",
40188         "47",
40189         1
40190       ],
40191       [
40192         "Swaziland",
40193         "sz",
40194         "268"
40195       ],
40196       [
40197         "Sweden (Sverige)",
40198         "se",
40199         "46"
40200       ],
40201       [
40202         "Switzerland (Schweiz)",
40203         "ch",
40204         "41"
40205       ],
40206       [
40207         "Syria (‫سوريا‬‎)",
40208         "sy",
40209         "963"
40210       ],
40211       [
40212         "Taiwan (台灣)",
40213         "tw",
40214         "886"
40215       ],
40216       [
40217         "Tajikistan",
40218         "tj",
40219         "992"
40220       ],
40221       [
40222         "Tanzania",
40223         "tz",
40224         "255"
40225       ],
40226       [
40227         "Thailand (ไทย)",
40228         "th",
40229         "66"
40230       ],
40231       [
40232         "Timor-Leste",
40233         "tl",
40234         "670"
40235       ],
40236       [
40237         "Togo",
40238         "tg",
40239         "228"
40240       ],
40241       [
40242         "Tokelau",
40243         "tk",
40244         "690"
40245       ],
40246       [
40247         "Tonga",
40248         "to",
40249         "676"
40250       ],
40251       [
40252         "Trinidad and Tobago",
40253         "tt",
40254         "1868"
40255       ],
40256       [
40257         "Tunisia (‫تونس‬‎)",
40258         "tn",
40259         "216"
40260       ],
40261       [
40262         "Turkey (Türkiye)",
40263         "tr",
40264         "90"
40265       ],
40266       [
40267         "Turkmenistan",
40268         "tm",
40269         "993"
40270       ],
40271       [
40272         "Turks and Caicos Islands",
40273         "tc",
40274         "1649"
40275       ],
40276       [
40277         "Tuvalu",
40278         "tv",
40279         "688"
40280       ],
40281       [
40282         "U.S. Virgin Islands",
40283         "vi",
40284         "1340"
40285       ],
40286       [
40287         "Uganda",
40288         "ug",
40289         "256"
40290       ],
40291       [
40292         "Ukraine (Україна)",
40293         "ua",
40294         "380"
40295       ],
40296       [
40297         "United Arab Emirates (‫الإمارات العربية المتحدة‬‎)",
40298         "ae",
40299         "971"
40300       ],
40301       [
40302         "United Kingdom",
40303         "gb",
40304         "44",
40305         0
40306       ],
40307       [
40308         "United States",
40309         "us",
40310         "1",
40311         0
40312       ],
40313       [
40314         "Uruguay",
40315         "uy",
40316         "598"
40317       ],
40318       [
40319         "Uzbekistan (Oʻzbekiston)",
40320         "uz",
40321         "998"
40322       ],
40323       [
40324         "Vanuatu",
40325         "vu",
40326         "678"
40327       ],
40328       [
40329         "Vatican City (Città del Vaticano)",
40330         "va",
40331         "39",
40332         1
40333       ],
40334       [
40335         "Venezuela",
40336         "ve",
40337         "58"
40338       ],
40339       [
40340         "Vietnam (Việt Nam)",
40341         "vn",
40342         "84"
40343       ],
40344       [
40345         "Wallis and Futuna (Wallis-et-Futuna)",
40346         "wf",
40347         "681"
40348       ],
40349       [
40350         "Western Sahara (‫الصحراء الغربية‬‎)",
40351         "eh",
40352         "212",
40353         1
40354       ],
40355       [
40356         "Yemen (‫اليمن‬‎)",
40357         "ye",
40358         "967"
40359       ],
40360       [
40361         "Zambia",
40362         "zm",
40363         "260"
40364       ],
40365       [
40366         "Zimbabwe",
40367         "zw",
40368         "263"
40369       ],
40370       [
40371         "Åland Islands",
40372         "ax",
40373         "358",
40374         1
40375       ]
40376   ];
40377   
40378   return d;
40379 }/**
40380 *    This script refer to:
40381 *    Title: International Telephone Input
40382 *    Author: Jack O'Connor
40383 *    Code version:  v12.1.12
40384 *    Availability: https://github.com/jackocnr/intl-tel-input.git
40385 **/
40386
40387 /**
40388  * @class Roo.bootstrap.PhoneInput
40389  * @extends Roo.bootstrap.TriggerField
40390  * An input with International dial-code selection
40391  
40392  * @cfg {String} defaultDialCode default '+852'
40393  * @cfg {Array} preferedCountries default []
40394   
40395  * @constructor
40396  * Create a new PhoneInput.
40397  * @param {Object} config Configuration options
40398  */
40399
40400 Roo.bootstrap.PhoneInput = function(config) {
40401     Roo.bootstrap.PhoneInput.superclass.constructor.call(this, config);
40402 };
40403
40404 Roo.extend(Roo.bootstrap.PhoneInput, Roo.bootstrap.TriggerField, {
40405         
40406         listWidth: undefined,
40407         
40408         selectedClass: 'active',
40409         
40410         invalidClass : "has-warning",
40411         
40412         validClass: 'has-success',
40413         
40414         allowed: '0123456789',
40415         
40416         max_length: 15,
40417         
40418         /**
40419          * @cfg {String} defaultDialCode The default dial code when initializing the input
40420          */
40421         defaultDialCode: '+852',
40422         
40423         /**
40424          * @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
40425          */
40426         preferedCountries: false,
40427         
40428         getAutoCreate : function()
40429         {
40430             var data = Roo.bootstrap.PhoneInputData();
40431             var align = this.labelAlign || this.parentLabelAlign();
40432             var id = Roo.id();
40433             
40434             this.allCountries = [];
40435             this.dialCodeMapping = [];
40436             
40437             for (var i = 0; i < data.length; i++) {
40438               var c = data[i];
40439               this.allCountries[i] = {
40440                 name: c[0],
40441                 iso2: c[1],
40442                 dialCode: c[2],
40443                 priority: c[3] || 0,
40444                 areaCodes: c[4] || null
40445               };
40446               this.dialCodeMapping[c[2]] = {
40447                   name: c[0],
40448                   iso2: c[1],
40449                   priority: c[3] || 0,
40450                   areaCodes: c[4] || null
40451               };
40452             }
40453             
40454             var cfg = {
40455                 cls: 'form-group',
40456                 cn: []
40457             };
40458             
40459             var input =  {
40460                 tag: 'input',
40461                 id : id,
40462                 // type: 'number', -- do not use number - we get the flaky up/down arrows.
40463                 maxlength: this.max_length,
40464                 cls : 'form-control tel-input',
40465                 autocomplete: 'new-password'
40466             };
40467             
40468             var hiddenInput = {
40469                 tag: 'input',
40470                 type: 'hidden',
40471                 cls: 'hidden-tel-input'
40472             };
40473             
40474             if (this.name) {
40475                 hiddenInput.name = this.name;
40476             }
40477             
40478             if (this.disabled) {
40479                 input.disabled = true;
40480             }
40481             
40482             var flag_container = {
40483                 tag: 'div',
40484                 cls: 'flag-box',
40485                 cn: [
40486                     {
40487                         tag: 'div',
40488                         cls: 'flag'
40489                     },
40490                     {
40491                         tag: 'div',
40492                         cls: 'caret'
40493                     }
40494                 ]
40495             };
40496             
40497             var box = {
40498                 tag: 'div',
40499                 cls: this.hasFeedback ? 'has-feedback' : '',
40500                 cn: [
40501                     hiddenInput,
40502                     input,
40503                     {
40504                         tag: 'input',
40505                         cls: 'dial-code-holder',
40506                         disabled: true
40507                     }
40508                 ]
40509             };
40510             
40511             var container = {
40512                 cls: 'roo-select2-container input-group',
40513                 cn: [
40514                     flag_container,
40515                     box
40516                 ]
40517             };
40518             
40519             if (this.fieldLabel.length) {
40520                 var indicator = {
40521                     tag: 'i',
40522                     tooltip: 'This field is required'
40523                 };
40524                 
40525                 var label = {
40526                     tag: 'label',
40527                     'for':  id,
40528                     cls: 'control-label',
40529                     cn: []
40530                 };
40531                 
40532                 var label_text = {
40533                     tag: 'span',
40534                     html: this.fieldLabel
40535                 };
40536                 
40537                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
40538                 label.cn = [
40539                     indicator,
40540                     label_text
40541                 ];
40542                 
40543                 if(this.indicatorpos == 'right') {
40544                     indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
40545                     label.cn = [
40546                         label_text,
40547                         indicator
40548                     ];
40549                 }
40550                 
40551                 if(align == 'left') {
40552                     container = {
40553                         tag: 'div',
40554                         cn: [
40555                             container
40556                         ]
40557                     };
40558                     
40559                     if(this.labelWidth > 12){
40560                         label.style = "width: " + this.labelWidth + 'px';
40561                     }
40562                     if(this.labelWidth < 13 && this.labelmd == 0){
40563                         this.labelmd = this.labelWidth;
40564                     }
40565                     if(this.labellg > 0){
40566                         label.cls += ' col-lg-' + this.labellg;
40567                         input.cls += ' col-lg-' + (12 - this.labellg);
40568                     }
40569                     if(this.labelmd > 0){
40570                         label.cls += ' col-md-' + this.labelmd;
40571                         container.cls += ' col-md-' + (12 - this.labelmd);
40572                     }
40573                     if(this.labelsm > 0){
40574                         label.cls += ' col-sm-' + this.labelsm;
40575                         container.cls += ' col-sm-' + (12 - this.labelsm);
40576                     }
40577                     if(this.labelxs > 0){
40578                         label.cls += ' col-xs-' + this.labelxs;
40579                         container.cls += ' col-xs-' + (12 - this.labelxs);
40580                     }
40581                 }
40582             }
40583             
40584             cfg.cn = [
40585                 label,
40586                 container
40587             ];
40588             
40589             var settings = this;
40590             
40591             ['xs','sm','md','lg'].map(function(size){
40592                 if (settings[size]) {
40593                     cfg.cls += ' col-' + size + '-' + settings[size];
40594                 }
40595             });
40596             
40597             this.store = new Roo.data.Store({
40598                 proxy : new Roo.data.MemoryProxy({}),
40599                 reader : new Roo.data.JsonReader({
40600                     fields : [
40601                         {
40602                             'name' : 'name',
40603                             'type' : 'string'
40604                         },
40605                         {
40606                             'name' : 'iso2',
40607                             'type' : 'string'
40608                         },
40609                         {
40610                             'name' : 'dialCode',
40611                             'type' : 'string'
40612                         },
40613                         {
40614                             'name' : 'priority',
40615                             'type' : 'string'
40616                         },
40617                         {
40618                             'name' : 'areaCodes',
40619                             'type' : 'string'
40620                         }
40621                     ]
40622                 })
40623             });
40624             
40625             if(!this.preferedCountries) {
40626                 this.preferedCountries = [
40627                     'hk',
40628                     'gb',
40629                     'us'
40630                 ];
40631             }
40632             
40633             var p = this.preferedCountries.reverse();
40634             
40635             if(p) {
40636                 for (var i = 0; i < p.length; i++) {
40637                     for (var j = 0; j < this.allCountries.length; j++) {
40638                         if(this.allCountries[j].iso2 == p[i]) {
40639                             var t = this.allCountries[j];
40640                             this.allCountries.splice(j,1);
40641                             this.allCountries.unshift(t);
40642                         }
40643                     } 
40644                 }
40645             }
40646             
40647             this.store.proxy.data = {
40648                 success: true,
40649                 data: this.allCountries
40650             };
40651             
40652             return cfg;
40653         },
40654         
40655         initEvents : function()
40656         {
40657             this.createList();
40658             Roo.bootstrap.PhoneInput.superclass.initEvents.call(this);
40659             
40660             this.indicator = this.indicatorEl();
40661             this.flag = this.flagEl();
40662             this.dialCodeHolder = this.dialCodeHolderEl();
40663             
40664             this.trigger = this.el.select('div.flag-box',true).first();
40665             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40666             
40667             var _this = this;
40668             
40669             (function(){
40670                 var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
40671                 _this.list.setWidth(lw);
40672             }).defer(100);
40673             
40674             this.list.on('mouseover', this.onViewOver, this);
40675             this.list.on('mousemove', this.onViewMove, this);
40676             this.inputEl().on("keyup", this.onKeyUp, this);
40677             this.inputEl().on("keypress", this.onKeyPress, this);
40678             
40679             this.tpl = '<li><a href="#"><div class="flag {iso2}"></div>{name} <span class="dial-code">+{dialCode}</span></a></li>';
40680
40681             this.view = new Roo.View(this.list, this.tpl, {
40682                 singleSelect:true, store: this.store, selectedClass: this.selectedClass
40683             });
40684             
40685             this.view.on('click', this.onViewClick, this);
40686             this.setValue(this.defaultDialCode);
40687         },
40688         
40689         onTriggerClick : function(e)
40690         {
40691             Roo.log('trigger click');
40692             if(this.disabled){
40693                 return;
40694             }
40695             
40696             if(this.isExpanded()){
40697                 this.collapse();
40698                 this.hasFocus = false;
40699             }else {
40700                 this.store.load({});
40701                 this.hasFocus = true;
40702                 this.expand();
40703             }
40704         },
40705         
40706         isExpanded : function()
40707         {
40708             return this.list.isVisible();
40709         },
40710         
40711         collapse : function()
40712         {
40713             if(!this.isExpanded()){
40714                 return;
40715             }
40716             this.list.hide();
40717             Roo.get(document).un('mousedown', this.collapseIf, this);
40718             Roo.get(document).un('mousewheel', this.collapseIf, this);
40719             this.fireEvent('collapse', this);
40720             this.validate();
40721         },
40722         
40723         expand : function()
40724         {
40725             Roo.log('expand');
40726
40727             if(this.isExpanded() || !this.hasFocus){
40728                 return;
40729             }
40730             
40731             var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
40732             this.list.setWidth(lw);
40733             
40734             this.list.show();
40735             this.restrictHeight();
40736             
40737             Roo.get(document).on('mousedown', this.collapseIf, this);
40738             Roo.get(document).on('mousewheel', this.collapseIf, this);
40739             
40740             this.fireEvent('expand', this);
40741         },
40742         
40743         restrictHeight : function()
40744         {
40745             this.list.alignTo(this.inputEl(), this.listAlign);
40746             this.list.alignTo(this.inputEl(), this.listAlign);
40747         },
40748         
40749         onViewOver : function(e, t)
40750         {
40751             if(this.inKeyMode){
40752                 return;
40753             }
40754             var item = this.view.findItemFromChild(t);
40755             
40756             if(item){
40757                 var index = this.view.indexOf(item);
40758                 this.select(index, false);
40759             }
40760         },
40761
40762         // private
40763         onViewClick : function(view, doFocus, el, e)
40764         {
40765             var index = this.view.getSelectedIndexes()[0];
40766             
40767             var r = this.store.getAt(index);
40768             
40769             if(r){
40770                 this.onSelect(r, index);
40771             }
40772             if(doFocus !== false && !this.blockFocus){
40773                 this.inputEl().focus();
40774             }
40775         },
40776         
40777         onViewMove : function(e, t)
40778         {
40779             this.inKeyMode = false;
40780         },
40781         
40782         select : function(index, scrollIntoView)
40783         {
40784             this.selectedIndex = index;
40785             this.view.select(index);
40786             if(scrollIntoView !== false){
40787                 var el = this.view.getNode(index);
40788                 if(el){
40789                     this.list.scrollChildIntoView(el, false);
40790                 }
40791             }
40792         },
40793         
40794         createList : function()
40795         {
40796             this.list = Roo.get(document.body).createChild({
40797                 tag: 'ul',
40798                 cls: 'typeahead typeahead-long dropdown-menu tel-list',
40799                 style: 'display:none'
40800             });
40801             
40802             this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
40803         },
40804         
40805         collapseIf : function(e)
40806         {
40807             var in_combo  = e.within(this.el);
40808             var in_list =  e.within(this.list);
40809             var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
40810             
40811             if (in_combo || in_list || is_list) {
40812                 return;
40813             }
40814             this.collapse();
40815         },
40816         
40817         onSelect : function(record, index)
40818         {
40819             if(this.fireEvent('beforeselect', this, record, index) !== false){
40820                 
40821                 this.setFlagClass(record.data.iso2);
40822                 this.setDialCode(record.data.dialCode);
40823                 this.hasFocus = false;
40824                 this.collapse();
40825                 this.fireEvent('select', this, record, index);
40826             }
40827         },
40828         
40829         flagEl : function()
40830         {
40831             var flag = this.el.select('div.flag',true).first();
40832             if(!flag){
40833                 return false;
40834             }
40835             return flag;
40836         },
40837         
40838         dialCodeHolderEl : function()
40839         {
40840             var d = this.el.select('input.dial-code-holder',true).first();
40841             if(!d){
40842                 return false;
40843             }
40844             return d;
40845         },
40846         
40847         setDialCode : function(v)
40848         {
40849             this.dialCodeHolder.dom.value = '+'+v;
40850         },
40851         
40852         setFlagClass : function(n)
40853         {
40854             this.flag.dom.className = 'flag '+n;
40855         },
40856         
40857         getValue : function()
40858         {
40859             var v = this.inputEl().getValue();
40860             if(this.dialCodeHolder) {
40861                 v = this.dialCodeHolder.dom.value+this.inputEl().getValue();
40862             }
40863             return v;
40864         },
40865         
40866         setValue : function(v)
40867         {
40868             var d = this.getDialCode(v);
40869             
40870             //invalid dial code
40871             if(v.length == 0 || !d || d.length == 0) {
40872                 if(this.rendered){
40873                     this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
40874                     this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
40875                 }
40876                 return;
40877             }
40878             
40879             //valid dial code
40880             this.setFlagClass(this.dialCodeMapping[d].iso2);
40881             this.setDialCode(d);
40882             this.inputEl().dom.value = v.replace('+'+d,'');
40883             this.hiddenEl().dom.value = this.getValue();
40884             
40885             this.validate();
40886         },
40887         
40888         getDialCode : function(v)
40889         {
40890             v = v ||  '';
40891             
40892             if (v.length == 0) {
40893                 return this.dialCodeHolder.dom.value;
40894             }
40895             
40896             var dialCode = "";
40897             if (v.charAt(0) != "+") {
40898                 return false;
40899             }
40900             var numericChars = "";
40901             for (var i = 1; i < v.length; i++) {
40902               var c = v.charAt(i);
40903               if (!isNaN(c)) {
40904                 numericChars += c;
40905                 if (this.dialCodeMapping[numericChars]) {
40906                   dialCode = v.substr(1, i);
40907                 }
40908                 if (numericChars.length == 4) {
40909                   break;
40910                 }
40911               }
40912             }
40913             return dialCode;
40914         },
40915         
40916         reset : function()
40917         {
40918             this.setValue(this.defaultDialCode);
40919             this.validate();
40920         },
40921         
40922         hiddenEl : function()
40923         {
40924             return this.el.select('input.hidden-tel-input',true).first();
40925         },
40926         
40927         // after setting val
40928         onKeyUp : function(e){
40929             this.setValue(this.getValue());
40930         },
40931         
40932         onKeyPress : function(e){
40933             if(this.allowed.indexOf(String.fromCharCode(e.getCharCode())) === -1){
40934                 e.stopEvent();
40935             }
40936         }
40937         
40938 });
40939 /**
40940  * @class Roo.bootstrap.MoneyField
40941  * @extends Roo.bootstrap.ComboBox
40942  * Bootstrap MoneyField class
40943  * 
40944  * @constructor
40945  * Create a new MoneyField.
40946  * @param {Object} config Configuration options
40947  */
40948
40949 Roo.bootstrap.MoneyField = function(config) {
40950     
40951     Roo.bootstrap.MoneyField.superclass.constructor.call(this, config);
40952     
40953 };
40954
40955 Roo.extend(Roo.bootstrap.MoneyField, Roo.bootstrap.ComboBox, {
40956     
40957     /**
40958      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40959      */
40960     allowDecimals : true,
40961     /**
40962      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40963      */
40964     decimalSeparator : ".",
40965     /**
40966      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40967      */
40968     decimalPrecision : 0,
40969     /**
40970      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40971      */
40972     allowNegative : true,
40973     /**
40974      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
40975      */
40976     allowZero: true,
40977     /**
40978      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40979      */
40980     minValue : Number.NEGATIVE_INFINITY,
40981     /**
40982      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40983      */
40984     maxValue : Number.MAX_VALUE,
40985     /**
40986      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40987      */
40988     minText : "The minimum value for this field is {0}",
40989     /**
40990      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40991      */
40992     maxText : "The maximum value for this field is {0}",
40993     /**
40994      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40995      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40996      */
40997     nanText : "{0} is not a valid number",
40998     /**
40999      * @cfg {Boolean} castInt (true|false) cast int if true (defalut true)
41000      */
41001     castInt : true,
41002     /**
41003      * @cfg {String} defaults currency of the MoneyField
41004      * value should be in lkey
41005      */
41006     defaultCurrency : false,
41007     /**
41008      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
41009      */
41010     thousandsDelimiter : false,
41011     /**
41012      * @cfg {Number} max_length Maximum input field length allowed (defaults to Number.MAX_VALUE)
41013      */
41014     max_length: false,
41015     
41016     inputlg : 9,
41017     inputmd : 9,
41018     inputsm : 9,
41019     inputxs : 6,
41020     
41021     store : false,
41022     
41023     getAutoCreate : function()
41024     {
41025         var align = this.labelAlign || this.parentLabelAlign();
41026         
41027         var id = Roo.id();
41028
41029         var cfg = {
41030             cls: 'form-group',
41031             cn: []
41032         };
41033
41034         var input =  {
41035             tag: 'input',
41036             id : id,
41037             cls : 'form-control roo-money-amount-input',
41038             autocomplete: 'new-password'
41039         };
41040         
41041         var hiddenInput = {
41042             tag: 'input',
41043             type: 'hidden',
41044             id: Roo.id(),
41045             cls: 'hidden-number-input'
41046         };
41047         
41048         if(this.max_length) {
41049             input.maxlength = this.max_length; 
41050         }
41051         
41052         if (this.name) {
41053             hiddenInput.name = this.name;
41054         }
41055
41056         if (this.disabled) {
41057             input.disabled = true;
41058         }
41059
41060         var clg = 12 - this.inputlg;
41061         var cmd = 12 - this.inputmd;
41062         var csm = 12 - this.inputsm;
41063         var cxs = 12 - this.inputxs;
41064         
41065         var container = {
41066             tag : 'div',
41067             cls : 'row roo-money-field',
41068             cn : [
41069                 {
41070                     tag : 'div',
41071                     cls : 'roo-money-currency column col-lg-' + clg + ' col-md-' + cmd + ' col-sm-' + csm + ' col-xs-' + cxs,
41072                     cn : [
41073                         {
41074                             tag : 'div',
41075                             cls: 'roo-select2-container input-group',
41076                             cn: [
41077                                 {
41078                                     tag : 'input',
41079                                     cls : 'form-control roo-money-currency-input',
41080                                     autocomplete: 'new-password',
41081                                     readOnly : 1,
41082                                     name : this.currencyName
41083                                 },
41084                                 {
41085                                     tag :'span',
41086                                     cls : 'input-group-addon',
41087                                     cn : [
41088                                         {
41089                                             tag: 'span',
41090                                             cls: 'caret'
41091                                         }
41092                                     ]
41093                                 }
41094                             ]
41095                         }
41096                     ]
41097                 },
41098                 {
41099                     tag : 'div',
41100                     cls : 'roo-money-amount column col-lg-' + this.inputlg + ' col-md-' + this.inputmd + ' col-sm-' + this.inputsm + ' col-xs-' + this.inputxs,
41101                     cn : [
41102                         {
41103                             tag: 'div',
41104                             cls: this.hasFeedback ? 'has-feedback' : '',
41105                             cn: [
41106                                 input
41107                             ]
41108                         }
41109                     ]
41110                 }
41111             ]
41112             
41113         };
41114         
41115         if (this.fieldLabel.length) {
41116             var indicator = {
41117                 tag: 'i',
41118                 tooltip: 'This field is required'
41119             };
41120
41121             var label = {
41122                 tag: 'label',
41123                 'for':  id,
41124                 cls: 'control-label',
41125                 cn: []
41126             };
41127
41128             var label_text = {
41129                 tag: 'span',
41130                 html: this.fieldLabel
41131             };
41132
41133             indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
41134             label.cn = [
41135                 indicator,
41136                 label_text
41137             ];
41138
41139             if(this.indicatorpos == 'right') {
41140                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
41141                 label.cn = [
41142                     label_text,
41143                     indicator
41144                 ];
41145             }
41146
41147             if(align == 'left') {
41148                 container = {
41149                     tag: 'div',
41150                     cn: [
41151                         container
41152                     ]
41153                 };
41154
41155                 if(this.labelWidth > 12){
41156                     label.style = "width: " + this.labelWidth + 'px';
41157                 }
41158                 if(this.labelWidth < 13 && this.labelmd == 0){
41159                     this.labelmd = this.labelWidth;
41160                 }
41161                 if(this.labellg > 0){
41162                     label.cls += ' col-lg-' + this.labellg;
41163                     input.cls += ' col-lg-' + (12 - this.labellg);
41164                 }
41165                 if(this.labelmd > 0){
41166                     label.cls += ' col-md-' + this.labelmd;
41167                     container.cls += ' col-md-' + (12 - this.labelmd);
41168                 }
41169                 if(this.labelsm > 0){
41170                     label.cls += ' col-sm-' + this.labelsm;
41171                     container.cls += ' col-sm-' + (12 - this.labelsm);
41172                 }
41173                 if(this.labelxs > 0){
41174                     label.cls += ' col-xs-' + this.labelxs;
41175                     container.cls += ' col-xs-' + (12 - this.labelxs);
41176                 }
41177             }
41178         }
41179
41180         cfg.cn = [
41181             label,
41182             container,
41183             hiddenInput
41184         ];
41185         
41186         var settings = this;
41187
41188         ['xs','sm','md','lg'].map(function(size){
41189             if (settings[size]) {
41190                 cfg.cls += ' col-' + size + '-' + settings[size];
41191             }
41192         });
41193         
41194         return cfg;
41195     },
41196     
41197     initEvents : function()
41198     {
41199         this.indicator = this.indicatorEl();
41200         
41201         this.initCurrencyEvent();
41202         
41203         this.initNumberEvent();
41204     },
41205     
41206     initCurrencyEvent : function()
41207     {
41208         if (!this.store) {
41209             throw "can not find store for combo";
41210         }
41211         
41212         this.store = Roo.factory(this.store, Roo.data);
41213         this.store.parent = this;
41214         
41215         this.createList();
41216         
41217         this.triggerEl = this.el.select('.input-group-addon', true).first();
41218         
41219         this.triggerEl.on("click", this.onTriggerClick, this, { preventDefault : true });
41220         
41221         var _this = this;
41222         
41223         (function(){
41224             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
41225             _this.list.setWidth(lw);
41226         }).defer(100);
41227         
41228         this.list.on('mouseover', this.onViewOver, this);
41229         this.list.on('mousemove', this.onViewMove, this);
41230         this.list.on('scroll', this.onViewScroll, this);
41231         
41232         if(!this.tpl){
41233             this.tpl = '<li><a href="#">{' + this.currencyField + '}</a></li>';
41234         }
41235         
41236         this.view = new Roo.View(this.list, this.tpl, {
41237             singleSelect:true, store: this.store, selectedClass: this.selectedClass
41238         });
41239         
41240         this.view.on('click', this.onViewClick, this);
41241         
41242         this.store.on('beforeload', this.onBeforeLoad, this);
41243         this.store.on('load', this.onLoad, this);
41244         this.store.on('loadexception', this.onLoadException, this);
41245         
41246         this.keyNav = new Roo.KeyNav(this.currencyEl(), {
41247             "up" : function(e){
41248                 this.inKeyMode = true;
41249                 this.selectPrev();
41250             },
41251
41252             "down" : function(e){
41253                 if(!this.isExpanded()){
41254                     this.onTriggerClick();
41255                 }else{
41256                     this.inKeyMode = true;
41257                     this.selectNext();
41258                 }
41259             },
41260
41261             "enter" : function(e){
41262                 this.collapse();
41263                 
41264                 if(this.fireEvent("specialkey", this, e)){
41265                     this.onViewClick(false);
41266                 }
41267                 
41268                 return true;
41269             },
41270
41271             "esc" : function(e){
41272                 this.collapse();
41273             },
41274
41275             "tab" : function(e){
41276                 this.collapse();
41277                 
41278                 if(this.fireEvent("specialkey", this, e)){
41279                     this.onViewClick(false);
41280                 }
41281                 
41282                 return true;
41283             },
41284
41285             scope : this,
41286
41287             doRelay : function(foo, bar, hname){
41288                 if(hname == 'down' || this.scope.isExpanded()){
41289                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41290                 }
41291                 return true;
41292             },
41293
41294             forceKeyDown: true
41295         });
41296         
41297         this.currencyEl().on("click", this.onTriggerClick, this, { preventDefault : true });
41298         
41299     },
41300     
41301     initNumberEvent : function(e)
41302     {
41303         this.inputEl().on("keydown" , this.fireKey,  this);
41304         this.inputEl().on("focus", this.onFocus,  this);
41305         this.inputEl().on("blur", this.onBlur,  this);
41306         
41307         this.inputEl().relayEvent('keyup', this);
41308         
41309         if(this.indicator){
41310             this.indicator.addClass('invisible');
41311         }
41312  
41313         this.originalValue = this.getValue();
41314         
41315         if(this.validationEvent == 'keyup'){
41316             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
41317             this.inputEl().on('keyup', this.filterValidation, this);
41318         }
41319         else if(this.validationEvent !== false){
41320             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
41321         }
41322         
41323         if(this.selectOnFocus){
41324             this.on("focus", this.preFocus, this);
41325             
41326         }
41327         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
41328             this.inputEl().on("keypress", this.filterKeys, this);
41329         } else {
41330             this.inputEl().relayEvent('keypress', this);
41331         }
41332         
41333         var allowed = "0123456789";
41334         
41335         if(this.allowDecimals){
41336             allowed += this.decimalSeparator;
41337         }
41338         
41339         if(this.allowNegative){
41340             allowed += "-";
41341         }
41342         
41343         if(this.thousandsDelimiter) {
41344             allowed += ",";
41345         }
41346         
41347         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
41348         
41349         var keyPress = function(e){
41350             
41351             var k = e.getKey();
41352             
41353             var c = e.getCharCode();
41354             
41355             if(
41356                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
41357                     allowed.indexOf(String.fromCharCode(c)) === -1
41358             ){
41359                 e.stopEvent();
41360                 return;
41361             }
41362             
41363             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
41364                 return;
41365             }
41366             
41367             if(allowed.indexOf(String.fromCharCode(c)) === -1){
41368                 e.stopEvent();
41369             }
41370         };
41371         
41372         this.inputEl().on("keypress", keyPress, this);
41373         
41374     },
41375     
41376     onTriggerClick : function(e)
41377     {   
41378         if(this.disabled){
41379             return;
41380         }
41381         
41382         this.page = 0;
41383         this.loadNext = false;
41384         
41385         if(this.isExpanded()){
41386             this.collapse();
41387             return;
41388         }
41389         
41390         this.hasFocus = true;
41391         
41392         if(this.triggerAction == 'all') {
41393             this.doQuery(this.allQuery, true);
41394             return;
41395         }
41396         
41397         this.doQuery(this.getRawValue());
41398     },
41399     
41400     getCurrency : function()
41401     {   
41402         var v = this.currencyEl().getValue();
41403         
41404         return v;
41405     },
41406     
41407     restrictHeight : function()
41408     {
41409         this.list.alignTo(this.currencyEl(), this.listAlign);
41410         this.list.alignTo(this.currencyEl(), this.listAlign);
41411     },
41412     
41413     onViewClick : function(view, doFocus, el, e)
41414     {
41415         var index = this.view.getSelectedIndexes()[0];
41416         
41417         var r = this.store.getAt(index);
41418         
41419         if(r){
41420             this.onSelect(r, index);
41421         }
41422     },
41423     
41424     onSelect : function(record, index){
41425         
41426         if(this.fireEvent('beforeselect', this, record, index) !== false){
41427         
41428             this.setFromCurrencyData(index > -1 ? record.data : false);
41429             
41430             this.collapse();
41431             
41432             this.fireEvent('select', this, record, index);
41433         }
41434     },
41435     
41436     setFromCurrencyData : function(o)
41437     {
41438         var currency = '';
41439         
41440         this.lastCurrency = o;
41441         
41442         if (this.currencyField) {
41443             currency = !o || typeof(o[this.currencyField]) == 'undefined' ? '' : o[this.currencyField];
41444         } else {
41445             Roo.log('no  currencyField value set for '+ (this.name ? this.name : this.id));
41446         }
41447         
41448         this.lastSelectionText = currency;
41449         
41450         //setting default currency
41451         if(o[this.currencyField] * 1 == 0 && this.defaultCurrency) {
41452             this.setCurrency(this.defaultCurrency);
41453             return;
41454         }
41455         
41456         this.setCurrency(currency);
41457     },
41458     
41459     setFromData : function(o)
41460     {
41461         var c = {};
41462         
41463         c[this.currencyField] = !o || typeof(o[this.currencyName]) == 'undefined' ? '' : o[this.currencyName];
41464         
41465         this.setFromCurrencyData(c);
41466         
41467         var value = '';
41468         
41469         if (this.name) {
41470             value = !o || typeof(o[this.name]) == 'undefined' ? '' : o[this.name];
41471         } else {
41472             Roo.log('no value set for '+ (this.name ? this.name : this.id));
41473         }
41474         
41475         this.setValue(value);
41476         
41477     },
41478     
41479     setCurrency : function(v)
41480     {   
41481         this.currencyValue = v;
41482         
41483         if(this.rendered){
41484             this.currencyEl().dom.value = (v === null || v === undefined ? '' : v);
41485             this.validate();
41486         }
41487     },
41488     
41489     setValue : function(v)
41490     {
41491         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
41492         
41493         this.value = v;
41494         
41495         if(this.rendered){
41496             
41497             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
41498             
41499             this.inputEl().dom.value = (v == '') ? '' :
41500                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
41501             
41502             if(!this.allowZero && v === '0') {
41503                 this.hiddenEl().dom.value = '';
41504                 this.inputEl().dom.value = '';
41505             }
41506             
41507             this.validate();
41508         }
41509     },
41510     
41511     getRawValue : function()
41512     {
41513         var v = this.inputEl().getValue();
41514         
41515         return v;
41516     },
41517     
41518     getValue : function()
41519     {
41520         return this.fixPrecision(this.parseValue(this.getRawValue()));
41521     },
41522     
41523     parseValue : function(value)
41524     {
41525         if(this.thousandsDelimiter) {
41526             value += "";
41527             r = new RegExp(",", "g");
41528             value = value.replace(r, "");
41529         }
41530         
41531         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
41532         return isNaN(value) ? '' : value;
41533         
41534     },
41535     
41536     fixPrecision : function(value)
41537     {
41538         if(this.thousandsDelimiter) {
41539             value += "";
41540             r = new RegExp(",", "g");
41541             value = value.replace(r, "");
41542         }
41543         
41544         var nan = isNaN(value);
41545         
41546         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
41547             return nan ? '' : value;
41548         }
41549         return parseFloat(value).toFixed(this.decimalPrecision);
41550     },
41551     
41552     decimalPrecisionFcn : function(v)
41553     {
41554         return Math.floor(v);
41555     },
41556     
41557     validateValue : function(value)
41558     {
41559         if(!Roo.bootstrap.MoneyField.superclass.validateValue.call(this, value)){
41560             return false;
41561         }
41562         
41563         var num = this.parseValue(value);
41564         
41565         if(isNaN(num)){
41566             this.markInvalid(String.format(this.nanText, value));
41567             return false;
41568         }
41569         
41570         if(num < this.minValue){
41571             this.markInvalid(String.format(this.minText, this.minValue));
41572             return false;
41573         }
41574         
41575         if(num > this.maxValue){
41576             this.markInvalid(String.format(this.maxText, this.maxValue));
41577             return false;
41578         }
41579         
41580         return true;
41581     },
41582     
41583     validate : function()
41584     {
41585         if(this.disabled || this.allowBlank){
41586             this.markValid();
41587             return true;
41588         }
41589         
41590         var currency = this.getCurrency();
41591         
41592         if(this.validateValue(this.getRawValue()) && currency.length){
41593             this.markValid();
41594             return true;
41595         }
41596         
41597         this.markInvalid();
41598         return false;
41599     },
41600     
41601     getName: function()
41602     {
41603         return this.name;
41604     },
41605     
41606     beforeBlur : function()
41607     {
41608         if(!this.castInt){
41609             return;
41610         }
41611         
41612         var v = this.parseValue(this.getRawValue());
41613         
41614         if(v || v == 0){
41615             this.setValue(v);
41616         }
41617     },
41618     
41619     onBlur : function()
41620     {
41621         this.beforeBlur();
41622         
41623         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
41624             //this.el.removeClass(this.focusClass);
41625         }
41626         
41627         this.hasFocus = false;
41628         
41629         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
41630             this.validate();
41631         }
41632         
41633         var v = this.getValue();
41634         
41635         if(String(v) !== String(this.startValue)){
41636             this.fireEvent('change', this, v, this.startValue);
41637         }
41638         
41639         this.fireEvent("blur", this);
41640     },
41641     
41642     inputEl : function()
41643     {
41644         return this.el.select('.roo-money-amount-input', true).first();
41645     },
41646     
41647     currencyEl : function()
41648     {
41649         return this.el.select('.roo-money-currency-input', true).first();
41650     },
41651     
41652     hiddenEl : function()
41653     {
41654         return this.el.select('input.hidden-number-input',true).first();
41655     }
41656     
41657 });/**
41658  * @class Roo.bootstrap.BezierSignature
41659  * @extends Roo.bootstrap.Component
41660  * Bootstrap BezierSignature class
41661  * This script refer to:
41662  *    Title: Signature Pad
41663  *    Author: szimek
41664  *    Availability: https://github.com/szimek/signature_pad
41665  *
41666  * @constructor
41667  * Create a new BezierSignature
41668  * @param {Object} config The config object
41669  */
41670
41671 Roo.bootstrap.BezierSignature = function(config){
41672     Roo.bootstrap.BezierSignature.superclass.constructor.call(this, config);
41673     this.addEvents({
41674         "resize" : true
41675     });
41676 };
41677
41678 Roo.extend(Roo.bootstrap.BezierSignature, Roo.bootstrap.Component,
41679 {
41680      
41681     curve_data: [],
41682     
41683     is_empty: true,
41684     
41685     mouse_btn_down: true,
41686     
41687     /**
41688      * @cfg {int} canvas height
41689      */
41690     canvas_height: '200px',
41691     
41692     /**
41693      * @cfg {float|function} Radius of a single dot.
41694      */ 
41695     dot_size: false,
41696     
41697     /**
41698      * @cfg {float} Minimum width of a line. Defaults to 0.5.
41699      */
41700     min_width: 0.5,
41701     
41702     /**
41703      * @cfg {float} Maximum width of a line. Defaults to 2.5.
41704      */
41705     max_width: 2.5,
41706     
41707     /**
41708      * @cfg {integer} Draw the next point at most once per every x milliseconds. Set it to 0 to turn off throttling. Defaults to 16.
41709      */
41710     throttle: 16,
41711     
41712     /**
41713      * @cfg {integer} Add the next point only if the previous one is farther than x pixels. Defaults to 5.
41714      */
41715     min_distance: 5,
41716     
41717     /**
41718      * @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.
41719      */
41720     bg_color: 'rgba(0, 0, 0, 0)',
41721     
41722     /**
41723      * @cfg {string} Color used to draw the lines. Can be any color format accepted by context.fillStyle. Defaults to "black".
41724      */
41725     dot_color: 'black',
41726     
41727     /**
41728      * @cfg {float} Weight used to modify new velocity based on the previous velocity. Defaults to 0.7.
41729      */ 
41730     velocity_filter_weight: 0.7,
41731     
41732     /**
41733      * @cfg {function} Callback when stroke begin. 
41734      */
41735     onBegin: false,
41736     
41737     /**
41738      * @cfg {function} Callback when stroke end.
41739      */
41740     onEnd: false,
41741     
41742     getAutoCreate : function()
41743     {
41744         var cls = 'roo-signature column';
41745         
41746         if(this.cls){
41747             cls += ' ' + this.cls;
41748         }
41749         
41750         var col_sizes = [
41751             'lg',
41752             'md',
41753             'sm',
41754             'xs'
41755         ];
41756         
41757         for(var i = 0; i < col_sizes.length; i++) {
41758             if(this[col_sizes[i]]) {
41759                 cls += " col-"+col_sizes[i]+"-"+this[col_sizes[i]];
41760             }
41761         }
41762         
41763         var cfg = {
41764             tag: 'div',
41765             cls: cls,
41766             cn: [
41767                 {
41768                     tag: 'div',
41769                     cls: 'roo-signature-body',
41770                     cn: [
41771                         {
41772                             tag: 'canvas',
41773                             cls: 'roo-signature-body-canvas',
41774                             height: this.canvas_height,
41775                             width: this.canvas_width
41776                         }
41777                     ]
41778                 },
41779                 {
41780                     tag: 'input',
41781                     type: 'file',
41782                     style: 'display: none'
41783                 }
41784             ]
41785         };
41786         
41787         return cfg;
41788     },
41789     
41790     initEvents: function() 
41791     {
41792         Roo.bootstrap.BezierSignature.superclass.initEvents.call(this);
41793         
41794         var canvas = this.canvasEl();
41795         
41796         // mouse && touch event swapping...
41797         canvas.dom.style.touchAction = 'none';
41798         canvas.dom.style.msTouchAction = 'none';
41799         
41800         this.mouse_btn_down = false;
41801         canvas.on('mousedown', this._handleMouseDown, this);
41802         canvas.on('mousemove', this._handleMouseMove, this);
41803         Roo.select('html').first().on('mouseup', this._handleMouseUp, this);
41804         
41805         if (window.PointerEvent) {
41806             canvas.on('pointerdown', this._handleMouseDown, this);
41807             canvas.on('pointermove', this._handleMouseMove, this);
41808             Roo.select('html').first().on('pointerup', this._handleMouseUp, this);
41809         }
41810         
41811         if ('ontouchstart' in window) {
41812             canvas.on('touchstart', this._handleTouchStart, this);
41813             canvas.on('touchmove', this._handleTouchMove, this);
41814             canvas.on('touchend', this._handleTouchEnd, this);
41815         }
41816         
41817         Roo.EventManager.onWindowResize(this.resize, this, true);
41818         
41819         // file input event
41820         this.fileEl().on('change', this.uploadImage, this);
41821         
41822         this.clear();
41823         
41824         this.resize();
41825     },
41826     
41827     resize: function(){
41828         
41829         var canvas = this.canvasEl().dom;
41830         var ctx = this.canvasElCtx();
41831         var img_data = false;
41832         
41833         if(canvas.width > 0) {
41834             var img_data = ctx.getImageData(0, 0, canvas.width, canvas.height);
41835         }
41836         // setting canvas width will clean img data
41837         canvas.width = 0;
41838         
41839         var style = window.getComputedStyle ? 
41840             getComputedStyle(this.el.dom, null) : this.el.dom.currentStyle;
41841             
41842         var padding_left = parseInt(style.paddingLeft) || 0;
41843         var padding_right = parseInt(style.paddingRight) || 0;
41844         
41845         canvas.width = this.el.dom.clientWidth - padding_left - padding_right;
41846         
41847         if(img_data) {
41848             ctx.putImageData(img_data, 0, 0);
41849         }
41850     },
41851     
41852     _handleMouseDown: function(e)
41853     {
41854         if (e.browserEvent.which === 1) {
41855             this.mouse_btn_down = true;
41856             this.strokeBegin(e);
41857         }
41858     },
41859     
41860     _handleMouseMove: function (e)
41861     {
41862         if (this.mouse_btn_down) {
41863             this.strokeMoveUpdate(e);
41864         }
41865     },
41866     
41867     _handleMouseUp: function (e)
41868     {
41869         if (e.browserEvent.which === 1 && this.mouse_btn_down) {
41870             this.mouse_btn_down = false;
41871             this.strokeEnd(e);
41872         }
41873     },
41874     
41875     _handleTouchStart: function (e) {
41876         
41877         e.preventDefault();
41878         if (e.browserEvent.targetTouches.length === 1) {
41879             // var touch = e.browserEvent.changedTouches[0];
41880             // this.strokeBegin(touch);
41881             
41882              this.strokeBegin(e); // assume e catching the correct xy...
41883         }
41884     },
41885     
41886     _handleTouchMove: function (e) {
41887         e.preventDefault();
41888         // var touch = event.targetTouches[0];
41889         // _this._strokeMoveUpdate(touch);
41890         this.strokeMoveUpdate(e);
41891     },
41892     
41893     _handleTouchEnd: function (e) {
41894         var wasCanvasTouched = e.target === this.canvasEl().dom;
41895         if (wasCanvasTouched) {
41896             e.preventDefault();
41897             // var touch = event.changedTouches[0];
41898             // _this._strokeEnd(touch);
41899             this.strokeEnd(e);
41900         }
41901     },
41902     
41903     reset: function () {
41904         this._lastPoints = [];
41905         this._lastVelocity = 0;
41906         this._lastWidth = (this.min_width + this.max_width) / 2;
41907         this.canvasElCtx().fillStyle = this.dot_color;
41908     },
41909     
41910     strokeMoveUpdate: function(e)
41911     {
41912         this.strokeUpdate(e);
41913         
41914         if (this.throttle) {
41915             this.throttleStroke(this.strokeUpdate, this.throttle);
41916         }
41917         else {
41918             this.strokeUpdate(e);
41919         }
41920     },
41921     
41922     strokeBegin: function(e)
41923     {
41924         var newPointGroup = {
41925             color: this.dot_color,
41926             points: []
41927         };
41928         
41929         if (typeof this.onBegin === 'function') {
41930             this.onBegin(e);
41931         }
41932         
41933         this.curve_data.push(newPointGroup);
41934         this.reset();
41935         this.strokeUpdate(e);
41936     },
41937     
41938     strokeUpdate: function(e)
41939     {
41940         var rect = this.canvasEl().dom.getBoundingClientRect();
41941         var point = new this.Point(e.xy[0] - rect.left, e.xy[1] - rect.top, new Date().getTime());
41942         var lastPointGroup = this.curve_data[this.curve_data.length - 1];
41943         var lastPoints = lastPointGroup.points;
41944         var lastPoint = lastPoints.length > 0 && lastPoints[lastPoints.length - 1];
41945         var isLastPointTooClose = lastPoint
41946             ? point.distanceTo(lastPoint) <= this.min_distance
41947             : false;
41948         var color = lastPointGroup.color;
41949         if (!lastPoint || !(lastPoint && isLastPointTooClose)) {
41950             var curve = this.addPoint(point);
41951             if (!lastPoint) {
41952                 this.drawDot({color: color, point: point});
41953             }
41954             else if (curve) {
41955                 this.drawCurve({color: color, curve: curve});
41956             }
41957             lastPoints.push({
41958                 time: point.time,
41959                 x: point.x,
41960                 y: point.y
41961             });
41962         }
41963     },
41964     
41965     strokeEnd: function(e)
41966     {
41967         this.strokeUpdate(e);
41968         if (typeof this.onEnd === 'function') {
41969             this.onEnd(e);
41970         }
41971     },
41972     
41973     addPoint:  function (point) {
41974         var _lastPoints = this._lastPoints;
41975         _lastPoints.push(point);
41976         if (_lastPoints.length > 2) {
41977             if (_lastPoints.length === 3) {
41978                 _lastPoints.unshift(_lastPoints[0]);
41979             }
41980             var widths = this.calculateCurveWidths(_lastPoints[1], _lastPoints[2]);
41981             var curve = this.Bezier.fromPoints(_lastPoints, widths, this);
41982             _lastPoints.shift();
41983             return curve;
41984         }
41985         return null;
41986     },
41987     
41988     calculateCurveWidths: function (startPoint, endPoint) {
41989         var velocity = this.velocity_filter_weight * endPoint.velocityFrom(startPoint) +
41990             (1 - this.velocity_filter_weight) * this._lastVelocity;
41991
41992         var newWidth = Math.max(this.max_width / (velocity + 1), this.min_width);
41993         var widths = {
41994             end: newWidth,
41995             start: this._lastWidth
41996         };
41997         
41998         this._lastVelocity = velocity;
41999         this._lastWidth = newWidth;
42000         return widths;
42001     },
42002     
42003     drawDot: function (_a) {
42004         var color = _a.color, point = _a.point;
42005         var ctx = this.canvasElCtx();
42006         var width = typeof this.dot_size === 'function' ? this.dot_size() : this.dot_size;
42007         ctx.beginPath();
42008         this.drawCurveSegment(point.x, point.y, width);
42009         ctx.closePath();
42010         ctx.fillStyle = color;
42011         ctx.fill();
42012     },
42013     
42014     drawCurve: function (_a) {
42015         var color = _a.color, curve = _a.curve;
42016         var ctx = this.canvasElCtx();
42017         var widthDelta = curve.endWidth - curve.startWidth;
42018         var drawSteps = Math.floor(curve.length()) * 2;
42019         ctx.beginPath();
42020         ctx.fillStyle = color;
42021         for (var i = 0; i < drawSteps; i += 1) {
42022         var t = i / drawSteps;
42023         var tt = t * t;
42024         var ttt = tt * t;
42025         var u = 1 - t;
42026         var uu = u * u;
42027         var uuu = uu * u;
42028         var x = uuu * curve.startPoint.x;
42029         x += 3 * uu * t * curve.control1.x;
42030         x += 3 * u * tt * curve.control2.x;
42031         x += ttt * curve.endPoint.x;
42032         var y = uuu * curve.startPoint.y;
42033         y += 3 * uu * t * curve.control1.y;
42034         y += 3 * u * tt * curve.control2.y;
42035         y += ttt * curve.endPoint.y;
42036         var width = curve.startWidth + ttt * widthDelta;
42037         this.drawCurveSegment(x, y, width);
42038         }
42039         ctx.closePath();
42040         ctx.fill();
42041     },
42042     
42043     drawCurveSegment: function (x, y, width) {
42044         var ctx = this.canvasElCtx();
42045         ctx.moveTo(x, y);
42046         ctx.arc(x, y, width, 0, 2 * Math.PI, false);
42047         this.is_empty = false;
42048     },
42049     
42050     clear: function()
42051     {
42052         var ctx = this.canvasElCtx();
42053         var canvas = this.canvasEl().dom;
42054         ctx.fillStyle = this.bg_color;
42055         ctx.clearRect(0, 0, canvas.width, canvas.height);
42056         ctx.fillRect(0, 0, canvas.width, canvas.height);
42057         this.curve_data = [];
42058         this.reset();
42059         this.is_empty = true;
42060     },
42061     
42062     fileEl: function()
42063     {
42064         return  this.el.select('input',true).first();
42065     },
42066     
42067     canvasEl: function()
42068     {
42069         return this.el.select('canvas',true).first();
42070     },
42071     
42072     canvasElCtx: function()
42073     {
42074         return this.el.select('canvas',true).first().dom.getContext('2d');
42075     },
42076     
42077     getImage: function(type)
42078     {
42079         if(this.is_empty) {
42080             return false;
42081         }
42082         
42083         // encryption ?
42084         return this.canvasEl().dom.toDataURL('image/'+type, 1);
42085     },
42086     
42087     drawFromImage: function(img_src)
42088     {
42089         var img = new Image();
42090         
42091         img.onload = function(){
42092             this.canvasElCtx().drawImage(img, 0, 0);
42093         }.bind(this);
42094         
42095         img.src = img_src;
42096         
42097         this.is_empty = false;
42098     },
42099     
42100     selectImage: function()
42101     {
42102         this.fileEl().dom.click();
42103     },
42104     
42105     uploadImage: function(e)
42106     {
42107         var reader = new FileReader();
42108         
42109         reader.onload = function(e){
42110             var img = new Image();
42111             img.onload = function(){
42112                 this.reset();
42113                 this.canvasElCtx().drawImage(img, 0, 0);
42114             }.bind(this);
42115             img.src = e.target.result;
42116         }.bind(this);
42117         
42118         reader.readAsDataURL(e.target.files[0]);
42119     },
42120     
42121     // Bezier Point Constructor
42122     Point: (function () {
42123         function Point(x, y, time) {
42124             this.x = x;
42125             this.y = y;
42126             this.time = time || Date.now();
42127         }
42128         Point.prototype.distanceTo = function (start) {
42129             return Math.sqrt(Math.pow(this.x - start.x, 2) + Math.pow(this.y - start.y, 2));
42130         };
42131         Point.prototype.equals = function (other) {
42132             return this.x === other.x && this.y === other.y && this.time === other.time;
42133         };
42134         Point.prototype.velocityFrom = function (start) {
42135             return this.time !== start.time
42136             ? this.distanceTo(start) / (this.time - start.time)
42137             : 0;
42138         };
42139         return Point;
42140     }()),
42141     
42142     
42143     // Bezier Constructor
42144     Bezier: (function () {
42145         function Bezier(startPoint, control2, control1, endPoint, startWidth, endWidth) {
42146             this.startPoint = startPoint;
42147             this.control2 = control2;
42148             this.control1 = control1;
42149             this.endPoint = endPoint;
42150             this.startWidth = startWidth;
42151             this.endWidth = endWidth;
42152         }
42153         Bezier.fromPoints = function (points, widths, scope) {
42154             var c2 = this.calculateControlPoints(points[0], points[1], points[2], scope).c2;
42155             var c3 = this.calculateControlPoints(points[1], points[2], points[3], scope).c1;
42156             return new Bezier(points[1], c2, c3, points[2], widths.start, widths.end);
42157         };
42158         Bezier.calculateControlPoints = function (s1, s2, s3, scope) {
42159             var dx1 = s1.x - s2.x;
42160             var dy1 = s1.y - s2.y;
42161             var dx2 = s2.x - s3.x;
42162             var dy2 = s2.y - s3.y;
42163             var m1 = { x: (s1.x + s2.x) / 2.0, y: (s1.y + s2.y) / 2.0 };
42164             var m2 = { x: (s2.x + s3.x) / 2.0, y: (s2.y + s3.y) / 2.0 };
42165             var l1 = Math.sqrt(dx1 * dx1 + dy1 * dy1);
42166             var l2 = Math.sqrt(dx2 * dx2 + dy2 * dy2);
42167             var dxm = m1.x - m2.x;
42168             var dym = m1.y - m2.y;
42169             var k = l2 / (l1 + l2);
42170             var cm = { x: m2.x + dxm * k, y: m2.y + dym * k };
42171             var tx = s2.x - cm.x;
42172             var ty = s2.y - cm.y;
42173             return {
42174                 c1: new scope.Point(m1.x + tx, m1.y + ty),
42175                 c2: new scope.Point(m2.x + tx, m2.y + ty)
42176             };
42177         };
42178         Bezier.prototype.length = function () {
42179             var steps = 10;
42180             var length = 0;
42181             var px;
42182             var py;
42183             for (var i = 0; i <= steps; i += 1) {
42184                 var t = i / steps;
42185                 var cx = this.point(t, this.startPoint.x, this.control1.x, this.control2.x, this.endPoint.x);
42186                 var cy = this.point(t, this.startPoint.y, this.control1.y, this.control2.y, this.endPoint.y);
42187                 if (i > 0) {
42188                     var xdiff = cx - px;
42189                     var ydiff = cy - py;
42190                     length += Math.sqrt(xdiff * xdiff + ydiff * ydiff);
42191                 }
42192                 px = cx;
42193                 py = cy;
42194             }
42195             return length;
42196         };
42197         Bezier.prototype.point = function (t, start, c1, c2, end) {
42198             return (start * (1.0 - t) * (1.0 - t) * (1.0 - t))
42199             + (3.0 * c1 * (1.0 - t) * (1.0 - t) * t)
42200             + (3.0 * c2 * (1.0 - t) * t * t)
42201             + (end * t * t * t);
42202         };
42203         return Bezier;
42204     }()),
42205     
42206     throttleStroke: function(fn, wait) {
42207       if (wait === void 0) { wait = 250; }
42208       var previous = 0;
42209       var timeout = null;
42210       var result;
42211       var storedContext;
42212       var storedArgs;
42213       var later = function () {
42214           previous = Date.now();
42215           timeout = null;
42216           result = fn.apply(storedContext, storedArgs);
42217           if (!timeout) {
42218               storedContext = null;
42219               storedArgs = [];
42220           }
42221       };
42222       return function wrapper() {
42223           var args = [];
42224           for (var _i = 0; _i < arguments.length; _i++) {
42225               args[_i] = arguments[_i];
42226           }
42227           var now = Date.now();
42228           var remaining = wait - (now - previous);
42229           storedContext = this;
42230           storedArgs = args;
42231           if (remaining <= 0 || remaining > wait) {
42232               if (timeout) {
42233                   clearTimeout(timeout);
42234                   timeout = null;
42235               }
42236               previous = now;
42237               result = fn.apply(storedContext, storedArgs);
42238               if (!timeout) {
42239                   storedContext = null;
42240                   storedArgs = [];
42241               }
42242           }
42243           else if (!timeout) {
42244               timeout = window.setTimeout(later, remaining);
42245           }
42246           return result;
42247       };
42248   }
42249   
42250 });
42251
42252  
42253
42254