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:  new Roo.data.ArrayReader({
12142                 id: config.id,
12143                 fields : config.fields
12144             },
12145             Roo.data.Record.create(config.fields)
12146         ),
12147         proxy : new Roo.data.MemoryProxy(config.data)
12148     });
12149     this.load();
12150 };
12151 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
12152  * Based on:
12153  * Ext JS Library 1.1.1
12154  * Copyright(c) 2006-2007, Ext JS, LLC.
12155  *
12156  * Originally Released Under LGPL - original licence link has changed is not relivant.
12157  *
12158  * Fork - LGPL
12159  * <script type="text/javascript">
12160  */
12161
12162 /**
12163 /**
12164  * @extends Roo.data.Store
12165  * @class Roo.data.JsonStore
12166  * Small helper class to make creating Stores for JSON data easier. <br/>
12167 <pre><code>
12168 var store = new Roo.data.JsonStore({
12169     url: 'get-images.php',
12170     root: 'images',
12171     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
12172 });
12173 </code></pre>
12174  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
12175  * JsonReader and HttpProxy (unless inline data is provided).</b>
12176  * @cfg {Array} fields An array of field definition objects, or field name strings.
12177  * @constructor
12178  * @param {Object} config
12179  */
12180 Roo.data.JsonStore = function(c){
12181     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
12182         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
12183         reader: new Roo.data.JsonReader(c, c.fields)
12184     }));
12185 };
12186 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
12187  * Based on:
12188  * Ext JS Library 1.1.1
12189  * Copyright(c) 2006-2007, Ext JS, LLC.
12190  *
12191  * Originally Released Under LGPL - original licence link has changed is not relivant.
12192  *
12193  * Fork - LGPL
12194  * <script type="text/javascript">
12195  */
12196
12197  
12198 Roo.data.Field = function(config){
12199     if(typeof config == "string"){
12200         config = {name: config};
12201     }
12202     Roo.apply(this, config);
12203     
12204     if(!this.type){
12205         this.type = "auto";
12206     }
12207     
12208     var st = Roo.data.SortTypes;
12209     // named sortTypes are supported, here we look them up
12210     if(typeof this.sortType == "string"){
12211         this.sortType = st[this.sortType];
12212     }
12213     
12214     // set default sortType for strings and dates
12215     if(!this.sortType){
12216         switch(this.type){
12217             case "string":
12218                 this.sortType = st.asUCString;
12219                 break;
12220             case "date":
12221                 this.sortType = st.asDate;
12222                 break;
12223             default:
12224                 this.sortType = st.none;
12225         }
12226     }
12227
12228     // define once
12229     var stripRe = /[\$,%]/g;
12230
12231     // prebuilt conversion function for this field, instead of
12232     // switching every time we're reading a value
12233     if(!this.convert){
12234         var cv, dateFormat = this.dateFormat;
12235         switch(this.type){
12236             case "":
12237             case "auto":
12238             case undefined:
12239                 cv = function(v){ return v; };
12240                 break;
12241             case "string":
12242                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
12243                 break;
12244             case "int":
12245                 cv = function(v){
12246                     return v !== undefined && v !== null && v !== '' ?
12247                            parseInt(String(v).replace(stripRe, ""), 10) : '';
12248                     };
12249                 break;
12250             case "float":
12251                 cv = function(v){
12252                     return v !== undefined && v !== null && v !== '' ?
12253                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
12254                     };
12255                 break;
12256             case "bool":
12257             case "boolean":
12258                 cv = function(v){ return v === true || v === "true" || v == 1; };
12259                 break;
12260             case "date":
12261                 cv = function(v){
12262                     if(!v){
12263                         return '';
12264                     }
12265                     if(v instanceof Date){
12266                         return v;
12267                     }
12268                     if(dateFormat){
12269                         if(dateFormat == "timestamp"){
12270                             return new Date(v*1000);
12271                         }
12272                         return Date.parseDate(v, dateFormat);
12273                     }
12274                     var parsed = Date.parse(v);
12275                     return parsed ? new Date(parsed) : null;
12276                 };
12277              break;
12278             
12279         }
12280         this.convert = cv;
12281     }
12282 };
12283
12284 Roo.data.Field.prototype = {
12285     dateFormat: null,
12286     defaultValue: "",
12287     mapping: null,
12288     sortType : null,
12289     sortDir : "ASC"
12290 };/*
12291  * Based on:
12292  * Ext JS Library 1.1.1
12293  * Copyright(c) 2006-2007, Ext JS, LLC.
12294  *
12295  * Originally Released Under LGPL - original licence link has changed is not relivant.
12296  *
12297  * Fork - LGPL
12298  * <script type="text/javascript">
12299  */
12300  
12301 // Base class for reading structured data from a data source.  This class is intended to be
12302 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
12303
12304 /**
12305  * @class Roo.data.DataReader
12306  * Base class for reading structured data from a data source.  This class is intended to be
12307  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
12308  */
12309
12310 Roo.data.DataReader = function(meta, recordType){
12311     
12312     this.meta = meta;
12313     
12314     this.recordType = recordType instanceof Array ? 
12315         Roo.data.Record.create(recordType) : recordType;
12316 };
12317
12318 Roo.data.DataReader.prototype = {
12319      /**
12320      * Create an empty record
12321      * @param {Object} data (optional) - overlay some values
12322      * @return {Roo.data.Record} record created.
12323      */
12324     newRow :  function(d) {
12325         var da =  {};
12326         this.recordType.prototype.fields.each(function(c) {
12327             switch( c.type) {
12328                 case 'int' : da[c.name] = 0; break;
12329                 case 'date' : da[c.name] = new Date(); break;
12330                 case 'float' : da[c.name] = 0.0; break;
12331                 case 'boolean' : da[c.name] = false; break;
12332                 default : da[c.name] = ""; break;
12333             }
12334             
12335         });
12336         return new this.recordType(Roo.apply(da, d));
12337     }
12338     
12339     
12340 };/*
12341  * Based on:
12342  * Ext JS Library 1.1.1
12343  * Copyright(c) 2006-2007, Ext JS, LLC.
12344  *
12345  * Originally Released Under LGPL - original licence link has changed is not relivant.
12346  *
12347  * Fork - LGPL
12348  * <script type="text/javascript">
12349  */
12350
12351 /**
12352  * @class Roo.data.DataProxy
12353  * @extends Roo.data.Observable
12354  * This class is an abstract base class for implementations which provide retrieval of
12355  * unformatted data objects.<br>
12356  * <p>
12357  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
12358  * (of the appropriate type which knows how to parse the data object) to provide a block of
12359  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
12360  * <p>
12361  * Custom implementations must implement the load method as described in
12362  * {@link Roo.data.HttpProxy#load}.
12363  */
12364 Roo.data.DataProxy = function(){
12365     this.addEvents({
12366         /**
12367          * @event beforeload
12368          * Fires before a network request is made to retrieve a data object.
12369          * @param {Object} This DataProxy object.
12370          * @param {Object} params The params parameter to the load function.
12371          */
12372         beforeload : true,
12373         /**
12374          * @event load
12375          * Fires before the load method's callback is called.
12376          * @param {Object} This DataProxy object.
12377          * @param {Object} o The data object.
12378          * @param {Object} arg The callback argument object passed to the load function.
12379          */
12380         load : true,
12381         /**
12382          * @event loadexception
12383          * Fires if an Exception occurs during data retrieval.
12384          * @param {Object} This DataProxy object.
12385          * @param {Object} o The data object.
12386          * @param {Object} arg The callback argument object passed to the load function.
12387          * @param {Object} e The Exception.
12388          */
12389         loadexception : true
12390     });
12391     Roo.data.DataProxy.superclass.constructor.call(this);
12392 };
12393
12394 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
12395
12396     /**
12397      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
12398      */
12399 /*
12400  * Based on:
12401  * Ext JS Library 1.1.1
12402  * Copyright(c) 2006-2007, Ext JS, LLC.
12403  *
12404  * Originally Released Under LGPL - original licence link has changed is not relivant.
12405  *
12406  * Fork - LGPL
12407  * <script type="text/javascript">
12408  */
12409 /**
12410  * @class Roo.data.MemoryProxy
12411  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
12412  * to the Reader when its load method is called.
12413  * @constructor
12414  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
12415  */
12416 Roo.data.MemoryProxy = function(data){
12417     if (data.data) {
12418         data = data.data;
12419     }
12420     Roo.data.MemoryProxy.superclass.constructor.call(this);
12421     this.data = data;
12422 };
12423
12424 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
12425     
12426     /**
12427      * Load data from the requested source (in this case an in-memory
12428      * data object passed to the constructor), read the data object into
12429      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12430      * process that block using the passed callback.
12431      * @param {Object} params This parameter is not used by the MemoryProxy class.
12432      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12433      * object into a block of Roo.data.Records.
12434      * @param {Function} callback The function into which to pass the block of Roo.data.records.
12435      * The function must be passed <ul>
12436      * <li>The Record block object</li>
12437      * <li>The "arg" argument from the load function</li>
12438      * <li>A boolean success indicator</li>
12439      * </ul>
12440      * @param {Object} scope The scope in which to call the callback
12441      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12442      */
12443     load : function(params, reader, callback, scope, arg){
12444         params = params || {};
12445         var result;
12446         try {
12447             result = reader.readRecords(params.data ? params.data :this.data);
12448         }catch(e){
12449             this.fireEvent("loadexception", this, arg, null, e);
12450             callback.call(scope, null, arg, false);
12451             return;
12452         }
12453         callback.call(scope, result, arg, true);
12454     },
12455     
12456     // private
12457     update : function(params, records){
12458         
12459     }
12460 });/*
12461  * Based on:
12462  * Ext JS Library 1.1.1
12463  * Copyright(c) 2006-2007, Ext JS, LLC.
12464  *
12465  * Originally Released Under LGPL - original licence link has changed is not relivant.
12466  *
12467  * Fork - LGPL
12468  * <script type="text/javascript">
12469  */
12470 /**
12471  * @class Roo.data.HttpProxy
12472  * @extends Roo.data.DataProxy
12473  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
12474  * configured to reference a certain URL.<br><br>
12475  * <p>
12476  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
12477  * from which the running page was served.<br><br>
12478  * <p>
12479  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
12480  * <p>
12481  * Be aware that to enable the browser to parse an XML document, the server must set
12482  * the Content-Type header in the HTTP response to "text/xml".
12483  * @constructor
12484  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
12485  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
12486  * will be used to make the request.
12487  */
12488 Roo.data.HttpProxy = function(conn){
12489     Roo.data.HttpProxy.superclass.constructor.call(this);
12490     // is conn a conn config or a real conn?
12491     this.conn = conn;
12492     this.useAjax = !conn || !conn.events;
12493   
12494 };
12495
12496 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
12497     // thse are take from connection...
12498     
12499     /**
12500      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
12501      */
12502     /**
12503      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
12504      * extra parameters to each request made by this object. (defaults to undefined)
12505      */
12506     /**
12507      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
12508      *  to each request made by this object. (defaults to undefined)
12509      */
12510     /**
12511      * @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)
12512      */
12513     /**
12514      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
12515      */
12516      /**
12517      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
12518      * @type Boolean
12519      */
12520   
12521
12522     /**
12523      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
12524      * @type Boolean
12525      */
12526     /**
12527      * Return the {@link Roo.data.Connection} object being used by this Proxy.
12528      * @return {Connection} The Connection object. This object may be used to subscribe to events on
12529      * a finer-grained basis than the DataProxy events.
12530      */
12531     getConnection : function(){
12532         return this.useAjax ? Roo.Ajax : this.conn;
12533     },
12534
12535     /**
12536      * Load data from the configured {@link Roo.data.Connection}, read the data object into
12537      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
12538      * process that block using the passed callback.
12539      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12540      * for the request to the remote server.
12541      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12542      * object into a block of Roo.data.Records.
12543      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12544      * The function must be passed <ul>
12545      * <li>The Record block object</li>
12546      * <li>The "arg" argument from the load function</li>
12547      * <li>A boolean success indicator</li>
12548      * </ul>
12549      * @param {Object} scope The scope in which to call the callback
12550      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12551      */
12552     load : function(params, reader, callback, scope, arg){
12553         if(this.fireEvent("beforeload", this, params) !== false){
12554             var  o = {
12555                 params : params || {},
12556                 request: {
12557                     callback : callback,
12558                     scope : scope,
12559                     arg : arg
12560                 },
12561                 reader: reader,
12562                 callback : this.loadResponse,
12563                 scope: this
12564             };
12565             if(this.useAjax){
12566                 Roo.applyIf(o, this.conn);
12567                 if(this.activeRequest){
12568                     Roo.Ajax.abort(this.activeRequest);
12569                 }
12570                 this.activeRequest = Roo.Ajax.request(o);
12571             }else{
12572                 this.conn.request(o);
12573             }
12574         }else{
12575             callback.call(scope||this, null, arg, false);
12576         }
12577     },
12578
12579     // private
12580     loadResponse : function(o, success, response){
12581         delete this.activeRequest;
12582         if(!success){
12583             this.fireEvent("loadexception", this, o, response);
12584             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12585             return;
12586         }
12587         var result;
12588         try {
12589             result = o.reader.read(response);
12590         }catch(e){
12591             this.fireEvent("loadexception", this, o, response, e);
12592             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12593             return;
12594         }
12595         
12596         this.fireEvent("load", this, o, o.request.arg);
12597         o.request.callback.call(o.request.scope, result, o.request.arg, true);
12598     },
12599
12600     // private
12601     update : function(dataSet){
12602
12603     },
12604
12605     // private
12606     updateResponse : function(dataSet){
12607
12608     }
12609 });/*
12610  * Based on:
12611  * Ext JS Library 1.1.1
12612  * Copyright(c) 2006-2007, Ext JS, LLC.
12613  *
12614  * Originally Released Under LGPL - original licence link has changed is not relivant.
12615  *
12616  * Fork - LGPL
12617  * <script type="text/javascript">
12618  */
12619
12620 /**
12621  * @class Roo.data.ScriptTagProxy
12622  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
12623  * other than the originating domain of the running page.<br><br>
12624  * <p>
12625  * <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
12626  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
12627  * <p>
12628  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
12629  * source code that is used as the source inside a &lt;script> tag.<br><br>
12630  * <p>
12631  * In order for the browser to process the returned data, the server must wrap the data object
12632  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
12633  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
12634  * depending on whether the callback name was passed:
12635  * <p>
12636  * <pre><code>
12637 boolean scriptTag = false;
12638 String cb = request.getParameter("callback");
12639 if (cb != null) {
12640     scriptTag = true;
12641     response.setContentType("text/javascript");
12642 } else {
12643     response.setContentType("application/x-json");
12644 }
12645 Writer out = response.getWriter();
12646 if (scriptTag) {
12647     out.write(cb + "(");
12648 }
12649 out.print(dataBlock.toJsonString());
12650 if (scriptTag) {
12651     out.write(");");
12652 }
12653 </pre></code>
12654  *
12655  * @constructor
12656  * @param {Object} config A configuration object.
12657  */
12658 Roo.data.ScriptTagProxy = function(config){
12659     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
12660     Roo.apply(this, config);
12661     this.head = document.getElementsByTagName("head")[0];
12662 };
12663
12664 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
12665
12666 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
12667     /**
12668      * @cfg {String} url The URL from which to request the data object.
12669      */
12670     /**
12671      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
12672      */
12673     timeout : 30000,
12674     /**
12675      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
12676      * the server the name of the callback function set up by the load call to process the returned data object.
12677      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
12678      * javascript output which calls this named function passing the data object as its only parameter.
12679      */
12680     callbackParam : "callback",
12681     /**
12682      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
12683      * name to the request.
12684      */
12685     nocache : true,
12686
12687     /**
12688      * Load data from the configured URL, read the data object into
12689      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12690      * process that block using the passed callback.
12691      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12692      * for the request to the remote server.
12693      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12694      * object into a block of Roo.data.Records.
12695      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12696      * The function must be passed <ul>
12697      * <li>The Record block object</li>
12698      * <li>The "arg" argument from the load function</li>
12699      * <li>A boolean success indicator</li>
12700      * </ul>
12701      * @param {Object} scope The scope in which to call the callback
12702      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12703      */
12704     load : function(params, reader, callback, scope, arg){
12705         if(this.fireEvent("beforeload", this, params) !== false){
12706
12707             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
12708
12709             var url = this.url;
12710             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
12711             if(this.nocache){
12712                 url += "&_dc=" + (new Date().getTime());
12713             }
12714             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
12715             var trans = {
12716                 id : transId,
12717                 cb : "stcCallback"+transId,
12718                 scriptId : "stcScript"+transId,
12719                 params : params,
12720                 arg : arg,
12721                 url : url,
12722                 callback : callback,
12723                 scope : scope,
12724                 reader : reader
12725             };
12726             var conn = this;
12727
12728             window[trans.cb] = function(o){
12729                 conn.handleResponse(o, trans);
12730             };
12731
12732             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
12733
12734             if(this.autoAbort !== false){
12735                 this.abort();
12736             }
12737
12738             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
12739
12740             var script = document.createElement("script");
12741             script.setAttribute("src", url);
12742             script.setAttribute("type", "text/javascript");
12743             script.setAttribute("id", trans.scriptId);
12744             this.head.appendChild(script);
12745
12746             this.trans = trans;
12747         }else{
12748             callback.call(scope||this, null, arg, false);
12749         }
12750     },
12751
12752     // private
12753     isLoading : function(){
12754         return this.trans ? true : false;
12755     },
12756
12757     /**
12758      * Abort the current server request.
12759      */
12760     abort : function(){
12761         if(this.isLoading()){
12762             this.destroyTrans(this.trans);
12763         }
12764     },
12765
12766     // private
12767     destroyTrans : function(trans, isLoaded){
12768         this.head.removeChild(document.getElementById(trans.scriptId));
12769         clearTimeout(trans.timeoutId);
12770         if(isLoaded){
12771             window[trans.cb] = undefined;
12772             try{
12773                 delete window[trans.cb];
12774             }catch(e){}
12775         }else{
12776             // if hasn't been loaded, wait for load to remove it to prevent script error
12777             window[trans.cb] = function(){
12778                 window[trans.cb] = undefined;
12779                 try{
12780                     delete window[trans.cb];
12781                 }catch(e){}
12782             };
12783         }
12784     },
12785
12786     // private
12787     handleResponse : function(o, trans){
12788         this.trans = false;
12789         this.destroyTrans(trans, true);
12790         var result;
12791         try {
12792             result = trans.reader.readRecords(o);
12793         }catch(e){
12794             this.fireEvent("loadexception", this, o, trans.arg, e);
12795             trans.callback.call(trans.scope||window, null, trans.arg, false);
12796             return;
12797         }
12798         this.fireEvent("load", this, o, trans.arg);
12799         trans.callback.call(trans.scope||window, result, trans.arg, true);
12800     },
12801
12802     // private
12803     handleFailure : function(trans){
12804         this.trans = false;
12805         this.destroyTrans(trans, false);
12806         this.fireEvent("loadexception", this, null, trans.arg);
12807         trans.callback.call(trans.scope||window, null, trans.arg, false);
12808     }
12809 });/*
12810  * Based on:
12811  * Ext JS Library 1.1.1
12812  * Copyright(c) 2006-2007, Ext JS, LLC.
12813  *
12814  * Originally Released Under LGPL - original licence link has changed is not relivant.
12815  *
12816  * Fork - LGPL
12817  * <script type="text/javascript">
12818  */
12819
12820 /**
12821  * @class Roo.data.JsonReader
12822  * @extends Roo.data.DataReader
12823  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
12824  * based on mappings in a provided Roo.data.Record constructor.
12825  * 
12826  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
12827  * in the reply previously. 
12828  * 
12829  * <p>
12830  * Example code:
12831  * <pre><code>
12832 var RecordDef = Roo.data.Record.create([
12833     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
12834     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
12835 ]);
12836 var myReader = new Roo.data.JsonReader({
12837     totalProperty: "results",    // The property which contains the total dataset size (optional)
12838     root: "rows",                // The property which contains an Array of row objects
12839     id: "id"                     // The property within each row object that provides an ID for the record (optional)
12840 }, RecordDef);
12841 </code></pre>
12842  * <p>
12843  * This would consume a JSON file like this:
12844  * <pre><code>
12845 { 'results': 2, 'rows': [
12846     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
12847     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
12848 }
12849 </code></pre>
12850  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
12851  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
12852  * paged from the remote server.
12853  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
12854  * @cfg {String} root name of the property which contains the Array of row objects.
12855  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
12856  * @cfg {Array} fields Array of field definition objects
12857  * @constructor
12858  * Create a new JsonReader
12859  * @param {Object} meta Metadata configuration options
12860  * @param {Object} recordType Either an Array of field definition objects,
12861  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
12862  */
12863 Roo.data.JsonReader = function(meta, recordType){
12864     
12865     meta = meta || {};
12866     // set some defaults:
12867     Roo.applyIf(meta, {
12868         totalProperty: 'total',
12869         successProperty : 'success',
12870         root : 'data',
12871         id : 'id'
12872     });
12873     
12874     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
12875 };
12876 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
12877     
12878     /**
12879      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
12880      * Used by Store query builder to append _requestMeta to params.
12881      * 
12882      */
12883     metaFromRemote : false,
12884     /**
12885      * This method is only used by a DataProxy which has retrieved data from a remote server.
12886      * @param {Object} response The XHR object which contains the JSON data in its responseText.
12887      * @return {Object} data A data block which is used by an Roo.data.Store object as
12888      * a cache of Roo.data.Records.
12889      */
12890     read : function(response){
12891         var json = response.responseText;
12892        
12893         var o = /* eval:var:o */ eval("("+json+")");
12894         if(!o) {
12895             throw {message: "JsonReader.read: Json object not found"};
12896         }
12897         
12898         if(o.metaData){
12899             
12900             delete this.ef;
12901             this.metaFromRemote = true;
12902             this.meta = o.metaData;
12903             this.recordType = Roo.data.Record.create(o.metaData.fields);
12904             this.onMetaChange(this.meta, this.recordType, o);
12905         }
12906         return this.readRecords(o);
12907     },
12908
12909     // private function a store will implement
12910     onMetaChange : function(meta, recordType, o){
12911
12912     },
12913
12914     /**
12915          * @ignore
12916          */
12917     simpleAccess: function(obj, subsc) {
12918         return obj[subsc];
12919     },
12920
12921         /**
12922          * @ignore
12923          */
12924     getJsonAccessor: function(){
12925         var re = /[\[\.]/;
12926         return function(expr) {
12927             try {
12928                 return(re.test(expr))
12929                     ? new Function("obj", "return obj." + expr)
12930                     : function(obj){
12931                         return obj[expr];
12932                     };
12933             } catch(e){}
12934             return Roo.emptyFn;
12935         };
12936     }(),
12937
12938     /**
12939      * Create a data block containing Roo.data.Records from an XML document.
12940      * @param {Object} o An object which contains an Array of row objects in the property specified
12941      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
12942      * which contains the total size of the dataset.
12943      * @return {Object} data A data block which is used by an Roo.data.Store object as
12944      * a cache of Roo.data.Records.
12945      */
12946     readRecords : function(o){
12947         /**
12948          * After any data loads, the raw JSON data is available for further custom processing.
12949          * @type Object
12950          */
12951         this.o = o;
12952         var s = this.meta, Record = this.recordType,
12953             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
12954
12955 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
12956         if (!this.ef) {
12957             if(s.totalProperty) {
12958                     this.getTotal = this.getJsonAccessor(s.totalProperty);
12959                 }
12960                 if(s.successProperty) {
12961                     this.getSuccess = this.getJsonAccessor(s.successProperty);
12962                 }
12963                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
12964                 if (s.id) {
12965                         var g = this.getJsonAccessor(s.id);
12966                         this.getId = function(rec) {
12967                                 var r = g(rec);  
12968                                 return (r === undefined || r === "") ? null : r;
12969                         };
12970                 } else {
12971                         this.getId = function(){return null;};
12972                 }
12973             this.ef = [];
12974             for(var jj = 0; jj < fl; jj++){
12975                 f = fi[jj];
12976                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
12977                 this.ef[jj] = this.getJsonAccessor(map);
12978             }
12979         }
12980
12981         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
12982         if(s.totalProperty){
12983             var vt = parseInt(this.getTotal(o), 10);
12984             if(!isNaN(vt)){
12985                 totalRecords = vt;
12986             }
12987         }
12988         if(s.successProperty){
12989             var vs = this.getSuccess(o);
12990             if(vs === false || vs === 'false'){
12991                 success = false;
12992             }
12993         }
12994         var records = [];
12995         for(var i = 0; i < c; i++){
12996                 var n = root[i];
12997             var values = {};
12998             var id = this.getId(n);
12999             for(var j = 0; j < fl; j++){
13000                 f = fi[j];
13001             var v = this.ef[j](n);
13002             if (!f.convert) {
13003                 Roo.log('missing convert for ' + f.name);
13004                 Roo.log(f);
13005                 continue;
13006             }
13007             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
13008             }
13009             var record = new Record(values, id);
13010             record.json = n;
13011             records[i] = record;
13012         }
13013         return {
13014             raw : o,
13015             success : success,
13016             records : records,
13017             totalRecords : totalRecords
13018         };
13019     }
13020 });/*
13021  * Based on:
13022  * Ext JS Library 1.1.1
13023  * Copyright(c) 2006-2007, Ext JS, LLC.
13024  *
13025  * Originally Released Under LGPL - original licence link has changed is not relivant.
13026  *
13027  * Fork - LGPL
13028  * <script type="text/javascript">
13029  */
13030
13031 /**
13032  * @class Roo.data.ArrayReader
13033  * @extends Roo.data.DataReader
13034  * Data reader class to create an Array of Roo.data.Record objects from an Array.
13035  * Each element of that Array represents a row of data fields. The
13036  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
13037  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
13038  * <p>
13039  * Example code:.
13040  * <pre><code>
13041 var RecordDef = Roo.data.Record.create([
13042     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
13043     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
13044 ]);
13045 var myReader = new Roo.data.ArrayReader({
13046     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
13047 }, RecordDef);
13048 </code></pre>
13049  * <p>
13050  * This would consume an Array like this:
13051  * <pre><code>
13052 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
13053   </code></pre>
13054  
13055  * @constructor
13056  * Create a new JsonReader
13057  * @param {Object} meta Metadata configuration options.
13058  * @param {Object|Array} recordType Either an Array of field definition objects
13059  * 
13060  * @cfg {Array} fields Array of field definition objects
13061  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
13062  * as specified to {@link Roo.data.Record#create},
13063  * or an {@link Roo.data.Record} object
13064  *
13065  * 
13066  * created using {@link Roo.data.Record#create}.
13067  */
13068 Roo.data.ArrayReader = function(meta, recordType)
13069 {    
13070     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
13071 };
13072
13073 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
13074     /**
13075      * Create a data block containing Roo.data.Records from an XML document.
13076      * @param {Object} o An Array of row objects which represents the dataset.
13077      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
13078      * a cache of Roo.data.Records.
13079      */
13080     readRecords : function(o)
13081     {
13082         var sid = this.meta ? this.meta.id : null;
13083         var recordType = this.recordType, fields = recordType.prototype.fields;
13084         var records = [];
13085         var root = o;
13086         for(var i = 0; i < root.length; i++){
13087                 var n = root[i];
13088             var values = {};
13089             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
13090             for(var j = 0, jlen = fields.length; j < jlen; j++){
13091                 var f = fields.items[j];
13092                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
13093                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
13094                 v = f.convert(v);
13095                 values[f.name] = v;
13096             }
13097             var record = new recordType(values, id);
13098             record.json = n;
13099             records[records.length] = record;
13100         }
13101         return {
13102             records : records,
13103             totalRecords : records.length
13104         };
13105     }
13106 });/*
13107  * - LGPL
13108  * * 
13109  */
13110
13111 /**
13112  * @class Roo.bootstrap.ComboBox
13113  * @extends Roo.bootstrap.TriggerField
13114  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
13115  * @cfg {Boolean} append (true|false) default false
13116  * @cfg {Boolean} autoFocus (true|false) auto focus the first item, default true
13117  * @cfg {Boolean} tickable ComboBox with tickable selections (true|false), default false
13118  * @cfg {Boolean} triggerList trigger show the list or not (true|false) default true
13119  * @cfg {Boolean} showToggleBtn show toggle button or not (true|false) default true
13120  * @cfg {String} btnPosition set the position of the trigger button (left | right) default right
13121  * @cfg {Boolean} animate default true
13122  * @cfg {Boolean} emptyResultText only for touch device
13123  * @cfg {String} triggerText multiple combobox trigger button text default 'Select'
13124  * @cfg {String} emptyTitle default ''
13125  * @constructor
13126  * Create a new ComboBox.
13127  * @param {Object} config Configuration options
13128  */
13129 Roo.bootstrap.ComboBox = function(config){
13130     Roo.bootstrap.ComboBox.superclass.constructor.call(this, config);
13131     this.addEvents({
13132         /**
13133          * @event expand
13134          * Fires when the dropdown list is expanded
13135         * @param {Roo.bootstrap.ComboBox} combo This combo box
13136         */
13137         'expand' : true,
13138         /**
13139          * @event collapse
13140          * Fires when the dropdown list is collapsed
13141         * @param {Roo.bootstrap.ComboBox} combo This combo box
13142         */
13143         'collapse' : true,
13144         /**
13145          * @event beforeselect
13146          * Fires before a list item is selected. Return false to cancel the selection.
13147         * @param {Roo.bootstrap.ComboBox} combo This combo box
13148         * @param {Roo.data.Record} record The data record returned from the underlying store
13149         * @param {Number} index The index of the selected item in the dropdown list
13150         */
13151         'beforeselect' : true,
13152         /**
13153          * @event select
13154          * Fires when a list item is selected
13155         * @param {Roo.bootstrap.ComboBox} combo This combo box
13156         * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
13157         * @param {Number} index The index of the selected item in the dropdown list
13158         */
13159         'select' : true,
13160         /**
13161          * @event beforequery
13162          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
13163          * The event object passed has these properties:
13164         * @param {Roo.bootstrap.ComboBox} combo This combo box
13165         * @param {String} query The query
13166         * @param {Boolean} forceAll true to force "all" query
13167         * @param {Boolean} cancel true to cancel the query
13168         * @param {Object} e The query event object
13169         */
13170         'beforequery': true,
13171          /**
13172          * @event add
13173          * Fires when the 'add' icon is pressed (add a listener to enable add button)
13174         * @param {Roo.bootstrap.ComboBox} combo This combo box
13175         */
13176         'add' : true,
13177         /**
13178          * @event edit
13179          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
13180         * @param {Roo.bootstrap.ComboBox} combo This combo box
13181         * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
13182         */
13183         'edit' : true,
13184         /**
13185          * @event remove
13186          * Fires when the remove value from the combobox array
13187         * @param {Roo.bootstrap.ComboBox} combo This combo box
13188         */
13189         'remove' : true,
13190         /**
13191          * @event afterremove
13192          * Fires when the remove value from the combobox array
13193         * @param {Roo.bootstrap.ComboBox} combo This combo box
13194         */
13195         'afterremove' : true,
13196         /**
13197          * @event specialfilter
13198          * Fires when specialfilter
13199             * @param {Roo.bootstrap.ComboBox} combo This combo box
13200             */
13201         'specialfilter' : true,
13202         /**
13203          * @event tick
13204          * Fires when tick the element
13205             * @param {Roo.bootstrap.ComboBox} combo This combo box
13206             */
13207         'tick' : true,
13208         /**
13209          * @event touchviewdisplay
13210          * Fires when touch view require special display (default is using displayField)
13211             * @param {Roo.bootstrap.ComboBox} combo This combo box
13212             * @param {Object} cfg set html .
13213             */
13214         'touchviewdisplay' : true
13215         
13216     });
13217     
13218     this.item = [];
13219     this.tickItems = [];
13220     
13221     this.selectedIndex = -1;
13222     if(this.mode == 'local'){
13223         if(config.queryDelay === undefined){
13224             this.queryDelay = 10;
13225         }
13226         if(config.minChars === undefined){
13227             this.minChars = 0;
13228         }
13229     }
13230 };
13231
13232 Roo.extend(Roo.bootstrap.ComboBox, Roo.bootstrap.TriggerField, {
13233      
13234     /**
13235      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
13236      * rendering into an Roo.Editor, defaults to false)
13237      */
13238     /**
13239      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
13240      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
13241      */
13242     /**
13243      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
13244      */
13245     /**
13246      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
13247      * the dropdown list (defaults to undefined, with no header element)
13248      */
13249
13250      /**
13251      * @cfg {String/Roo.Template} tpl The template to use to render the output
13252      */
13253      
13254      /**
13255      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
13256      */
13257     listWidth: undefined,
13258     /**
13259      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
13260      * mode = 'remote' or 'text' if mode = 'local')
13261      */
13262     displayField: undefined,
13263     
13264     /**
13265      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
13266      * mode = 'remote' or 'value' if mode = 'local'). 
13267      * Note: use of a valueField requires the user make a selection
13268      * in order for a value to be mapped.
13269      */
13270     valueField: undefined,
13271     /**
13272      * @cfg {String} modalTitle The title of the dialog that pops up on mobile views.
13273      */
13274     modalTitle : '',
13275     
13276     /**
13277      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
13278      * field's data value (defaults to the underlying DOM element's name)
13279      */
13280     hiddenName: undefined,
13281     /**
13282      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
13283      */
13284     listClass: '',
13285     /**
13286      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
13287      */
13288     selectedClass: 'active',
13289     
13290     /**
13291      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
13292      */
13293     shadow:'sides',
13294     /**
13295      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
13296      * anchor positions (defaults to 'tl-bl')
13297      */
13298     listAlign: 'tl-bl?',
13299     /**
13300      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
13301      */
13302     maxHeight: 300,
13303     /**
13304      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
13305      * query specified by the allQuery config option (defaults to 'query')
13306      */
13307     triggerAction: 'query',
13308     /**
13309      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
13310      * (defaults to 4, does not apply if editable = false)
13311      */
13312     minChars : 4,
13313     /**
13314      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
13315      * delay (typeAheadDelay) if it matches a known value (defaults to false)
13316      */
13317     typeAhead: false,
13318     /**
13319      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
13320      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
13321      */
13322     queryDelay: 500,
13323     /**
13324      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
13325      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
13326      */
13327     pageSize: 0,
13328     /**
13329      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
13330      * when editable = true (defaults to false)
13331      */
13332     selectOnFocus:false,
13333     /**
13334      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
13335      */
13336     queryParam: 'query',
13337     /**
13338      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
13339      * when mode = 'remote' (defaults to 'Loading...')
13340      */
13341     loadingText: 'Loading...',
13342     /**
13343      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
13344      */
13345     resizable: false,
13346     /**
13347      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
13348      */
13349     handleHeight : 8,
13350     /**
13351      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
13352      * traditional select (defaults to true)
13353      */
13354     editable: true,
13355     /**
13356      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
13357      */
13358     allQuery: '',
13359     /**
13360      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
13361      */
13362     mode: 'remote',
13363     /**
13364      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
13365      * listWidth has a higher value)
13366      */
13367     minListWidth : 70,
13368     /**
13369      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
13370      * allow the user to set arbitrary text into the field (defaults to false)
13371      */
13372     forceSelection:false,
13373     /**
13374      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
13375      * if typeAhead = true (defaults to 250)
13376      */
13377     typeAheadDelay : 250,
13378     /**
13379      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
13380      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
13381      */
13382     valueNotFoundText : undefined,
13383     /**
13384      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
13385      */
13386     blockFocus : false,
13387     
13388     /**
13389      * @cfg {Boolean} disableClear Disable showing of clear button.
13390      */
13391     disableClear : false,
13392     /**
13393      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
13394      */
13395     alwaysQuery : false,
13396     
13397     /**
13398      * @cfg {Boolean} multiple  (true|false) ComboBobArray, default false
13399      */
13400     multiple : false,
13401     
13402     /**
13403      * @cfg {String} invalidClass DEPRICATED - uses BS4 is-valid now
13404      */
13405     invalidClass : "has-warning",
13406     
13407     /**
13408      * @cfg {String} validClass DEPRICATED - uses BS4 is-valid now
13409      */
13410     validClass : "has-success",
13411     
13412     /**
13413      * @cfg {Boolean} specialFilter (true|false) special filter default false
13414      */
13415     specialFilter : false,
13416     
13417     /**
13418      * @cfg {Boolean} mobileTouchView (true|false) show mobile touch view when using a mobile default true
13419      */
13420     mobileTouchView : true,
13421     
13422     /**
13423      * @cfg {Boolean} useNativeIOS (true|false) render it as classic select for ios, not support dynamic load data (default false)
13424      */
13425     useNativeIOS : false,
13426     
13427     /**
13428      * @cfg {Boolean} mobile_restrict_height (true|false) restrict height for touch view
13429      */
13430     mobile_restrict_height : false,
13431     
13432     ios_options : false,
13433     
13434     //private
13435     addicon : false,
13436     editicon: false,
13437     
13438     page: 0,
13439     hasQuery: false,
13440     append: false,
13441     loadNext: false,
13442     autoFocus : true,
13443     tickable : false,
13444     btnPosition : 'right',
13445     triggerList : true,
13446     showToggleBtn : true,
13447     animate : true,
13448     emptyResultText: 'Empty',
13449     triggerText : 'Select',
13450     emptyTitle : '',
13451     
13452     // element that contains real text value.. (when hidden is used..)
13453     
13454     getAutoCreate : function()
13455     {   
13456         var cfg = false;
13457         //render
13458         /*
13459          * Render classic select for iso
13460          */
13461         
13462         if(Roo.isIOS && this.useNativeIOS){
13463             cfg = this.getAutoCreateNativeIOS();
13464             return cfg;
13465         }
13466         
13467         /*
13468          * Touch Devices
13469          */
13470         
13471         if(Roo.isTouch && this.mobileTouchView){
13472             cfg = this.getAutoCreateTouchView();
13473             return cfg;;
13474         }
13475         
13476         /*
13477          *  Normal ComboBox
13478          */
13479         if(!this.tickable){
13480             cfg = Roo.bootstrap.ComboBox.superclass.getAutoCreate.call(this);
13481             return cfg;
13482         }
13483         
13484         /*
13485          *  ComboBox with tickable selections
13486          */
13487              
13488         var align = this.labelAlign || this.parentLabelAlign();
13489         
13490         cfg = {
13491             cls : 'form-group roo-combobox-tickable' //input-group
13492         };
13493         
13494         var btn_text_select = '';
13495         var btn_text_done = '';
13496         var btn_text_cancel = '';
13497         
13498         if (this.btn_text_show) {
13499             btn_text_select = 'Select';
13500             btn_text_done = 'Done';
13501             btn_text_cancel = 'Cancel'; 
13502         }
13503         
13504         var buttons = {
13505             tag : 'div',
13506             cls : 'tickable-buttons',
13507             cn : [
13508                 {
13509                     tag : 'button',
13510                     type : 'button',
13511                     cls : 'btn btn-link btn-edit pull-' + this.btnPosition,
13512                     //html : this.triggerText
13513                     html: btn_text_select
13514                 },
13515                 {
13516                     tag : 'button',
13517                     type : 'button',
13518                     name : 'ok',
13519                     cls : 'btn btn-link btn-ok pull-' + this.btnPosition,
13520                     //html : 'Done'
13521                     html: btn_text_done
13522                 },
13523                 {
13524                     tag : 'button',
13525                     type : 'button',
13526                     name : 'cancel',
13527                     cls : 'btn btn-link btn-cancel pull-' + this.btnPosition,
13528                     //html : 'Cancel'
13529                     html: btn_text_cancel
13530                 }
13531             ]
13532         };
13533         
13534         if(this.editable){
13535             buttons.cn.unshift({
13536                 tag: 'input',
13537                 cls: 'roo-select2-search-field-input'
13538             });
13539         }
13540         
13541         var _this = this;
13542         
13543         Roo.each(buttons.cn, function(c){
13544             if (_this.size) {
13545                 c.cls += ' btn-' + _this.size;
13546             }
13547
13548             if (_this.disabled) {
13549                 c.disabled = true;
13550             }
13551         });
13552         
13553         var box = {
13554             tag: 'div',
13555             style : 'display: contents',
13556             cn: [
13557                 {
13558                     tag: 'input',
13559                     type : 'hidden',
13560                     cls: 'form-hidden-field'
13561                 },
13562                 {
13563                     tag: 'ul',
13564                     cls: 'roo-select2-choices',
13565                     cn:[
13566                         {
13567                             tag: 'li',
13568                             cls: 'roo-select2-search-field',
13569                             cn: [
13570                                 buttons
13571                             ]
13572                         }
13573                     ]
13574                 }
13575             ]
13576         };
13577         
13578         var combobox = {
13579             cls: 'roo-select2-container input-group roo-select2-container-multi',
13580             cn: [
13581                 
13582                 box
13583 //                {
13584 //                    tag: 'ul',
13585 //                    cls: 'typeahead typeahead-long dropdown-menu',
13586 //                    style: 'display:none; max-height:' + this.maxHeight + 'px;'
13587 //                }
13588             ]
13589         };
13590         
13591         if(this.hasFeedback && !this.allowBlank){
13592             
13593             var feedback = {
13594                 tag: 'span',
13595                 cls: 'glyphicon form-control-feedback'
13596             };
13597
13598             combobox.cn.push(feedback);
13599         }
13600         
13601         var indicator = {
13602             tag : 'i',
13603             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
13604             tooltip : 'This field is required'
13605         };
13606         if (Roo.bootstrap.version == 4) {
13607             indicator = {
13608                 tag : 'i',
13609                 style : 'display:none'
13610             };
13611         }
13612         if (align ==='left' && this.fieldLabel.length) {
13613             
13614             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
13615             
13616             cfg.cn = [
13617                 indicator,
13618                 {
13619                     tag: 'label',
13620                     'for' :  id,
13621                     cls : 'control-label col-form-label',
13622                     html : this.fieldLabel
13623
13624                 },
13625                 {
13626                     cls : "", 
13627                     cn: [
13628                         combobox
13629                     ]
13630                 }
13631
13632             ];
13633             
13634             var labelCfg = cfg.cn[1];
13635             var contentCfg = cfg.cn[2];
13636             
13637
13638             if(this.indicatorpos == 'right'){
13639                 
13640                 cfg.cn = [
13641                     {
13642                         tag: 'label',
13643                         'for' :  id,
13644                         cls : 'control-label col-form-label',
13645                         cn : [
13646                             {
13647                                 tag : 'span',
13648                                 html : this.fieldLabel
13649                             },
13650                             indicator
13651                         ]
13652                     },
13653                     {
13654                         cls : "",
13655                         cn: [
13656                             combobox
13657                         ]
13658                     }
13659
13660                 ];
13661                 
13662                 
13663                 
13664                 labelCfg = cfg.cn[0];
13665                 contentCfg = cfg.cn[1];
13666             
13667             }
13668             
13669             if(this.labelWidth > 12){
13670                 labelCfg.style = "width: " + this.labelWidth + 'px';
13671             }
13672             
13673             if(this.labelWidth < 13 && this.labelmd == 0){
13674                 this.labelmd = this.labelWidth;
13675             }
13676             
13677             if(this.labellg > 0){
13678                 labelCfg.cls += ' col-lg-' + this.labellg;
13679                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
13680             }
13681             
13682             if(this.labelmd > 0){
13683                 labelCfg.cls += ' col-md-' + this.labelmd;
13684                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
13685             }
13686             
13687             if(this.labelsm > 0){
13688                 labelCfg.cls += ' col-sm-' + this.labelsm;
13689                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
13690             }
13691             
13692             if(this.labelxs > 0){
13693                 labelCfg.cls += ' col-xs-' + this.labelxs;
13694                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
13695             }
13696                 
13697                 
13698         } else if ( this.fieldLabel.length) {
13699 //                Roo.log(" label");
13700                  cfg.cn = [
13701                    indicator,
13702                     {
13703                         tag: 'label',
13704                         //cls : 'input-group-addon',
13705                         html : this.fieldLabel
13706                     },
13707                     combobox
13708                 ];
13709                 
13710                 if(this.indicatorpos == 'right'){
13711                     cfg.cn = [
13712                         {
13713                             tag: 'label',
13714                             //cls : 'input-group-addon',
13715                             html : this.fieldLabel
13716                         },
13717                         indicator,
13718                         combobox
13719                     ];
13720                     
13721                 }
13722
13723         } else {
13724             
13725 //                Roo.log(" no label && no align");
13726                 cfg = combobox
13727                      
13728                 
13729         }
13730          
13731         var settings=this;
13732         ['xs','sm','md','lg'].map(function(size){
13733             if (settings[size]) {
13734                 cfg.cls += ' col-' + size + '-' + settings[size];
13735             }
13736         });
13737         
13738         return cfg;
13739         
13740     },
13741     
13742     _initEventsCalled : false,
13743     
13744     // private
13745     initEvents: function()
13746     {   
13747         if (this._initEventsCalled) { // as we call render... prevent looping...
13748             return;
13749         }
13750         this._initEventsCalled = true;
13751         
13752         if (!this.store) {
13753             throw "can not find store for combo";
13754         }
13755         
13756         this.indicator = this.indicatorEl();
13757         
13758         this.store = Roo.factory(this.store, Roo.data);
13759         this.store.parent = this;
13760         
13761         // if we are building from html. then this element is so complex, that we can not really
13762         // use the rendered HTML.
13763         // so we have to trash and replace the previous code.
13764         if (Roo.XComponent.build_from_html) {
13765             // remove this element....
13766             var e = this.el.dom, k=0;
13767             while (e ) { e = e.previousSibling;  ++k;}
13768
13769             this.el.remove();
13770             
13771             this.el=false;
13772             this.rendered = false;
13773             
13774             this.render(this.parent().getChildContainer(true), k);
13775         }
13776         
13777         if(Roo.isIOS && this.useNativeIOS){
13778             this.initIOSView();
13779             return;
13780         }
13781         
13782         /*
13783          * Touch Devices
13784          */
13785         
13786         if(Roo.isTouch && this.mobileTouchView){
13787             this.initTouchView();
13788             return;
13789         }
13790         
13791         if(this.tickable){
13792             this.initTickableEvents();
13793             return;
13794         }
13795         
13796         Roo.bootstrap.ComboBox.superclass.initEvents.call(this);
13797         
13798         if(this.hiddenName){
13799             
13800             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
13801             
13802             this.hiddenField.dom.value =
13803                 this.hiddenValue !== undefined ? this.hiddenValue :
13804                 this.value !== undefined ? this.value : '';
13805
13806             // prevent input submission
13807             this.el.dom.removeAttribute('name');
13808             this.hiddenField.dom.setAttribute('name', this.hiddenName);
13809              
13810              
13811         }
13812         //if(Roo.isGecko){
13813         //    this.el.dom.setAttribute('autocomplete', 'off');
13814         //}
13815         
13816         var cls = 'x-combo-list';
13817         
13818         //this.list = new Roo.Layer({
13819         //    shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
13820         //});
13821         
13822         var _this = this;
13823         
13824         (function(){
13825             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
13826             _this.list.setWidth(lw);
13827         }).defer(100);
13828         
13829         this.list.on('mouseover', this.onViewOver, this);
13830         this.list.on('mousemove', this.onViewMove, this);
13831         this.list.on('scroll', this.onViewScroll, this);
13832         
13833         /*
13834         this.list.swallowEvent('mousewheel');
13835         this.assetHeight = 0;
13836
13837         if(this.title){
13838             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
13839             this.assetHeight += this.header.getHeight();
13840         }
13841
13842         this.innerList = this.list.createChild({cls:cls+'-inner'});
13843         this.innerList.on('mouseover', this.onViewOver, this);
13844         this.innerList.on('mousemove', this.onViewMove, this);
13845         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
13846         
13847         if(this.allowBlank && !this.pageSize && !this.disableClear){
13848             this.footer = this.list.createChild({cls:cls+'-ft'});
13849             this.pageTb = new Roo.Toolbar(this.footer);
13850            
13851         }
13852         if(this.pageSize){
13853             this.footer = this.list.createChild({cls:cls+'-ft'});
13854             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
13855                     {pageSize: this.pageSize});
13856             
13857         }
13858         
13859         if (this.pageTb && this.allowBlank && !this.disableClear) {
13860             var _this = this;
13861             this.pageTb.add(new Roo.Toolbar.Fill(), {
13862                 cls: 'x-btn-icon x-btn-clear',
13863                 text: '&#160;',
13864                 handler: function()
13865                 {
13866                     _this.collapse();
13867                     _this.clearValue();
13868                     _this.onSelect(false, -1);
13869                 }
13870             });
13871         }
13872         if (this.footer) {
13873             this.assetHeight += this.footer.getHeight();
13874         }
13875         */
13876             
13877         if(!this.tpl){
13878             this.tpl = Roo.bootstrap.version == 4 ?
13879                 '<a class="dropdown-item" href="#">{' + this.displayField + '}</a>' :  // 4 does not need <li> and it get's really confisued.
13880                 '<li><a class="dropdown-item" href="#">{' + this.displayField + '}</a></li>';
13881         }
13882
13883         this.view = new Roo.View(this.list, this.tpl, {
13884             singleSelect:true, store: this.store, selectedClass: this.selectedClass
13885         });
13886         //this.view.wrapEl.setDisplayed(false);
13887         this.view.on('click', this.onViewClick, this);
13888         
13889         
13890         this.store.on('beforeload', this.onBeforeLoad, this);
13891         this.store.on('load', this.onLoad, this);
13892         this.store.on('loadexception', this.onLoadException, this);
13893         /*
13894         if(this.resizable){
13895             this.resizer = new Roo.Resizable(this.list,  {
13896                pinned:true, handles:'se'
13897             });
13898             this.resizer.on('resize', function(r, w, h){
13899                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
13900                 this.listWidth = w;
13901                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
13902                 this.restrictHeight();
13903             }, this);
13904             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
13905         }
13906         */
13907         if(!this.editable){
13908             this.editable = true;
13909             this.setEditable(false);
13910         }
13911         
13912         /*
13913         
13914         if (typeof(this.events.add.listeners) != 'undefined') {
13915             
13916             this.addicon = this.wrap.createChild(
13917                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
13918        
13919             this.addicon.on('click', function(e) {
13920                 this.fireEvent('add', this);
13921             }, this);
13922         }
13923         if (typeof(this.events.edit.listeners) != 'undefined') {
13924             
13925             this.editicon = this.wrap.createChild(
13926                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
13927             if (this.addicon) {
13928                 this.editicon.setStyle('margin-left', '40px');
13929             }
13930             this.editicon.on('click', function(e) {
13931                 
13932                 // we fire even  if inothing is selected..
13933                 this.fireEvent('edit', this, this.lastData );
13934                 
13935             }, this);
13936         }
13937         */
13938         
13939         this.keyNav = new Roo.KeyNav(this.inputEl(), {
13940             "up" : function(e){
13941                 this.inKeyMode = true;
13942                 this.selectPrev();
13943             },
13944
13945             "down" : function(e){
13946                 if(!this.isExpanded()){
13947                     this.onTriggerClick();
13948                 }else{
13949                     this.inKeyMode = true;
13950                     this.selectNext();
13951                 }
13952             },
13953
13954             "enter" : function(e){
13955 //                this.onViewClick();
13956                 //return true;
13957                 this.collapse();
13958                 
13959                 if(this.fireEvent("specialkey", this, e)){
13960                     this.onViewClick(false);
13961                 }
13962                 
13963                 return true;
13964             },
13965
13966             "esc" : function(e){
13967                 this.collapse();
13968             },
13969
13970             "tab" : function(e){
13971                 this.collapse();
13972                 
13973                 if(this.fireEvent("specialkey", this, e)){
13974                     this.onViewClick(false);
13975                 }
13976                 
13977                 return true;
13978             },
13979
13980             scope : this,
13981
13982             doRelay : function(foo, bar, hname){
13983                 if(hname == 'down' || this.scope.isExpanded()){
13984                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
13985                 }
13986                 return true;
13987             },
13988
13989             forceKeyDown: true
13990         });
13991         
13992         
13993         this.queryDelay = Math.max(this.queryDelay || 10,
13994                 this.mode == 'local' ? 10 : 250);
13995         
13996         
13997         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
13998         
13999         if(this.typeAhead){
14000             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
14001         }
14002         if(this.editable !== false){
14003             this.inputEl().on("keyup", this.onKeyUp, this);
14004         }
14005         if(this.forceSelection){
14006             this.inputEl().on('blur', this.doForce, this);
14007         }
14008         
14009         if(this.multiple){
14010             this.choices = this.el.select('ul.roo-select2-choices', true).first();
14011             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14012         }
14013     },
14014     
14015     initTickableEvents: function()
14016     {   
14017         this.createList();
14018         
14019         if(this.hiddenName){
14020             
14021             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
14022             
14023             this.hiddenField.dom.value =
14024                 this.hiddenValue !== undefined ? this.hiddenValue :
14025                 this.value !== undefined ? this.value : '';
14026
14027             // prevent input submission
14028             this.el.dom.removeAttribute('name');
14029             this.hiddenField.dom.setAttribute('name', this.hiddenName);
14030              
14031              
14032         }
14033         
14034 //        this.list = this.el.select('ul.dropdown-menu',true).first();
14035         
14036         this.choices = this.el.select('ul.roo-select2-choices', true).first();
14037         this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14038         if(this.triggerList){
14039             this.searchField.on("click", this.onSearchFieldClick, this, {preventDefault:true});
14040         }
14041          
14042         this.trigger = this.el.select('.tickable-buttons > .btn-edit', true).first();
14043         this.trigger.on("click", this.onTickableTriggerClick, this, {preventDefault:true});
14044         
14045         this.okBtn = this.el.select('.tickable-buttons > .btn-ok', true).first();
14046         this.cancelBtn = this.el.select('.tickable-buttons > .btn-cancel', true).first();
14047         
14048         this.okBtn.on('click', this.onTickableFooterButtonClick, this, this.okBtn);
14049         this.cancelBtn.on('click', this.onTickableFooterButtonClick, this, this.cancelBtn);
14050         
14051         this.trigger.setVisibilityMode(Roo.Element.DISPLAY);
14052         this.okBtn.setVisibilityMode(Roo.Element.DISPLAY);
14053         this.cancelBtn.setVisibilityMode(Roo.Element.DISPLAY);
14054         
14055         this.okBtn.hide();
14056         this.cancelBtn.hide();
14057         
14058         var _this = this;
14059         
14060         (function(){
14061             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
14062             _this.list.setWidth(lw);
14063         }).defer(100);
14064         
14065         this.list.on('mouseover', this.onViewOver, this);
14066         this.list.on('mousemove', this.onViewMove, this);
14067         
14068         this.list.on('scroll', this.onViewScroll, this);
14069         
14070         if(!this.tpl){
14071             this.tpl = '<li class="roo-select2-result"><div class="checkbox"><input id="{roo-id}"' + 
14072                 'type="checkbox" {roo-data-checked}><label for="{roo-id}"><b>{' + this.displayField + '}</b></label></div></li>';
14073         }
14074
14075         this.view = new Roo.View(this.list, this.tpl, {
14076             singleSelect:true,
14077             tickable:true,
14078             parent:this,
14079             store: this.store,
14080             selectedClass: this.selectedClass
14081         });
14082         
14083         //this.view.wrapEl.setDisplayed(false);
14084         this.view.on('click', this.onViewClick, this);
14085         
14086         
14087         
14088         this.store.on('beforeload', this.onBeforeLoad, this);
14089         this.store.on('load', this.onLoad, this);
14090         this.store.on('loadexception', this.onLoadException, this);
14091         
14092         if(this.editable){
14093             this.keyNav = new Roo.KeyNav(this.tickableInputEl(), {
14094                 "up" : function(e){
14095                     this.inKeyMode = true;
14096                     this.selectPrev();
14097                 },
14098
14099                 "down" : function(e){
14100                     this.inKeyMode = true;
14101                     this.selectNext();
14102                 },
14103
14104                 "enter" : function(e){
14105                     if(this.fireEvent("specialkey", this, e)){
14106                         this.onViewClick(false);
14107                     }
14108                     
14109                     return true;
14110                 },
14111
14112                 "esc" : function(e){
14113                     this.onTickableFooterButtonClick(e, false, false);
14114                 },
14115
14116                 "tab" : function(e){
14117                     this.fireEvent("specialkey", this, e);
14118                     
14119                     this.onTickableFooterButtonClick(e, false, false);
14120                     
14121                     return true;
14122                 },
14123
14124                 scope : this,
14125
14126                 doRelay : function(e, fn, key){
14127                     if(this.scope.isExpanded()){
14128                        return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
14129                     }
14130                     return true;
14131                 },
14132
14133                 forceKeyDown: true
14134             });
14135         }
14136         
14137         this.queryDelay = Math.max(this.queryDelay || 10,
14138                 this.mode == 'local' ? 10 : 250);
14139         
14140         
14141         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
14142         
14143         if(this.typeAhead){
14144             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
14145         }
14146         
14147         if(this.editable !== false){
14148             this.tickableInputEl().on("keyup", this.onKeyUp, this);
14149         }
14150         
14151         this.indicator = this.indicatorEl();
14152         
14153         if(this.indicator){
14154             this.indicator.setVisibilityMode(Roo.Element.DISPLAY);
14155             this.indicator.hide();
14156         }
14157         
14158     },
14159
14160     onDestroy : function(){
14161         if(this.view){
14162             this.view.setStore(null);
14163             this.view.el.removeAllListeners();
14164             this.view.el.remove();
14165             this.view.purgeListeners();
14166         }
14167         if(this.list){
14168             this.list.dom.innerHTML  = '';
14169         }
14170         
14171         if(this.store){
14172             this.store.un('beforeload', this.onBeforeLoad, this);
14173             this.store.un('load', this.onLoad, this);
14174             this.store.un('loadexception', this.onLoadException, this);
14175         }
14176         Roo.bootstrap.ComboBox.superclass.onDestroy.call(this);
14177     },
14178
14179     // private
14180     fireKey : function(e){
14181         if(e.isNavKeyPress() && !this.list.isVisible()){
14182             this.fireEvent("specialkey", this, e);
14183         }
14184     },
14185
14186     // private
14187     onResize: function(w, h){
14188 //        Roo.bootstrap.ComboBox.superclass.onResize.apply(this, arguments);
14189 //        
14190 //        if(typeof w != 'number'){
14191 //            // we do not handle it!?!?
14192 //            return;
14193 //        }
14194 //        var tw = this.trigger.getWidth();
14195 //       // tw += this.addicon ? this.addicon.getWidth() : 0;
14196 //       // tw += this.editicon ? this.editicon.getWidth() : 0;
14197 //        var x = w - tw;
14198 //        this.inputEl().setWidth( this.adjustWidth('input', x));
14199 //            
14200 //        //this.trigger.setStyle('left', x+'px');
14201 //        
14202 //        if(this.list && this.listWidth === undefined){
14203 //            var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
14204 //            this.list.setWidth(lw);
14205 //            this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
14206 //        }
14207         
14208     
14209         
14210     },
14211
14212     /**
14213      * Allow or prevent the user from directly editing the field text.  If false is passed,
14214      * the user will only be able to select from the items defined in the dropdown list.  This method
14215      * is the runtime equivalent of setting the 'editable' config option at config time.
14216      * @param {Boolean} value True to allow the user to directly edit the field text
14217      */
14218     setEditable : function(value){
14219         if(value == this.editable){
14220             return;
14221         }
14222         this.editable = value;
14223         if(!value){
14224             this.inputEl().dom.setAttribute('readOnly', true);
14225             this.inputEl().on('mousedown', this.onTriggerClick,  this);
14226             this.inputEl().addClass('x-combo-noedit');
14227         }else{
14228             this.inputEl().dom.setAttribute('readOnly', false);
14229             this.inputEl().un('mousedown', this.onTriggerClick,  this);
14230             this.inputEl().removeClass('x-combo-noedit');
14231         }
14232     },
14233
14234     // private
14235     
14236     onBeforeLoad : function(combo,opts){
14237         if(!this.hasFocus){
14238             return;
14239         }
14240          if (!opts.add) {
14241             this.list.dom.innerHTML = '<li class="loading-indicator">'+(this.loadingText||'loading')+'</li>' ;
14242          }
14243         this.restrictHeight();
14244         this.selectedIndex = -1;
14245     },
14246
14247     // private
14248     onLoad : function(){
14249         
14250         this.hasQuery = false;
14251         
14252         if(!this.hasFocus){
14253             return;
14254         }
14255         
14256         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14257             this.loading.hide();
14258         }
14259         
14260         if(this.store.getCount() > 0){
14261             
14262             this.expand();
14263             this.restrictHeight();
14264             if(this.lastQuery == this.allQuery){
14265                 if(this.editable && !this.tickable){
14266                     this.inputEl().dom.select();
14267                 }
14268                 
14269                 if(
14270                     !this.selectByValue(this.value, true) &&
14271                     this.autoFocus && 
14272                     (
14273                         !this.store.lastOptions ||
14274                         typeof(this.store.lastOptions.add) == 'undefined' || 
14275                         this.store.lastOptions.add != true
14276                     )
14277                 ){
14278                     this.select(0, true);
14279                 }
14280             }else{
14281                 if(this.autoFocus){
14282                     this.selectNext();
14283                 }
14284                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
14285                     this.taTask.delay(this.typeAheadDelay);
14286                 }
14287             }
14288         }else{
14289             this.onEmptyResults();
14290         }
14291         
14292         //this.el.focus();
14293     },
14294     // private
14295     onLoadException : function()
14296     {
14297         this.hasQuery = false;
14298         
14299         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14300             this.loading.hide();
14301         }
14302         
14303         if(this.tickable && this.editable){
14304             return;
14305         }
14306         
14307         this.collapse();
14308         // only causes errors at present
14309         //Roo.log(this.store.reader.jsonData);
14310         //if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
14311             // fixme
14312             //Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
14313         //}
14314         
14315         
14316     },
14317     // private
14318     onTypeAhead : function(){
14319         if(this.store.getCount() > 0){
14320             var r = this.store.getAt(0);
14321             var newValue = r.data[this.displayField];
14322             var len = newValue.length;
14323             var selStart = this.getRawValue().length;
14324             
14325             if(selStart != len){
14326                 this.setRawValue(newValue);
14327                 this.selectText(selStart, newValue.length);
14328             }
14329         }
14330     },
14331
14332     // private
14333     onSelect : function(record, index){
14334         
14335         if(this.fireEvent('beforeselect', this, record, index) !== false){
14336         
14337             this.setFromData(index > -1 ? record.data : false);
14338             
14339             this.collapse();
14340             this.fireEvent('select', this, record, index);
14341         }
14342     },
14343
14344     /**
14345      * Returns the currently selected field value or empty string if no value is set.
14346      * @return {String} value The selected value
14347      */
14348     getValue : function()
14349     {
14350         if(Roo.isIOS && this.useNativeIOS){
14351             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.valueField];
14352         }
14353         
14354         if(this.multiple){
14355             return (this.hiddenField) ? this.hiddenField.dom.value : this.value;
14356         }
14357         
14358         if(this.valueField){
14359             return typeof this.value != 'undefined' ? this.value : '';
14360         }else{
14361             return Roo.bootstrap.ComboBox.superclass.getValue.call(this);
14362         }
14363     },
14364     
14365     getRawValue : function()
14366     {
14367         if(Roo.isIOS && this.useNativeIOS){
14368             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.displayField];
14369         }
14370         
14371         var v = this.inputEl().getValue();
14372         
14373         return v;
14374     },
14375
14376     /**
14377      * Clears any text/value currently set in the field
14378      */
14379     clearValue : function(){
14380         
14381         if(this.hiddenField){
14382             this.hiddenField.dom.value = '';
14383         }
14384         this.value = '';
14385         this.setRawValue('');
14386         this.lastSelectionText = '';
14387         this.lastData = false;
14388         
14389         var close = this.closeTriggerEl();
14390         
14391         if(close){
14392             close.hide();
14393         }
14394         
14395         this.validate();
14396         
14397     },
14398
14399     /**
14400      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
14401      * will be displayed in the field.  If the value does not match the data value of an existing item,
14402      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
14403      * Otherwise the field will be blank (although the value will still be set).
14404      * @param {String} value The value to match
14405      */
14406     setValue : function(v)
14407     {
14408         if(Roo.isIOS && this.useNativeIOS){
14409             this.setIOSValue(v);
14410             return;
14411         }
14412         
14413         if(this.multiple){
14414             this.syncValue();
14415             return;
14416         }
14417         
14418         var text = v;
14419         if(this.valueField){
14420             var r = this.findRecord(this.valueField, v);
14421             if(r){
14422                 text = r.data[this.displayField];
14423             }else if(this.valueNotFoundText !== undefined){
14424                 text = this.valueNotFoundText;
14425             }
14426         }
14427         this.lastSelectionText = text;
14428         if(this.hiddenField){
14429             this.hiddenField.dom.value = v;
14430         }
14431         Roo.bootstrap.ComboBox.superclass.setValue.call(this, text);
14432         this.value = v;
14433         
14434         var close = this.closeTriggerEl();
14435         
14436         if(close){
14437             (v && (v.length || v * 1 > 0)) ? close.show() : close.hide();
14438         }
14439         
14440         this.validate();
14441     },
14442     /**
14443      * @property {Object} the last set data for the element
14444      */
14445     
14446     lastData : false,
14447     /**
14448      * Sets the value of the field based on a object which is related to the record format for the store.
14449      * @param {Object} value the value to set as. or false on reset?
14450      */
14451     setFromData : function(o){
14452         
14453         if(this.multiple){
14454             this.addItem(o);
14455             return;
14456         }
14457             
14458         var dv = ''; // display value
14459         var vv = ''; // value value..
14460         this.lastData = o;
14461         if (this.displayField) {
14462             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
14463         } else {
14464             // this is an error condition!!!
14465             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
14466         }
14467         
14468         if(this.valueField){
14469             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
14470         }
14471         
14472         var close = this.closeTriggerEl();
14473         
14474         if(close){
14475             if(dv.length || vv * 1 > 0){
14476                 close.show() ;
14477                 this.blockFocus=true;
14478             } else {
14479                 close.hide();
14480             }             
14481         }
14482         
14483         if(this.hiddenField){
14484             this.hiddenField.dom.value = vv;
14485             
14486             this.lastSelectionText = dv;
14487             Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14488             this.value = vv;
14489             return;
14490         }
14491         // no hidden field.. - we store the value in 'value', but still display
14492         // display field!!!!
14493         this.lastSelectionText = dv;
14494         Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14495         this.value = vv;
14496         
14497         
14498         
14499     },
14500     // private
14501     reset : function(){
14502         // overridden so that last data is reset..
14503         
14504         if(this.multiple){
14505             this.clearItem();
14506             return;
14507         }
14508         
14509         this.setValue(this.originalValue);
14510         //this.clearInvalid();
14511         this.lastData = false;
14512         if (this.view) {
14513             this.view.clearSelections();
14514         }
14515         
14516         this.validate();
14517     },
14518     // private
14519     findRecord : function(prop, value){
14520         var record;
14521         if(this.store.getCount() > 0){
14522             this.store.each(function(r){
14523                 if(r.data[prop] == value){
14524                     record = r;
14525                     return false;
14526                 }
14527                 return true;
14528             });
14529         }
14530         return record;
14531     },
14532     
14533     getName: function()
14534     {
14535         // returns hidden if it's set..
14536         if (!this.rendered) {return ''};
14537         return !this.hiddenName && this.inputEl().dom.name  ? this.inputEl().dom.name : (this.hiddenName || '');
14538         
14539     },
14540     // private
14541     onViewMove : function(e, t){
14542         this.inKeyMode = false;
14543     },
14544
14545     // private
14546     onViewOver : function(e, t){
14547         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
14548             return;
14549         }
14550         var item = this.view.findItemFromChild(t);
14551         
14552         if(item){
14553             var index = this.view.indexOf(item);
14554             this.select(index, false);
14555         }
14556     },
14557
14558     // private
14559     onViewClick : function(view, doFocus, el, e)
14560     {
14561         var index = this.view.getSelectedIndexes()[0];
14562         
14563         var r = this.store.getAt(index);
14564         
14565         if(this.tickable){
14566             
14567             if(typeof(e) != 'undefined' && e.getTarget().nodeName.toLowerCase() != 'input'){
14568                 return;
14569             }
14570             
14571             var rm = false;
14572             var _this = this;
14573             
14574             Roo.each(this.tickItems, function(v,k){
14575                 
14576                 if(typeof(v) != 'undefined' && v[_this.valueField] == r.data[_this.valueField]){
14577                     Roo.log(v);
14578                     _this.tickItems.splice(k, 1);
14579                     
14580                     if(typeof(e) == 'undefined' && view == false){
14581                         Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = false;
14582                     }
14583                     
14584                     rm = true;
14585                     return;
14586                 }
14587             });
14588             
14589             if(rm){
14590                 return;
14591             }
14592             
14593             if(this.fireEvent('tick', this, r, index, Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked) !== false){
14594                 this.tickItems.push(r.data);
14595             }
14596             
14597             if(typeof(e) == 'undefined' && view == false){
14598                 Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = true;
14599             }
14600                     
14601             return;
14602         }
14603         
14604         if(r){
14605             this.onSelect(r, index);
14606         }
14607         if(doFocus !== false && !this.blockFocus){
14608             this.inputEl().focus();
14609         }
14610     },
14611
14612     // private
14613     restrictHeight : function(){
14614         //this.innerList.dom.style.height = '';
14615         //var inner = this.innerList.dom;
14616         //var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
14617         //this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
14618         //this.list.beginUpdate();
14619         //this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
14620         this.list.alignTo(this.inputEl(), this.listAlign);
14621         this.list.alignTo(this.inputEl(), this.listAlign);
14622         //this.list.endUpdate();
14623     },
14624
14625     // private
14626     onEmptyResults : function(){
14627         
14628         if(this.tickable && this.editable){
14629             this.hasFocus = false;
14630             this.restrictHeight();
14631             return;
14632         }
14633         
14634         this.collapse();
14635     },
14636
14637     /**
14638      * Returns true if the dropdown list is expanded, else false.
14639      */
14640     isExpanded : function(){
14641         return this.list.isVisible();
14642     },
14643
14644     /**
14645      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
14646      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14647      * @param {String} value The data value of the item to select
14648      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14649      * selected item if it is not currently in view (defaults to true)
14650      * @return {Boolean} True if the value matched an item in the list, else false
14651      */
14652     selectByValue : function(v, scrollIntoView){
14653         if(v !== undefined && v !== null){
14654             var r = this.findRecord(this.valueField || this.displayField, v);
14655             if(r){
14656                 this.select(this.store.indexOf(r), scrollIntoView);
14657                 return true;
14658             }
14659         }
14660         return false;
14661     },
14662
14663     /**
14664      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
14665      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14666      * @param {Number} index The zero-based index of the list item to select
14667      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14668      * selected item if it is not currently in view (defaults to true)
14669      */
14670     select : function(index, scrollIntoView){
14671         this.selectedIndex = index;
14672         this.view.select(index);
14673         if(scrollIntoView !== false){
14674             var el = this.view.getNode(index);
14675             /*
14676              * el && !this.multiple && !this.tickable // not sure why we disable multiple before..
14677              */
14678             if(el){
14679                 this.list.scrollChildIntoView(el, false);
14680             }
14681         }
14682     },
14683
14684     // private
14685     selectNext : function(){
14686         var ct = this.store.getCount();
14687         if(ct > 0){
14688             if(this.selectedIndex == -1){
14689                 this.select(0);
14690             }else if(this.selectedIndex < ct-1){
14691                 this.select(this.selectedIndex+1);
14692             }
14693         }
14694     },
14695
14696     // private
14697     selectPrev : function(){
14698         var ct = this.store.getCount();
14699         if(ct > 0){
14700             if(this.selectedIndex == -1){
14701                 this.select(0);
14702             }else if(this.selectedIndex != 0){
14703                 this.select(this.selectedIndex-1);
14704             }
14705         }
14706     },
14707
14708     // private
14709     onKeyUp : function(e){
14710         if(this.editable !== false && !e.isSpecialKey()){
14711             this.lastKey = e.getKey();
14712             this.dqTask.delay(this.queryDelay);
14713         }
14714     },
14715
14716     // private
14717     validateBlur : function(){
14718         return !this.list || !this.list.isVisible();   
14719     },
14720
14721     // private
14722     initQuery : function(){
14723         
14724         var v = this.getRawValue();
14725         
14726         if(this.tickable && this.editable){
14727             v = this.tickableInputEl().getValue();
14728         }
14729         
14730         this.doQuery(v);
14731     },
14732
14733     // private
14734     doForce : function(){
14735         if(this.inputEl().dom.value.length > 0){
14736             this.inputEl().dom.value =
14737                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
14738              
14739         }
14740     },
14741
14742     /**
14743      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
14744      * query allowing the query action to be canceled if needed.
14745      * @param {String} query The SQL query to execute
14746      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
14747      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
14748      * saved in the current store (defaults to false)
14749      */
14750     doQuery : function(q, forceAll){
14751         
14752         if(q === undefined || q === null){
14753             q = '';
14754         }
14755         var qe = {
14756             query: q,
14757             forceAll: forceAll,
14758             combo: this,
14759             cancel:false
14760         };
14761         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
14762             return false;
14763         }
14764         q = qe.query;
14765         
14766         forceAll = qe.forceAll;
14767         if(forceAll === true || (q.length >= this.minChars)){
14768             
14769             this.hasQuery = true;
14770             
14771             if(this.lastQuery != q || this.alwaysQuery){
14772                 this.lastQuery = q;
14773                 if(this.mode == 'local'){
14774                     this.selectedIndex = -1;
14775                     if(forceAll){
14776                         this.store.clearFilter();
14777                     }else{
14778                         
14779                         if(this.specialFilter){
14780                             this.fireEvent('specialfilter', this);
14781                             this.onLoad();
14782                             return;
14783                         }
14784                         
14785                         this.store.filter(this.displayField, q);
14786                     }
14787                     
14788                     this.store.fireEvent("datachanged", this.store);
14789                     
14790                     this.onLoad();
14791                     
14792                     
14793                 }else{
14794                     
14795                     this.store.baseParams[this.queryParam] = q;
14796                     
14797                     var options = {params : this.getParams(q)};
14798                     
14799                     if(this.loadNext){
14800                         options.add = true;
14801                         options.params.start = this.page * this.pageSize;
14802                     }
14803                     
14804                     this.store.load(options);
14805                     
14806                     /*
14807                      *  this code will make the page width larger, at the beginning, the list not align correctly, 
14808                      *  we should expand the list on onLoad
14809                      *  so command out it
14810                      */
14811 //                    this.expand();
14812                 }
14813             }else{
14814                 this.selectedIndex = -1;
14815                 this.onLoad();   
14816             }
14817         }
14818         
14819         this.loadNext = false;
14820     },
14821     
14822     // private
14823     getParams : function(q){
14824         var p = {};
14825         //p[this.queryParam] = q;
14826         
14827         if(this.pageSize){
14828             p.start = 0;
14829             p.limit = this.pageSize;
14830         }
14831         return p;
14832     },
14833
14834     /**
14835      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
14836      */
14837     collapse : function(){
14838         if(!this.isExpanded()){
14839             return;
14840         }
14841         
14842         this.list.hide();
14843         
14844         this.hasFocus = false;
14845         
14846         if(this.tickable){
14847             this.okBtn.hide();
14848             this.cancelBtn.hide();
14849             this.trigger.show();
14850             
14851             if(this.editable){
14852                 this.tickableInputEl().dom.value = '';
14853                 this.tickableInputEl().blur();
14854             }
14855             
14856         }
14857         
14858         Roo.get(document).un('mousedown', this.collapseIf, this);
14859         Roo.get(document).un('mousewheel', this.collapseIf, this);
14860         if (!this.editable) {
14861             Roo.get(document).un('keydown', this.listKeyPress, this);
14862         }
14863         this.fireEvent('collapse', this);
14864         
14865         this.validate();
14866     },
14867
14868     // private
14869     collapseIf : function(e){
14870         var in_combo  = e.within(this.el);
14871         var in_list =  e.within(this.list);
14872         var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
14873         
14874         if (in_combo || in_list || is_list) {
14875             //e.stopPropagation();
14876             return;
14877         }
14878         
14879         if(this.tickable){
14880             this.onTickableFooterButtonClick(e, false, false);
14881         }
14882
14883         this.collapse();
14884         
14885     },
14886
14887     /**
14888      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
14889      */
14890     expand : function(){
14891        
14892         if(this.isExpanded() || !this.hasFocus){
14893             return;
14894         }
14895         
14896         var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
14897         this.list.setWidth(lw);
14898         
14899         Roo.log('expand');
14900         
14901         this.list.show();
14902         
14903         this.restrictHeight();
14904         
14905         if(this.tickable){
14906             
14907             this.tickItems = Roo.apply([], this.item);
14908             
14909             this.okBtn.show();
14910             this.cancelBtn.show();
14911             this.trigger.hide();
14912             
14913             if(this.editable){
14914                 this.tickableInputEl().focus();
14915             }
14916             
14917         }
14918         
14919         Roo.get(document).on('mousedown', this.collapseIf, this);
14920         Roo.get(document).on('mousewheel', this.collapseIf, this);
14921         if (!this.editable) {
14922             Roo.get(document).on('keydown', this.listKeyPress, this);
14923         }
14924         
14925         this.fireEvent('expand', this);
14926     },
14927
14928     // private
14929     // Implements the default empty TriggerField.onTriggerClick function
14930     onTriggerClick : function(e)
14931     {
14932         Roo.log('trigger click');
14933         
14934         if(this.disabled || !this.triggerList){
14935             return;
14936         }
14937         
14938         this.page = 0;
14939         this.loadNext = false;
14940         
14941         if(this.isExpanded()){
14942             this.collapse();
14943             if (!this.blockFocus) {
14944                 this.inputEl().focus();
14945             }
14946             
14947         }else {
14948             this.hasFocus = true;
14949             if(this.triggerAction == 'all') {
14950                 this.doQuery(this.allQuery, true);
14951             } else {
14952                 this.doQuery(this.getRawValue());
14953             }
14954             if (!this.blockFocus) {
14955                 this.inputEl().focus();
14956             }
14957         }
14958     },
14959     
14960     onTickableTriggerClick : function(e)
14961     {
14962         if(this.disabled){
14963             return;
14964         }
14965         
14966         this.page = 0;
14967         this.loadNext = false;
14968         this.hasFocus = true;
14969         
14970         if(this.triggerAction == 'all') {
14971             this.doQuery(this.allQuery, true);
14972         } else {
14973             this.doQuery(this.getRawValue());
14974         }
14975     },
14976     
14977     onSearchFieldClick : function(e)
14978     {
14979         if(this.hasFocus && !this.disabled && e.getTarget().nodeName.toLowerCase() != 'button'){
14980             this.onTickableFooterButtonClick(e, false, false);
14981             return;
14982         }
14983         
14984         if(this.hasFocus || this.disabled || e.getTarget().nodeName.toLowerCase() == 'button'){
14985             return;
14986         }
14987         
14988         this.page = 0;
14989         this.loadNext = false;
14990         this.hasFocus = true;
14991         
14992         if(this.triggerAction == 'all') {
14993             this.doQuery(this.allQuery, true);
14994         } else {
14995             this.doQuery(this.getRawValue());
14996         }
14997     },
14998     
14999     listKeyPress : function(e)
15000     {
15001         //Roo.log('listkeypress');
15002         // scroll to first matching element based on key pres..
15003         if (e.isSpecialKey()) {
15004             return false;
15005         }
15006         var k = String.fromCharCode(e.getKey()).toUpperCase();
15007         //Roo.log(k);
15008         var match  = false;
15009         var csel = this.view.getSelectedNodes();
15010         var cselitem = false;
15011         if (csel.length) {
15012             var ix = this.view.indexOf(csel[0]);
15013             cselitem  = this.store.getAt(ix);
15014             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
15015                 cselitem = false;
15016             }
15017             
15018         }
15019         
15020         this.store.each(function(v) { 
15021             if (cselitem) {
15022                 // start at existing selection.
15023                 if (cselitem.id == v.id) {
15024                     cselitem = false;
15025                 }
15026                 return true;
15027             }
15028                 
15029             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
15030                 match = this.store.indexOf(v);
15031                 return false;
15032             }
15033             return true;
15034         }, this);
15035         
15036         if (match === false) {
15037             return true; // no more action?
15038         }
15039         // scroll to?
15040         this.view.select(match);
15041         var sn = Roo.get(this.view.getSelectedNodes()[0]);
15042         sn.scrollIntoView(sn.dom.parentNode, false);
15043     },
15044     
15045     onViewScroll : function(e, t){
15046         
15047         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){
15048             return;
15049         }
15050         
15051         this.hasQuery = true;
15052         
15053         this.loading = this.list.select('.loading', true).first();
15054         
15055         if(this.loading === null){
15056             this.list.createChild({
15057                 tag: 'div',
15058                 cls: 'loading roo-select2-more-results roo-select2-active',
15059                 html: 'Loading more results...'
15060             });
15061             
15062             this.loading = this.list.select('.loading', true).first();
15063             
15064             this.loading.setVisibilityMode(Roo.Element.DISPLAY);
15065             
15066             this.loading.hide();
15067         }
15068         
15069         this.loading.show();
15070         
15071         var _combo = this;
15072         
15073         this.page++;
15074         this.loadNext = true;
15075         
15076         (function() { _combo.doQuery(_combo.allQuery, true); }).defer(500);
15077         
15078         return;
15079     },
15080     
15081     addItem : function(o)
15082     {   
15083         var dv = ''; // display value
15084         
15085         if (this.displayField) {
15086             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
15087         } else {
15088             // this is an error condition!!!
15089             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
15090         }
15091         
15092         if(!dv.length){
15093             return;
15094         }
15095         
15096         var choice = this.choices.createChild({
15097             tag: 'li',
15098             cls: 'roo-select2-search-choice',
15099             cn: [
15100                 {
15101                     tag: 'div',
15102                     html: dv
15103                 },
15104                 {
15105                     tag: 'a',
15106                     href: '#',
15107                     cls: 'roo-select2-search-choice-close fa fa-times',
15108                     tabindex: '-1'
15109                 }
15110             ]
15111             
15112         }, this.searchField);
15113         
15114         var close = choice.select('a.roo-select2-search-choice-close', true).first();
15115         
15116         close.on('click', this.onRemoveItem, this, { item : choice, data : o} );
15117         
15118         this.item.push(o);
15119         
15120         this.lastData = o;
15121         
15122         this.syncValue();
15123         
15124         this.inputEl().dom.value = '';
15125         
15126         this.validate();
15127     },
15128     
15129     onRemoveItem : function(e, _self, o)
15130     {
15131         e.preventDefault();
15132         
15133         this.lastItem = Roo.apply([], this.item);
15134         
15135         var index = this.item.indexOf(o.data) * 1;
15136         
15137         if( index < 0){
15138             Roo.log('not this item?!');
15139             return;
15140         }
15141         
15142         this.item.splice(index, 1);
15143         o.item.remove();
15144         
15145         this.syncValue();
15146         
15147         this.fireEvent('remove', this, e);
15148         
15149         this.validate();
15150         
15151     },
15152     
15153     syncValue : function()
15154     {
15155         if(!this.item.length){
15156             this.clearValue();
15157             return;
15158         }
15159             
15160         var value = [];
15161         var _this = this;
15162         Roo.each(this.item, function(i){
15163             if(_this.valueField){
15164                 value.push(i[_this.valueField]);
15165                 return;
15166             }
15167
15168             value.push(i);
15169         });
15170
15171         this.value = value.join(',');
15172
15173         if(this.hiddenField){
15174             this.hiddenField.dom.value = this.value;
15175         }
15176         
15177         this.store.fireEvent("datachanged", this.store);
15178         
15179         this.validate();
15180     },
15181     
15182     clearItem : function()
15183     {
15184         if(!this.multiple){
15185             return;
15186         }
15187         
15188         this.item = [];
15189         
15190         Roo.each(this.choices.select('>li.roo-select2-search-choice', true).elements, function(c){
15191            c.remove();
15192         });
15193         
15194         this.syncValue();
15195         
15196         this.validate();
15197         
15198         if(this.tickable && !Roo.isTouch){
15199             this.view.refresh();
15200         }
15201     },
15202     
15203     inputEl: function ()
15204     {
15205         if(Roo.isIOS && this.useNativeIOS){
15206             return this.el.select('select.roo-ios-select', true).first();
15207         }
15208         
15209         if(Roo.isTouch && this.mobileTouchView){
15210             return this.el.select('input.form-control',true).first();
15211         }
15212         
15213         if(this.tickable){
15214             return this.searchField;
15215         }
15216         
15217         return this.el.select('input.form-control',true).first();
15218     },
15219     
15220     onTickableFooterButtonClick : function(e, btn, el)
15221     {
15222         e.preventDefault();
15223         
15224         this.lastItem = Roo.apply([], this.item);
15225         
15226         if(btn && btn.name == 'cancel'){
15227             this.tickItems = Roo.apply([], this.item);
15228             this.collapse();
15229             return;
15230         }
15231         
15232         this.clearItem();
15233         
15234         var _this = this;
15235         
15236         Roo.each(this.tickItems, function(o){
15237             _this.addItem(o);
15238         });
15239         
15240         this.collapse();
15241         
15242     },
15243     
15244     validate : function()
15245     {
15246         if(this.getVisibilityEl().hasClass('hidden')){
15247             return true;
15248         }
15249         
15250         var v = this.getRawValue();
15251         
15252         if(this.multiple){
15253             v = this.getValue();
15254         }
15255         
15256         if(this.disabled || this.allowBlank || v.length){
15257             this.markValid();
15258             return true;
15259         }
15260         
15261         this.markInvalid();
15262         return false;
15263     },
15264     
15265     tickableInputEl : function()
15266     {
15267         if(!this.tickable || !this.editable){
15268             return this.inputEl();
15269         }
15270         
15271         return this.inputEl().select('.roo-select2-search-field-input', true).first();
15272     },
15273     
15274     
15275     getAutoCreateTouchView : function()
15276     {
15277         var id = Roo.id();
15278         
15279         var cfg = {
15280             cls: 'form-group' //input-group
15281         };
15282         
15283         var input =  {
15284             tag: 'input',
15285             id : id,
15286             type : this.inputType,
15287             cls : 'form-control x-combo-noedit',
15288             autocomplete: 'new-password',
15289             placeholder : this.placeholder || '',
15290             readonly : true
15291         };
15292         
15293         if (this.name) {
15294             input.name = this.name;
15295         }
15296         
15297         if (this.size) {
15298             input.cls += ' input-' + this.size;
15299         }
15300         
15301         if (this.disabled) {
15302             input.disabled = true;
15303         }
15304         
15305         var inputblock = {
15306             cls : '',
15307             cn : [
15308                 input
15309             ]
15310         };
15311         
15312         if(this.before){
15313             inputblock.cls += ' input-group';
15314             
15315             inputblock.cn.unshift({
15316                 tag :'span',
15317                 cls : 'input-group-addon input-group-prepend input-group-text',
15318                 html : this.before
15319             });
15320         }
15321         
15322         if(this.removable && !this.multiple){
15323             inputblock.cls += ' roo-removable';
15324             
15325             inputblock.cn.push({
15326                 tag: 'button',
15327                 html : 'x',
15328                 cls : 'roo-combo-removable-btn close'
15329             });
15330         }
15331
15332         if(this.hasFeedback && !this.allowBlank){
15333             
15334             inputblock.cls += ' has-feedback';
15335             
15336             inputblock.cn.push({
15337                 tag: 'span',
15338                 cls: 'glyphicon form-control-feedback'
15339             });
15340             
15341         }
15342         
15343         if (this.after) {
15344             
15345             inputblock.cls += (this.before) ? '' : ' input-group';
15346             
15347             inputblock.cn.push({
15348                 tag :'span',
15349                 cls : 'input-group-addon input-group-append input-group-text',
15350                 html : this.after
15351             });
15352         }
15353
15354         
15355         var ibwrap = inputblock;
15356         
15357         if(this.multiple){
15358             ibwrap = {
15359                 tag: 'ul',
15360                 cls: 'roo-select2-choices',
15361                 cn:[
15362                     {
15363                         tag: 'li',
15364                         cls: 'roo-select2-search-field',
15365                         cn: [
15366
15367                             inputblock
15368                         ]
15369                     }
15370                 ]
15371             };
15372         
15373             
15374         }
15375         
15376         var combobox = {
15377             cls: 'roo-select2-container input-group roo-touchview-combobox ',
15378             cn: [
15379                 {
15380                     tag: 'input',
15381                     type : 'hidden',
15382                     cls: 'form-hidden-field'
15383                 },
15384                 ibwrap
15385             ]
15386         };
15387         
15388         if(!this.multiple && this.showToggleBtn){
15389             
15390             var caret = {
15391                 cls: 'caret'
15392             };
15393             
15394             if (this.caret != false) {
15395                 caret = {
15396                      tag: 'i',
15397                      cls: 'fa fa-' + this.caret
15398                 };
15399                 
15400             }
15401             
15402             combobox.cn.push({
15403                 tag :'span',
15404                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
15405                 cn : [
15406                     Roo.bootstrap.version == 3 ? caret : '',
15407                     {
15408                         tag: 'span',
15409                         cls: 'combobox-clear',
15410                         cn  : [
15411                             {
15412                                 tag : 'i',
15413                                 cls: 'icon-remove'
15414                             }
15415                         ]
15416                     }
15417                 ]
15418
15419             })
15420         }
15421         
15422         if(this.multiple){
15423             combobox.cls += ' roo-select2-container-multi';
15424         }
15425         
15426         var align = this.labelAlign || this.parentLabelAlign();
15427         
15428         if (align ==='left' && this.fieldLabel.length) {
15429
15430             cfg.cn = [
15431                 {
15432                    tag : 'i',
15433                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15434                    tooltip : 'This field is required'
15435                 },
15436                 {
15437                     tag: 'label',
15438                     cls : 'control-label col-form-label',
15439                     html : this.fieldLabel
15440
15441                 },
15442                 {
15443                     cls : '', 
15444                     cn: [
15445                         combobox
15446                     ]
15447                 }
15448             ];
15449             
15450             var labelCfg = cfg.cn[1];
15451             var contentCfg = cfg.cn[2];
15452             
15453
15454             if(this.indicatorpos == 'right'){
15455                 cfg.cn = [
15456                     {
15457                         tag: 'label',
15458                         'for' :  id,
15459                         cls : 'control-label col-form-label',
15460                         cn : [
15461                             {
15462                                 tag : 'span',
15463                                 html : this.fieldLabel
15464                             },
15465                             {
15466                                 tag : 'i',
15467                                 cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15468                                 tooltip : 'This field is required'
15469                             }
15470                         ]
15471                     },
15472                     {
15473                         cls : "",
15474                         cn: [
15475                             combobox
15476                         ]
15477                     }
15478
15479                 ];
15480                 
15481                 labelCfg = cfg.cn[0];
15482                 contentCfg = cfg.cn[1];
15483             }
15484             
15485            
15486             
15487             if(this.labelWidth > 12){
15488                 labelCfg.style = "width: " + this.labelWidth + 'px';
15489             }
15490             
15491             if(this.labelWidth < 13 && this.labelmd == 0){
15492                 this.labelmd = this.labelWidth;
15493             }
15494             
15495             if(this.labellg > 0){
15496                 labelCfg.cls += ' col-lg-' + this.labellg;
15497                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
15498             }
15499             
15500             if(this.labelmd > 0){
15501                 labelCfg.cls += ' col-md-' + this.labelmd;
15502                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
15503             }
15504             
15505             if(this.labelsm > 0){
15506                 labelCfg.cls += ' col-sm-' + this.labelsm;
15507                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
15508             }
15509             
15510             if(this.labelxs > 0){
15511                 labelCfg.cls += ' col-xs-' + this.labelxs;
15512                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
15513             }
15514                 
15515                 
15516         } else if ( this.fieldLabel.length) {
15517             cfg.cn = [
15518                 {
15519                    tag : 'i',
15520                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15521                    tooltip : 'This field is required'
15522                 },
15523                 {
15524                     tag: 'label',
15525                     cls : 'control-label',
15526                     html : this.fieldLabel
15527
15528                 },
15529                 {
15530                     cls : '', 
15531                     cn: [
15532                         combobox
15533                     ]
15534                 }
15535             ];
15536             
15537             if(this.indicatorpos == 'right'){
15538                 cfg.cn = [
15539                     {
15540                         tag: 'label',
15541                         cls : 'control-label',
15542                         html : this.fieldLabel,
15543                         cn : [
15544                             {
15545                                tag : 'i',
15546                                cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15547                                tooltip : 'This field is required'
15548                             }
15549                         ]
15550                     },
15551                     {
15552                         cls : '', 
15553                         cn: [
15554                             combobox
15555                         ]
15556                     }
15557                 ];
15558             }
15559         } else {
15560             cfg.cn = combobox;    
15561         }
15562         
15563         
15564         var settings = this;
15565         
15566         ['xs','sm','md','lg'].map(function(size){
15567             if (settings[size]) {
15568                 cfg.cls += ' col-' + size + '-' + settings[size];
15569             }
15570         });
15571         
15572         return cfg;
15573     },
15574     
15575     initTouchView : function()
15576     {
15577         this.renderTouchView();
15578         
15579         this.touchViewEl.on('scroll', function(){
15580             this.el.dom.scrollTop = 0;
15581         }, this);
15582         
15583         this.originalValue = this.getValue();
15584         
15585         this.triggerEl = this.el.select('span.dropdown-toggle',true).first();
15586         
15587         this.inputEl().on("click", this.showTouchView, this);
15588         if (this.triggerEl) {
15589             this.triggerEl.on("click", this.showTouchView, this);
15590         }
15591         
15592         
15593         this.touchViewFooterEl.select('.roo-touch-view-cancel', true).first().on('click', this.hideTouchView, this);
15594         this.touchViewFooterEl.select('.roo-touch-view-ok', true).first().on('click', this.setTouchViewValue, this);
15595         
15596         this.maskEl = new Roo.LoadMask(this.touchViewEl, { store : this.store, msgCls: 'roo-el-mask-msg' });
15597         
15598         this.store.on('beforeload', this.onTouchViewBeforeLoad, this);
15599         this.store.on('load', this.onTouchViewLoad, this);
15600         this.store.on('loadexception', this.onTouchViewLoadException, this);
15601         
15602         if(this.hiddenName){
15603             
15604             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
15605             
15606             this.hiddenField.dom.value =
15607                 this.hiddenValue !== undefined ? this.hiddenValue :
15608                 this.value !== undefined ? this.value : '';
15609         
15610             this.el.dom.removeAttribute('name');
15611             this.hiddenField.dom.setAttribute('name', this.hiddenName);
15612         }
15613         
15614         if(this.multiple){
15615             this.choices = this.el.select('ul.roo-select2-choices', true).first();
15616             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
15617         }
15618         
15619         if(this.removable && !this.multiple){
15620             var close = this.closeTriggerEl();
15621             if(close){
15622                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
15623                 close.on('click', this.removeBtnClick, this, close);
15624             }
15625         }
15626         /*
15627          * fix the bug in Safari iOS8
15628          */
15629         this.inputEl().on("focus", function(e){
15630             document.activeElement.blur();
15631         }, this);
15632         
15633         this._touchViewMask = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
15634         
15635         return;
15636         
15637         
15638     },
15639     
15640     renderTouchView : function()
15641     {
15642         this.touchViewEl = Roo.get(document.body).createChild(Roo.bootstrap.ComboBox.touchViewTemplate);
15643         this.touchViewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15644         
15645         this.touchViewHeaderEl = this.touchViewEl.select('.modal-header', true).first();
15646         this.touchViewHeaderEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15647         
15648         this.touchViewBodyEl = this.touchViewEl.select('.modal-body', true).first();
15649         this.touchViewBodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15650         this.touchViewBodyEl.setStyle('overflow', 'auto');
15651         
15652         this.touchViewListGroup = this.touchViewBodyEl.select('.list-group', true).first();
15653         this.touchViewListGroup.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15654         
15655         this.touchViewFooterEl = this.touchViewEl.select('.modal-footer', true).first();
15656         this.touchViewFooterEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15657         
15658     },
15659     
15660     showTouchView : function()
15661     {
15662         if(this.disabled){
15663             return;
15664         }
15665         
15666         this.touchViewHeaderEl.hide();
15667
15668         if(this.modalTitle.length){
15669             this.touchViewHeaderEl.dom.innerHTML = this.modalTitle;
15670             this.touchViewHeaderEl.show();
15671         }
15672
15673         this.touchViewEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
15674         this.touchViewEl.show();
15675
15676         this.touchViewEl.select('.modal-dialog', true).first().setStyle({ margin : '0px', width : '100%'});
15677         
15678         //this.touchViewEl.select('.modal-dialog > .modal-content', true).first().setSize(
15679         //        Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
15680
15681         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15682
15683         if(this.modalTitle.length){
15684             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15685         }
15686         
15687         this.touchViewBodyEl.setHeight(bodyHeight);
15688
15689         if(this.animate){
15690             var _this = this;
15691             (function(){ _this.touchViewEl.addClass('in'); }).defer(50);
15692         }else{
15693             this.touchViewEl.addClass('in');
15694         }
15695         
15696         if(this._touchViewMask){
15697             Roo.get(document.body).addClass("x-body-masked");
15698             this._touchViewMask.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
15699             this._touchViewMask.setStyle('z-index', 10000);
15700             this._touchViewMask.addClass('show');
15701         }
15702         
15703         this.doTouchViewQuery();
15704         
15705     },
15706     
15707     hideTouchView : function()
15708     {
15709         this.touchViewEl.removeClass('in');
15710
15711         if(this.animate){
15712             var _this = this;
15713             (function(){ _this.touchViewEl.setStyle('display', 'none'); }).defer(150);
15714         }else{
15715             this.touchViewEl.setStyle('display', 'none');
15716         }
15717         
15718         if(this._touchViewMask){
15719             this._touchViewMask.removeClass('show');
15720             Roo.get(document.body).removeClass("x-body-masked");
15721         }
15722     },
15723     
15724     setTouchViewValue : function()
15725     {
15726         if(this.multiple){
15727             this.clearItem();
15728         
15729             var _this = this;
15730
15731             Roo.each(this.tickItems, function(o){
15732                 this.addItem(o);
15733             }, this);
15734         }
15735         
15736         this.hideTouchView();
15737     },
15738     
15739     doTouchViewQuery : function()
15740     {
15741         var qe = {
15742             query: '',
15743             forceAll: true,
15744             combo: this,
15745             cancel:false
15746         };
15747         
15748         if(this.fireEvent('beforequery', qe) ===false || qe.cancel){
15749             return false;
15750         }
15751         
15752         if(!this.alwaysQuery || this.mode == 'local'){
15753             this.onTouchViewLoad();
15754             return;
15755         }
15756         
15757         this.store.load();
15758     },
15759     
15760     onTouchViewBeforeLoad : function(combo,opts)
15761     {
15762         return;
15763     },
15764
15765     // private
15766     onTouchViewLoad : function()
15767     {
15768         if(this.store.getCount() < 1){
15769             this.onTouchViewEmptyResults();
15770             return;
15771         }
15772         
15773         this.clearTouchView();
15774         
15775         var rawValue = this.getRawValue();
15776         
15777         var template = (this.multiple) ? Roo.bootstrap.ComboBox.listItemCheckbox : Roo.bootstrap.ComboBox.listItemRadio;
15778         
15779         this.tickItems = [];
15780         
15781         this.store.data.each(function(d, rowIndex){
15782             var row = this.touchViewListGroup.createChild(template);
15783             
15784             if(typeof(d.data.cls) != 'undefined' && d.data.cls.length){
15785                 row.addClass(d.data.cls);
15786             }
15787             
15788             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
15789                 var cfg = {
15790                     data : d.data,
15791                     html : d.data[this.displayField]
15792                 };
15793                 
15794                 if(this.fireEvent('touchviewdisplay', this, cfg) !== false){
15795                     row.select('.roo-combobox-list-group-item-value', true).first().dom.innerHTML = cfg.html;
15796                 }
15797             }
15798             row.removeClass('selected');
15799             if(!this.multiple && this.valueField &&
15800                     typeof(d.data[this.valueField]) != 'undefined' && d.data[this.valueField] == this.getValue())
15801             {
15802                 // radio buttons..
15803                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15804                 row.addClass('selected');
15805             }
15806             
15807             if(this.multiple && this.valueField &&
15808                     typeof(d.data[this.valueField]) != 'undefined' && this.getValue().indexOf(d.data[this.valueField]) != -1)
15809             {
15810                 
15811                 // checkboxes...
15812                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15813                 this.tickItems.push(d.data);
15814             }
15815             
15816             row.on('click', this.onTouchViewClick, this, {row : row, rowIndex : rowIndex});
15817             
15818         }, this);
15819         
15820         var firstChecked = this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).first();
15821         
15822         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15823
15824         if(this.modalTitle.length){
15825             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15826         }
15827
15828         var listHeight = this.touchViewListGroup.getHeight() + this.touchViewBodyEl.getPadding('tb') * 2;
15829         
15830         if(this.mobile_restrict_height && listHeight < bodyHeight){
15831             this.touchViewBodyEl.setHeight(listHeight);
15832         }
15833         
15834         var _this = this;
15835         
15836         if(firstChecked && listHeight > bodyHeight){
15837             (function() { firstChecked.findParent('li').scrollIntoView(_this.touchViewListGroup.dom); }).defer(500);
15838         }
15839         
15840     },
15841     
15842     onTouchViewLoadException : function()
15843     {
15844         this.hideTouchView();
15845     },
15846     
15847     onTouchViewEmptyResults : function()
15848     {
15849         this.clearTouchView();
15850         
15851         this.touchViewListGroup.createChild(Roo.bootstrap.ComboBox.emptyResult);
15852         
15853         this.touchViewListGroup.select('.roo-combobox-touch-view-empty-result', true).first().dom.innerHTML = this.emptyResultText;
15854         
15855     },
15856     
15857     clearTouchView : function()
15858     {
15859         this.touchViewListGroup.dom.innerHTML = '';
15860     },
15861     
15862     onTouchViewClick : function(e, el, o)
15863     {
15864         e.preventDefault();
15865         
15866         var row = o.row;
15867         var rowIndex = o.rowIndex;
15868         
15869         var r = this.store.getAt(rowIndex);
15870         
15871         if(this.fireEvent('beforeselect', this, r, rowIndex) !== false){
15872             
15873             if(!this.multiple){
15874                 Roo.each(this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).elements, function(c){
15875                     c.dom.removeAttribute('checked');
15876                 }, this);
15877
15878                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15879
15880                 this.setFromData(r.data);
15881
15882                 var close = this.closeTriggerEl();
15883
15884                 if(close){
15885                     close.show();
15886                 }
15887
15888                 this.hideTouchView();
15889
15890                 this.fireEvent('select', this, r, rowIndex);
15891
15892                 return;
15893             }
15894
15895             if(this.valueField && typeof(r.data[this.valueField]) != 'undefined' && this.getValue().indexOf(r.data[this.valueField]) != -1){
15896                 row.select('.roo-combobox-list-group-item-box > input', true).first().dom.removeAttribute('checked');
15897                 this.tickItems.splice(this.tickItems.indexOf(r.data), 1);
15898                 return;
15899             }
15900
15901             row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15902             this.addItem(r.data);
15903             this.tickItems.push(r.data);
15904         }
15905     },
15906     
15907     getAutoCreateNativeIOS : function()
15908     {
15909         var cfg = {
15910             cls: 'form-group' //input-group,
15911         };
15912         
15913         var combobox =  {
15914             tag: 'select',
15915             cls : 'roo-ios-select'
15916         };
15917         
15918         if (this.name) {
15919             combobox.name = this.name;
15920         }
15921         
15922         if (this.disabled) {
15923             combobox.disabled = true;
15924         }
15925         
15926         var settings = this;
15927         
15928         ['xs','sm','md','lg'].map(function(size){
15929             if (settings[size]) {
15930                 cfg.cls += ' col-' + size + '-' + settings[size];
15931             }
15932         });
15933         
15934         cfg.cn = combobox;
15935         
15936         return cfg;
15937         
15938     },
15939     
15940     initIOSView : function()
15941     {
15942         this.store.on('load', this.onIOSViewLoad, this);
15943         
15944         return;
15945     },
15946     
15947     onIOSViewLoad : function()
15948     {
15949         if(this.store.getCount() < 1){
15950             return;
15951         }
15952         
15953         this.clearIOSView();
15954         
15955         if(this.allowBlank) {
15956             
15957             var default_text = '-- SELECT --';
15958             
15959             if(this.placeholder.length){
15960                 default_text = this.placeholder;
15961             }
15962             
15963             if(this.emptyTitle.length){
15964                 default_text += ' - ' + this.emptyTitle + ' -';
15965             }
15966             
15967             var opt = this.inputEl().createChild({
15968                 tag: 'option',
15969                 value : 0,
15970                 html : default_text
15971             });
15972             
15973             var o = {};
15974             o[this.valueField] = 0;
15975             o[this.displayField] = default_text;
15976             
15977             this.ios_options.push({
15978                 data : o,
15979                 el : opt
15980             });
15981             
15982         }
15983         
15984         this.store.data.each(function(d, rowIndex){
15985             
15986             var html = '';
15987             
15988             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
15989                 html = d.data[this.displayField];
15990             }
15991             
15992             var value = '';
15993             
15994             if(this.valueField && typeof(d.data[this.valueField]) != 'undefined'){
15995                 value = d.data[this.valueField];
15996             }
15997             
15998             var option = {
15999                 tag: 'option',
16000                 value : value,
16001                 html : html
16002             };
16003             
16004             if(this.value == d.data[this.valueField]){
16005                 option['selected'] = true;
16006             }
16007             
16008             var opt = this.inputEl().createChild(option);
16009             
16010             this.ios_options.push({
16011                 data : d.data,
16012                 el : opt
16013             });
16014             
16015         }, this);
16016         
16017         this.inputEl().on('change', function(){
16018            this.fireEvent('select', this);
16019         }, this);
16020         
16021     },
16022     
16023     clearIOSView: function()
16024     {
16025         this.inputEl().dom.innerHTML = '';
16026         
16027         this.ios_options = [];
16028     },
16029     
16030     setIOSValue: function(v)
16031     {
16032         this.value = v;
16033         
16034         if(!this.ios_options){
16035             return;
16036         }
16037         
16038         Roo.each(this.ios_options, function(opts){
16039            
16040            opts.el.dom.removeAttribute('selected');
16041            
16042            if(opts.data[this.valueField] != v){
16043                return;
16044            }
16045            
16046            opts.el.dom.setAttribute('selected', true);
16047            
16048         }, this);
16049     }
16050
16051     /** 
16052     * @cfg {Boolean} grow 
16053     * @hide 
16054     */
16055     /** 
16056     * @cfg {Number} growMin 
16057     * @hide 
16058     */
16059     /** 
16060     * @cfg {Number} growMax 
16061     * @hide 
16062     */
16063     /**
16064      * @hide
16065      * @method autoSize
16066      */
16067 });
16068
16069 Roo.apply(Roo.bootstrap.ComboBox,  {
16070     
16071     header : {
16072         tag: 'div',
16073         cls: 'modal-header',
16074         cn: [
16075             {
16076                 tag: 'h4',
16077                 cls: 'modal-title'
16078             }
16079         ]
16080     },
16081     
16082     body : {
16083         tag: 'div',
16084         cls: 'modal-body',
16085         cn: [
16086             {
16087                 tag: 'ul',
16088                 cls: 'list-group'
16089             }
16090         ]
16091     },
16092     
16093     listItemRadio : {
16094         tag: 'li',
16095         cls: 'list-group-item',
16096         cn: [
16097             {
16098                 tag: 'span',
16099                 cls: 'roo-combobox-list-group-item-value'
16100             },
16101             {
16102                 tag: 'div',
16103                 cls: 'roo-combobox-list-group-item-box pull-xs-right radio-inline radio radio-info',
16104                 cn: [
16105                     {
16106                         tag: 'input',
16107                         type: 'radio'
16108                     },
16109                     {
16110                         tag: 'label'
16111                     }
16112                 ]
16113             }
16114         ]
16115     },
16116     
16117     listItemCheckbox : {
16118         tag: 'li',
16119         cls: 'list-group-item',
16120         cn: [
16121             {
16122                 tag: 'span',
16123                 cls: 'roo-combobox-list-group-item-value'
16124             },
16125             {
16126                 tag: 'div',
16127                 cls: 'roo-combobox-list-group-item-box pull-xs-right checkbox-inline checkbox checkbox-info',
16128                 cn: [
16129                     {
16130                         tag: 'input',
16131                         type: 'checkbox'
16132                     },
16133                     {
16134                         tag: 'label'
16135                     }
16136                 ]
16137             }
16138         ]
16139     },
16140     
16141     emptyResult : {
16142         tag: 'div',
16143         cls: 'alert alert-danger roo-combobox-touch-view-empty-result'
16144     },
16145     
16146     footer : {
16147         tag: 'div',
16148         cls: 'modal-footer',
16149         cn: [
16150             {
16151                 tag: 'div',
16152                 cls: 'row',
16153                 cn: [
16154                     {
16155                         tag: 'div',
16156                         cls: 'col-xs-6 text-left',
16157                         cn: {
16158                             tag: 'button',
16159                             cls: 'btn btn-danger roo-touch-view-cancel',
16160                             html: 'Cancel'
16161                         }
16162                     },
16163                     {
16164                         tag: 'div',
16165                         cls: 'col-xs-6 text-right',
16166                         cn: {
16167                             tag: 'button',
16168                             cls: 'btn btn-success roo-touch-view-ok',
16169                             html: 'OK'
16170                         }
16171                     }
16172                 ]
16173             }
16174         ]
16175         
16176     }
16177 });
16178
16179 Roo.apply(Roo.bootstrap.ComboBox,  {
16180     
16181     touchViewTemplate : {
16182         tag: 'div',
16183         cls: 'modal fade roo-combobox-touch-view',
16184         cn: [
16185             {
16186                 tag: 'div',
16187                 cls: 'modal-dialog',
16188                 style : 'position:fixed', // we have to fix position....
16189                 cn: [
16190                     {
16191                         tag: 'div',
16192                         cls: 'modal-content',
16193                         cn: [
16194                             Roo.bootstrap.ComboBox.header,
16195                             Roo.bootstrap.ComboBox.body,
16196                             Roo.bootstrap.ComboBox.footer
16197                         ]
16198                     }
16199                 ]
16200             }
16201         ]
16202     }
16203 });/*
16204  * Based on:
16205  * Ext JS Library 1.1.1
16206  * Copyright(c) 2006-2007, Ext JS, LLC.
16207  *
16208  * Originally Released Under LGPL - original licence link has changed is not relivant.
16209  *
16210  * Fork - LGPL
16211  * <script type="text/javascript">
16212  */
16213
16214 /**
16215  * @class Roo.View
16216  * @extends Roo.util.Observable
16217  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
16218  * This class also supports single and multi selection modes. <br>
16219  * Create a data model bound view:
16220  <pre><code>
16221  var store = new Roo.data.Store(...);
16222
16223  var view = new Roo.View({
16224     el : "my-element",
16225     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
16226  
16227     singleSelect: true,
16228     selectedClass: "ydataview-selected",
16229     store: store
16230  });
16231
16232  // listen for node click?
16233  view.on("click", function(vw, index, node, e){
16234  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
16235  });
16236
16237  // load XML data
16238  dataModel.load("foobar.xml");
16239  </code></pre>
16240  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
16241  * <br><br>
16242  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
16243  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
16244  * 
16245  * Note: old style constructor is still suported (container, template, config)
16246  * 
16247  * @constructor
16248  * Create a new View
16249  * @param {Object} config The config object
16250  * 
16251  */
16252 Roo.View = function(config, depreciated_tpl, depreciated_config){
16253     
16254     this.parent = false;
16255     
16256     if (typeof(depreciated_tpl) == 'undefined') {
16257         // new way.. - universal constructor.
16258         Roo.apply(this, config);
16259         this.el  = Roo.get(this.el);
16260     } else {
16261         // old format..
16262         this.el  = Roo.get(config);
16263         this.tpl = depreciated_tpl;
16264         Roo.apply(this, depreciated_config);
16265     }
16266     this.wrapEl  = this.el.wrap().wrap();
16267     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
16268     
16269     
16270     if(typeof(this.tpl) == "string"){
16271         this.tpl = new Roo.Template(this.tpl);
16272     } else {
16273         // support xtype ctors..
16274         this.tpl = new Roo.factory(this.tpl, Roo);
16275     }
16276     
16277     
16278     this.tpl.compile();
16279     
16280     /** @private */
16281     this.addEvents({
16282         /**
16283          * @event beforeclick
16284          * Fires before a click is processed. Returns false to cancel the default action.
16285          * @param {Roo.View} this
16286          * @param {Number} index The index of the target node
16287          * @param {HTMLElement} node The target node
16288          * @param {Roo.EventObject} e The raw event object
16289          */
16290             "beforeclick" : true,
16291         /**
16292          * @event click
16293          * Fires when a template node is clicked.
16294          * @param {Roo.View} this
16295          * @param {Number} index The index of the target node
16296          * @param {HTMLElement} node The target node
16297          * @param {Roo.EventObject} e The raw event object
16298          */
16299             "click" : true,
16300         /**
16301          * @event dblclick
16302          * Fires when a template node is double clicked.
16303          * @param {Roo.View} this
16304          * @param {Number} index The index of the target node
16305          * @param {HTMLElement} node The target node
16306          * @param {Roo.EventObject} e The raw event object
16307          */
16308             "dblclick" : true,
16309         /**
16310          * @event contextmenu
16311          * Fires when a template node is right clicked.
16312          * @param {Roo.View} this
16313          * @param {Number} index The index of the target node
16314          * @param {HTMLElement} node The target node
16315          * @param {Roo.EventObject} e The raw event object
16316          */
16317             "contextmenu" : true,
16318         /**
16319          * @event selectionchange
16320          * Fires when the selected nodes change.
16321          * @param {Roo.View} this
16322          * @param {Array} selections Array of the selected nodes
16323          */
16324             "selectionchange" : true,
16325     
16326         /**
16327          * @event beforeselect
16328          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
16329          * @param {Roo.View} this
16330          * @param {HTMLElement} node The node to be selected
16331          * @param {Array} selections Array of currently selected nodes
16332          */
16333             "beforeselect" : true,
16334         /**
16335          * @event preparedata
16336          * Fires on every row to render, to allow you to change the data.
16337          * @param {Roo.View} this
16338          * @param {Object} data to be rendered (change this)
16339          */
16340           "preparedata" : true
16341           
16342           
16343         });
16344
16345
16346
16347     this.el.on({
16348         "click": this.onClick,
16349         "dblclick": this.onDblClick,
16350         "contextmenu": this.onContextMenu,
16351         scope:this
16352     });
16353
16354     this.selections = [];
16355     this.nodes = [];
16356     this.cmp = new Roo.CompositeElementLite([]);
16357     if(this.store){
16358         this.store = Roo.factory(this.store, Roo.data);
16359         this.setStore(this.store, true);
16360     }
16361     
16362     if ( this.footer && this.footer.xtype) {
16363            
16364          var fctr = this.wrapEl.appendChild(document.createElement("div"));
16365         
16366         this.footer.dataSource = this.store;
16367         this.footer.container = fctr;
16368         this.footer = Roo.factory(this.footer, Roo);
16369         fctr.insertFirst(this.el);
16370         
16371         // this is a bit insane - as the paging toolbar seems to detach the el..
16372 //        dom.parentNode.parentNode.parentNode
16373          // they get detached?
16374     }
16375     
16376     
16377     Roo.View.superclass.constructor.call(this);
16378     
16379     
16380 };
16381
16382 Roo.extend(Roo.View, Roo.util.Observable, {
16383     
16384      /**
16385      * @cfg {Roo.data.Store} store Data store to load data from.
16386      */
16387     store : false,
16388     
16389     /**
16390      * @cfg {String|Roo.Element} el The container element.
16391      */
16392     el : '',
16393     
16394     /**
16395      * @cfg {String|Roo.Template} tpl The template used by this View 
16396      */
16397     tpl : false,
16398     /**
16399      * @cfg {String} dataName the named area of the template to use as the data area
16400      *                          Works with domtemplates roo-name="name"
16401      */
16402     dataName: false,
16403     /**
16404      * @cfg {String} selectedClass The css class to add to selected nodes
16405      */
16406     selectedClass : "x-view-selected",
16407      /**
16408      * @cfg {String} emptyText The empty text to show when nothing is loaded.
16409      */
16410     emptyText : "",
16411     
16412     /**
16413      * @cfg {String} text to display on mask (default Loading)
16414      */
16415     mask : false,
16416     /**
16417      * @cfg {Boolean} multiSelect Allow multiple selection
16418      */
16419     multiSelect : false,
16420     /**
16421      * @cfg {Boolean} singleSelect Allow single selection
16422      */
16423     singleSelect:  false,
16424     
16425     /**
16426      * @cfg {Boolean} toggleSelect - selecting 
16427      */
16428     toggleSelect : false,
16429     
16430     /**
16431      * @cfg {Boolean} tickable - selecting 
16432      */
16433     tickable : false,
16434     
16435     /**
16436      * Returns the element this view is bound to.
16437      * @return {Roo.Element}
16438      */
16439     getEl : function(){
16440         return this.wrapEl;
16441     },
16442     
16443     
16444
16445     /**
16446      * Refreshes the view. - called by datachanged on the store. - do not call directly.
16447      */
16448     refresh : function(){
16449         //Roo.log('refresh');
16450         var t = this.tpl;
16451         
16452         // if we are using something like 'domtemplate', then
16453         // the what gets used is:
16454         // t.applySubtemplate(NAME, data, wrapping data..)
16455         // the outer template then get' applied with
16456         //     the store 'extra data'
16457         // and the body get's added to the
16458         //      roo-name="data" node?
16459         //      <span class='roo-tpl-{name}'></span> ?????
16460         
16461         
16462         
16463         this.clearSelections();
16464         this.el.update("");
16465         var html = [];
16466         var records = this.store.getRange();
16467         if(records.length < 1) {
16468             
16469             // is this valid??  = should it render a template??
16470             
16471             this.el.update(this.emptyText);
16472             return;
16473         }
16474         var el = this.el;
16475         if (this.dataName) {
16476             this.el.update(t.apply(this.store.meta)); //????
16477             el = this.el.child('.roo-tpl-' + this.dataName);
16478         }
16479         
16480         for(var i = 0, len = records.length; i < len; i++){
16481             var data = this.prepareData(records[i].data, i, records[i]);
16482             this.fireEvent("preparedata", this, data, i, records[i]);
16483             
16484             var d = Roo.apply({}, data);
16485             
16486             if(this.tickable){
16487                 Roo.apply(d, {'roo-id' : Roo.id()});
16488                 
16489                 var _this = this;
16490             
16491                 Roo.each(this.parent.item, function(item){
16492                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
16493                         return;
16494                     }
16495                     Roo.apply(d, {'roo-data-checked' : 'checked'});
16496                 });
16497             }
16498             
16499             html[html.length] = Roo.util.Format.trim(
16500                 this.dataName ?
16501                     t.applySubtemplate(this.dataName, d, this.store.meta) :
16502                     t.apply(d)
16503             );
16504         }
16505         
16506         
16507         
16508         el.update(html.join(""));
16509         this.nodes = el.dom.childNodes;
16510         this.updateIndexes(0);
16511     },
16512     
16513
16514     /**
16515      * Function to override to reformat the data that is sent to
16516      * the template for each node.
16517      * DEPRICATED - use the preparedata event handler.
16518      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
16519      * a JSON object for an UpdateManager bound view).
16520      */
16521     prepareData : function(data, index, record)
16522     {
16523         this.fireEvent("preparedata", this, data, index, record);
16524         return data;
16525     },
16526
16527     onUpdate : function(ds, record){
16528         // Roo.log('on update');   
16529         this.clearSelections();
16530         var index = this.store.indexOf(record);
16531         var n = this.nodes[index];
16532         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
16533         n.parentNode.removeChild(n);
16534         this.updateIndexes(index, index);
16535     },
16536
16537     
16538     
16539 // --------- FIXME     
16540     onAdd : function(ds, records, index)
16541     {
16542         //Roo.log(['on Add', ds, records, index] );        
16543         this.clearSelections();
16544         if(this.nodes.length == 0){
16545             this.refresh();
16546             return;
16547         }
16548         var n = this.nodes[index];
16549         for(var i = 0, len = records.length; i < len; i++){
16550             var d = this.prepareData(records[i].data, i, records[i]);
16551             if(n){
16552                 this.tpl.insertBefore(n, d);
16553             }else{
16554                 
16555                 this.tpl.append(this.el, d);
16556             }
16557         }
16558         this.updateIndexes(index);
16559     },
16560
16561     onRemove : function(ds, record, index){
16562        // Roo.log('onRemove');
16563         this.clearSelections();
16564         var el = this.dataName  ?
16565             this.el.child('.roo-tpl-' + this.dataName) :
16566             this.el; 
16567         
16568         el.dom.removeChild(this.nodes[index]);
16569         this.updateIndexes(index);
16570     },
16571
16572     /**
16573      * Refresh an individual node.
16574      * @param {Number} index
16575      */
16576     refreshNode : function(index){
16577         this.onUpdate(this.store, this.store.getAt(index));
16578     },
16579
16580     updateIndexes : function(startIndex, endIndex){
16581         var ns = this.nodes;
16582         startIndex = startIndex || 0;
16583         endIndex = endIndex || ns.length - 1;
16584         for(var i = startIndex; i <= endIndex; i++){
16585             ns[i].nodeIndex = i;
16586         }
16587     },
16588
16589     /**
16590      * Changes the data store this view uses and refresh the view.
16591      * @param {Store} store
16592      */
16593     setStore : function(store, initial){
16594         if(!initial && this.store){
16595             this.store.un("datachanged", this.refresh);
16596             this.store.un("add", this.onAdd);
16597             this.store.un("remove", this.onRemove);
16598             this.store.un("update", this.onUpdate);
16599             this.store.un("clear", this.refresh);
16600             this.store.un("beforeload", this.onBeforeLoad);
16601             this.store.un("load", this.onLoad);
16602             this.store.un("loadexception", this.onLoad);
16603         }
16604         if(store){
16605           
16606             store.on("datachanged", this.refresh, this);
16607             store.on("add", this.onAdd, this);
16608             store.on("remove", this.onRemove, this);
16609             store.on("update", this.onUpdate, this);
16610             store.on("clear", this.refresh, this);
16611             store.on("beforeload", this.onBeforeLoad, this);
16612             store.on("load", this.onLoad, this);
16613             store.on("loadexception", this.onLoad, this);
16614         }
16615         
16616         if(store){
16617             this.refresh();
16618         }
16619     },
16620     /**
16621      * onbeforeLoad - masks the loading area.
16622      *
16623      */
16624     onBeforeLoad : function(store,opts)
16625     {
16626          //Roo.log('onBeforeLoad');   
16627         if (!opts.add) {
16628             this.el.update("");
16629         }
16630         this.el.mask(this.mask ? this.mask : "Loading" ); 
16631     },
16632     onLoad : function ()
16633     {
16634         this.el.unmask();
16635     },
16636     
16637
16638     /**
16639      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
16640      * @param {HTMLElement} node
16641      * @return {HTMLElement} The template node
16642      */
16643     findItemFromChild : function(node){
16644         var el = this.dataName  ?
16645             this.el.child('.roo-tpl-' + this.dataName,true) :
16646             this.el.dom; 
16647         
16648         if(!node || node.parentNode == el){
16649                     return node;
16650             }
16651             var p = node.parentNode;
16652             while(p && p != el){
16653             if(p.parentNode == el){
16654                 return p;
16655             }
16656             p = p.parentNode;
16657         }
16658             return null;
16659     },
16660
16661     /** @ignore */
16662     onClick : function(e){
16663         var item = this.findItemFromChild(e.getTarget());
16664         if(item){
16665             var index = this.indexOf(item);
16666             if(this.onItemClick(item, index, e) !== false){
16667                 this.fireEvent("click", this, index, item, e);
16668             }
16669         }else{
16670             this.clearSelections();
16671         }
16672     },
16673
16674     /** @ignore */
16675     onContextMenu : function(e){
16676         var item = this.findItemFromChild(e.getTarget());
16677         if(item){
16678             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
16679         }
16680     },
16681
16682     /** @ignore */
16683     onDblClick : function(e){
16684         var item = this.findItemFromChild(e.getTarget());
16685         if(item){
16686             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
16687         }
16688     },
16689
16690     onItemClick : function(item, index, e)
16691     {
16692         if(this.fireEvent("beforeclick", this, index, item, e) === false){
16693             return false;
16694         }
16695         if (this.toggleSelect) {
16696             var m = this.isSelected(item) ? 'unselect' : 'select';
16697             //Roo.log(m);
16698             var _t = this;
16699             _t[m](item, true, false);
16700             return true;
16701         }
16702         if(this.multiSelect || this.singleSelect){
16703             if(this.multiSelect && e.shiftKey && this.lastSelection){
16704                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
16705             }else{
16706                 this.select(item, this.multiSelect && e.ctrlKey);
16707                 this.lastSelection = item;
16708             }
16709             
16710             if(!this.tickable){
16711                 e.preventDefault();
16712             }
16713             
16714         }
16715         return true;
16716     },
16717
16718     /**
16719      * Get the number of selected nodes.
16720      * @return {Number}
16721      */
16722     getSelectionCount : function(){
16723         return this.selections.length;
16724     },
16725
16726     /**
16727      * Get the currently selected nodes.
16728      * @return {Array} An array of HTMLElements
16729      */
16730     getSelectedNodes : function(){
16731         return this.selections;
16732     },
16733
16734     /**
16735      * Get the indexes of the selected nodes.
16736      * @return {Array}
16737      */
16738     getSelectedIndexes : function(){
16739         var indexes = [], s = this.selections;
16740         for(var i = 0, len = s.length; i < len; i++){
16741             indexes.push(s[i].nodeIndex);
16742         }
16743         return indexes;
16744     },
16745
16746     /**
16747      * Clear all selections
16748      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
16749      */
16750     clearSelections : function(suppressEvent){
16751         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
16752             this.cmp.elements = this.selections;
16753             this.cmp.removeClass(this.selectedClass);
16754             this.selections = [];
16755             if(!suppressEvent){
16756                 this.fireEvent("selectionchange", this, this.selections);
16757             }
16758         }
16759     },
16760
16761     /**
16762      * Returns true if the passed node is selected
16763      * @param {HTMLElement/Number} node The node or node index
16764      * @return {Boolean}
16765      */
16766     isSelected : function(node){
16767         var s = this.selections;
16768         if(s.length < 1){
16769             return false;
16770         }
16771         node = this.getNode(node);
16772         return s.indexOf(node) !== -1;
16773     },
16774
16775     /**
16776      * Selects nodes.
16777      * @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
16778      * @param {Boolean} keepExisting (optional) true to keep existing selections
16779      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16780      */
16781     select : function(nodeInfo, keepExisting, suppressEvent){
16782         if(nodeInfo instanceof Array){
16783             if(!keepExisting){
16784                 this.clearSelections(true);
16785             }
16786             for(var i = 0, len = nodeInfo.length; i < len; i++){
16787                 this.select(nodeInfo[i], true, true);
16788             }
16789             return;
16790         } 
16791         var node = this.getNode(nodeInfo);
16792         if(!node || this.isSelected(node)){
16793             return; // already selected.
16794         }
16795         if(!keepExisting){
16796             this.clearSelections(true);
16797         }
16798         
16799         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
16800             Roo.fly(node).addClass(this.selectedClass);
16801             this.selections.push(node);
16802             if(!suppressEvent){
16803                 this.fireEvent("selectionchange", this, this.selections);
16804             }
16805         }
16806         
16807         
16808     },
16809       /**
16810      * Unselects nodes.
16811      * @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
16812      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
16813      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16814      */
16815     unselect : function(nodeInfo, keepExisting, suppressEvent)
16816     {
16817         if(nodeInfo instanceof Array){
16818             Roo.each(this.selections, function(s) {
16819                 this.unselect(s, nodeInfo);
16820             }, this);
16821             return;
16822         }
16823         var node = this.getNode(nodeInfo);
16824         if(!node || !this.isSelected(node)){
16825             //Roo.log("not selected");
16826             return; // not selected.
16827         }
16828         // fireevent???
16829         var ns = [];
16830         Roo.each(this.selections, function(s) {
16831             if (s == node ) {
16832                 Roo.fly(node).removeClass(this.selectedClass);
16833
16834                 return;
16835             }
16836             ns.push(s);
16837         },this);
16838         
16839         this.selections= ns;
16840         this.fireEvent("selectionchange", this, this.selections);
16841     },
16842
16843     /**
16844      * Gets a template node.
16845      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16846      * @return {HTMLElement} The node or null if it wasn't found
16847      */
16848     getNode : function(nodeInfo){
16849         if(typeof nodeInfo == "string"){
16850             return document.getElementById(nodeInfo);
16851         }else if(typeof nodeInfo == "number"){
16852             return this.nodes[nodeInfo];
16853         }
16854         return nodeInfo;
16855     },
16856
16857     /**
16858      * Gets a range template nodes.
16859      * @param {Number} startIndex
16860      * @param {Number} endIndex
16861      * @return {Array} An array of nodes
16862      */
16863     getNodes : function(start, end){
16864         var ns = this.nodes;
16865         start = start || 0;
16866         end = typeof end == "undefined" ? ns.length - 1 : end;
16867         var nodes = [];
16868         if(start <= end){
16869             for(var i = start; i <= end; i++){
16870                 nodes.push(ns[i]);
16871             }
16872         } else{
16873             for(var i = start; i >= end; i--){
16874                 nodes.push(ns[i]);
16875             }
16876         }
16877         return nodes;
16878     },
16879
16880     /**
16881      * Finds the index of the passed node
16882      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16883      * @return {Number} The index of the node or -1
16884      */
16885     indexOf : function(node){
16886         node = this.getNode(node);
16887         if(typeof node.nodeIndex == "number"){
16888             return node.nodeIndex;
16889         }
16890         var ns = this.nodes;
16891         for(var i = 0, len = ns.length; i < len; i++){
16892             if(ns[i] == node){
16893                 return i;
16894             }
16895         }
16896         return -1;
16897     }
16898 });
16899 /*
16900  * - LGPL
16901  *
16902  * based on jquery fullcalendar
16903  * 
16904  */
16905
16906 Roo.bootstrap = Roo.bootstrap || {};
16907 /**
16908  * @class Roo.bootstrap.Calendar
16909  * @extends Roo.bootstrap.Component
16910  * Bootstrap Calendar class
16911  * @cfg {Boolean} loadMask (true|false) default false
16912  * @cfg {Object} header generate the user specific header of the calendar, default false
16913
16914  * @constructor
16915  * Create a new Container
16916  * @param {Object} config The config object
16917  */
16918
16919
16920
16921 Roo.bootstrap.Calendar = function(config){
16922     Roo.bootstrap.Calendar.superclass.constructor.call(this, config);
16923      this.addEvents({
16924         /**
16925              * @event select
16926              * Fires when a date is selected
16927              * @param {DatePicker} this
16928              * @param {Date} date The selected date
16929              */
16930         'select': true,
16931         /**
16932              * @event monthchange
16933              * Fires when the displayed month changes 
16934              * @param {DatePicker} this
16935              * @param {Date} date The selected month
16936              */
16937         'monthchange': true,
16938         /**
16939              * @event evententer
16940              * Fires when mouse over an event
16941              * @param {Calendar} this
16942              * @param {event} Event
16943              */
16944         'evententer': true,
16945         /**
16946              * @event eventleave
16947              * Fires when the mouse leaves an
16948              * @param {Calendar} this
16949              * @param {event}
16950              */
16951         'eventleave': true,
16952         /**
16953              * @event eventclick
16954              * Fires when the mouse click an
16955              * @param {Calendar} this
16956              * @param {event}
16957              */
16958         'eventclick': true
16959         
16960     });
16961
16962 };
16963
16964 Roo.extend(Roo.bootstrap.Calendar, Roo.bootstrap.Component,  {
16965     
16966      /**
16967      * @cfg {Number} startDay
16968      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
16969      */
16970     startDay : 0,
16971     
16972     loadMask : false,
16973     
16974     header : false,
16975       
16976     getAutoCreate : function(){
16977         
16978         
16979         var fc_button = function(name, corner, style, content ) {
16980             return Roo.apply({},{
16981                 tag : 'span',
16982                 cls : 'fc-button fc-button-'+name+' fc-state-default ' + 
16983                          (corner.length ?
16984                             'fc-corner-' + corner.split(' ').join(' fc-corner-') :
16985                             ''
16986                         ),
16987                 html : '<SPAN class="fc-text-'+style+ '">'+content +'</SPAN>',
16988                 unselectable: 'on'
16989             });
16990         };
16991         
16992         var header = {};
16993         
16994         if(!this.header){
16995             header = {
16996                 tag : 'table',
16997                 cls : 'fc-header',
16998                 style : 'width:100%',
16999                 cn : [
17000                     {
17001                         tag: 'tr',
17002                         cn : [
17003                             {
17004                                 tag : 'td',
17005                                 cls : 'fc-header-left',
17006                                 cn : [
17007                                     fc_button('prev', 'left', 'arrow', '&#8249;' ),
17008                                     fc_button('next', 'right', 'arrow', '&#8250;' ),
17009                                     { tag: 'span', cls: 'fc-header-space' },
17010                                     fc_button('today', 'left right', '', 'today' )  // neds state disabled..
17011
17012
17013                                 ]
17014                             },
17015
17016                             {
17017                                 tag : 'td',
17018                                 cls : 'fc-header-center',
17019                                 cn : [
17020                                     {
17021                                         tag: 'span',
17022                                         cls: 'fc-header-title',
17023                                         cn : {
17024                                             tag: 'H2',
17025                                             html : 'month / year'
17026                                         }
17027                                     }
17028
17029                                 ]
17030                             },
17031                             {
17032                                 tag : 'td',
17033                                 cls : 'fc-header-right',
17034                                 cn : [
17035                               /*      fc_button('month', 'left', '', 'month' ),
17036                                     fc_button('week', '', '', 'week' ),
17037                                     fc_button('day', 'right', '', 'day' )
17038                                 */    
17039
17040                                 ]
17041                             }
17042
17043                         ]
17044                     }
17045                 ]
17046             };
17047         }
17048         
17049         header = this.header;
17050         
17051        
17052         var cal_heads = function() {
17053             var ret = [];
17054             // fixme - handle this.
17055             
17056             for (var i =0; i < Date.dayNames.length; i++) {
17057                 var d = Date.dayNames[i];
17058                 ret.push({
17059                     tag: 'th',
17060                     cls : 'fc-day-header fc-' + d.substring(0,3).toLowerCase() + ' fc-widget-header',
17061                     html : d.substring(0,3)
17062                 });
17063                 
17064             }
17065             ret[0].cls += ' fc-first';
17066             ret[6].cls += ' fc-last';
17067             return ret;
17068         };
17069         var cal_cell = function(n) {
17070             return  {
17071                 tag: 'td',
17072                 cls : 'fc-day fc-'+n + ' fc-widget-content', ///fc-other-month fc-past
17073                 cn : [
17074                     {
17075                         cn : [
17076                             {
17077                                 cls: 'fc-day-number',
17078                                 html: 'D'
17079                             },
17080                             {
17081                                 cls: 'fc-day-content',
17082                              
17083                                 cn : [
17084                                      {
17085                                         style: 'position: relative;' // height: 17px;
17086                                     }
17087                                 ]
17088                             }
17089                             
17090                             
17091                         ]
17092                     }
17093                 ]
17094                 
17095             }
17096         };
17097         var cal_rows = function() {
17098             
17099             var ret = [];
17100             for (var r = 0; r < 6; r++) {
17101                 var row= {
17102                     tag : 'tr',
17103                     cls : 'fc-week',
17104                     cn : []
17105                 };
17106                 
17107                 for (var i =0; i < Date.dayNames.length; i++) {
17108                     var d = Date.dayNames[i];
17109                     row.cn.push(cal_cell(d.substring(0,3).toLowerCase()));
17110
17111                 }
17112                 row.cn[0].cls+=' fc-first';
17113                 row.cn[0].cn[0].style = 'min-height:90px';
17114                 row.cn[6].cls+=' fc-last';
17115                 ret.push(row);
17116                 
17117             }
17118             ret[0].cls += ' fc-first';
17119             ret[4].cls += ' fc-prev-last';
17120             ret[5].cls += ' fc-last';
17121             return ret;
17122             
17123         };
17124         
17125         var cal_table = {
17126             tag: 'table',
17127             cls: 'fc-border-separate',
17128             style : 'width:100%',
17129             cellspacing  : 0,
17130             cn : [
17131                 { 
17132                     tag: 'thead',
17133                     cn : [
17134                         { 
17135                             tag: 'tr',
17136                             cls : 'fc-first fc-last',
17137                             cn : cal_heads()
17138                         }
17139                     ]
17140                 },
17141                 { 
17142                     tag: 'tbody',
17143                     cn : cal_rows()
17144                 }
17145                   
17146             ]
17147         };
17148          
17149          var cfg = {
17150             cls : 'fc fc-ltr',
17151             cn : [
17152                 header,
17153                 {
17154                     cls : 'fc-content',
17155                     style : "position: relative;",
17156                     cn : [
17157                         {
17158                             cls : 'fc-view fc-view-month fc-grid',
17159                             style : 'position: relative',
17160                             unselectable : 'on',
17161                             cn : [
17162                                 {
17163                                     cls : 'fc-event-container',
17164                                     style : 'position:absolute;z-index:8;top:0;left:0;'
17165                                 },
17166                                 cal_table
17167                             ]
17168                         }
17169                     ]
17170     
17171                 }
17172            ] 
17173             
17174         };
17175         
17176          
17177         
17178         return cfg;
17179     },
17180     
17181     
17182     initEvents : function()
17183     {
17184         if(!this.store){
17185             throw "can not find store for calendar";
17186         }
17187         
17188         var mark = {
17189             tag: "div",
17190             cls:"x-dlg-mask",
17191             style: "text-align:center",
17192             cn: [
17193                 {
17194                     tag: "div",
17195                     style: "background-color:white;width:50%;margin:250 auto",
17196                     cn: [
17197                         {
17198                             tag: "img",
17199                             src: Roo.rootURL + '/images/ux/lightbox/loading.gif' 
17200                         },
17201                         {
17202                             tag: "span",
17203                             html: "Loading"
17204                         }
17205                         
17206                     ]
17207                 }
17208             ]
17209         };
17210         this.maskEl = Roo.DomHelper.append(this.el.select('.fc-content', true).first(), mark, true);
17211         
17212         var size = this.el.select('.fc-content', true).first().getSize();
17213         this.maskEl.setSize(size.width, size.height);
17214         this.maskEl.enableDisplayMode("block");
17215         if(!this.loadMask){
17216             this.maskEl.hide();
17217         }
17218         
17219         this.store = Roo.factory(this.store, Roo.data);
17220         this.store.on('load', this.onLoad, this);
17221         this.store.on('beforeload', this.onBeforeLoad, this);
17222         
17223         this.resize();
17224         
17225         this.cells = this.el.select('.fc-day',true);
17226         //Roo.log(this.cells);
17227         this.textNodes = this.el.query('.fc-day-number');
17228         this.cells.addClassOnOver('fc-state-hover');
17229         
17230         this.el.select('.fc-button-prev',true).on('click', this.showPrevMonth, this);
17231         this.el.select('.fc-button-next',true).on('click', this.showNextMonth, this);
17232         this.el.select('.fc-button-today',true).on('click', this.showToday, this);
17233         this.el.select('.fc-button',true).addClassOnOver('fc-state-hover');
17234         
17235         this.on('monthchange', this.onMonthChange, this);
17236         
17237         this.update(new Date().clearTime());
17238     },
17239     
17240     resize : function() {
17241         var sz  = this.el.getSize();
17242         
17243         this.el.select('.fc-day-header',true).setWidth(sz.width / 7);
17244         this.el.select('.fc-day-content div',true).setHeight(34);
17245     },
17246     
17247     
17248     // private
17249     showPrevMonth : function(e){
17250         this.update(this.activeDate.add("mo", -1));
17251     },
17252     showToday : function(e){
17253         this.update(new Date().clearTime());
17254     },
17255     // private
17256     showNextMonth : function(e){
17257         this.update(this.activeDate.add("mo", 1));
17258     },
17259
17260     // private
17261     showPrevYear : function(){
17262         this.update(this.activeDate.add("y", -1));
17263     },
17264
17265     // private
17266     showNextYear : function(){
17267         this.update(this.activeDate.add("y", 1));
17268     },
17269
17270     
17271    // private
17272     update : function(date)
17273     {
17274         var vd = this.activeDate;
17275         this.activeDate = date;
17276 //        if(vd && this.el){
17277 //            var t = date.getTime();
17278 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
17279 //                Roo.log('using add remove');
17280 //                
17281 //                this.fireEvent('monthchange', this, date);
17282 //                
17283 //                this.cells.removeClass("fc-state-highlight");
17284 //                this.cells.each(function(c){
17285 //                   if(c.dateValue == t){
17286 //                       c.addClass("fc-state-highlight");
17287 //                       setTimeout(function(){
17288 //                            try{c.dom.firstChild.focus();}catch(e){}
17289 //                       }, 50);
17290 //                       return false;
17291 //                   }
17292 //                   return true;
17293 //                });
17294 //                return;
17295 //            }
17296 //        }
17297         
17298         var days = date.getDaysInMonth();
17299         
17300         var firstOfMonth = date.getFirstDateOfMonth();
17301         var startingPos = firstOfMonth.getDay()-this.startDay;
17302         
17303         if(startingPos < this.startDay){
17304             startingPos += 7;
17305         }
17306         
17307         var pm = date.add(Date.MONTH, -1);
17308         var prevStart = pm.getDaysInMonth()-startingPos;
17309 //        
17310         this.cells = this.el.select('.fc-day',true);
17311         this.textNodes = this.el.query('.fc-day-number');
17312         this.cells.addClassOnOver('fc-state-hover');
17313         
17314         var cells = this.cells.elements;
17315         var textEls = this.textNodes;
17316         
17317         Roo.each(cells, function(cell){
17318             cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
17319         });
17320         
17321         days += startingPos;
17322
17323         // convert everything to numbers so it's fast
17324         var day = 86400000;
17325         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
17326         //Roo.log(d);
17327         //Roo.log(pm);
17328         //Roo.log(prevStart);
17329         
17330         var today = new Date().clearTime().getTime();
17331         var sel = date.clearTime().getTime();
17332         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
17333         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
17334         var ddMatch = this.disabledDatesRE;
17335         var ddText = this.disabledDatesText;
17336         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
17337         var ddaysText = this.disabledDaysText;
17338         var format = this.format;
17339         
17340         var setCellClass = function(cal, cell){
17341             cell.row = 0;
17342             cell.events = [];
17343             cell.more = [];
17344             //Roo.log('set Cell Class');
17345             cell.title = "";
17346             var t = d.getTime();
17347             
17348             //Roo.log(d);
17349             
17350             cell.dateValue = t;
17351             if(t == today){
17352                 cell.className += " fc-today";
17353                 cell.className += " fc-state-highlight";
17354                 cell.title = cal.todayText;
17355             }
17356             if(t == sel){
17357                 // disable highlight in other month..
17358                 //cell.className += " fc-state-highlight";
17359                 
17360             }
17361             // disabling
17362             if(t < min) {
17363                 cell.className = " fc-state-disabled";
17364                 cell.title = cal.minText;
17365                 return;
17366             }
17367             if(t > max) {
17368                 cell.className = " fc-state-disabled";
17369                 cell.title = cal.maxText;
17370                 return;
17371             }
17372             if(ddays){
17373                 if(ddays.indexOf(d.getDay()) != -1){
17374                     cell.title = ddaysText;
17375                     cell.className = " fc-state-disabled";
17376                 }
17377             }
17378             if(ddMatch && format){
17379                 var fvalue = d.dateFormat(format);
17380                 if(ddMatch.test(fvalue)){
17381                     cell.title = ddText.replace("%0", fvalue);
17382                     cell.className = " fc-state-disabled";
17383                 }
17384             }
17385             
17386             if (!cell.initialClassName) {
17387                 cell.initialClassName = cell.dom.className;
17388             }
17389             
17390             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
17391         };
17392
17393         var i = 0;
17394         
17395         for(; i < startingPos; i++) {
17396             textEls[i].innerHTML = (++prevStart);
17397             d.setDate(d.getDate()+1);
17398             
17399             cells[i].className = "fc-past fc-other-month";
17400             setCellClass(this, cells[i]);
17401         }
17402         
17403         var intDay = 0;
17404         
17405         for(; i < days; i++){
17406             intDay = i - startingPos + 1;
17407             textEls[i].innerHTML = (intDay);
17408             d.setDate(d.getDate()+1);
17409             
17410             cells[i].className = ''; // "x-date-active";
17411             setCellClass(this, cells[i]);
17412         }
17413         var extraDays = 0;
17414         
17415         for(; i < 42; i++) {
17416             textEls[i].innerHTML = (++extraDays);
17417             d.setDate(d.getDate()+1);
17418             
17419             cells[i].className = "fc-future fc-other-month";
17420             setCellClass(this, cells[i]);
17421         }
17422         
17423         this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
17424         
17425         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
17426         
17427         this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
17428         this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
17429         
17430         if(totalRows != 6){
17431             this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
17432             this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
17433         }
17434         
17435         this.fireEvent('monthchange', this, date);
17436         
17437         
17438         /*
17439         if(!this.internalRender){
17440             var main = this.el.dom.firstChild;
17441             var w = main.offsetWidth;
17442             this.el.setWidth(w + this.el.getBorderWidth("lr"));
17443             Roo.fly(main).setWidth(w);
17444             this.internalRender = true;
17445             // opera does not respect the auto grow header center column
17446             // then, after it gets a width opera refuses to recalculate
17447             // without a second pass
17448             if(Roo.isOpera && !this.secondPass){
17449                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
17450                 this.secondPass = true;
17451                 this.update.defer(10, this, [date]);
17452             }
17453         }
17454         */
17455         
17456     },
17457     
17458     findCell : function(dt) {
17459         dt = dt.clearTime().getTime();
17460         var ret = false;
17461         this.cells.each(function(c){
17462             //Roo.log("check " +c.dateValue + '?=' + dt);
17463             if(c.dateValue == dt){
17464                 ret = c;
17465                 return false;
17466             }
17467             return true;
17468         });
17469         
17470         return ret;
17471     },
17472     
17473     findCells : function(ev) {
17474         var s = ev.start.clone().clearTime().getTime();
17475        // Roo.log(s);
17476         var e= ev.end.clone().clearTime().getTime();
17477        // Roo.log(e);
17478         var ret = [];
17479         this.cells.each(function(c){
17480              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
17481             
17482             if(c.dateValue > e){
17483                 return ;
17484             }
17485             if(c.dateValue < s){
17486                 return ;
17487             }
17488             ret.push(c);
17489         });
17490         
17491         return ret;    
17492     },
17493     
17494 //    findBestRow: function(cells)
17495 //    {
17496 //        var ret = 0;
17497 //        
17498 //        for (var i =0 ; i < cells.length;i++) {
17499 //            ret  = Math.max(cells[i].rows || 0,ret);
17500 //        }
17501 //        return ret;
17502 //        
17503 //    },
17504     
17505     
17506     addItem : function(ev)
17507     {
17508         // look for vertical location slot in
17509         var cells = this.findCells(ev);
17510         
17511 //        ev.row = this.findBestRow(cells);
17512         
17513         // work out the location.
17514         
17515         var crow = false;
17516         var rows = [];
17517         for(var i =0; i < cells.length; i++) {
17518             
17519             cells[i].row = cells[0].row;
17520             
17521             if(i == 0){
17522                 cells[i].row = cells[i].row + 1;
17523             }
17524             
17525             if (!crow) {
17526                 crow = {
17527                     start : cells[i],
17528                     end :  cells[i]
17529                 };
17530                 continue;
17531             }
17532             if (crow.start.getY() == cells[i].getY()) {
17533                 // on same row.
17534                 crow.end = cells[i];
17535                 continue;
17536             }
17537             // different row.
17538             rows.push(crow);
17539             crow = {
17540                 start: cells[i],
17541                 end : cells[i]
17542             };
17543             
17544         }
17545         
17546         rows.push(crow);
17547         ev.els = [];
17548         ev.rows = rows;
17549         ev.cells = cells;
17550         
17551         cells[0].events.push(ev);
17552         
17553         this.calevents.push(ev);
17554     },
17555     
17556     clearEvents: function() {
17557         
17558         if(!this.calevents){
17559             return;
17560         }
17561         
17562         Roo.each(this.cells.elements, function(c){
17563             c.row = 0;
17564             c.events = [];
17565             c.more = [];
17566         });
17567         
17568         Roo.each(this.calevents, function(e) {
17569             Roo.each(e.els, function(el) {
17570                 el.un('mouseenter' ,this.onEventEnter, this);
17571                 el.un('mouseleave' ,this.onEventLeave, this);
17572                 el.remove();
17573             },this);
17574         },this);
17575         
17576         Roo.each(Roo.select('.fc-more-event', true).elements, function(e){
17577             e.remove();
17578         });
17579         
17580     },
17581     
17582     renderEvents: function()
17583     {   
17584         var _this = this;
17585         
17586         this.cells.each(function(c) {
17587             
17588             if(c.row < 5){
17589                 return;
17590             }
17591             
17592             var ev = c.events;
17593             
17594             var r = 4;
17595             if(c.row != c.events.length){
17596                 r = 4 - (4 - (c.row - c.events.length));
17597             }
17598             
17599             c.events = ev.slice(0, r);
17600             c.more = ev.slice(r);
17601             
17602             if(c.more.length && c.more.length == 1){
17603                 c.events.push(c.more.pop());
17604             }
17605             
17606             c.row = (c.row - ev.length) + c.events.length + ((c.more.length) ? 1 : 0);
17607             
17608         });
17609             
17610         this.cells.each(function(c) {
17611             
17612             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, c.row * 20));
17613             
17614             
17615             for (var e = 0; e < c.events.length; e++){
17616                 var ev = c.events[e];
17617                 var rows = ev.rows;
17618                 
17619                 for(var i = 0; i < rows.length; i++) {
17620                 
17621                     // how many rows should it span..
17622
17623                     var  cfg = {
17624                         cls : 'roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable',
17625                         style : 'position: absolute', // left: 387px; width: 121px; top: 359px;
17626
17627                         unselectable : "on",
17628                         cn : [
17629                             {
17630                                 cls: 'fc-event-inner',
17631                                 cn : [
17632     //                                {
17633     //                                  tag:'span',
17634     //                                  cls: 'fc-event-time',
17635     //                                  html : cells.length > 1 ? '' : ev.time
17636     //                                },
17637                                     {
17638                                       tag:'span',
17639                                       cls: 'fc-event-title',
17640                                       html : String.format('{0}', ev.title)
17641                                     }
17642
17643
17644                                 ]
17645                             },
17646                             {
17647                                 cls: 'ui-resizable-handle ui-resizable-e',
17648                                 html : '&nbsp;&nbsp;&nbsp'
17649                             }
17650
17651                         ]
17652                     };
17653
17654                     if (i == 0) {
17655                         cfg.cls += ' fc-event-start';
17656                     }
17657                     if ((i+1) == rows.length) {
17658                         cfg.cls += ' fc-event-end';
17659                     }
17660
17661                     var ctr = _this.el.select('.fc-event-container',true).first();
17662                     var cg = ctr.createChild(cfg);
17663
17664                     var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
17665                     var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
17666
17667                     var r = (c.more.length) ? 1 : 0;
17668                     cg.setXY([sbox.x +2, sbox.y + ((c.row - c.events.length - r + e) * 20)]);    
17669                     cg.setWidth(ebox.right - sbox.x -2);
17670
17671                     cg.on('mouseenter' ,_this.onEventEnter, _this, ev);
17672                     cg.on('mouseleave' ,_this.onEventLeave, _this, ev);
17673                     cg.on('click', _this.onEventClick, _this, ev);
17674
17675                     ev.els.push(cg);
17676                     
17677                 }
17678                 
17679             }
17680             
17681             
17682             if(c.more.length){
17683                 var  cfg = {
17684                     cls : 'fc-more-event roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable fc-event-start fc-event-end',
17685                     style : 'position: absolute',
17686                     unselectable : "on",
17687                     cn : [
17688                         {
17689                             cls: 'fc-event-inner',
17690                             cn : [
17691                                 {
17692                                   tag:'span',
17693                                   cls: 'fc-event-title',
17694                                   html : 'More'
17695                                 }
17696
17697
17698                             ]
17699                         },
17700                         {
17701                             cls: 'ui-resizable-handle ui-resizable-e',
17702                             html : '&nbsp;&nbsp;&nbsp'
17703                         }
17704
17705                     ]
17706                 };
17707
17708                 var ctr = _this.el.select('.fc-event-container',true).first();
17709                 var cg = ctr.createChild(cfg);
17710
17711                 var sbox = c.select('.fc-day-content',true).first().getBox();
17712                 var ebox = c.select('.fc-day-content',true).first().getBox();
17713                 //Roo.log(cg);
17714                 cg.setXY([sbox.x +2, sbox.y +((c.row - 1) * 20)]);    
17715                 cg.setWidth(ebox.right - sbox.x -2);
17716
17717                 cg.on('click', _this.onMoreEventClick, _this, c.more);
17718                 
17719             }
17720             
17721         });
17722         
17723         
17724         
17725     },
17726     
17727     onEventEnter: function (e, el,event,d) {
17728         this.fireEvent('evententer', this, el, event);
17729     },
17730     
17731     onEventLeave: function (e, el,event,d) {
17732         this.fireEvent('eventleave', this, el, event);
17733     },
17734     
17735     onEventClick: function (e, el,event,d) {
17736         this.fireEvent('eventclick', this, el, event);
17737     },
17738     
17739     onMonthChange: function () {
17740         this.store.load();
17741     },
17742     
17743     onMoreEventClick: function(e, el, more)
17744     {
17745         var _this = this;
17746         
17747         this.calpopover.placement = 'right';
17748         this.calpopover.setTitle('More');
17749         
17750         this.calpopover.setContent('');
17751         
17752         var ctr = this.calpopover.el.select('.popover-content', true).first();
17753         
17754         Roo.each(more, function(m){
17755             var cfg = {
17756                 cls : 'fc-event-hori fc-event-draggable',
17757                 html : m.title
17758             };
17759             var cg = ctr.createChild(cfg);
17760             
17761             cg.on('click', _this.onEventClick, _this, m);
17762         });
17763         
17764         this.calpopover.show(el);
17765         
17766         
17767     },
17768     
17769     onLoad: function () 
17770     {   
17771         this.calevents = [];
17772         var cal = this;
17773         
17774         if(this.store.getCount() > 0){
17775             this.store.data.each(function(d){
17776                cal.addItem({
17777                     id : d.data.id,
17778                     start: (typeof(d.data.start_dt) === 'string') ? new Date.parseDate(d.data.start_dt, 'Y-m-d H:i:s') : d.data.start_dt,
17779                     end : (typeof(d.data.end_dt) === 'string') ? new Date.parseDate(d.data.end_dt, 'Y-m-d H:i:s') : d.data.end_dt,
17780                     time : d.data.start_time,
17781                     title : d.data.title,
17782                     description : d.data.description,
17783                     venue : d.data.venue
17784                 });
17785             });
17786         }
17787         
17788         this.renderEvents();
17789         
17790         if(this.calevents.length && this.loadMask){
17791             this.maskEl.hide();
17792         }
17793     },
17794     
17795     onBeforeLoad: function()
17796     {
17797         this.clearEvents();
17798         if(this.loadMask){
17799             this.maskEl.show();
17800         }
17801     }
17802 });
17803
17804  
17805  /*
17806  * - LGPL
17807  *
17808  * element
17809  * 
17810  */
17811
17812 /**
17813  * @class Roo.bootstrap.Popover
17814  * @extends Roo.bootstrap.Component
17815  * Bootstrap Popover class
17816  * @cfg {String} html contents of the popover   (or false to use children..)
17817  * @cfg {String} title of popover (or false to hide)
17818  * @cfg {String} placement how it is placed
17819  * @cfg {String} trigger click || hover (or false to trigger manually)
17820  * @cfg {String} over what (parent or false to trigger manually.)
17821  * @cfg {Number} delay - delay before showing
17822  
17823  * @constructor
17824  * Create a new Popover
17825  * @param {Object} config The config object
17826  */
17827
17828 Roo.bootstrap.Popover = function(config){
17829     Roo.bootstrap.Popover.superclass.constructor.call(this, config);
17830     
17831     this.addEvents({
17832         // raw events
17833          /**
17834          * @event show
17835          * After the popover show
17836          * 
17837          * @param {Roo.bootstrap.Popover} this
17838          */
17839         "show" : true,
17840         /**
17841          * @event hide
17842          * After the popover hide
17843          * 
17844          * @param {Roo.bootstrap.Popover} this
17845          */
17846         "hide" : true
17847     });
17848 };
17849
17850 Roo.extend(Roo.bootstrap.Popover, Roo.bootstrap.Component,  {
17851     
17852     title: 'Fill in a title',
17853     html: false,
17854     
17855     placement : 'right',
17856     trigger : 'hover', // hover
17857     
17858     delay : 0,
17859     
17860     over: 'parent',
17861     
17862     can_build_overlaid : false,
17863     
17864     getChildContainer : function()
17865     {
17866         return this.el.select('.popover-content',true).first();
17867     },
17868     
17869     getAutoCreate : function(){
17870          
17871         var cfg = {
17872            cls : 'popover roo-dynamic',
17873            style: 'display:block',
17874            cn : [
17875                 {
17876                     cls : 'arrow'
17877                 },
17878                 {
17879                     cls : 'popover-inner',
17880                     cn : [
17881                         {
17882                             tag: 'h3',
17883                             cls: 'popover-title popover-header',
17884                             html : this.title
17885                         },
17886                         {
17887                             cls : 'popover-content popover-body',
17888                             html : this.html
17889                         }
17890                     ]
17891                     
17892                 }
17893            ]
17894         };
17895         
17896         return cfg;
17897     },
17898     setTitle: function(str)
17899     {
17900         this.title = str;
17901         this.el.select('.popover-title',true).first().dom.innerHTML = str;
17902     },
17903     setContent: function(str)
17904     {
17905         this.html = str;
17906         this.el.select('.popover-content',true).first().dom.innerHTML = str;
17907     },
17908     // as it get's added to the bottom of the page.
17909     onRender : function(ct, position)
17910     {
17911         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
17912         if(!this.el){
17913             var cfg = Roo.apply({},  this.getAutoCreate());
17914             cfg.id = Roo.id();
17915             
17916             if (this.cls) {
17917                 cfg.cls += ' ' + this.cls;
17918             }
17919             if (this.style) {
17920                 cfg.style = this.style;
17921             }
17922             //Roo.log("adding to ");
17923             this.el = Roo.get(document.body).createChild(cfg, position);
17924 //            Roo.log(this.el);
17925         }
17926         this.initEvents();
17927     },
17928     
17929     initEvents : function()
17930     {
17931         this.el.select('.popover-title',true).setVisibilityMode(Roo.Element.DISPLAY);
17932         this.el.enableDisplayMode('block');
17933         this.el.hide();
17934         if (this.over === false) {
17935             return; 
17936         }
17937         if (this.triggers === false) {
17938             return;
17939         }
17940         var on_el = (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
17941         var triggers = this.trigger ? this.trigger.split(' ') : [];
17942         Roo.each(triggers, function(trigger) {
17943         
17944             if (trigger == 'click') {
17945                 on_el.on('click', this.toggle, this);
17946             } else if (trigger != 'manual') {
17947                 var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin';
17948                 var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout';
17949       
17950                 on_el.on(eventIn  ,this.enter, this);
17951                 on_el.on(eventOut, this.leave, this);
17952             }
17953         }, this);
17954         
17955     },
17956     
17957     
17958     // private
17959     timeout : null,
17960     hoverState : null,
17961     
17962     toggle : function () {
17963         this.hoverState == 'in' ? this.leave() : this.enter();
17964     },
17965     
17966     enter : function () {
17967         
17968         clearTimeout(this.timeout);
17969     
17970         this.hoverState = 'in';
17971     
17972         if (!this.delay || !this.delay.show) {
17973             this.show();
17974             return;
17975         }
17976         var _t = this;
17977         this.timeout = setTimeout(function () {
17978             if (_t.hoverState == 'in') {
17979                 _t.show();
17980             }
17981         }, this.delay.show)
17982     },
17983     
17984     leave : function() {
17985         clearTimeout(this.timeout);
17986     
17987         this.hoverState = 'out';
17988     
17989         if (!this.delay || !this.delay.hide) {
17990             this.hide();
17991             return;
17992         }
17993         var _t = this;
17994         this.timeout = setTimeout(function () {
17995             if (_t.hoverState == 'out') {
17996                 _t.hide();
17997             }
17998         }, this.delay.hide)
17999     },
18000     
18001     show : function (on_el)
18002     {
18003         if (!on_el) {
18004             on_el= (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
18005         }
18006         
18007         // set content.
18008         this.el.select('.popover-title',true).first().dom.innerHtml = this.title;
18009         if (this.html !== false) {
18010             this.el.select('.popover-content',true).first().dom.innerHtml = this.html;
18011         }
18012         this.el.removeClass([
18013             'fade','top','bottom', 'left', 'right','in',
18014             'bs-popover-top','bs-popover-bottom', 'bs-popover-left', 'bs-popover-right'
18015         ]);
18016         if (!this.title.length) {
18017             this.el.select('.popover-title',true).hide();
18018         }
18019         
18020         var placement = typeof this.placement == 'function' ?
18021             this.placement.call(this, this.el, on_el) :
18022             this.placement;
18023             
18024         var autoToken = /\s?auto?\s?/i;
18025         var autoPlace = autoToken.test(placement);
18026         if (autoPlace) {
18027             placement = placement.replace(autoToken, '') || 'top';
18028         }
18029         
18030         //this.el.detach()
18031         //this.el.setXY([0,0]);
18032         this.el.show();
18033         this.el.dom.style.display='block';
18034         this.el.addClass(placement);
18035         
18036         //this.el.appendTo(on_el);
18037         
18038         var p = this.getPosition();
18039         var box = this.el.getBox();
18040         
18041         if (autoPlace) {
18042             // fixme..
18043         }
18044         var align = Roo.bootstrap.Popover.alignment[placement];
18045         
18046 //        Roo.log(align);
18047         this.el.alignTo(on_el, align[0],align[1]);
18048         //var arrow = this.el.select('.arrow',true).first();
18049         //arrow.set(align[2], 
18050         
18051         this.el.addClass('in');
18052         
18053         
18054         if (this.el.hasClass('fade')) {
18055             // fade it?
18056         }
18057         
18058         this.hoverState = 'in';
18059         
18060         this.fireEvent('show', this);
18061         
18062     },
18063     hide : function()
18064     {
18065         this.el.setXY([0,0]);
18066         this.el.removeClass('in');
18067         this.el.hide();
18068         this.hoverState = null;
18069         
18070         this.fireEvent('hide', this);
18071     }
18072     
18073 });
18074
18075 Roo.bootstrap.Popover.alignment = {
18076     'left' : ['r-l', [-10,0], 'right bs-popover-right'],
18077     'right' : ['l-r', [10,0], 'left bs-popover-left'],
18078     'bottom' : ['t-b', [0,10], 'top bs-popover-top'],
18079     'top' : [ 'b-t', [0,-10], 'bottom bs-popover-bottom']
18080 };
18081
18082  /*
18083  * - LGPL
18084  *
18085  * Progress
18086  * 
18087  */
18088
18089 /**
18090  * @class Roo.bootstrap.Progress
18091  * @extends Roo.bootstrap.Component
18092  * Bootstrap Progress class
18093  * @cfg {Boolean} striped striped of the progress bar
18094  * @cfg {Boolean} active animated of the progress bar
18095  * 
18096  * 
18097  * @constructor
18098  * Create a new Progress
18099  * @param {Object} config The config object
18100  */
18101
18102 Roo.bootstrap.Progress = function(config){
18103     Roo.bootstrap.Progress.superclass.constructor.call(this, config);
18104 };
18105
18106 Roo.extend(Roo.bootstrap.Progress, Roo.bootstrap.Component,  {
18107     
18108     striped : false,
18109     active: false,
18110     
18111     getAutoCreate : function(){
18112         var cfg = {
18113             tag: 'div',
18114             cls: 'progress'
18115         };
18116         
18117         
18118         if(this.striped){
18119             cfg.cls += ' progress-striped';
18120         }
18121       
18122         if(this.active){
18123             cfg.cls += ' active';
18124         }
18125         
18126         
18127         return cfg;
18128     }
18129    
18130 });
18131
18132  
18133
18134  /*
18135  * - LGPL
18136  *
18137  * ProgressBar
18138  * 
18139  */
18140
18141 /**
18142  * @class Roo.bootstrap.ProgressBar
18143  * @extends Roo.bootstrap.Component
18144  * Bootstrap ProgressBar class
18145  * @cfg {Number} aria_valuenow aria-value now
18146  * @cfg {Number} aria_valuemin aria-value min
18147  * @cfg {Number} aria_valuemax aria-value max
18148  * @cfg {String} label label for the progress bar
18149  * @cfg {String} panel (success | info | warning | danger )
18150  * @cfg {String} role role of the progress bar
18151  * @cfg {String} sr_only text
18152  * 
18153  * 
18154  * @constructor
18155  * Create a new ProgressBar
18156  * @param {Object} config The config object
18157  */
18158
18159 Roo.bootstrap.ProgressBar = function(config){
18160     Roo.bootstrap.ProgressBar.superclass.constructor.call(this, config);
18161 };
18162
18163 Roo.extend(Roo.bootstrap.ProgressBar, Roo.bootstrap.Component,  {
18164     
18165     aria_valuenow : 0,
18166     aria_valuemin : 0,
18167     aria_valuemax : 100,
18168     label : false,
18169     panel : false,
18170     role : false,
18171     sr_only: false,
18172     
18173     getAutoCreate : function()
18174     {
18175         
18176         var cfg = {
18177             tag: 'div',
18178             cls: 'progress-bar',
18179             style: 'width:' + Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%'
18180         };
18181         
18182         if(this.sr_only){
18183             cfg.cn = {
18184                 tag: 'span',
18185                 cls: 'sr-only',
18186                 html: this.sr_only
18187             }
18188         }
18189         
18190         if(this.role){
18191             cfg.role = this.role;
18192         }
18193         
18194         if(this.aria_valuenow){
18195             cfg['aria-valuenow'] = this.aria_valuenow;
18196         }
18197         
18198         if(this.aria_valuemin){
18199             cfg['aria-valuemin'] = this.aria_valuemin;
18200         }
18201         
18202         if(this.aria_valuemax){
18203             cfg['aria-valuemax'] = this.aria_valuemax;
18204         }
18205         
18206         if(this.label && !this.sr_only){
18207             cfg.html = this.label;
18208         }
18209         
18210         if(this.panel){
18211             cfg.cls += ' progress-bar-' + this.panel;
18212         }
18213         
18214         return cfg;
18215     },
18216     
18217     update : function(aria_valuenow)
18218     {
18219         this.aria_valuenow = aria_valuenow;
18220         
18221         this.el.setStyle('width', Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%');
18222     }
18223    
18224 });
18225
18226  
18227
18228  /*
18229  * - LGPL
18230  *
18231  * column
18232  * 
18233  */
18234
18235 /**
18236  * @class Roo.bootstrap.TabGroup
18237  * @extends Roo.bootstrap.Column
18238  * Bootstrap Column class
18239  * @cfg {String} navId the navigation id (for use with navbars) - will be auto generated if it does not exist..
18240  * @cfg {Boolean} carousel true to make the group behave like a carousel
18241  * @cfg {Boolean} bullets show bullets for the panels
18242  * @cfg {Boolean} autoslide (true|false) auto slide .. default false
18243  * @cfg {Number} timer auto slide timer .. default 0 millisecond
18244  * @cfg {Boolean} showarrow (true|false) show arrow default true
18245  * 
18246  * @constructor
18247  * Create a new TabGroup
18248  * @param {Object} config The config object
18249  */
18250
18251 Roo.bootstrap.TabGroup = function(config){
18252     Roo.bootstrap.TabGroup.superclass.constructor.call(this, config);
18253     if (!this.navId) {
18254         this.navId = Roo.id();
18255     }
18256     this.tabs = [];
18257     Roo.bootstrap.TabGroup.register(this);
18258     
18259 };
18260
18261 Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
18262     
18263     carousel : false,
18264     transition : false,
18265     bullets : 0,
18266     timer : 0,
18267     autoslide : false,
18268     slideFn : false,
18269     slideOnTouch : false,
18270     showarrow : true,
18271     
18272     getAutoCreate : function()
18273     {
18274         var cfg = Roo.apply({}, Roo.bootstrap.TabGroup.superclass.getAutoCreate.call(this));
18275         
18276         cfg.cls += ' tab-content';
18277         
18278         if (this.carousel) {
18279             cfg.cls += ' carousel slide';
18280             
18281             cfg.cn = [{
18282                cls : 'carousel-inner',
18283                cn : []
18284             }];
18285         
18286             if(this.bullets  && !Roo.isTouch){
18287                 
18288                 var bullets = {
18289                     cls : 'carousel-bullets',
18290                     cn : []
18291                 };
18292                
18293                 if(this.bullets_cls){
18294                     bullets.cls = bullets.cls + ' ' + this.bullets_cls;
18295                 }
18296                 
18297                 bullets.cn.push({
18298                     cls : 'clear'
18299                 });
18300                 
18301                 cfg.cn[0].cn.push(bullets);
18302             }
18303             
18304             if(this.showarrow){
18305                 cfg.cn[0].cn.push({
18306                     tag : 'div',
18307                     class : 'carousel-arrow',
18308                     cn : [
18309                         {
18310                             tag : 'div',
18311                             class : 'carousel-prev',
18312                             cn : [
18313                                 {
18314                                     tag : 'i',
18315                                     class : 'fa fa-chevron-left'
18316                                 }
18317                             ]
18318                         },
18319                         {
18320                             tag : 'div',
18321                             class : 'carousel-next',
18322                             cn : [
18323                                 {
18324                                     tag : 'i',
18325                                     class : 'fa fa-chevron-right'
18326                                 }
18327                             ]
18328                         }
18329                     ]
18330                 });
18331             }
18332             
18333         }
18334         
18335         return cfg;
18336     },
18337     
18338     initEvents:  function()
18339     {
18340 //        if(Roo.isTouch && this.slideOnTouch && !this.showarrow){
18341 //            this.el.on("touchstart", this.onTouchStart, this);
18342 //        }
18343         
18344         if(this.autoslide){
18345             var _this = this;
18346             
18347             this.slideFn = window.setInterval(function() {
18348                 _this.showPanelNext();
18349             }, this.timer);
18350         }
18351         
18352         if(this.showarrow){
18353             this.el.select('.carousel-prev', true).first().on('click', this.showPanelPrev, this);
18354             this.el.select('.carousel-next', true).first().on('click', this.showPanelNext, this);
18355         }
18356         
18357         
18358     },
18359     
18360 //    onTouchStart : function(e, el, o)
18361 //    {
18362 //        if(!this.slideOnTouch || !Roo.isTouch || Roo.get(e.getTarget()).hasClass('roo-button-text')){
18363 //            return;
18364 //        }
18365 //        
18366 //        this.showPanelNext();
18367 //    },
18368     
18369     
18370     getChildContainer : function()
18371     {
18372         return this.carousel ? this.el.select('.carousel-inner', true).first() : this.el;
18373     },
18374     
18375     /**
18376     * register a Navigation item
18377     * @param {Roo.bootstrap.NavItem} the navitem to add
18378     */
18379     register : function(item)
18380     {
18381         this.tabs.push( item);
18382         item.navId = this.navId; // not really needed..
18383         this.addBullet();
18384     
18385     },
18386     
18387     getActivePanel : function()
18388     {
18389         var r = false;
18390         Roo.each(this.tabs, function(t) {
18391             if (t.active) {
18392                 r = t;
18393                 return false;
18394             }
18395             return null;
18396         });
18397         return r;
18398         
18399     },
18400     getPanelByName : function(n)
18401     {
18402         var r = false;
18403         Roo.each(this.tabs, function(t) {
18404             if (t.tabId == n) {
18405                 r = t;
18406                 return false;
18407             }
18408             return null;
18409         });
18410         return r;
18411     },
18412     indexOfPanel : function(p)
18413     {
18414         var r = false;
18415         Roo.each(this.tabs, function(t,i) {
18416             if (t.tabId == p.tabId) {
18417                 r = i;
18418                 return false;
18419             }
18420             return null;
18421         });
18422         return r;
18423     },
18424     /**
18425      * show a specific panel
18426      * @param {Roo.bootstrap.TabPanel|number|string} panel to change to (use the tabId to specify a specific one)
18427      * @return {boolean} false if panel was not shown (invalid entry or beforedeactivate fails.)
18428      */
18429     showPanel : function (pan)
18430     {
18431         if(this.transition || typeof(pan) == 'undefined'){
18432             Roo.log("waiting for the transitionend");
18433             return false;
18434         }
18435         
18436         if (typeof(pan) == 'number') {
18437             pan = this.tabs[pan];
18438         }
18439         
18440         if (typeof(pan) == 'string') {
18441             pan = this.getPanelByName(pan);
18442         }
18443         
18444         var cur = this.getActivePanel();
18445         
18446         if(!pan || !cur){
18447             Roo.log('pan or acitve pan is undefined');
18448             return false;
18449         }
18450         
18451         if (pan.tabId == this.getActivePanel().tabId) {
18452             return true;
18453         }
18454         
18455         if (false === cur.fireEvent('beforedeactivate')) {
18456             return false;
18457         }
18458         
18459         if(this.bullets > 0 && !Roo.isTouch){
18460             this.setActiveBullet(this.indexOfPanel(pan));
18461         }
18462         
18463         if (this.carousel && typeof(Roo.get(document.body).dom.style.transition) != 'undefined') {
18464             
18465             //class="carousel-item carousel-item-next carousel-item-left"
18466             
18467             this.transition = true;
18468             var dir = this.indexOfPanel(pan) > this.indexOfPanel(cur)  ? 'next' : 'prev';
18469             var lr = dir == 'next' ? 'left' : 'right';
18470             pan.el.addClass(dir); // or prev
18471             pan.el.addClass('carousel-item-' + dir); // or prev
18472             pan.el.dom.offsetWidth; // find the offset with - causing a reflow?
18473             cur.el.addClass(lr); // or right
18474             pan.el.addClass(lr);
18475             cur.el.addClass('carousel-item-' +lr); // or right
18476             pan.el.addClass('carousel-item-' +lr);
18477             
18478             
18479             var _this = this;
18480             cur.el.on('transitionend', function() {
18481                 Roo.log("trans end?");
18482                 
18483                 pan.el.removeClass([lr,dir, 'carousel-item-' + lr, 'carousel-item-' + dir]);
18484                 pan.setActive(true);
18485                 
18486                 cur.el.removeClass([lr, 'carousel-item-' + lr]);
18487                 cur.setActive(false);
18488                 
18489                 _this.transition = false;
18490                 
18491             }, this, { single:  true } );
18492             
18493             return true;
18494         }
18495         
18496         cur.setActive(false);
18497         pan.setActive(true);
18498         
18499         return true;
18500         
18501     },
18502     showPanelNext : function()
18503     {
18504         var i = this.indexOfPanel(this.getActivePanel());
18505         
18506         if (i >= this.tabs.length - 1 && !this.autoslide) {
18507             return;
18508         }
18509         
18510         if (i >= this.tabs.length - 1 && this.autoslide) {
18511             i = -1;
18512         }
18513         
18514         this.showPanel(this.tabs[i+1]);
18515     },
18516     
18517     showPanelPrev : function()
18518     {
18519         var i = this.indexOfPanel(this.getActivePanel());
18520         
18521         if (i  < 1 && !this.autoslide) {
18522             return;
18523         }
18524         
18525         if (i < 1 && this.autoslide) {
18526             i = this.tabs.length;
18527         }
18528         
18529         this.showPanel(this.tabs[i-1]);
18530     },
18531     
18532     
18533     addBullet: function()
18534     {
18535         if(!this.bullets || Roo.isTouch){
18536             return;
18537         }
18538         var ctr = this.el.select('.carousel-bullets',true).first();
18539         var i = this.el.select('.carousel-bullets .bullet',true).getCount() ;
18540         var bullet = ctr.createChild({
18541             cls : 'bullet bullet-' + i
18542         },ctr.dom.lastChild);
18543         
18544         
18545         var _this = this;
18546         
18547         bullet.on('click', (function(e, el, o, ii, t){
18548
18549             e.preventDefault();
18550
18551             this.showPanel(ii);
18552
18553             if(this.autoslide && this.slideFn){
18554                 clearInterval(this.slideFn);
18555                 this.slideFn = window.setInterval(function() {
18556                     _this.showPanelNext();
18557                 }, this.timer);
18558             }
18559
18560         }).createDelegate(this, [i, bullet], true));
18561                 
18562         
18563     },
18564      
18565     setActiveBullet : function(i)
18566     {
18567         if(Roo.isTouch){
18568             return;
18569         }
18570         
18571         Roo.each(this.el.select('.bullet', true).elements, function(el){
18572             el.removeClass('selected');
18573         });
18574
18575         var bullet = this.el.select('.bullet-' + i, true).first();
18576         
18577         if(!bullet){
18578             return;
18579         }
18580         
18581         bullet.addClass('selected');
18582     }
18583     
18584     
18585   
18586 });
18587
18588  
18589
18590  
18591  
18592 Roo.apply(Roo.bootstrap.TabGroup, {
18593     
18594     groups: {},
18595      /**
18596     * register a Navigation Group
18597     * @param {Roo.bootstrap.NavGroup} the navgroup to add
18598     */
18599     register : function(navgrp)
18600     {
18601         this.groups[navgrp.navId] = navgrp;
18602         
18603     },
18604     /**
18605     * fetch a Navigation Group based on the navigation ID
18606     * if one does not exist , it will get created.
18607     * @param {string} the navgroup to add
18608     * @returns {Roo.bootstrap.NavGroup} the navgroup 
18609     */
18610     get: function(navId) {
18611         if (typeof(this.groups[navId]) == 'undefined') {
18612             this.register(new Roo.bootstrap.TabGroup({ navId : navId }));
18613         }
18614         return this.groups[navId] ;
18615     }
18616     
18617     
18618     
18619 });
18620
18621  /*
18622  * - LGPL
18623  *
18624  * TabPanel
18625  * 
18626  */
18627
18628 /**
18629  * @class Roo.bootstrap.TabPanel
18630  * @extends Roo.bootstrap.Component
18631  * Bootstrap TabPanel class
18632  * @cfg {Boolean} active panel active
18633  * @cfg {String} html panel content
18634  * @cfg {String} tabId  unique tab ID (will be autogenerated if not set. - used to match TabItem to Panel)
18635  * @cfg {String} navId The Roo.bootstrap.NavGroup which triggers show hide ()
18636  * @cfg {String} href click to link..
18637  * 
18638  * 
18639  * @constructor
18640  * Create a new TabPanel
18641  * @param {Object} config The config object
18642  */
18643
18644 Roo.bootstrap.TabPanel = function(config){
18645     Roo.bootstrap.TabPanel.superclass.constructor.call(this, config);
18646     this.addEvents({
18647         /**
18648              * @event changed
18649              * Fires when the active status changes
18650              * @param {Roo.bootstrap.TabPanel} this
18651              * @param {Boolean} state the new state
18652             
18653          */
18654         'changed': true,
18655         /**
18656              * @event beforedeactivate
18657              * Fires before a tab is de-activated - can be used to do validation on a form.
18658              * @param {Roo.bootstrap.TabPanel} this
18659              * @return {Boolean} false if there is an error
18660             
18661          */
18662         'beforedeactivate': true
18663      });
18664     
18665     this.tabId = this.tabId || Roo.id();
18666   
18667 };
18668
18669 Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
18670     
18671     active: false,
18672     html: false,
18673     tabId: false,
18674     navId : false,
18675     href : '',
18676     
18677     getAutoCreate : function(){
18678         
18679         
18680         var cfg = {
18681             tag: 'div',
18682             // item is needed for carousel - not sure if it has any effect otherwise
18683             cls: 'carousel-item tab-pane item' + ((this.href.length) ? ' clickable ' : ''),
18684             html: this.html || ''
18685         };
18686         
18687         if(this.active){
18688             cfg.cls += ' active';
18689         }
18690         
18691         if(this.tabId){
18692             cfg.tabId = this.tabId;
18693         }
18694         
18695         
18696         
18697         return cfg;
18698     },
18699     
18700     initEvents:  function()
18701     {
18702         var p = this.parent();
18703         
18704         this.navId = this.navId || p.navId;
18705         
18706         if (typeof(this.navId) != 'undefined') {
18707             // not really needed.. but just in case.. parent should be a NavGroup.
18708             var tg = Roo.bootstrap.TabGroup.get(this.navId);
18709             
18710             tg.register(this);
18711             
18712             var i = tg.tabs.length - 1;
18713             
18714             if(this.active && tg.bullets > 0 && i < tg.bullets){
18715                 tg.setActiveBullet(i);
18716             }
18717         }
18718         
18719         this.el.on('click', this.onClick, this);
18720         
18721         if(Roo.isTouch){
18722             this.el.on("touchstart", this.onTouchStart, this);
18723             this.el.on("touchmove", this.onTouchMove, this);
18724             this.el.on("touchend", this.onTouchEnd, this);
18725         }
18726         
18727     },
18728     
18729     onRender : function(ct, position)
18730     {
18731         Roo.bootstrap.TabPanel.superclass.onRender.call(this, ct, position);
18732     },
18733     
18734     setActive : function(state)
18735     {
18736         Roo.log("panel - set active " + this.tabId + "=" + state);
18737         
18738         this.active = state;
18739         if (!state) {
18740             this.el.removeClass('active');
18741             
18742         } else  if (!this.el.hasClass('active')) {
18743             this.el.addClass('active');
18744         }
18745         
18746         this.fireEvent('changed', this, state);
18747     },
18748     
18749     onClick : function(e)
18750     {
18751         e.preventDefault();
18752         
18753         if(!this.href.length){
18754             return;
18755         }
18756         
18757         window.location.href = this.href;
18758     },
18759     
18760     startX : 0,
18761     startY : 0,
18762     endX : 0,
18763     endY : 0,
18764     swiping : false,
18765     
18766     onTouchStart : function(e)
18767     {
18768         this.swiping = false;
18769         
18770         this.startX = e.browserEvent.touches[0].clientX;
18771         this.startY = e.browserEvent.touches[0].clientY;
18772     },
18773     
18774     onTouchMove : function(e)
18775     {
18776         this.swiping = true;
18777         
18778         this.endX = e.browserEvent.touches[0].clientX;
18779         this.endY = e.browserEvent.touches[0].clientY;
18780     },
18781     
18782     onTouchEnd : function(e)
18783     {
18784         if(!this.swiping){
18785             this.onClick(e);
18786             return;
18787         }
18788         
18789         var tabGroup = this.parent();
18790         
18791         if(this.endX > this.startX){ // swiping right
18792             tabGroup.showPanelPrev();
18793             return;
18794         }
18795         
18796         if(this.startX > this.endX){ // swiping left
18797             tabGroup.showPanelNext();
18798             return;
18799         }
18800     }
18801     
18802     
18803 });
18804  
18805
18806  
18807
18808  /*
18809  * - LGPL
18810  *
18811  * DateField
18812  * 
18813  */
18814
18815 /**
18816  * @class Roo.bootstrap.DateField
18817  * @extends Roo.bootstrap.Input
18818  * Bootstrap DateField class
18819  * @cfg {Number} weekStart default 0
18820  * @cfg {String} viewMode default empty, (months|years)
18821  * @cfg {String} minViewMode default empty, (months|years)
18822  * @cfg {Number} startDate default -Infinity
18823  * @cfg {Number} endDate default Infinity
18824  * @cfg {Boolean} todayHighlight default false
18825  * @cfg {Boolean} todayBtn default false
18826  * @cfg {Boolean} calendarWeeks default false
18827  * @cfg {Object} daysOfWeekDisabled default empty
18828  * @cfg {Boolean} singleMode default false (true | false)
18829  * 
18830  * @cfg {Boolean} keyboardNavigation default true
18831  * @cfg {String} language default en
18832  * 
18833  * @constructor
18834  * Create a new DateField
18835  * @param {Object} config The config object
18836  */
18837
18838 Roo.bootstrap.DateField = function(config){
18839     Roo.bootstrap.DateField.superclass.constructor.call(this, config);
18840      this.addEvents({
18841             /**
18842              * @event show
18843              * Fires when this field show.
18844              * @param {Roo.bootstrap.DateField} this
18845              * @param {Mixed} date The date value
18846              */
18847             show : true,
18848             /**
18849              * @event show
18850              * Fires when this field hide.
18851              * @param {Roo.bootstrap.DateField} this
18852              * @param {Mixed} date The date value
18853              */
18854             hide : true,
18855             /**
18856              * @event select
18857              * Fires when select a date.
18858              * @param {Roo.bootstrap.DateField} this
18859              * @param {Mixed} date The date value
18860              */
18861             select : true,
18862             /**
18863              * @event beforeselect
18864              * Fires when before select a date.
18865              * @param {Roo.bootstrap.DateField} this
18866              * @param {Mixed} date The date value
18867              */
18868             beforeselect : true
18869         });
18870 };
18871
18872 Roo.extend(Roo.bootstrap.DateField, Roo.bootstrap.Input,  {
18873     
18874     /**
18875      * @cfg {String} format
18876      * The default date format string which can be overriden for localization support.  The format must be
18877      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
18878      */
18879     format : "m/d/y",
18880     /**
18881      * @cfg {String} altFormats
18882      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
18883      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
18884      */
18885     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
18886     
18887     weekStart : 0,
18888     
18889     viewMode : '',
18890     
18891     minViewMode : '',
18892     
18893     todayHighlight : false,
18894     
18895     todayBtn: false,
18896     
18897     language: 'en',
18898     
18899     keyboardNavigation: true,
18900     
18901     calendarWeeks: false,
18902     
18903     startDate: -Infinity,
18904     
18905     endDate: Infinity,
18906     
18907     daysOfWeekDisabled: [],
18908     
18909     _events: [],
18910     
18911     singleMode : false,
18912     
18913     UTCDate: function()
18914     {
18915         return new Date(Date.UTC.apply(Date, arguments));
18916     },
18917     
18918     UTCToday: function()
18919     {
18920         var today = new Date();
18921         return this.UTCDate(today.getUTCFullYear(), today.getUTCMonth(), today.getUTCDate());
18922     },
18923     
18924     getDate: function() {
18925             var d = this.getUTCDate();
18926             return new Date(d.getTime() + (d.getTimezoneOffset()*60000));
18927     },
18928     
18929     getUTCDate: function() {
18930             return this.date;
18931     },
18932     
18933     setDate: function(d) {
18934             this.setUTCDate(new Date(d.getTime() - (d.getTimezoneOffset()*60000)));
18935     },
18936     
18937     setUTCDate: function(d) {
18938             this.date = d;
18939             this.setValue(this.formatDate(this.date));
18940     },
18941         
18942     onRender: function(ct, position)
18943     {
18944         
18945         Roo.bootstrap.DateField.superclass.onRender.call(this, ct, position);
18946         
18947         this.language = this.language || 'en';
18948         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : this.language.split('-')[0];
18949         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : "en";
18950         
18951         this.isRTL = Roo.bootstrap.DateField.dates[this.language].rtl || false;
18952         this.format = this.format || 'm/d/y';
18953         this.isInline = false;
18954         this.isInput = true;
18955         this.component = this.el.select('.add-on', true).first() || false;
18956         this.component = (this.component && this.component.length === 0) ? false : this.component;
18957         this.hasInput = this.component && this.inputEl().length;
18958         
18959         if (typeof(this.minViewMode === 'string')) {
18960             switch (this.minViewMode) {
18961                 case 'months':
18962                     this.minViewMode = 1;
18963                     break;
18964                 case 'years':
18965                     this.minViewMode = 2;
18966                     break;
18967                 default:
18968                     this.minViewMode = 0;
18969                     break;
18970             }
18971         }
18972         
18973         if (typeof(this.viewMode === 'string')) {
18974             switch (this.viewMode) {
18975                 case 'months':
18976                     this.viewMode = 1;
18977                     break;
18978                 case 'years':
18979                     this.viewMode = 2;
18980                     break;
18981                 default:
18982                     this.viewMode = 0;
18983                     break;
18984             }
18985         }
18986                 
18987         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.DateField.template);
18988         
18989 //        this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.DateField.template);
18990         
18991         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
18992         
18993         this.picker().on('mousedown', this.onMousedown, this);
18994         this.picker().on('click', this.onClick, this);
18995         
18996         this.picker().addClass('datepicker-dropdown');
18997         
18998         this.startViewMode = this.viewMode;
18999         
19000         if(this.singleMode){
19001             Roo.each(this.picker().select('thead > tr > th', true).elements, function(v){
19002                 v.setVisibilityMode(Roo.Element.DISPLAY);
19003                 v.hide();
19004             });
19005             
19006             Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
19007                 v.setStyle('width', '189px');
19008             });
19009         }
19010         
19011         Roo.each(this.picker().select('tfoot th.today', true).elements, function(v){
19012             if(!this.calendarWeeks){
19013                 v.remove();
19014                 return;
19015             }
19016             
19017             v.dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19018             v.attr('colspan', function(i, val){
19019                 return parseInt(val) + 1;
19020             });
19021         });
19022                         
19023         
19024         this.weekEnd = this.weekStart === 0 ? 6 : this.weekStart - 1;
19025         
19026         this.setStartDate(this.startDate);
19027         this.setEndDate(this.endDate);
19028         
19029         this.setDaysOfWeekDisabled(this.daysOfWeekDisabled);
19030         
19031         this.fillDow();
19032         this.fillMonths();
19033         this.update();
19034         this.showMode();
19035         
19036         if(this.isInline) {
19037             this.showPopup();
19038         }
19039     },
19040     
19041     picker : function()
19042     {
19043         return this.pickerEl;
19044 //        return this.el.select('.datepicker', true).first();
19045     },
19046     
19047     fillDow: function()
19048     {
19049         var dowCnt = this.weekStart;
19050         
19051         var dow = {
19052             tag: 'tr',
19053             cn: [
19054                 
19055             ]
19056         };
19057         
19058         if(this.calendarWeeks){
19059             dow.cn.push({
19060                 tag: 'th',
19061                 cls: 'cw',
19062                 html: '&nbsp;'
19063             })
19064         }
19065         
19066         while (dowCnt < this.weekStart + 7) {
19067             dow.cn.push({
19068                 tag: 'th',
19069                 cls: 'dow',
19070                 html: Roo.bootstrap.DateField.dates[this.language].daysMin[(dowCnt++)%7]
19071             });
19072         }
19073         
19074         this.picker().select('>.datepicker-days thead', true).first().createChild(dow);
19075     },
19076     
19077     fillMonths: function()
19078     {    
19079         var i = 0;
19080         var months = this.picker().select('>.datepicker-months td', true).first();
19081         
19082         months.dom.innerHTML = '';
19083         
19084         while (i < 12) {
19085             var month = {
19086                 tag: 'span',
19087                 cls: 'month',
19088                 html: Roo.bootstrap.DateField.dates[this.language].monthsShort[i++]
19089             };
19090             
19091             months.createChild(month);
19092         }
19093         
19094     },
19095     
19096     update: function()
19097     {
19098         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;
19099         
19100         if (this.date < this.startDate) {
19101             this.viewDate = new Date(this.startDate);
19102         } else if (this.date > this.endDate) {
19103             this.viewDate = new Date(this.endDate);
19104         } else {
19105             this.viewDate = new Date(this.date);
19106         }
19107         
19108         this.fill();
19109     },
19110     
19111     fill: function() 
19112     {
19113         var d = new Date(this.viewDate),
19114                 year = d.getUTCFullYear(),
19115                 month = d.getUTCMonth(),
19116                 startYear = this.startDate !== -Infinity ? this.startDate.getUTCFullYear() : -Infinity,
19117                 startMonth = this.startDate !== -Infinity ? this.startDate.getUTCMonth() : -Infinity,
19118                 endYear = this.endDate !== Infinity ? this.endDate.getUTCFullYear() : Infinity,
19119                 endMonth = this.endDate !== Infinity ? this.endDate.getUTCMonth() : Infinity,
19120                 currentDate = this.date && this.date.valueOf(),
19121                 today = this.UTCToday();
19122         
19123         this.picker().select('>.datepicker-days thead th.switch', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].months[month]+' '+year;
19124         
19125 //        this.picker().select('>tfoot th.today', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19126         
19127 //        this.picker.select('>tfoot th.today').
19128 //                                              .text(dates[this.language].today)
19129 //                                              .toggle(this.todayBtn !== false);
19130     
19131         this.updateNavArrows();
19132         this.fillMonths();
19133                                                 
19134         var prevMonth = this.UTCDate(year, month-1, 28,0,0,0,0),
19135         
19136         day = prevMonth.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());
19137          
19138         prevMonth.setUTCDate(day);
19139         
19140         prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.weekStart + 7)%7);
19141         
19142         var nextMonth = new Date(prevMonth);
19143         
19144         nextMonth.setUTCDate(nextMonth.getUTCDate() + 42);
19145         
19146         nextMonth = nextMonth.valueOf();
19147         
19148         var fillMonths = false;
19149         
19150         this.picker().select('>.datepicker-days tbody',true).first().dom.innerHTML = '';
19151         
19152         while(prevMonth.valueOf() <= nextMonth) {
19153             var clsName = '';
19154             
19155             if (prevMonth.getUTCDay() === this.weekStart) {
19156                 if(fillMonths){
19157                     this.picker().select('>.datepicker-days tbody',true).first().createChild(fillMonths);
19158                 }
19159                     
19160                 fillMonths = {
19161                     tag: 'tr',
19162                     cn: []
19163                 };
19164                 
19165                 if(this.calendarWeeks){
19166                     // ISO 8601: First week contains first thursday.
19167                     // ISO also states week starts on Monday, but we can be more abstract here.
19168                     var
19169                     // Start of current week: based on weekstart/current date
19170                     ws = new Date(+prevMonth + (this.weekStart - prevMonth.getUTCDay() - 7) % 7 * 864e5),
19171                     // Thursday of this week
19172                     th = new Date(+ws + (7 + 4 - ws.getUTCDay()) % 7 * 864e5),
19173                     // First Thursday of year, year from thursday
19174                     yth = new Date(+(yth = this.UTCDate(th.getUTCFullYear(), 0, 1)) + (7 + 4 - yth.getUTCDay())%7*864e5),
19175                     // Calendar week: ms between thursdays, div ms per day, div 7 days
19176                     calWeek =  (th - yth) / 864e5 / 7 + 1;
19177                     
19178                     fillMonths.cn.push({
19179                         tag: 'td',
19180                         cls: 'cw',
19181                         html: calWeek
19182                     });
19183                 }
19184             }
19185             
19186             if (prevMonth.getUTCFullYear() < year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() < month)) {
19187                 clsName += ' old';
19188             } else if (prevMonth.getUTCFullYear() > year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() > month)) {
19189                 clsName += ' new';
19190             }
19191             if (this.todayHighlight &&
19192                 prevMonth.getUTCFullYear() == today.getFullYear() &&
19193                 prevMonth.getUTCMonth() == today.getMonth() &&
19194                 prevMonth.getUTCDate() == today.getDate()) {
19195                 clsName += ' today';
19196             }
19197             
19198             if (currentDate && prevMonth.valueOf() === currentDate) {
19199                 clsName += ' active';
19200             }
19201             
19202             if (prevMonth.valueOf() < this.startDate || prevMonth.valueOf() > this.endDate ||
19203                     this.daysOfWeekDisabled.indexOf(prevMonth.getUTCDay()) !== -1) {
19204                     clsName += ' disabled';
19205             }
19206             
19207             fillMonths.cn.push({
19208                 tag: 'td',
19209                 cls: 'day ' + clsName,
19210                 html: prevMonth.getDate()
19211             });
19212             
19213             prevMonth.setDate(prevMonth.getDate()+1);
19214         }
19215           
19216         var currentYear = this.date && this.date.getUTCFullYear();
19217         var currentMonth = this.date && this.date.getUTCMonth();
19218         
19219         this.picker().select('>.datepicker-months th.switch',true).first().dom.innerHTML = year;
19220         
19221         Roo.each(this.picker().select('>.datepicker-months tbody span',true).elements, function(v,k){
19222             v.removeClass('active');
19223             
19224             if(currentYear === year && k === currentMonth){
19225                 v.addClass('active');
19226             }
19227             
19228             if (year < startYear || year > endYear || (year == startYear && k < startMonth) || (year == endYear && k > endMonth)) {
19229                 v.addClass('disabled');
19230             }
19231             
19232         });
19233         
19234         
19235         year = parseInt(year/10, 10) * 10;
19236         
19237         this.picker().select('>.datepicker-years th.switch', true).first().dom.innerHTML = year + '-' + (year + 9);
19238         
19239         this.picker().select('>.datepicker-years tbody td',true).first().dom.innerHTML = '';
19240         
19241         year -= 1;
19242         for (var i = -1; i < 11; i++) {
19243             this.picker().select('>.datepicker-years tbody td',true).first().createChild({
19244                 tag: 'span',
19245                 cls: 'year' + (i === -1 || i === 10 ? ' old' : '') + (currentYear === year ? ' active' : '') + (year < startYear || year > endYear ? ' disabled' : ''),
19246                 html: year
19247             });
19248             
19249             year += 1;
19250         }
19251     },
19252     
19253     showMode: function(dir) 
19254     {
19255         if (dir) {
19256             this.viewMode = Math.max(this.minViewMode, Math.min(2, this.viewMode + dir));
19257         }
19258         
19259         Roo.each(this.picker().select('>div',true).elements, function(v){
19260             v.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19261             v.hide();
19262         });
19263         this.picker().select('>.datepicker-'+Roo.bootstrap.DateField.modes[this.viewMode].clsName, true).first().show();
19264     },
19265     
19266     place: function()
19267     {
19268         if(this.isInline) {
19269             return;
19270         }
19271         
19272         this.picker().removeClass(['bottom', 'top']);
19273         
19274         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
19275             /*
19276              * place to the top of element!
19277              *
19278              */
19279             
19280             this.picker().addClass('top');
19281             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
19282             
19283             return;
19284         }
19285         
19286         this.picker().addClass('bottom');
19287         
19288         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
19289     },
19290     
19291     parseDate : function(value)
19292     {
19293         if(!value || value instanceof Date){
19294             return value;
19295         }
19296         var v = Date.parseDate(value, this.format);
19297         if (!v && (this.useIso || value.match(/^(\d{4})-0?(\d+)-0?(\d+)/))) {
19298             v = Date.parseDate(value, 'Y-m-d');
19299         }
19300         if(!v && this.altFormats){
19301             if(!this.altFormatsArray){
19302                 this.altFormatsArray = this.altFormats.split("|");
19303             }
19304             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
19305                 v = Date.parseDate(value, this.altFormatsArray[i]);
19306             }
19307         }
19308         return v;
19309     },
19310     
19311     formatDate : function(date, fmt)
19312     {   
19313         return (!date || !(date instanceof Date)) ?
19314         date : date.dateFormat(fmt || this.format);
19315     },
19316     
19317     onFocus : function()
19318     {
19319         Roo.bootstrap.DateField.superclass.onFocus.call(this);
19320         this.showPopup();
19321     },
19322     
19323     onBlur : function()
19324     {
19325         Roo.bootstrap.DateField.superclass.onBlur.call(this);
19326         
19327         var d = this.inputEl().getValue();
19328         
19329         this.setValue(d);
19330                 
19331         this.hidePopup();
19332     },
19333     
19334     showPopup : function()
19335     {
19336         this.picker().show();
19337         this.update();
19338         this.place();
19339         
19340         this.fireEvent('showpopup', this, this.date);
19341     },
19342     
19343     hidePopup : function()
19344     {
19345         if(this.isInline) {
19346             return;
19347         }
19348         this.picker().hide();
19349         this.viewMode = this.startViewMode;
19350         this.showMode();
19351         
19352         this.fireEvent('hidepopup', this, this.date);
19353         
19354     },
19355     
19356     onMousedown: function(e)
19357     {
19358         e.stopPropagation();
19359         e.preventDefault();
19360     },
19361     
19362     keyup: function(e)
19363     {
19364         Roo.bootstrap.DateField.superclass.keyup.call(this);
19365         this.update();
19366     },
19367
19368     setValue: function(v)
19369     {
19370         if(this.fireEvent('beforeselect', this, v) !== false){
19371             var d = new Date(this.parseDate(v) ).clearTime();
19372         
19373             if(isNaN(d.getTime())){
19374                 this.date = this.viewDate = '';
19375                 Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19376                 return;
19377             }
19378
19379             v = this.formatDate(d);
19380
19381             Roo.bootstrap.DateField.superclass.setValue.call(this, v);
19382
19383             this.date = new Date(d.getTime() - d.getTimezoneOffset()*60000);
19384
19385             this.update();
19386
19387             this.fireEvent('select', this, this.date);
19388         }
19389     },
19390     
19391     getValue: function()
19392     {
19393         return this.formatDate(this.date);
19394     },
19395     
19396     fireKey: function(e)
19397     {
19398         if (!this.picker().isVisible()){
19399             if (e.keyCode == 27) { // allow escape to hide and re-show picker
19400                 this.showPopup();
19401             }
19402             return;
19403         }
19404         
19405         var dateChanged = false,
19406         dir, day, month,
19407         newDate, newViewDate;
19408         
19409         switch(e.keyCode){
19410             case 27: // escape
19411                 this.hidePopup();
19412                 e.preventDefault();
19413                 break;
19414             case 37: // left
19415             case 39: // right
19416                 if (!this.keyboardNavigation) {
19417                     break;
19418                 }
19419                 dir = e.keyCode == 37 ? -1 : 1;
19420                 
19421                 if (e.ctrlKey){
19422                     newDate = this.moveYear(this.date, dir);
19423                     newViewDate = this.moveYear(this.viewDate, dir);
19424                 } else if (e.shiftKey){
19425                     newDate = this.moveMonth(this.date, dir);
19426                     newViewDate = this.moveMonth(this.viewDate, dir);
19427                 } else {
19428                     newDate = new Date(this.date);
19429                     newDate.setUTCDate(this.date.getUTCDate() + dir);
19430                     newViewDate = new Date(this.viewDate);
19431                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir);
19432                 }
19433                 if (this.dateWithinRange(newDate)){
19434                     this.date = newDate;
19435                     this.viewDate = newViewDate;
19436                     this.setValue(this.formatDate(this.date));
19437 //                    this.update();
19438                     e.preventDefault();
19439                     dateChanged = true;
19440                 }
19441                 break;
19442             case 38: // up
19443             case 40: // down
19444                 if (!this.keyboardNavigation) {
19445                     break;
19446                 }
19447                 dir = e.keyCode == 38 ? -1 : 1;
19448                 if (e.ctrlKey){
19449                     newDate = this.moveYear(this.date, dir);
19450                     newViewDate = this.moveYear(this.viewDate, dir);
19451                 } else if (e.shiftKey){
19452                     newDate = this.moveMonth(this.date, dir);
19453                     newViewDate = this.moveMonth(this.viewDate, dir);
19454                 } else {
19455                     newDate = new Date(this.date);
19456                     newDate.setUTCDate(this.date.getUTCDate() + dir * 7);
19457                     newViewDate = new Date(this.viewDate);
19458                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir * 7);
19459                 }
19460                 if (this.dateWithinRange(newDate)){
19461                     this.date = newDate;
19462                     this.viewDate = newViewDate;
19463                     this.setValue(this.formatDate(this.date));
19464 //                    this.update();
19465                     e.preventDefault();
19466                     dateChanged = true;
19467                 }
19468                 break;
19469             case 13: // enter
19470                 this.setValue(this.formatDate(this.date));
19471                 this.hidePopup();
19472                 e.preventDefault();
19473                 break;
19474             case 9: // tab
19475                 this.setValue(this.formatDate(this.date));
19476                 this.hidePopup();
19477                 break;
19478             case 16: // shift
19479             case 17: // ctrl
19480             case 18: // alt
19481                 break;
19482             default :
19483                 this.hidePopup();
19484                 
19485         }
19486     },
19487     
19488     
19489     onClick: function(e) 
19490     {
19491         e.stopPropagation();
19492         e.preventDefault();
19493         
19494         var target = e.getTarget();
19495         
19496         if(target.nodeName.toLowerCase() === 'i'){
19497             target = Roo.get(target).dom.parentNode;
19498         }
19499         
19500         var nodeName = target.nodeName;
19501         var className = target.className;
19502         var html = target.innerHTML;
19503         //Roo.log(nodeName);
19504         
19505         switch(nodeName.toLowerCase()) {
19506             case 'th':
19507                 switch(className) {
19508                     case 'switch':
19509                         this.showMode(1);
19510                         break;
19511                     case 'prev':
19512                     case 'next':
19513                         var dir = Roo.bootstrap.DateField.modes[this.viewMode].navStep * (className == 'prev' ? -1 : 1);
19514                         switch(this.viewMode){
19515                                 case 0:
19516                                         this.viewDate = this.moveMonth(this.viewDate, dir);
19517                                         break;
19518                                 case 1:
19519                                 case 2:
19520                                         this.viewDate = this.moveYear(this.viewDate, dir);
19521                                         break;
19522                         }
19523                         this.fill();
19524                         break;
19525                     case 'today':
19526                         var date = new Date();
19527                         this.date = this.UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);
19528 //                        this.fill()
19529                         this.setValue(this.formatDate(this.date));
19530                         
19531                         this.hidePopup();
19532                         break;
19533                 }
19534                 break;
19535             case 'span':
19536                 if (className.indexOf('disabled') < 0) {
19537                     this.viewDate.setUTCDate(1);
19538                     if (className.indexOf('month') > -1) {
19539                         this.viewDate.setUTCMonth(Roo.bootstrap.DateField.dates[this.language].monthsShort.indexOf(html));
19540                     } else {
19541                         var year = parseInt(html, 10) || 0;
19542                         this.viewDate.setUTCFullYear(year);
19543                         
19544                     }
19545                     
19546                     if(this.singleMode){
19547                         this.setValue(this.formatDate(this.viewDate));
19548                         this.hidePopup();
19549                         return;
19550                     }
19551                     
19552                     this.showMode(-1);
19553                     this.fill();
19554                 }
19555                 break;
19556                 
19557             case 'td':
19558                 //Roo.log(className);
19559                 if (className.indexOf('day') > -1 && className.indexOf('disabled') < 0 ){
19560                     var day = parseInt(html, 10) || 1;
19561                     var year = this.viewDate.getUTCFullYear(),
19562                         month = this.viewDate.getUTCMonth();
19563
19564                     if (className.indexOf('old') > -1) {
19565                         if(month === 0 ){
19566                             month = 11;
19567                             year -= 1;
19568                         }else{
19569                             month -= 1;
19570                         }
19571                     } else if (className.indexOf('new') > -1) {
19572                         if (month == 11) {
19573                             month = 0;
19574                             year += 1;
19575                         } else {
19576                             month += 1;
19577                         }
19578                     }
19579                     //Roo.log([year,month,day]);
19580                     this.date = this.UTCDate(year, month, day,0,0,0,0);
19581                     this.viewDate = this.UTCDate(year, month, Math.min(28, day),0,0,0,0);
19582 //                    this.fill();
19583                     //Roo.log(this.formatDate(this.date));
19584                     this.setValue(this.formatDate(this.date));
19585                     this.hidePopup();
19586                 }
19587                 break;
19588         }
19589     },
19590     
19591     setStartDate: function(startDate)
19592     {
19593         this.startDate = startDate || -Infinity;
19594         if (this.startDate !== -Infinity) {
19595             this.startDate = this.parseDate(this.startDate);
19596         }
19597         this.update();
19598         this.updateNavArrows();
19599     },
19600
19601     setEndDate: function(endDate)
19602     {
19603         this.endDate = endDate || Infinity;
19604         if (this.endDate !== Infinity) {
19605             this.endDate = this.parseDate(this.endDate);
19606         }
19607         this.update();
19608         this.updateNavArrows();
19609     },
19610     
19611     setDaysOfWeekDisabled: function(daysOfWeekDisabled)
19612     {
19613         this.daysOfWeekDisabled = daysOfWeekDisabled || [];
19614         if (typeof(this.daysOfWeekDisabled) !== 'object') {
19615             this.daysOfWeekDisabled = this.daysOfWeekDisabled.split(/,\s*/);
19616         }
19617         this.daysOfWeekDisabled = this.daysOfWeekDisabled.map(function (d) {
19618             return parseInt(d, 10);
19619         });
19620         this.update();
19621         this.updateNavArrows();
19622     },
19623     
19624     updateNavArrows: function() 
19625     {
19626         if(this.singleMode){
19627             return;
19628         }
19629         
19630         var d = new Date(this.viewDate),
19631         year = d.getUTCFullYear(),
19632         month = d.getUTCMonth();
19633         
19634         Roo.each(this.picker().select('.prev', true).elements, function(v){
19635             v.show();
19636             switch (this.viewMode) {
19637                 case 0:
19638
19639                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear() && month <= this.startDate.getUTCMonth()) {
19640                         v.hide();
19641                     }
19642                     break;
19643                 case 1:
19644                 case 2:
19645                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()) {
19646                         v.hide();
19647                     }
19648                     break;
19649             }
19650         });
19651         
19652         Roo.each(this.picker().select('.next', true).elements, function(v){
19653             v.show();
19654             switch (this.viewMode) {
19655                 case 0:
19656
19657                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear() && month >= this.endDate.getUTCMonth()) {
19658                         v.hide();
19659                     }
19660                     break;
19661                 case 1:
19662                 case 2:
19663                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()) {
19664                         v.hide();
19665                     }
19666                     break;
19667             }
19668         })
19669     },
19670     
19671     moveMonth: function(date, dir)
19672     {
19673         if (!dir) {
19674             return date;
19675         }
19676         var new_date = new Date(date.valueOf()),
19677         day = new_date.getUTCDate(),
19678         month = new_date.getUTCMonth(),
19679         mag = Math.abs(dir),
19680         new_month, test;
19681         dir = dir > 0 ? 1 : -1;
19682         if (mag == 1){
19683             test = dir == -1
19684             // If going back one month, make sure month is not current month
19685             // (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02)
19686             ? function(){
19687                 return new_date.getUTCMonth() == month;
19688             }
19689             // If going forward one month, make sure month is as expected
19690             // (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02)
19691             : function(){
19692                 return new_date.getUTCMonth() != new_month;
19693             };
19694             new_month = month + dir;
19695             new_date.setUTCMonth(new_month);
19696             // Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11
19697             if (new_month < 0 || new_month > 11) {
19698                 new_month = (new_month + 12) % 12;
19699             }
19700         } else {
19701             // For magnitudes >1, move one month at a time...
19702             for (var i=0; i<mag; i++) {
19703                 // ...which might decrease the day (eg, Jan 31 to Feb 28, etc)...
19704                 new_date = this.moveMonth(new_date, dir);
19705             }
19706             // ...then reset the day, keeping it in the new month
19707             new_month = new_date.getUTCMonth();
19708             new_date.setUTCDate(day);
19709             test = function(){
19710                 return new_month != new_date.getUTCMonth();
19711             };
19712         }
19713         // Common date-resetting loop -- if date is beyond end of month, make it
19714         // end of month
19715         while (test()){
19716             new_date.setUTCDate(--day);
19717             new_date.setUTCMonth(new_month);
19718         }
19719         return new_date;
19720     },
19721
19722     moveYear: function(date, dir)
19723     {
19724         return this.moveMonth(date, dir*12);
19725     },
19726
19727     dateWithinRange: function(date)
19728     {
19729         return date >= this.startDate && date <= this.endDate;
19730     },
19731
19732     
19733     remove: function() 
19734     {
19735         this.picker().remove();
19736     },
19737     
19738     validateValue : function(value)
19739     {
19740         if(this.getVisibilityEl().hasClass('hidden')){
19741             return true;
19742         }
19743         
19744         if(value.length < 1)  {
19745             if(this.allowBlank){
19746                 return true;
19747             }
19748             return false;
19749         }
19750         
19751         if(value.length < this.minLength){
19752             return false;
19753         }
19754         if(value.length > this.maxLength){
19755             return false;
19756         }
19757         if(this.vtype){
19758             var vt = Roo.form.VTypes;
19759             if(!vt[this.vtype](value, this)){
19760                 return false;
19761             }
19762         }
19763         if(typeof this.validator == "function"){
19764             var msg = this.validator(value);
19765             if(msg !== true){
19766                 return false;
19767             }
19768         }
19769         
19770         if(this.regex && !this.regex.test(value)){
19771             return false;
19772         }
19773         
19774         if(typeof(this.parseDate(value)) == 'undefined'){
19775             return false;
19776         }
19777         
19778         if (this.endDate !== Infinity && this.parseDate(value).getTime() > this.endDate.getTime()) {
19779             return false;
19780         }      
19781         
19782         if (this.startDate !== -Infinity && this.parseDate(value).getTime() < this.startDate.getTime()) {
19783             return false;
19784         } 
19785         
19786         
19787         return true;
19788     },
19789     
19790     reset : function()
19791     {
19792         this.date = this.viewDate = '';
19793         
19794         Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19795     }
19796    
19797 });
19798
19799 Roo.apply(Roo.bootstrap.DateField,  {
19800     
19801     head : {
19802         tag: 'thead',
19803         cn: [
19804         {
19805             tag: 'tr',
19806             cn: [
19807             {
19808                 tag: 'th',
19809                 cls: 'prev',
19810                 html: '<i class="fa fa-arrow-left"/>'
19811             },
19812             {
19813                 tag: 'th',
19814                 cls: 'switch',
19815                 colspan: '5'
19816             },
19817             {
19818                 tag: 'th',
19819                 cls: 'next',
19820                 html: '<i class="fa fa-arrow-right"/>'
19821             }
19822
19823             ]
19824         }
19825         ]
19826     },
19827     
19828     content : {
19829         tag: 'tbody',
19830         cn: [
19831         {
19832             tag: 'tr',
19833             cn: [
19834             {
19835                 tag: 'td',
19836                 colspan: '7'
19837             }
19838             ]
19839         }
19840         ]
19841     },
19842     
19843     footer : {
19844         tag: 'tfoot',
19845         cn: [
19846         {
19847             tag: 'tr',
19848             cn: [
19849             {
19850                 tag: 'th',
19851                 colspan: '7',
19852                 cls: 'today'
19853             }
19854                     
19855             ]
19856         }
19857         ]
19858     },
19859     
19860     dates:{
19861         en: {
19862             days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
19863             daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
19864             daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"],
19865             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
19866             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
19867             today: "Today"
19868         }
19869     },
19870     
19871     modes: [
19872     {
19873         clsName: 'days',
19874         navFnc: 'Month',
19875         navStep: 1
19876     },
19877     {
19878         clsName: 'months',
19879         navFnc: 'FullYear',
19880         navStep: 1
19881     },
19882     {
19883         clsName: 'years',
19884         navFnc: 'FullYear',
19885         navStep: 10
19886     }]
19887 });
19888
19889 Roo.apply(Roo.bootstrap.DateField,  {
19890   
19891     template : {
19892         tag: 'div',
19893         cls: 'datepicker dropdown-menu roo-dynamic',
19894         cn: [
19895         {
19896             tag: 'div',
19897             cls: 'datepicker-days',
19898             cn: [
19899             {
19900                 tag: 'table',
19901                 cls: 'table-condensed',
19902                 cn:[
19903                 Roo.bootstrap.DateField.head,
19904                 {
19905                     tag: 'tbody'
19906                 },
19907                 Roo.bootstrap.DateField.footer
19908                 ]
19909             }
19910             ]
19911         },
19912         {
19913             tag: 'div',
19914             cls: 'datepicker-months',
19915             cn: [
19916             {
19917                 tag: 'table',
19918                 cls: 'table-condensed',
19919                 cn:[
19920                 Roo.bootstrap.DateField.head,
19921                 Roo.bootstrap.DateField.content,
19922                 Roo.bootstrap.DateField.footer
19923                 ]
19924             }
19925             ]
19926         },
19927         {
19928             tag: 'div',
19929             cls: 'datepicker-years',
19930             cn: [
19931             {
19932                 tag: 'table',
19933                 cls: 'table-condensed',
19934                 cn:[
19935                 Roo.bootstrap.DateField.head,
19936                 Roo.bootstrap.DateField.content,
19937                 Roo.bootstrap.DateField.footer
19938                 ]
19939             }
19940             ]
19941         }
19942         ]
19943     }
19944 });
19945
19946  
19947
19948  /*
19949  * - LGPL
19950  *
19951  * TimeField
19952  * 
19953  */
19954
19955 /**
19956  * @class Roo.bootstrap.TimeField
19957  * @extends Roo.bootstrap.Input
19958  * Bootstrap DateField class
19959  * 
19960  * 
19961  * @constructor
19962  * Create a new TimeField
19963  * @param {Object} config The config object
19964  */
19965
19966 Roo.bootstrap.TimeField = function(config){
19967     Roo.bootstrap.TimeField.superclass.constructor.call(this, config);
19968     this.addEvents({
19969             /**
19970              * @event show
19971              * Fires when this field show.
19972              * @param {Roo.bootstrap.DateField} thisthis
19973              * @param {Mixed} date The date value
19974              */
19975             show : true,
19976             /**
19977              * @event show
19978              * Fires when this field hide.
19979              * @param {Roo.bootstrap.DateField} this
19980              * @param {Mixed} date The date value
19981              */
19982             hide : true,
19983             /**
19984              * @event select
19985              * Fires when select a date.
19986              * @param {Roo.bootstrap.DateField} this
19987              * @param {Mixed} date The date value
19988              */
19989             select : true
19990         });
19991 };
19992
19993 Roo.extend(Roo.bootstrap.TimeField, Roo.bootstrap.Input,  {
19994     
19995     /**
19996      * @cfg {String} format
19997      * The default time format string which can be overriden for localization support.  The format must be
19998      * valid according to {@link Date#parseDate} (defaults to 'H:i').
19999      */
20000     format : "H:i",
20001        
20002     onRender: function(ct, position)
20003     {
20004         
20005         Roo.bootstrap.TimeField.superclass.onRender.call(this, ct, position);
20006                 
20007         this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.TimeField.template);
20008         
20009         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20010         
20011         this.pop = this.picker().select('>.datepicker-time',true).first();
20012         this.pop.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20013         
20014         this.picker().on('mousedown', this.onMousedown, this);
20015         this.picker().on('click', this.onClick, this);
20016         
20017         this.picker().addClass('datepicker-dropdown');
20018     
20019         this.fillTime();
20020         this.update();
20021             
20022         this.pop.select('span.hours-up', true).first().on('click', this.onIncrementHours, this);
20023         this.pop.select('span.hours-down', true).first().on('click', this.onDecrementHours, this);
20024         this.pop.select('span.minutes-up', true).first().on('click', this.onIncrementMinutes, this);
20025         this.pop.select('span.minutes-down', true).first().on('click', this.onDecrementMinutes, this);
20026         this.pop.select('button.period', true).first().on('click', this.onTogglePeriod, this);
20027         this.pop.select('button.ok', true).first().on('click', this.setTime, this);
20028
20029     },
20030     
20031     fireKey: function(e){
20032         if (!this.picker().isVisible()){
20033             if (e.keyCode == 27) { // allow escape to hide and re-show picker
20034                 this.show();
20035             }
20036             return;
20037         }
20038
20039         e.preventDefault();
20040         
20041         switch(e.keyCode){
20042             case 27: // escape
20043                 this.hide();
20044                 break;
20045             case 37: // left
20046             case 39: // right
20047                 this.onTogglePeriod();
20048                 break;
20049             case 38: // up
20050                 this.onIncrementMinutes();
20051                 break;
20052             case 40: // down
20053                 this.onDecrementMinutes();
20054                 break;
20055             case 13: // enter
20056             case 9: // tab
20057                 this.setTime();
20058                 break;
20059         }
20060     },
20061     
20062     onClick: function(e) {
20063         e.stopPropagation();
20064         e.preventDefault();
20065     },
20066     
20067     picker : function()
20068     {
20069         return this.el.select('.datepicker', true).first();
20070     },
20071     
20072     fillTime: function()
20073     {    
20074         var time = this.pop.select('tbody', true).first();
20075         
20076         time.dom.innerHTML = '';
20077         
20078         time.createChild({
20079             tag: 'tr',
20080             cn: [
20081                 {
20082                     tag: 'td',
20083                     cn: [
20084                         {
20085                             tag: 'a',
20086                             href: '#',
20087                             cls: 'btn',
20088                             cn: [
20089                                 {
20090                                     tag: 'span',
20091                                     cls: 'hours-up glyphicon glyphicon-chevron-up'
20092                                 }
20093                             ]
20094                         } 
20095                     ]
20096                 },
20097                 {
20098                     tag: 'td',
20099                     cls: 'separator'
20100                 },
20101                 {
20102                     tag: 'td',
20103                     cn: [
20104                         {
20105                             tag: 'a',
20106                             href: '#',
20107                             cls: 'btn',
20108                             cn: [
20109                                 {
20110                                     tag: 'span',
20111                                     cls: 'minutes-up glyphicon glyphicon-chevron-up'
20112                                 }
20113                             ]
20114                         }
20115                     ]
20116                 },
20117                 {
20118                     tag: 'td',
20119                     cls: 'separator'
20120                 }
20121             ]
20122         });
20123         
20124         time.createChild({
20125             tag: 'tr',
20126             cn: [
20127                 {
20128                     tag: 'td',
20129                     cn: [
20130                         {
20131                             tag: 'span',
20132                             cls: 'timepicker-hour',
20133                             html: '00'
20134                         }  
20135                     ]
20136                 },
20137                 {
20138                     tag: 'td',
20139                     cls: 'separator',
20140                     html: ':'
20141                 },
20142                 {
20143                     tag: 'td',
20144                     cn: [
20145                         {
20146                             tag: 'span',
20147                             cls: 'timepicker-minute',
20148                             html: '00'
20149                         }  
20150                     ]
20151                 },
20152                 {
20153                     tag: 'td',
20154                     cls: 'separator'
20155                 },
20156                 {
20157                     tag: 'td',
20158                     cn: [
20159                         {
20160                             tag: 'button',
20161                             type: 'button',
20162                             cls: 'btn btn-primary period',
20163                             html: 'AM'
20164                             
20165                         }
20166                     ]
20167                 }
20168             ]
20169         });
20170         
20171         time.createChild({
20172             tag: 'tr',
20173             cn: [
20174                 {
20175                     tag: 'td',
20176                     cn: [
20177                         {
20178                             tag: 'a',
20179                             href: '#',
20180                             cls: 'btn',
20181                             cn: [
20182                                 {
20183                                     tag: 'span',
20184                                     cls: 'hours-down glyphicon glyphicon-chevron-down'
20185                                 }
20186                             ]
20187                         }
20188                     ]
20189                 },
20190                 {
20191                     tag: 'td',
20192                     cls: 'separator'
20193                 },
20194                 {
20195                     tag: 'td',
20196                     cn: [
20197                         {
20198                             tag: 'a',
20199                             href: '#',
20200                             cls: 'btn',
20201                             cn: [
20202                                 {
20203                                     tag: 'span',
20204                                     cls: 'minutes-down glyphicon glyphicon-chevron-down'
20205                                 }
20206                             ]
20207                         }
20208                     ]
20209                 },
20210                 {
20211                     tag: 'td',
20212                     cls: 'separator'
20213                 }
20214             ]
20215         });
20216         
20217     },
20218     
20219     update: function()
20220     {
20221         
20222         this.time = (typeof(this.time) === 'undefined') ? new Date() : this.time;
20223         
20224         this.fill();
20225     },
20226     
20227     fill: function() 
20228     {
20229         var hours = this.time.getHours();
20230         var minutes = this.time.getMinutes();
20231         var period = 'AM';
20232         
20233         if(hours > 11){
20234             period = 'PM';
20235         }
20236         
20237         if(hours == 0){
20238             hours = 12;
20239         }
20240         
20241         
20242         if(hours > 12){
20243             hours = hours - 12;
20244         }
20245         
20246         if(hours < 10){
20247             hours = '0' + hours;
20248         }
20249         
20250         if(minutes < 10){
20251             minutes = '0' + minutes;
20252         }
20253         
20254         this.pop.select('.timepicker-hour', true).first().dom.innerHTML = hours;
20255         this.pop.select('.timepicker-minute', true).first().dom.innerHTML = minutes;
20256         this.pop.select('button', true).first().dom.innerHTML = period;
20257         
20258     },
20259     
20260     place: function()
20261     {   
20262         this.picker().removeClass(['bottom-left', 'bottom-right', 'top-left', 'top-right']);
20263         
20264         var cls = ['bottom'];
20265         
20266         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){ // top
20267             cls.pop();
20268             cls.push('top');
20269         }
20270         
20271         cls.push('right');
20272         
20273         if((Roo.lib.Dom.getViewWidth() + Roo.get(document.body).getScroll().left) - (this.inputEl().getLeft() + this.picker().getWidth()) < 0){ // left
20274             cls.pop();
20275             cls.push('left');
20276         }
20277         
20278         this.picker().addClass(cls.join('-'));
20279         
20280         var _this = this;
20281         
20282         Roo.each(cls, function(c){
20283             if(c == 'bottom'){
20284                 _this.picker().setTop(_this.inputEl().getHeight());
20285                 return;
20286             }
20287             if(c == 'top'){
20288                 _this.picker().setTop(0 - _this.picker().getHeight());
20289                 return;
20290             }
20291             
20292             if(c == 'left'){
20293                 _this.picker().setLeft(_this.inputEl().getLeft() + _this.inputEl().getWidth() - _this.el.getLeft() - _this.picker().getWidth());
20294                 return;
20295             }
20296             if(c == 'right'){
20297                 _this.picker().setLeft(_this.inputEl().getLeft() - _this.el.getLeft());
20298                 return;
20299             }
20300         });
20301         
20302     },
20303   
20304     onFocus : function()
20305     {
20306         Roo.bootstrap.TimeField.superclass.onFocus.call(this);
20307         this.show();
20308     },
20309     
20310     onBlur : function()
20311     {
20312         Roo.bootstrap.TimeField.superclass.onBlur.call(this);
20313         this.hide();
20314     },
20315     
20316     show : function()
20317     {
20318         this.picker().show();
20319         this.pop.show();
20320         this.update();
20321         this.place();
20322         
20323         this.fireEvent('show', this, this.date);
20324     },
20325     
20326     hide : function()
20327     {
20328         this.picker().hide();
20329         this.pop.hide();
20330         
20331         this.fireEvent('hide', this, this.date);
20332     },
20333     
20334     setTime : function()
20335     {
20336         this.hide();
20337         this.setValue(this.time.format(this.format));
20338         
20339         this.fireEvent('select', this, this.date);
20340         
20341         
20342     },
20343     
20344     onMousedown: function(e){
20345         e.stopPropagation();
20346         e.preventDefault();
20347     },
20348     
20349     onIncrementHours: function()
20350     {
20351         Roo.log('onIncrementHours');
20352         this.time = this.time.add(Date.HOUR, 1);
20353         this.update();
20354         
20355     },
20356     
20357     onDecrementHours: function()
20358     {
20359         Roo.log('onDecrementHours');
20360         this.time = this.time.add(Date.HOUR, -1);
20361         this.update();
20362     },
20363     
20364     onIncrementMinutes: function()
20365     {
20366         Roo.log('onIncrementMinutes');
20367         this.time = this.time.add(Date.MINUTE, 1);
20368         this.update();
20369     },
20370     
20371     onDecrementMinutes: function()
20372     {
20373         Roo.log('onDecrementMinutes');
20374         this.time = this.time.add(Date.MINUTE, -1);
20375         this.update();
20376     },
20377     
20378     onTogglePeriod: function()
20379     {
20380         Roo.log('onTogglePeriod');
20381         this.time = this.time.add(Date.HOUR, 12);
20382         this.update();
20383     }
20384     
20385    
20386 });
20387
20388 Roo.apply(Roo.bootstrap.TimeField,  {
20389     
20390     content : {
20391         tag: 'tbody',
20392         cn: [
20393             {
20394                 tag: 'tr',
20395                 cn: [
20396                 {
20397                     tag: 'td',
20398                     colspan: '7'
20399                 }
20400                 ]
20401             }
20402         ]
20403     },
20404     
20405     footer : {
20406         tag: 'tfoot',
20407         cn: [
20408             {
20409                 tag: 'tr',
20410                 cn: [
20411                 {
20412                     tag: 'th',
20413                     colspan: '7',
20414                     cls: '',
20415                     cn: [
20416                         {
20417                             tag: 'button',
20418                             cls: 'btn btn-info ok',
20419                             html: 'OK'
20420                         }
20421                     ]
20422                 }
20423
20424                 ]
20425             }
20426         ]
20427     }
20428 });
20429
20430 Roo.apply(Roo.bootstrap.TimeField,  {
20431   
20432     template : {
20433         tag: 'div',
20434         cls: 'datepicker dropdown-menu',
20435         cn: [
20436             {
20437                 tag: 'div',
20438                 cls: 'datepicker-time',
20439                 cn: [
20440                 {
20441                     tag: 'table',
20442                     cls: 'table-condensed',
20443                     cn:[
20444                     Roo.bootstrap.TimeField.content,
20445                     Roo.bootstrap.TimeField.footer
20446                     ]
20447                 }
20448                 ]
20449             }
20450         ]
20451     }
20452 });
20453
20454  
20455
20456  /*
20457  * - LGPL
20458  *
20459  * MonthField
20460  * 
20461  */
20462
20463 /**
20464  * @class Roo.bootstrap.MonthField
20465  * @extends Roo.bootstrap.Input
20466  * Bootstrap MonthField class
20467  * 
20468  * @cfg {String} language default en
20469  * 
20470  * @constructor
20471  * Create a new MonthField
20472  * @param {Object} config The config object
20473  */
20474
20475 Roo.bootstrap.MonthField = function(config){
20476     Roo.bootstrap.MonthField.superclass.constructor.call(this, config);
20477     
20478     this.addEvents({
20479         /**
20480          * @event show
20481          * Fires when this field show.
20482          * @param {Roo.bootstrap.MonthField} this
20483          * @param {Mixed} date The date value
20484          */
20485         show : true,
20486         /**
20487          * @event show
20488          * Fires when this field hide.
20489          * @param {Roo.bootstrap.MonthField} this
20490          * @param {Mixed} date The date value
20491          */
20492         hide : true,
20493         /**
20494          * @event select
20495          * Fires when select a date.
20496          * @param {Roo.bootstrap.MonthField} this
20497          * @param {String} oldvalue The old value
20498          * @param {String} newvalue The new value
20499          */
20500         select : true
20501     });
20502 };
20503
20504 Roo.extend(Roo.bootstrap.MonthField, Roo.bootstrap.Input,  {
20505     
20506     onRender: function(ct, position)
20507     {
20508         
20509         Roo.bootstrap.MonthField.superclass.onRender.call(this, ct, position);
20510         
20511         this.language = this.language || 'en';
20512         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : this.language.split('-')[0];
20513         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : "en";
20514         
20515         this.isRTL = Roo.bootstrap.MonthField.dates[this.language].rtl || false;
20516         this.isInline = false;
20517         this.isInput = true;
20518         this.component = this.el.select('.add-on', true).first() || false;
20519         this.component = (this.component && this.component.length === 0) ? false : this.component;
20520         this.hasInput = this.component && this.inputEL().length;
20521         
20522         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.MonthField.template);
20523         
20524         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20525         
20526         this.picker().on('mousedown', this.onMousedown, this);
20527         this.picker().on('click', this.onClick, this);
20528         
20529         this.picker().addClass('datepicker-dropdown');
20530         
20531         Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
20532             v.setStyle('width', '189px');
20533         });
20534         
20535         this.fillMonths();
20536         
20537         this.update();
20538         
20539         if(this.isInline) {
20540             this.show();
20541         }
20542         
20543     },
20544     
20545     setValue: function(v, suppressEvent)
20546     {   
20547         var o = this.getValue();
20548         
20549         Roo.bootstrap.MonthField.superclass.setValue.call(this, v);
20550         
20551         this.update();
20552
20553         if(suppressEvent !== true){
20554             this.fireEvent('select', this, o, v);
20555         }
20556         
20557     },
20558     
20559     getValue: function()
20560     {
20561         return this.value;
20562     },
20563     
20564     onClick: function(e) 
20565     {
20566         e.stopPropagation();
20567         e.preventDefault();
20568         
20569         var target = e.getTarget();
20570         
20571         if(target.nodeName.toLowerCase() === 'i'){
20572             target = Roo.get(target).dom.parentNode;
20573         }
20574         
20575         var nodeName = target.nodeName;
20576         var className = target.className;
20577         var html = target.innerHTML;
20578         
20579         if(nodeName.toLowerCase() != 'span' || className.indexOf('disabled') > -1 || className.indexOf('month') == -1){
20580             return;
20581         }
20582         
20583         this.vIndex = Roo.bootstrap.MonthField.dates[this.language].monthsShort.indexOf(html);
20584         
20585         this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20586         
20587         this.hide();
20588                         
20589     },
20590     
20591     picker : function()
20592     {
20593         return this.pickerEl;
20594     },
20595     
20596     fillMonths: function()
20597     {    
20598         var i = 0;
20599         var months = this.picker().select('>.datepicker-months td', true).first();
20600         
20601         months.dom.innerHTML = '';
20602         
20603         while (i < 12) {
20604             var month = {
20605                 tag: 'span',
20606                 cls: 'month',
20607                 html: Roo.bootstrap.MonthField.dates[this.language].monthsShort[i++]
20608             };
20609             
20610             months.createChild(month);
20611         }
20612         
20613     },
20614     
20615     update: function()
20616     {
20617         var _this = this;
20618         
20619         if(typeof(this.vIndex) == 'undefined' && this.value.length){
20620             this.vIndex = Roo.bootstrap.MonthField.dates[this.language].months.indexOf(this.value);
20621         }
20622         
20623         Roo.each(this.pickerEl.select('> .datepicker-months tbody > tr > td > span', true).elements, function(e, k){
20624             e.removeClass('active');
20625             
20626             if(typeof(_this.vIndex) != 'undefined' && k == _this.vIndex){
20627                 e.addClass('active');
20628             }
20629         })
20630     },
20631     
20632     place: function()
20633     {
20634         if(this.isInline) {
20635             return;
20636         }
20637         
20638         this.picker().removeClass(['bottom', 'top']);
20639         
20640         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
20641             /*
20642              * place to the top of element!
20643              *
20644              */
20645             
20646             this.picker().addClass('top');
20647             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
20648             
20649             return;
20650         }
20651         
20652         this.picker().addClass('bottom');
20653         
20654         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
20655     },
20656     
20657     onFocus : function()
20658     {
20659         Roo.bootstrap.MonthField.superclass.onFocus.call(this);
20660         this.show();
20661     },
20662     
20663     onBlur : function()
20664     {
20665         Roo.bootstrap.MonthField.superclass.onBlur.call(this);
20666         
20667         var d = this.inputEl().getValue();
20668         
20669         this.setValue(d);
20670                 
20671         this.hide();
20672     },
20673     
20674     show : function()
20675     {
20676         this.picker().show();
20677         this.picker().select('>.datepicker-months', true).first().show();
20678         this.update();
20679         this.place();
20680         
20681         this.fireEvent('show', this, this.date);
20682     },
20683     
20684     hide : function()
20685     {
20686         if(this.isInline) {
20687             return;
20688         }
20689         this.picker().hide();
20690         this.fireEvent('hide', this, this.date);
20691         
20692     },
20693     
20694     onMousedown: function(e)
20695     {
20696         e.stopPropagation();
20697         e.preventDefault();
20698     },
20699     
20700     keyup: function(e)
20701     {
20702         Roo.bootstrap.MonthField.superclass.keyup.call(this);
20703         this.update();
20704     },
20705
20706     fireKey: function(e)
20707     {
20708         if (!this.picker().isVisible()){
20709             if (e.keyCode == 27)   {// allow escape to hide and re-show picker
20710                 this.show();
20711             }
20712             return;
20713         }
20714         
20715         var dir;
20716         
20717         switch(e.keyCode){
20718             case 27: // escape
20719                 this.hide();
20720                 e.preventDefault();
20721                 break;
20722             case 37: // left
20723             case 39: // right
20724                 dir = e.keyCode == 37 ? -1 : 1;
20725                 
20726                 this.vIndex = this.vIndex + dir;
20727                 
20728                 if(this.vIndex < 0){
20729                     this.vIndex = 0;
20730                 }
20731                 
20732                 if(this.vIndex > 11){
20733                     this.vIndex = 11;
20734                 }
20735                 
20736                 if(isNaN(this.vIndex)){
20737                     this.vIndex = 0;
20738                 }
20739                 
20740                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20741                 
20742                 break;
20743             case 38: // up
20744             case 40: // down
20745                 
20746                 dir = e.keyCode == 38 ? -1 : 1;
20747                 
20748                 this.vIndex = this.vIndex + dir * 4;
20749                 
20750                 if(this.vIndex < 0){
20751                     this.vIndex = 0;
20752                 }
20753                 
20754                 if(this.vIndex > 11){
20755                     this.vIndex = 11;
20756                 }
20757                 
20758                 if(isNaN(this.vIndex)){
20759                     this.vIndex = 0;
20760                 }
20761                 
20762                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20763                 break;
20764                 
20765             case 13: // enter
20766                 
20767                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20768                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20769                 }
20770                 
20771                 this.hide();
20772                 e.preventDefault();
20773                 break;
20774             case 9: // tab
20775                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20776                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20777                 }
20778                 this.hide();
20779                 break;
20780             case 16: // shift
20781             case 17: // ctrl
20782             case 18: // alt
20783                 break;
20784             default :
20785                 this.hide();
20786                 
20787         }
20788     },
20789     
20790     remove: function() 
20791     {
20792         this.picker().remove();
20793     }
20794    
20795 });
20796
20797 Roo.apply(Roo.bootstrap.MonthField,  {
20798     
20799     content : {
20800         tag: 'tbody',
20801         cn: [
20802         {
20803             tag: 'tr',
20804             cn: [
20805             {
20806                 tag: 'td',
20807                 colspan: '7'
20808             }
20809             ]
20810         }
20811         ]
20812     },
20813     
20814     dates:{
20815         en: {
20816             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
20817             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
20818         }
20819     }
20820 });
20821
20822 Roo.apply(Roo.bootstrap.MonthField,  {
20823   
20824     template : {
20825         tag: 'div',
20826         cls: 'datepicker dropdown-menu roo-dynamic',
20827         cn: [
20828             {
20829                 tag: 'div',
20830                 cls: 'datepicker-months',
20831                 cn: [
20832                 {
20833                     tag: 'table',
20834                     cls: 'table-condensed',
20835                     cn:[
20836                         Roo.bootstrap.DateField.content
20837                     ]
20838                 }
20839                 ]
20840             }
20841         ]
20842     }
20843 });
20844
20845  
20846
20847  
20848  /*
20849  * - LGPL
20850  *
20851  * CheckBox
20852  * 
20853  */
20854
20855 /**
20856  * @class Roo.bootstrap.CheckBox
20857  * @extends Roo.bootstrap.Input
20858  * Bootstrap CheckBox class
20859  * 
20860  * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
20861  * @cfg {String} inputValue The value that should go into the generated input element's value when checked.
20862  * @cfg {String} boxLabel The text that appears beside the checkbox
20863  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the checkbox
20864  * @cfg {Boolean} checked initnal the element
20865  * @cfg {Boolean} inline inline the element (default false)
20866  * @cfg {String} groupId the checkbox group id // normal just use for checkbox
20867  * @cfg {String} tooltip label tooltip
20868  * 
20869  * @constructor
20870  * Create a new CheckBox
20871  * @param {Object} config The config object
20872  */
20873
20874 Roo.bootstrap.CheckBox = function(config){
20875     Roo.bootstrap.CheckBox.superclass.constructor.call(this, config);
20876    
20877     this.addEvents({
20878         /**
20879         * @event check
20880         * Fires when the element is checked or unchecked.
20881         * @param {Roo.bootstrap.CheckBox} this This input
20882         * @param {Boolean} checked The new checked value
20883         */
20884        check : true,
20885        /**
20886         * @event click
20887         * Fires when the element is click.
20888         * @param {Roo.bootstrap.CheckBox} this This input
20889         */
20890        click : true
20891     });
20892     
20893 };
20894
20895 Roo.extend(Roo.bootstrap.CheckBox, Roo.bootstrap.Input,  {
20896   
20897     inputType: 'checkbox',
20898     inputValue: 1,
20899     valueOff: 0,
20900     boxLabel: false,
20901     checked: false,
20902     weight : false,
20903     inline: false,
20904     tooltip : '',
20905     
20906     // checkbox success does not make any sense really.. 
20907     invalidClass : "",
20908     validClass : "",
20909     
20910     
20911     getAutoCreate : function()
20912     {
20913         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
20914         
20915         var id = Roo.id();
20916         
20917         var cfg = {};
20918         
20919         cfg.cls = 'form-group ' + this.inputType; //input-group
20920         
20921         if(this.inline){
20922             cfg.cls += ' ' + this.inputType + '-inline';
20923         }
20924         
20925         var input =  {
20926             tag: 'input',
20927             id : id,
20928             type : this.inputType,
20929             value : this.inputValue,
20930             cls : 'roo-' + this.inputType, //'form-box',
20931             placeholder : this.placeholder || ''
20932             
20933         };
20934         
20935         if(this.inputType != 'radio'){
20936             var hidden =  {
20937                 tag: 'input',
20938                 type : 'hidden',
20939                 cls : 'roo-hidden-value',
20940                 value : this.checked ? this.inputValue : this.valueOff
20941             };
20942         }
20943         
20944             
20945         if (this.weight) { // Validity check?
20946             cfg.cls += " " + this.inputType + "-" + this.weight;
20947         }
20948         
20949         if (this.disabled) {
20950             input.disabled=true;
20951         }
20952         
20953         if(this.checked){
20954             input.checked = this.checked;
20955         }
20956         
20957         if (this.name) {
20958             
20959             input.name = this.name;
20960             
20961             if(this.inputType != 'radio'){
20962                 hidden.name = this.name;
20963                 input.name = '_hidden_' + this.name;
20964             }
20965         }
20966         
20967         if (this.size) {
20968             input.cls += ' input-' + this.size;
20969         }
20970         
20971         var settings=this;
20972         
20973         ['xs','sm','md','lg'].map(function(size){
20974             if (settings[size]) {
20975                 cfg.cls += ' col-' + size + '-' + settings[size];
20976             }
20977         });
20978         
20979         var inputblock = input;
20980          
20981         if (this.before || this.after) {
20982             
20983             inputblock = {
20984                 cls : 'input-group',
20985                 cn :  [] 
20986             };
20987             
20988             if (this.before) {
20989                 inputblock.cn.push({
20990                     tag :'span',
20991                     cls : 'input-group-addon',
20992                     html : this.before
20993                 });
20994             }
20995             
20996             inputblock.cn.push(input);
20997             
20998             if(this.inputType != 'radio'){
20999                 inputblock.cn.push(hidden);
21000             }
21001             
21002             if (this.after) {
21003                 inputblock.cn.push({
21004                     tag :'span',
21005                     cls : 'input-group-addon',
21006                     html : this.after
21007                 });
21008             }
21009             
21010         }
21011         var boxLabelCfg = false;
21012         
21013         if(this.boxLabel){
21014            
21015             boxLabelCfg = {
21016                 tag: 'label',
21017                 //'for': id, // box label is handled by onclick - so no for...
21018                 cls: 'box-label',
21019                 html: this.boxLabel
21020             };
21021             if(this.tooltip){
21022                 boxLabelCfg.tooltip = this.tooltip;
21023             }
21024              
21025         }
21026         
21027         
21028         if (align ==='left' && this.fieldLabel.length) {
21029 //                Roo.log("left and has label");
21030             cfg.cn = [
21031                 {
21032                     tag: 'label',
21033                     'for' :  id,
21034                     cls : 'control-label',
21035                     html : this.fieldLabel
21036                 },
21037                 {
21038                     cls : "", 
21039                     cn: [
21040                         inputblock
21041                     ]
21042                 }
21043             ];
21044             
21045             if (boxLabelCfg) {
21046                 cfg.cn[1].cn.push(boxLabelCfg);
21047             }
21048             
21049             if(this.labelWidth > 12){
21050                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
21051             }
21052             
21053             if(this.labelWidth < 13 && this.labelmd == 0){
21054                 this.labelmd = this.labelWidth;
21055             }
21056             
21057             if(this.labellg > 0){
21058                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
21059                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
21060             }
21061             
21062             if(this.labelmd > 0){
21063                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
21064                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
21065             }
21066             
21067             if(this.labelsm > 0){
21068                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
21069                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
21070             }
21071             
21072             if(this.labelxs > 0){
21073                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
21074                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
21075             }
21076             
21077         } else if ( this.fieldLabel.length) {
21078 //                Roo.log(" label");
21079                 cfg.cn = [
21080                    
21081                     {
21082                         tag: this.boxLabel ? 'span' : 'label',
21083                         'for': id,
21084                         cls: 'control-label box-input-label',
21085                         //cls : 'input-group-addon',
21086                         html : this.fieldLabel
21087                     },
21088                     
21089                     inputblock
21090                     
21091                 ];
21092                 if (boxLabelCfg) {
21093                     cfg.cn.push(boxLabelCfg);
21094                 }
21095
21096         } else {
21097             
21098 //                Roo.log(" no label && no align");
21099                 cfg.cn = [  inputblock ] ;
21100                 if (boxLabelCfg) {
21101                     cfg.cn.push(boxLabelCfg);
21102                 }
21103
21104                 
21105         }
21106         
21107        
21108         
21109         if(this.inputType != 'radio'){
21110             cfg.cn.push(hidden);
21111         }
21112         
21113         return cfg;
21114         
21115     },
21116     
21117     /**
21118      * return the real input element.
21119      */
21120     inputEl: function ()
21121     {
21122         return this.el.select('input.roo-' + this.inputType,true).first();
21123     },
21124     hiddenEl: function ()
21125     {
21126         return this.el.select('input.roo-hidden-value',true).first();
21127     },
21128     
21129     labelEl: function()
21130     {
21131         return this.el.select('label.control-label',true).first();
21132     },
21133     /* depricated... */
21134     
21135     label: function()
21136     {
21137         return this.labelEl();
21138     },
21139     
21140     boxLabelEl: function()
21141     {
21142         return this.el.select('label.box-label',true).first();
21143     },
21144     
21145     initEvents : function()
21146     {
21147 //        Roo.bootstrap.CheckBox.superclass.initEvents.call(this);
21148         
21149         this.inputEl().on('click', this.onClick,  this);
21150         
21151         if (this.boxLabel) { 
21152             this.el.select('label.box-label',true).first().on('click', this.onClick,  this);
21153         }
21154         
21155         this.startValue = this.getValue();
21156         
21157         if(this.groupId){
21158             Roo.bootstrap.CheckBox.register(this);
21159         }
21160     },
21161     
21162     onClick : function(e)
21163     {   
21164         if(this.fireEvent('click', this, e) !== false){
21165             this.setChecked(!this.checked);
21166         }
21167         
21168     },
21169     
21170     setChecked : function(state,suppressEvent)
21171     {
21172         this.startValue = this.getValue();
21173
21174         if(this.inputType == 'radio'){
21175             
21176             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21177                 e.dom.checked = false;
21178             });
21179             
21180             this.inputEl().dom.checked = true;
21181             
21182             this.inputEl().dom.value = this.inputValue;
21183             
21184             if(suppressEvent !== true){
21185                 this.fireEvent('check', this, true);
21186             }
21187             
21188             this.validate();
21189             
21190             return;
21191         }
21192         
21193         this.checked = state;
21194         
21195         this.inputEl().dom.checked = state;
21196         
21197         
21198         this.hiddenEl().dom.value = state ? this.inputValue : this.valueOff;
21199         
21200         if(suppressEvent !== true){
21201             this.fireEvent('check', this, state);
21202         }
21203         
21204         this.validate();
21205     },
21206     
21207     getValue : function()
21208     {
21209         if(this.inputType == 'radio'){
21210             return this.getGroupValue();
21211         }
21212         
21213         return this.hiddenEl().dom.value;
21214         
21215     },
21216     
21217     getGroupValue : function()
21218     {
21219         if(typeof(this.el.up('form').child('input[name='+this.name+']:checked', true)) == 'undefined'){
21220             return '';
21221         }
21222         
21223         return this.el.up('form').child('input[name='+this.name+']:checked', true).value;
21224     },
21225     
21226     setValue : function(v,suppressEvent)
21227     {
21228         if(this.inputType == 'radio'){
21229             this.setGroupValue(v, suppressEvent);
21230             return;
21231         }
21232         
21233         this.setChecked(((typeof(v) == 'undefined') ? this.checked : (String(v) === String(this.inputValue))), suppressEvent);
21234         
21235         this.validate();
21236     },
21237     
21238     setGroupValue : function(v, suppressEvent)
21239     {
21240         this.startValue = this.getValue();
21241         
21242         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21243             e.dom.checked = false;
21244             
21245             if(e.dom.value == v){
21246                 e.dom.checked = true;
21247             }
21248         });
21249         
21250         if(suppressEvent !== true){
21251             this.fireEvent('check', this, true);
21252         }
21253
21254         this.validate();
21255         
21256         return;
21257     },
21258     
21259     validate : function()
21260     {
21261         if(this.getVisibilityEl().hasClass('hidden')){
21262             return true;
21263         }
21264         
21265         if(
21266                 this.disabled || 
21267                 (this.inputType == 'radio' && this.validateRadio()) ||
21268                 (this.inputType == 'checkbox' && this.validateCheckbox())
21269         ){
21270             this.markValid();
21271             return true;
21272         }
21273         
21274         this.markInvalid();
21275         return false;
21276     },
21277     
21278     validateRadio : function()
21279     {
21280         if(this.getVisibilityEl().hasClass('hidden')){
21281             return true;
21282         }
21283         
21284         if(this.allowBlank){
21285             return true;
21286         }
21287         
21288         var valid = false;
21289         
21290         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21291             if(!e.dom.checked){
21292                 return;
21293             }
21294             
21295             valid = true;
21296             
21297             return false;
21298         });
21299         
21300         return valid;
21301     },
21302     
21303     validateCheckbox : function()
21304     {
21305         if(!this.groupId){
21306             return (this.getValue() == this.inputValue || this.allowBlank) ? true : false;
21307             //return (this.getValue() == this.inputValue) ? true : false;
21308         }
21309         
21310         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21311         
21312         if(!group){
21313             return false;
21314         }
21315         
21316         var r = false;
21317         
21318         for(var i in group){
21319             if(group[i].el.isVisible(true)){
21320                 r = false;
21321                 break;
21322             }
21323             
21324             r = true;
21325         }
21326         
21327         for(var i in group){
21328             if(r){
21329                 break;
21330             }
21331             
21332             r = (group[i].getValue() == group[i].inputValue) ? true : false;
21333         }
21334         
21335         return r;
21336     },
21337     
21338     /**
21339      * Mark this field as valid
21340      */
21341     markValid : function()
21342     {
21343         var _this = this;
21344         
21345         this.fireEvent('valid', this);
21346         
21347         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21348         
21349         if(this.groupId){
21350             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21351         }
21352         
21353         if(label){
21354             label.markValid();
21355         }
21356
21357         if(this.inputType == 'radio'){
21358             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21359                 var fg = e.findParent('.form-group', false, true);
21360                 if (Roo.bootstrap.version == 3) {
21361                     fg.removeClass([_this.invalidClass, _this.validClass]);
21362                     fg.addClass(_this.validClass);
21363                 } else {
21364                     fg.removeClass(['is-valid', 'is-invalid']);
21365                     fg.addClass('is-valid');
21366                 }
21367             });
21368             
21369             return;
21370         }
21371
21372         if(!this.groupId){
21373             var fg = this.el.findParent('.form-group', false, true);
21374             if (Roo.bootstrap.version == 3) {
21375                 fg.removeClass([this.invalidClass, this.validClass]);
21376                 fg.addClass(this.validClass);
21377             } else {
21378                 fg.removeClass(['is-valid', 'is-invalid']);
21379                 fg.addClass('is-valid');
21380             }
21381             return;
21382         }
21383         
21384         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21385         
21386         if(!group){
21387             return;
21388         }
21389         
21390         for(var i in group){
21391             var fg = group[i].el.findParent('.form-group', false, true);
21392             if (Roo.bootstrap.version == 3) {
21393                 fg.removeClass([this.invalidClass, this.validClass]);
21394                 fg.addClass(this.validClass);
21395             } else {
21396                 fg.removeClass(['is-valid', 'is-invalid']);
21397                 fg.addClass('is-valid');
21398             }
21399         }
21400     },
21401     
21402      /**
21403      * Mark this field as invalid
21404      * @param {String} msg The validation message
21405      */
21406     markInvalid : function(msg)
21407     {
21408         if(this.allowBlank){
21409             return;
21410         }
21411         
21412         var _this = this;
21413         
21414         this.fireEvent('invalid', this, msg);
21415         
21416         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21417         
21418         if(this.groupId){
21419             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21420         }
21421         
21422         if(label){
21423             label.markInvalid();
21424         }
21425             
21426         if(this.inputType == 'radio'){
21427             
21428             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21429                 var fg = e.findParent('.form-group', false, true);
21430                 if (Roo.bootstrap.version == 3) {
21431                     fg.removeClass([_this.invalidClass, _this.validClass]);
21432                     fg.addClass(_this.invalidClass);
21433                 } else {
21434                     fg.removeClass(['is-invalid', 'is-valid']);
21435                     fg.addClass('is-invalid');
21436                 }
21437             });
21438             
21439             return;
21440         }
21441         
21442         if(!this.groupId){
21443             var fg = this.el.findParent('.form-group', false, true);
21444             if (Roo.bootstrap.version == 3) {
21445                 fg.removeClass([_this.invalidClass, _this.validClass]);
21446                 fg.addClass(_this.invalidClass);
21447             } else {
21448                 fg.removeClass(['is-invalid', 'is-valid']);
21449                 fg.addClass('is-invalid');
21450             }
21451             return;
21452         }
21453         
21454         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21455         
21456         if(!group){
21457             return;
21458         }
21459         
21460         for(var i in group){
21461             var fg = group[i].el.findParent('.form-group', false, true);
21462             if (Roo.bootstrap.version == 3) {
21463                 fg.removeClass([_this.invalidClass, _this.validClass]);
21464                 fg.addClass(_this.invalidClass);
21465             } else {
21466                 fg.removeClass(['is-invalid', 'is-valid']);
21467                 fg.addClass('is-invalid');
21468             }
21469         }
21470         
21471     },
21472     
21473     clearInvalid : function()
21474     {
21475         Roo.bootstrap.Input.prototype.clearInvalid.call(this);
21476         
21477         // this.el.findParent('.form-group', false, true).removeClass([this.invalidClass, this.validClass]);
21478         
21479         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21480         
21481         if (label && label.iconEl) {
21482             label.iconEl.removeClass([ label.validClass, label.invalidClass ]);
21483             label.iconEl.removeClass(['is-invalid', 'is-valid']);
21484         }
21485     },
21486     
21487     disable : function()
21488     {
21489         if(this.inputType != 'radio'){
21490             Roo.bootstrap.CheckBox.superclass.disable.call(this);
21491             return;
21492         }
21493         
21494         var _this = this;
21495         
21496         if(this.rendered){
21497             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21498                 _this.getActionEl().addClass(this.disabledClass);
21499                 e.dom.disabled = true;
21500             });
21501         }
21502         
21503         this.disabled = true;
21504         this.fireEvent("disable", this);
21505         return this;
21506     },
21507
21508     enable : function()
21509     {
21510         if(this.inputType != 'radio'){
21511             Roo.bootstrap.CheckBox.superclass.enable.call(this);
21512             return;
21513         }
21514         
21515         var _this = this;
21516         
21517         if(this.rendered){
21518             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21519                 _this.getActionEl().removeClass(this.disabledClass);
21520                 e.dom.disabled = false;
21521             });
21522         }
21523         
21524         this.disabled = false;
21525         this.fireEvent("enable", this);
21526         return this;
21527     },
21528     
21529     setBoxLabel : function(v)
21530     {
21531         this.boxLabel = v;
21532         
21533         if(this.rendered){
21534             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21535         }
21536     }
21537
21538 });
21539
21540 Roo.apply(Roo.bootstrap.CheckBox, {
21541     
21542     groups: {},
21543     
21544      /**
21545     * register a CheckBox Group
21546     * @param {Roo.bootstrap.CheckBox} the CheckBox to add
21547     */
21548     register : function(checkbox)
21549     {
21550         if(typeof(this.groups[checkbox.groupId]) == 'undefined'){
21551             this.groups[checkbox.groupId] = {};
21552         }
21553         
21554         if(this.groups[checkbox.groupId].hasOwnProperty(checkbox.name)){
21555             return;
21556         }
21557         
21558         this.groups[checkbox.groupId][checkbox.name] = checkbox;
21559         
21560     },
21561     /**
21562     * fetch a CheckBox Group based on the group ID
21563     * @param {string} the group ID
21564     * @returns {Roo.bootstrap.CheckBox} the CheckBox group
21565     */
21566     get: function(groupId) {
21567         if (typeof(this.groups[groupId]) == 'undefined') {
21568             return false;
21569         }
21570         
21571         return this.groups[groupId] ;
21572     }
21573     
21574     
21575 });
21576 /*
21577  * - LGPL
21578  *
21579  * RadioItem
21580  * 
21581  */
21582
21583 /**
21584  * @class Roo.bootstrap.Radio
21585  * @extends Roo.bootstrap.Component
21586  * Bootstrap Radio class
21587  * @cfg {String} boxLabel - the label associated
21588  * @cfg {String} value - the value of radio
21589  * 
21590  * @constructor
21591  * Create a new Radio
21592  * @param {Object} config The config object
21593  */
21594 Roo.bootstrap.Radio = function(config){
21595     Roo.bootstrap.Radio.superclass.constructor.call(this, config);
21596     
21597 };
21598
21599 Roo.extend(Roo.bootstrap.Radio, Roo.bootstrap.Component, {
21600     
21601     boxLabel : '',
21602     
21603     value : '',
21604     
21605     getAutoCreate : function()
21606     {
21607         var cfg = {
21608             tag : 'div',
21609             cls : 'form-group radio',
21610             cn : [
21611                 {
21612                     tag : 'label',
21613                     cls : 'box-label',
21614                     html : this.boxLabel
21615                 }
21616             ]
21617         };
21618         
21619         return cfg;
21620     },
21621     
21622     initEvents : function() 
21623     {
21624         this.parent().register(this);
21625         
21626         this.el.on('click', this.onClick, this);
21627         
21628     },
21629     
21630     onClick : function(e)
21631     {
21632         if(this.parent().fireEvent('click', this.parent(), this, e) !== false){
21633             this.setChecked(true);
21634         }
21635     },
21636     
21637     setChecked : function(state, suppressEvent)
21638     {
21639         this.parent().setValue(this.value, suppressEvent);
21640         
21641     },
21642     
21643     setBoxLabel : function(v)
21644     {
21645         this.boxLabel = v;
21646         
21647         if(this.rendered){
21648             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21649         }
21650     }
21651     
21652 });
21653  
21654
21655  /*
21656  * - LGPL
21657  *
21658  * Input
21659  * 
21660  */
21661
21662 /**
21663  * @class Roo.bootstrap.SecurePass
21664  * @extends Roo.bootstrap.Input
21665  * Bootstrap SecurePass class
21666  *
21667  * 
21668  * @constructor
21669  * Create a new SecurePass
21670  * @param {Object} config The config object
21671  */
21672  
21673 Roo.bootstrap.SecurePass = function (config) {
21674     // these go here, so the translation tool can replace them..
21675     this.errors = {
21676         PwdEmpty: "Please type a password, and then retype it to confirm.",
21677         PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21678         PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21679         PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21680         IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21681         FNInPwd: "Your password can't contain your first name. Please type a different password.",
21682         LNInPwd: "Your password can't contain your last name. Please type a different password.",
21683         TooWeak: "Your password is Too Weak."
21684     },
21685     this.meterLabel = "Password strength:";
21686     this.pwdStrengths = ["Too Weak", "Weak", "Medium", "Strong"];
21687     this.meterClass = [
21688         "roo-password-meter-tooweak", 
21689         "roo-password-meter-weak", 
21690         "roo-password-meter-medium", 
21691         "roo-password-meter-strong", 
21692         "roo-password-meter-grey"
21693     ];
21694     
21695     this.errors = {};
21696     
21697     Roo.bootstrap.SecurePass.superclass.constructor.call(this, config);
21698 }
21699
21700 Roo.extend(Roo.bootstrap.SecurePass, Roo.bootstrap.Input, {
21701     /**
21702      * @cfg {String/Object} errors A Error spec, or true for a default spec (defaults to
21703      * {
21704      *  PwdEmpty: "Please type a password, and then retype it to confirm.",
21705      *  PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21706      *  PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21707      *  PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21708      *  IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21709      *  FNInPwd: "Your password can't contain your first name. Please type a different password.",
21710      *  LNInPwd: "Your password can't contain your last name. Please type a different password."
21711      * })
21712      */
21713     // private
21714     
21715     meterWidth: 300,
21716     errorMsg :'',    
21717     errors: false,
21718     imageRoot: '/',
21719     /**
21720      * @cfg {String/Object} Label for the strength meter (defaults to
21721      * 'Password strength:')
21722      */
21723     // private
21724     meterLabel: '',
21725     /**
21726      * @cfg {String/Object} pwdStrengths A pwdStrengths spec, or true for a default spec (defaults to
21727      * ['Weak', 'Medium', 'Strong'])
21728      */
21729     // private    
21730     pwdStrengths: false,    
21731     // private
21732     strength: 0,
21733     // private
21734     _lastPwd: null,
21735     // private
21736     kCapitalLetter: 0,
21737     kSmallLetter: 1,
21738     kDigit: 2,
21739     kPunctuation: 3,
21740     
21741     insecure: false,
21742     // private
21743     initEvents: function ()
21744     {
21745         Roo.bootstrap.SecurePass.superclass.initEvents.call(this);
21746
21747         if (this.el.is('input[type=password]') && Roo.isSafari) {
21748             this.el.on('keydown', this.SafariOnKeyDown, this);
21749         }
21750
21751         this.el.on('keyup', this.checkStrength, this, {buffer: 50});
21752     },
21753     // private
21754     onRender: function (ct, position)
21755     {
21756         Roo.bootstrap.SecurePass.superclass.onRender.call(this, ct, position);
21757         this.wrap = this.el.wrap({cls: 'x-form-field-wrap'});
21758         this.trigger = this.wrap.createChild({tag: 'div', cls: 'StrengthMeter ' + this.triggerClass});
21759
21760         this.trigger.createChild({
21761                    cn: [
21762                     {
21763                     //id: 'PwdMeter',
21764                     tag: 'div',
21765                     cls: 'roo-password-meter-grey col-xs-12',
21766                     style: {
21767                         //width: 0,
21768                         //width: this.meterWidth + 'px'                                                
21769                         }
21770                     },
21771                     {                            
21772                          cls: 'roo-password-meter-text'                          
21773                     }
21774                 ]            
21775         });
21776
21777          
21778         if (this.hideTrigger) {
21779             this.trigger.setDisplayed(false);
21780         }
21781         this.setSize(this.width || '', this.height || '');
21782     },
21783     // private
21784     onDestroy: function ()
21785     {
21786         if (this.trigger) {
21787             this.trigger.removeAllListeners();
21788             this.trigger.remove();
21789         }
21790         if (this.wrap) {
21791             this.wrap.remove();
21792         }
21793         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
21794     },
21795     // private
21796     checkStrength: function ()
21797     {
21798         var pwd = this.inputEl().getValue();
21799         if (pwd == this._lastPwd) {
21800             return;
21801         }
21802
21803         var strength;
21804         if (this.ClientSideStrongPassword(pwd)) {
21805             strength = 3;
21806         } else if (this.ClientSideMediumPassword(pwd)) {
21807             strength = 2;
21808         } else if (this.ClientSideWeakPassword(pwd)) {
21809             strength = 1;
21810         } else {
21811             strength = 0;
21812         }
21813         
21814         Roo.log('strength1: ' + strength);
21815         
21816         //var pm = this.trigger.child('div/div/div').dom;
21817         var pm = this.trigger.child('div/div');
21818         pm.removeClass(this.meterClass);
21819         pm.addClass(this.meterClass[strength]);
21820                 
21821         
21822         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21823                 
21824         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21825         
21826         this._lastPwd = pwd;
21827     },
21828     reset: function ()
21829     {
21830         Roo.bootstrap.SecurePass.superclass.reset.call(this);
21831         
21832         this._lastPwd = '';
21833         
21834         var pm = this.trigger.child('div/div');
21835         pm.removeClass(this.meterClass);
21836         pm.addClass('roo-password-meter-grey');        
21837         
21838         
21839         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21840         
21841         pt.innerHTML = '';
21842         this.inputEl().dom.type='password';
21843     },
21844     // private
21845     validateValue: function (value)
21846     {
21847         
21848         if (!Roo.bootstrap.SecurePass.superclass.validateValue.call(this, value)) {
21849             return false;
21850         }
21851         if (value.length == 0) {
21852             if (this.allowBlank) {
21853                 this.clearInvalid();
21854                 return true;
21855             }
21856
21857             this.markInvalid(this.errors.PwdEmpty);
21858             this.errorMsg = this.errors.PwdEmpty;
21859             return false;
21860         }
21861         
21862         if(this.insecure){
21863             return true;
21864         }
21865         
21866         if ('[\x21-\x7e]*'.match(value)) {
21867             this.markInvalid(this.errors.PwdBadChar);
21868             this.errorMsg = this.errors.PwdBadChar;
21869             return false;
21870         }
21871         if (value.length < 6) {
21872             this.markInvalid(this.errors.PwdShort);
21873             this.errorMsg = this.errors.PwdShort;
21874             return false;
21875         }
21876         if (value.length > 16) {
21877             this.markInvalid(this.errors.PwdLong);
21878             this.errorMsg = this.errors.PwdLong;
21879             return false;
21880         }
21881         var strength;
21882         if (this.ClientSideStrongPassword(value)) {
21883             strength = 3;
21884         } else if (this.ClientSideMediumPassword(value)) {
21885             strength = 2;
21886         } else if (this.ClientSideWeakPassword(value)) {
21887             strength = 1;
21888         } else {
21889             strength = 0;
21890         }
21891
21892         
21893         if (strength < 2) {
21894             //this.markInvalid(this.errors.TooWeak);
21895             this.errorMsg = this.errors.TooWeak;
21896             //return false;
21897         }
21898         
21899         
21900         console.log('strength2: ' + strength);
21901         
21902         //var pm = this.trigger.child('div/div/div').dom;
21903         
21904         var pm = this.trigger.child('div/div');
21905         pm.removeClass(this.meterClass);
21906         pm.addClass(this.meterClass[strength]);
21907                 
21908         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21909                 
21910         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21911         
21912         this.errorMsg = ''; 
21913         return true;
21914     },
21915     // private
21916     CharacterSetChecks: function (type)
21917     {
21918         this.type = type;
21919         this.fResult = false;
21920     },
21921     // private
21922     isctype: function (character, type)
21923     {
21924         switch (type) {  
21925             case this.kCapitalLetter:
21926                 if (character >= 'A' && character <= 'Z') {
21927                     return true;
21928                 }
21929                 break;
21930             
21931             case this.kSmallLetter:
21932                 if (character >= 'a' && character <= 'z') {
21933                     return true;
21934                 }
21935                 break;
21936             
21937             case this.kDigit:
21938                 if (character >= '0' && character <= '9') {
21939                     return true;
21940                 }
21941                 break;
21942             
21943             case this.kPunctuation:
21944                 if ('!@#$%^&*()_+-=\'";:[{]}|.>,</?`~'.indexOf(character) >= 0) {
21945                     return true;
21946                 }
21947                 break;
21948             
21949             default:
21950                 return false;
21951         }
21952
21953     },
21954     // private
21955     IsLongEnough: function (pwd, size)
21956     {
21957         return !(pwd == null || isNaN(size) || pwd.length < size);
21958     },
21959     // private
21960     SpansEnoughCharacterSets: function (word, nb)
21961     {
21962         if (!this.IsLongEnough(word, nb))
21963         {
21964             return false;
21965         }
21966
21967         var characterSetChecks = new Array(
21968             new this.CharacterSetChecks(this.kCapitalLetter), new this.CharacterSetChecks(this.kSmallLetter),
21969             new this.CharacterSetChecks(this.kDigit), new this.CharacterSetChecks(this.kPunctuation)
21970         );
21971         
21972         for (var index = 0; index < word.length; ++index) {
21973             for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
21974                 if (!characterSetChecks[nCharSet].fResult && this.isctype(word.charAt(index), characterSetChecks[nCharSet].type)) {
21975                     characterSetChecks[nCharSet].fResult = true;
21976                     break;
21977                 }
21978             }
21979         }
21980
21981         var nCharSets = 0;
21982         for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
21983             if (characterSetChecks[nCharSet].fResult) {
21984                 ++nCharSets;
21985             }
21986         }
21987
21988         if (nCharSets < nb) {
21989             return false;
21990         }
21991         return true;
21992     },
21993     // private
21994     ClientSideStrongPassword: function (pwd)
21995     {
21996         return this.IsLongEnough(pwd, 8) && this.SpansEnoughCharacterSets(pwd, 3);
21997     },
21998     // private
21999     ClientSideMediumPassword: function (pwd)
22000     {
22001         return this.IsLongEnough(pwd, 7) && this.SpansEnoughCharacterSets(pwd, 2);
22002     },
22003     // private
22004     ClientSideWeakPassword: function (pwd)
22005     {
22006         return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
22007     }
22008           
22009 })//<script type="text/javascript">
22010
22011 /*
22012  * Based  Ext JS Library 1.1.1
22013  * Copyright(c) 2006-2007, Ext JS, LLC.
22014  * LGPL
22015  *
22016  */
22017  
22018 /**
22019  * @class Roo.HtmlEditorCore
22020  * @extends Roo.Component
22021  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
22022  *
22023  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
22024  */
22025
22026 Roo.HtmlEditorCore = function(config){
22027     
22028     
22029     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
22030     
22031     
22032     this.addEvents({
22033         /**
22034          * @event initialize
22035          * Fires when the editor is fully initialized (including the iframe)
22036          * @param {Roo.HtmlEditorCore} this
22037          */
22038         initialize: true,
22039         /**
22040          * @event activate
22041          * Fires when the editor is first receives the focus. Any insertion must wait
22042          * until after this event.
22043          * @param {Roo.HtmlEditorCore} this
22044          */
22045         activate: true,
22046          /**
22047          * @event beforesync
22048          * Fires before the textarea is updated with content from the editor iframe. Return false
22049          * to cancel the sync.
22050          * @param {Roo.HtmlEditorCore} this
22051          * @param {String} html
22052          */
22053         beforesync: true,
22054          /**
22055          * @event beforepush
22056          * Fires before the iframe editor is updated with content from the textarea. Return false
22057          * to cancel the push.
22058          * @param {Roo.HtmlEditorCore} this
22059          * @param {String} html
22060          */
22061         beforepush: true,
22062          /**
22063          * @event sync
22064          * Fires when the textarea is updated with content from the editor iframe.
22065          * @param {Roo.HtmlEditorCore} this
22066          * @param {String} html
22067          */
22068         sync: true,
22069          /**
22070          * @event push
22071          * Fires when the iframe editor is updated with content from the textarea.
22072          * @param {Roo.HtmlEditorCore} this
22073          * @param {String} html
22074          */
22075         push: true,
22076         
22077         /**
22078          * @event editorevent
22079          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
22080          * @param {Roo.HtmlEditorCore} this
22081          */
22082         editorevent: true
22083         
22084     });
22085     
22086     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
22087     
22088     // defaults : white / black...
22089     this.applyBlacklists();
22090     
22091     
22092     
22093 };
22094
22095
22096 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
22097
22098
22099      /**
22100      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
22101      */
22102     
22103     owner : false,
22104     
22105      /**
22106      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
22107      *                        Roo.resizable.
22108      */
22109     resizable : false,
22110      /**
22111      * @cfg {Number} height (in pixels)
22112      */   
22113     height: 300,
22114    /**
22115      * @cfg {Number} width (in pixels)
22116      */   
22117     width: 500,
22118     
22119     /**
22120      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
22121      * 
22122      */
22123     stylesheets: false,
22124     
22125     // id of frame..
22126     frameId: false,
22127     
22128     // private properties
22129     validationEvent : false,
22130     deferHeight: true,
22131     initialized : false,
22132     activated : false,
22133     sourceEditMode : false,
22134     onFocus : Roo.emptyFn,
22135     iframePad:3,
22136     hideMode:'offsets',
22137     
22138     clearUp: true,
22139     
22140     // blacklist + whitelisted elements..
22141     black: false,
22142     white: false,
22143      
22144     bodyCls : '',
22145
22146     /**
22147      * Protected method that will not generally be called directly. It
22148      * is called when the editor initializes the iframe with HTML contents. Override this method if you
22149      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
22150      */
22151     getDocMarkup : function(){
22152         // body styles..
22153         var st = '';
22154         
22155         // inherit styels from page...?? 
22156         if (this.stylesheets === false) {
22157             
22158             Roo.get(document.head).select('style').each(function(node) {
22159                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22160             });
22161             
22162             Roo.get(document.head).select('link').each(function(node) { 
22163                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22164             });
22165             
22166         } else if (!this.stylesheets.length) {
22167                 // simple..
22168                 st = '<style type="text/css">' +
22169                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22170                    '</style>';
22171         } else { 
22172             st = '<style type="text/css">' +
22173                     this.stylesheets +
22174                 '</style>';
22175         }
22176         
22177         st +=  '<style type="text/css">' +
22178             'IMG { cursor: pointer } ' +
22179         '</style>';
22180
22181         var cls = 'roo-htmleditor-body';
22182         
22183         if(this.bodyCls.length){
22184             cls += ' ' + this.bodyCls;
22185         }
22186         
22187         return '<html><head>' + st  +
22188             //<style type="text/css">' +
22189             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22190             //'</style>' +
22191             ' </head><body class="' +  cls + '"></body></html>';
22192     },
22193
22194     // private
22195     onRender : function(ct, position)
22196     {
22197         var _t = this;
22198         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
22199         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
22200         
22201         
22202         this.el.dom.style.border = '0 none';
22203         this.el.dom.setAttribute('tabIndex', -1);
22204         this.el.addClass('x-hidden hide');
22205         
22206         
22207         
22208         if(Roo.isIE){ // fix IE 1px bogus margin
22209             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
22210         }
22211        
22212         
22213         this.frameId = Roo.id();
22214         
22215          
22216         
22217         var iframe = this.owner.wrap.createChild({
22218             tag: 'iframe',
22219             cls: 'form-control', // bootstrap..
22220             id: this.frameId,
22221             name: this.frameId,
22222             frameBorder : 'no',
22223             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
22224         }, this.el
22225         );
22226         
22227         
22228         this.iframe = iframe.dom;
22229
22230          this.assignDocWin();
22231         
22232         this.doc.designMode = 'on';
22233        
22234         this.doc.open();
22235         this.doc.write(this.getDocMarkup());
22236         this.doc.close();
22237
22238         
22239         var task = { // must defer to wait for browser to be ready
22240             run : function(){
22241                 //console.log("run task?" + this.doc.readyState);
22242                 this.assignDocWin();
22243                 if(this.doc.body || this.doc.readyState == 'complete'){
22244                     try {
22245                         this.doc.designMode="on";
22246                     } catch (e) {
22247                         return;
22248                     }
22249                     Roo.TaskMgr.stop(task);
22250                     this.initEditor.defer(10, this);
22251                 }
22252             },
22253             interval : 10,
22254             duration: 10000,
22255             scope: this
22256         };
22257         Roo.TaskMgr.start(task);
22258
22259     },
22260
22261     // private
22262     onResize : function(w, h)
22263     {
22264          Roo.log('resize: ' +w + ',' + h );
22265         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
22266         if(!this.iframe){
22267             return;
22268         }
22269         if(typeof w == 'number'){
22270             
22271             this.iframe.style.width = w + 'px';
22272         }
22273         if(typeof h == 'number'){
22274             
22275             this.iframe.style.height = h + 'px';
22276             if(this.doc){
22277                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
22278             }
22279         }
22280         
22281     },
22282
22283     /**
22284      * Toggles the editor between standard and source edit mode.
22285      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
22286      */
22287     toggleSourceEdit : function(sourceEditMode){
22288         
22289         this.sourceEditMode = sourceEditMode === true;
22290         
22291         if(this.sourceEditMode){
22292  
22293             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
22294             
22295         }else{
22296             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
22297             //this.iframe.className = '';
22298             this.deferFocus();
22299         }
22300         //this.setSize(this.owner.wrap.getSize());
22301         //this.fireEvent('editmodechange', this, this.sourceEditMode);
22302     },
22303
22304     
22305   
22306
22307     /**
22308      * Protected method that will not generally be called directly. If you need/want
22309      * custom HTML cleanup, this is the method you should override.
22310      * @param {String} html The HTML to be cleaned
22311      * return {String} The cleaned HTML
22312      */
22313     cleanHtml : function(html){
22314         html = String(html);
22315         if(html.length > 5){
22316             if(Roo.isSafari){ // strip safari nonsense
22317                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
22318             }
22319         }
22320         if(html == '&nbsp;'){
22321             html = '';
22322         }
22323         return html;
22324     },
22325
22326     /**
22327      * HTML Editor -> Textarea
22328      * Protected method that will not generally be called directly. Syncs the contents
22329      * of the editor iframe with the textarea.
22330      */
22331     syncValue : function(){
22332         if(this.initialized){
22333             var bd = (this.doc.body || this.doc.documentElement);
22334             //this.cleanUpPaste(); -- this is done else where and causes havoc..
22335             var html = bd.innerHTML;
22336             if(Roo.isSafari){
22337                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
22338                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
22339                 if(m && m[1]){
22340                     html = '<div style="'+m[0]+'">' + html + '</div>';
22341                 }
22342             }
22343             html = this.cleanHtml(html);
22344             // fix up the special chars.. normaly like back quotes in word...
22345             // however we do not want to do this with chinese..
22346             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
22347                 
22348                 var cc = match.charCodeAt();
22349
22350                 // Get the character value, handling surrogate pairs
22351                 if (match.length == 2) {
22352                     // It's a surrogate pair, calculate the Unicode code point
22353                     var high = match.charCodeAt(0) - 0xD800;
22354                     var low  = match.charCodeAt(1) - 0xDC00;
22355                     cc = (high * 0x400) + low + 0x10000;
22356                 }  else if (
22357                     (cc >= 0x4E00 && cc < 0xA000 ) ||
22358                     (cc >= 0x3400 && cc < 0x4E00 ) ||
22359                     (cc >= 0xf900 && cc < 0xfb00 )
22360                 ) {
22361                         return match;
22362                 }  
22363          
22364                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
22365                 return "&#" + cc + ";";
22366                 
22367                 
22368             });
22369             
22370             
22371              
22372             if(this.owner.fireEvent('beforesync', this, html) !== false){
22373                 this.el.dom.value = html;
22374                 this.owner.fireEvent('sync', this, html);
22375             }
22376         }
22377     },
22378
22379     /**
22380      * Protected method that will not generally be called directly. Pushes the value of the textarea
22381      * into the iframe editor.
22382      */
22383     pushValue : function(){
22384         if(this.initialized){
22385             var v = this.el.dom.value.trim();
22386             
22387 //            if(v.length < 1){
22388 //                v = '&#160;';
22389 //            }
22390             
22391             if(this.owner.fireEvent('beforepush', this, v) !== false){
22392                 var d = (this.doc.body || this.doc.documentElement);
22393                 d.innerHTML = v;
22394                 this.cleanUpPaste();
22395                 this.el.dom.value = d.innerHTML;
22396                 this.owner.fireEvent('push', this, v);
22397             }
22398         }
22399     },
22400
22401     // private
22402     deferFocus : function(){
22403         this.focus.defer(10, this);
22404     },
22405
22406     // doc'ed in Field
22407     focus : function(){
22408         if(this.win && !this.sourceEditMode){
22409             this.win.focus();
22410         }else{
22411             this.el.focus();
22412         }
22413     },
22414     
22415     assignDocWin: function()
22416     {
22417         var iframe = this.iframe;
22418         
22419          if(Roo.isIE){
22420             this.doc = iframe.contentWindow.document;
22421             this.win = iframe.contentWindow;
22422         } else {
22423 //            if (!Roo.get(this.frameId)) {
22424 //                return;
22425 //            }
22426 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22427 //            this.win = Roo.get(this.frameId).dom.contentWindow;
22428             
22429             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
22430                 return;
22431             }
22432             
22433             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22434             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
22435         }
22436     },
22437     
22438     // private
22439     initEditor : function(){
22440         //console.log("INIT EDITOR");
22441         this.assignDocWin();
22442         
22443         
22444         
22445         this.doc.designMode="on";
22446         this.doc.open();
22447         this.doc.write(this.getDocMarkup());
22448         this.doc.close();
22449         
22450         var dbody = (this.doc.body || this.doc.documentElement);
22451         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
22452         // this copies styles from the containing element into thsi one..
22453         // not sure why we need all of this..
22454         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
22455         
22456         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
22457         //ss['background-attachment'] = 'fixed'; // w3c
22458         dbody.bgProperties = 'fixed'; // ie
22459         //Roo.DomHelper.applyStyles(dbody, ss);
22460         Roo.EventManager.on(this.doc, {
22461             //'mousedown': this.onEditorEvent,
22462             'mouseup': this.onEditorEvent,
22463             'dblclick': this.onEditorEvent,
22464             'click': this.onEditorEvent,
22465             'keyup': this.onEditorEvent,
22466             buffer:100,
22467             scope: this
22468         });
22469         if(Roo.isGecko){
22470             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
22471         }
22472         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
22473             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
22474         }
22475         this.initialized = true;
22476
22477         this.owner.fireEvent('initialize', this);
22478         this.pushValue();
22479     },
22480
22481     // private
22482     onDestroy : function(){
22483         
22484         
22485         
22486         if(this.rendered){
22487             
22488             //for (var i =0; i < this.toolbars.length;i++) {
22489             //    // fixme - ask toolbars for heights?
22490             //    this.toolbars[i].onDestroy();
22491            // }
22492             
22493             //this.wrap.dom.innerHTML = '';
22494             //this.wrap.remove();
22495         }
22496     },
22497
22498     // private
22499     onFirstFocus : function(){
22500         
22501         this.assignDocWin();
22502         
22503         
22504         this.activated = true;
22505          
22506     
22507         if(Roo.isGecko){ // prevent silly gecko errors
22508             this.win.focus();
22509             var s = this.win.getSelection();
22510             if(!s.focusNode || s.focusNode.nodeType != 3){
22511                 var r = s.getRangeAt(0);
22512                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
22513                 r.collapse(true);
22514                 this.deferFocus();
22515             }
22516             try{
22517                 this.execCmd('useCSS', true);
22518                 this.execCmd('styleWithCSS', false);
22519             }catch(e){}
22520         }
22521         this.owner.fireEvent('activate', this);
22522     },
22523
22524     // private
22525     adjustFont: function(btn){
22526         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
22527         //if(Roo.isSafari){ // safari
22528         //    adjust *= 2;
22529        // }
22530         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
22531         if(Roo.isSafari){ // safari
22532             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
22533             v =  (v < 10) ? 10 : v;
22534             v =  (v > 48) ? 48 : v;
22535             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
22536             
22537         }
22538         
22539         
22540         v = Math.max(1, v+adjust);
22541         
22542         this.execCmd('FontSize', v  );
22543     },
22544
22545     onEditorEvent : function(e)
22546     {
22547         this.owner.fireEvent('editorevent', this, e);
22548       //  this.updateToolbar();
22549         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
22550     },
22551
22552     insertTag : function(tg)
22553     {
22554         // could be a bit smarter... -> wrap the current selected tRoo..
22555         if (tg.toLowerCase() == 'span' ||
22556             tg.toLowerCase() == 'code' ||
22557             tg.toLowerCase() == 'sup' ||
22558             tg.toLowerCase() == 'sub' 
22559             ) {
22560             
22561             range = this.createRange(this.getSelection());
22562             var wrappingNode = this.doc.createElement(tg.toLowerCase());
22563             wrappingNode.appendChild(range.extractContents());
22564             range.insertNode(wrappingNode);
22565
22566             return;
22567             
22568             
22569             
22570         }
22571         this.execCmd("formatblock",   tg);
22572         
22573     },
22574     
22575     insertText : function(txt)
22576     {
22577         
22578         
22579         var range = this.createRange();
22580         range.deleteContents();
22581                //alert(Sender.getAttribute('label'));
22582                
22583         range.insertNode(this.doc.createTextNode(txt));
22584     } ,
22585     
22586      
22587
22588     /**
22589      * Executes a Midas editor command on the editor document and performs necessary focus and
22590      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
22591      * @param {String} cmd The Midas command
22592      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22593      */
22594     relayCmd : function(cmd, value){
22595         this.win.focus();
22596         this.execCmd(cmd, value);
22597         this.owner.fireEvent('editorevent', this);
22598         //this.updateToolbar();
22599         this.owner.deferFocus();
22600     },
22601
22602     /**
22603      * Executes a Midas editor command directly on the editor document.
22604      * For visual commands, you should use {@link #relayCmd} instead.
22605      * <b>This should only be called after the editor is initialized.</b>
22606      * @param {String} cmd The Midas command
22607      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22608      */
22609     execCmd : function(cmd, value){
22610         this.doc.execCommand(cmd, false, value === undefined ? null : value);
22611         this.syncValue();
22612     },
22613  
22614  
22615    
22616     /**
22617      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
22618      * to insert tRoo.
22619      * @param {String} text | dom node.. 
22620      */
22621     insertAtCursor : function(text)
22622     {
22623         
22624         if(!this.activated){
22625             return;
22626         }
22627         /*
22628         if(Roo.isIE){
22629             this.win.focus();
22630             var r = this.doc.selection.createRange();
22631             if(r){
22632                 r.collapse(true);
22633                 r.pasteHTML(text);
22634                 this.syncValue();
22635                 this.deferFocus();
22636             
22637             }
22638             return;
22639         }
22640         */
22641         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
22642             this.win.focus();
22643             
22644             
22645             // from jquery ui (MIT licenced)
22646             var range, node;
22647             var win = this.win;
22648             
22649             if (win.getSelection && win.getSelection().getRangeAt) {
22650                 range = win.getSelection().getRangeAt(0);
22651                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
22652                 range.insertNode(node);
22653             } else if (win.document.selection && win.document.selection.createRange) {
22654                 // no firefox support
22655                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22656                 win.document.selection.createRange().pasteHTML(txt);
22657             } else {
22658                 // no firefox support
22659                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22660                 this.execCmd('InsertHTML', txt);
22661             } 
22662             
22663             this.syncValue();
22664             
22665             this.deferFocus();
22666         }
22667     },
22668  // private
22669     mozKeyPress : function(e){
22670         if(e.ctrlKey){
22671             var c = e.getCharCode(), cmd;
22672           
22673             if(c > 0){
22674                 c = String.fromCharCode(c).toLowerCase();
22675                 switch(c){
22676                     case 'b':
22677                         cmd = 'bold';
22678                         break;
22679                     case 'i':
22680                         cmd = 'italic';
22681                         break;
22682                     
22683                     case 'u':
22684                         cmd = 'underline';
22685                         break;
22686                     
22687                     case 'v':
22688                         this.cleanUpPaste.defer(100, this);
22689                         return;
22690                         
22691                 }
22692                 if(cmd){
22693                     this.win.focus();
22694                     this.execCmd(cmd);
22695                     this.deferFocus();
22696                     e.preventDefault();
22697                 }
22698                 
22699             }
22700         }
22701     },
22702
22703     // private
22704     fixKeys : function(){ // load time branching for fastest keydown performance
22705         if(Roo.isIE){
22706             return function(e){
22707                 var k = e.getKey(), r;
22708                 if(k == e.TAB){
22709                     e.stopEvent();
22710                     r = this.doc.selection.createRange();
22711                     if(r){
22712                         r.collapse(true);
22713                         r.pasteHTML('&#160;&#160;&#160;&#160;');
22714                         this.deferFocus();
22715                     }
22716                     return;
22717                 }
22718                 
22719                 if(k == e.ENTER){
22720                     r = this.doc.selection.createRange();
22721                     if(r){
22722                         var target = r.parentElement();
22723                         if(!target || target.tagName.toLowerCase() != 'li'){
22724                             e.stopEvent();
22725                             r.pasteHTML('<br />');
22726                             r.collapse(false);
22727                             r.select();
22728                         }
22729                     }
22730                 }
22731                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22732                     this.cleanUpPaste.defer(100, this);
22733                     return;
22734                 }
22735                 
22736                 
22737             };
22738         }else if(Roo.isOpera){
22739             return function(e){
22740                 var k = e.getKey();
22741                 if(k == e.TAB){
22742                     e.stopEvent();
22743                     this.win.focus();
22744                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
22745                     this.deferFocus();
22746                 }
22747                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22748                     this.cleanUpPaste.defer(100, this);
22749                     return;
22750                 }
22751                 
22752             };
22753         }else if(Roo.isSafari){
22754             return function(e){
22755                 var k = e.getKey();
22756                 
22757                 if(k == e.TAB){
22758                     e.stopEvent();
22759                     this.execCmd('InsertText','\t');
22760                     this.deferFocus();
22761                     return;
22762                 }
22763                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22764                     this.cleanUpPaste.defer(100, this);
22765                     return;
22766                 }
22767                 
22768              };
22769         }
22770     }(),
22771     
22772     getAllAncestors: function()
22773     {
22774         var p = this.getSelectedNode();
22775         var a = [];
22776         if (!p) {
22777             a.push(p); // push blank onto stack..
22778             p = this.getParentElement();
22779         }
22780         
22781         
22782         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
22783             a.push(p);
22784             p = p.parentNode;
22785         }
22786         a.push(this.doc.body);
22787         return a;
22788     },
22789     lastSel : false,
22790     lastSelNode : false,
22791     
22792     
22793     getSelection : function() 
22794     {
22795         this.assignDocWin();
22796         return Roo.isIE ? this.doc.selection : this.win.getSelection();
22797     },
22798     
22799     getSelectedNode: function() 
22800     {
22801         // this may only work on Gecko!!!
22802         
22803         // should we cache this!!!!
22804         
22805         
22806         
22807          
22808         var range = this.createRange(this.getSelection()).cloneRange();
22809         
22810         if (Roo.isIE) {
22811             var parent = range.parentElement();
22812             while (true) {
22813                 var testRange = range.duplicate();
22814                 testRange.moveToElementText(parent);
22815                 if (testRange.inRange(range)) {
22816                     break;
22817                 }
22818                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
22819                     break;
22820                 }
22821                 parent = parent.parentElement;
22822             }
22823             return parent;
22824         }
22825         
22826         // is ancestor a text element.
22827         var ac =  range.commonAncestorContainer;
22828         if (ac.nodeType == 3) {
22829             ac = ac.parentNode;
22830         }
22831         
22832         var ar = ac.childNodes;
22833          
22834         var nodes = [];
22835         var other_nodes = [];
22836         var has_other_nodes = false;
22837         for (var i=0;i<ar.length;i++) {
22838             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
22839                 continue;
22840             }
22841             // fullly contained node.
22842             
22843             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
22844                 nodes.push(ar[i]);
22845                 continue;
22846             }
22847             
22848             // probably selected..
22849             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
22850                 other_nodes.push(ar[i]);
22851                 continue;
22852             }
22853             // outer..
22854             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
22855                 continue;
22856             }
22857             
22858             
22859             has_other_nodes = true;
22860         }
22861         if (!nodes.length && other_nodes.length) {
22862             nodes= other_nodes;
22863         }
22864         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
22865             return false;
22866         }
22867         
22868         return nodes[0];
22869     },
22870     createRange: function(sel)
22871     {
22872         // this has strange effects when using with 
22873         // top toolbar - not sure if it's a great idea.
22874         //this.editor.contentWindow.focus();
22875         if (typeof sel != "undefined") {
22876             try {
22877                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
22878             } catch(e) {
22879                 return this.doc.createRange();
22880             }
22881         } else {
22882             return this.doc.createRange();
22883         }
22884     },
22885     getParentElement: function()
22886     {
22887         
22888         this.assignDocWin();
22889         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
22890         
22891         var range = this.createRange(sel);
22892          
22893         try {
22894             var p = range.commonAncestorContainer;
22895             while (p.nodeType == 3) { // text node
22896                 p = p.parentNode;
22897             }
22898             return p;
22899         } catch (e) {
22900             return null;
22901         }
22902     
22903     },
22904     /***
22905      *
22906      * Range intersection.. the hard stuff...
22907      *  '-1' = before
22908      *  '0' = hits..
22909      *  '1' = after.
22910      *         [ -- selected range --- ]
22911      *   [fail]                        [fail]
22912      *
22913      *    basically..
22914      *      if end is before start or  hits it. fail.
22915      *      if start is after end or hits it fail.
22916      *
22917      *   if either hits (but other is outside. - then it's not 
22918      *   
22919      *    
22920      **/
22921     
22922     
22923     // @see http://www.thismuchiknow.co.uk/?p=64.
22924     rangeIntersectsNode : function(range, node)
22925     {
22926         var nodeRange = node.ownerDocument.createRange();
22927         try {
22928             nodeRange.selectNode(node);
22929         } catch (e) {
22930             nodeRange.selectNodeContents(node);
22931         }
22932     
22933         var rangeStartRange = range.cloneRange();
22934         rangeStartRange.collapse(true);
22935     
22936         var rangeEndRange = range.cloneRange();
22937         rangeEndRange.collapse(false);
22938     
22939         var nodeStartRange = nodeRange.cloneRange();
22940         nodeStartRange.collapse(true);
22941     
22942         var nodeEndRange = nodeRange.cloneRange();
22943         nodeEndRange.collapse(false);
22944     
22945         return rangeStartRange.compareBoundaryPoints(
22946                  Range.START_TO_START, nodeEndRange) == -1 &&
22947                rangeEndRange.compareBoundaryPoints(
22948                  Range.START_TO_START, nodeStartRange) == 1;
22949         
22950          
22951     },
22952     rangeCompareNode : function(range, node)
22953     {
22954         var nodeRange = node.ownerDocument.createRange();
22955         try {
22956             nodeRange.selectNode(node);
22957         } catch (e) {
22958             nodeRange.selectNodeContents(node);
22959         }
22960         
22961         
22962         range.collapse(true);
22963     
22964         nodeRange.collapse(true);
22965      
22966         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
22967         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
22968          
22969         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
22970         
22971         var nodeIsBefore   =  ss == 1;
22972         var nodeIsAfter    = ee == -1;
22973         
22974         if (nodeIsBefore && nodeIsAfter) {
22975             return 0; // outer
22976         }
22977         if (!nodeIsBefore && nodeIsAfter) {
22978             return 1; //right trailed.
22979         }
22980         
22981         if (nodeIsBefore && !nodeIsAfter) {
22982             return 2;  // left trailed.
22983         }
22984         // fully contined.
22985         return 3;
22986     },
22987
22988     // private? - in a new class?
22989     cleanUpPaste :  function()
22990     {
22991         // cleans up the whole document..
22992         Roo.log('cleanuppaste');
22993         
22994         this.cleanUpChildren(this.doc.body);
22995         var clean = this.cleanWordChars(this.doc.body.innerHTML);
22996         if (clean != this.doc.body.innerHTML) {
22997             this.doc.body.innerHTML = clean;
22998         }
22999         
23000     },
23001     
23002     cleanWordChars : function(input) {// change the chars to hex code
23003         var he = Roo.HtmlEditorCore;
23004         
23005         var output = input;
23006         Roo.each(he.swapCodes, function(sw) { 
23007             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
23008             
23009             output = output.replace(swapper, sw[1]);
23010         });
23011         
23012         return output;
23013     },
23014     
23015     
23016     cleanUpChildren : function (n)
23017     {
23018         if (!n.childNodes.length) {
23019             return;
23020         }
23021         for (var i = n.childNodes.length-1; i > -1 ; i--) {
23022            this.cleanUpChild(n.childNodes[i]);
23023         }
23024     },
23025     
23026     
23027         
23028     
23029     cleanUpChild : function (node)
23030     {
23031         var ed = this;
23032         //console.log(node);
23033         if (node.nodeName == "#text") {
23034             // clean up silly Windows -- stuff?
23035             return; 
23036         }
23037         if (node.nodeName == "#comment") {
23038             node.parentNode.removeChild(node);
23039             // clean up silly Windows -- stuff?
23040             return; 
23041         }
23042         var lcname = node.tagName.toLowerCase();
23043         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
23044         // whitelist of tags..
23045         
23046         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
23047             // remove node.
23048             node.parentNode.removeChild(node);
23049             return;
23050             
23051         }
23052         
23053         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
23054         
23055         // spans with no attributes - just remove them..
23056         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
23057             remove_keep_children = true;
23058         }
23059         
23060         // remove <a name=....> as rendering on yahoo mailer is borked with this.
23061         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
23062         
23063         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
23064         //    remove_keep_children = true;
23065         //}
23066         
23067         if (remove_keep_children) {
23068             this.cleanUpChildren(node);
23069             // inserts everything just before this node...
23070             while (node.childNodes.length) {
23071                 var cn = node.childNodes[0];
23072                 node.removeChild(cn);
23073                 node.parentNode.insertBefore(cn, node);
23074             }
23075             node.parentNode.removeChild(node);
23076             return;
23077         }
23078         
23079         if (!node.attributes || !node.attributes.length) {
23080             
23081           
23082             
23083             
23084             this.cleanUpChildren(node);
23085             return;
23086         }
23087         
23088         function cleanAttr(n,v)
23089         {
23090             
23091             if (v.match(/^\./) || v.match(/^\//)) {
23092                 return;
23093             }
23094             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
23095                 return;
23096             }
23097             if (v.match(/^#/)) {
23098                 return;
23099             }
23100 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
23101             node.removeAttribute(n);
23102             
23103         }
23104         
23105         var cwhite = this.cwhite;
23106         var cblack = this.cblack;
23107             
23108         function cleanStyle(n,v)
23109         {
23110             if (v.match(/expression/)) { //XSS?? should we even bother..
23111                 node.removeAttribute(n);
23112                 return;
23113             }
23114             
23115             var parts = v.split(/;/);
23116             var clean = [];
23117             
23118             Roo.each(parts, function(p) {
23119                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
23120                 if (!p.length) {
23121                     return true;
23122                 }
23123                 var l = p.split(':').shift().replace(/\s+/g,'');
23124                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
23125                 
23126                 if ( cwhite.length && cblack.indexOf(l) > -1) {
23127 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23128                     //node.removeAttribute(n);
23129                     return true;
23130                 }
23131                 //Roo.log()
23132                 // only allow 'c whitelisted system attributes'
23133                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
23134 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23135                     //node.removeAttribute(n);
23136                     return true;
23137                 }
23138                 
23139                 
23140                  
23141                 
23142                 clean.push(p);
23143                 return true;
23144             });
23145             if (clean.length) { 
23146                 node.setAttribute(n, clean.join(';'));
23147             } else {
23148                 node.removeAttribute(n);
23149             }
23150             
23151         }
23152         
23153         
23154         for (var i = node.attributes.length-1; i > -1 ; i--) {
23155             var a = node.attributes[i];
23156             //console.log(a);
23157             
23158             if (a.name.toLowerCase().substr(0,2)=='on')  {
23159                 node.removeAttribute(a.name);
23160                 continue;
23161             }
23162             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
23163                 node.removeAttribute(a.name);
23164                 continue;
23165             }
23166             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
23167                 cleanAttr(a.name,a.value); // fixme..
23168                 continue;
23169             }
23170             if (a.name == 'style') {
23171                 cleanStyle(a.name,a.value);
23172                 continue;
23173             }
23174             /// clean up MS crap..
23175             // tecnically this should be a list of valid class'es..
23176             
23177             
23178             if (a.name == 'class') {
23179                 if (a.value.match(/^Mso/)) {
23180                     node.removeAttribute('class');
23181                 }
23182                 
23183                 if (a.value.match(/^body$/)) {
23184                     node.removeAttribute('class');
23185                 }
23186                 continue;
23187             }
23188             
23189             // style cleanup!?
23190             // class cleanup?
23191             
23192         }
23193         
23194         
23195         this.cleanUpChildren(node);
23196         
23197         
23198     },
23199     
23200     /**
23201      * Clean up MS wordisms...
23202      */
23203     cleanWord : function(node)
23204     {
23205         if (!node) {
23206             this.cleanWord(this.doc.body);
23207             return;
23208         }
23209         
23210         if(
23211                 node.nodeName == 'SPAN' &&
23212                 !node.hasAttributes() &&
23213                 node.childNodes.length == 1 &&
23214                 node.firstChild.nodeName == "#text"  
23215         ) {
23216             var textNode = node.firstChild;
23217             node.removeChild(textNode);
23218             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
23219                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
23220             }
23221             node.parentNode.insertBefore(textNode, node);
23222             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
23223                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
23224             }
23225             node.parentNode.removeChild(node);
23226         }
23227         
23228         if (node.nodeName == "#text") {
23229             // clean up silly Windows -- stuff?
23230             return; 
23231         }
23232         if (node.nodeName == "#comment") {
23233             node.parentNode.removeChild(node);
23234             // clean up silly Windows -- stuff?
23235             return; 
23236         }
23237         
23238         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
23239             node.parentNode.removeChild(node);
23240             return;
23241         }
23242         //Roo.log(node.tagName);
23243         // remove - but keep children..
23244         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
23245             //Roo.log('-- removed');
23246             while (node.childNodes.length) {
23247                 var cn = node.childNodes[0];
23248                 node.removeChild(cn);
23249                 node.parentNode.insertBefore(cn, node);
23250                 // move node to parent - and clean it..
23251                 this.cleanWord(cn);
23252             }
23253             node.parentNode.removeChild(node);
23254             /// no need to iterate chidlren = it's got none..
23255             //this.iterateChildren(node, this.cleanWord);
23256             return;
23257         }
23258         // clean styles
23259         if (node.className.length) {
23260             
23261             var cn = node.className.split(/\W+/);
23262             var cna = [];
23263             Roo.each(cn, function(cls) {
23264                 if (cls.match(/Mso[a-zA-Z]+/)) {
23265                     return;
23266                 }
23267                 cna.push(cls);
23268             });
23269             node.className = cna.length ? cna.join(' ') : '';
23270             if (!cna.length) {
23271                 node.removeAttribute("class");
23272             }
23273         }
23274         
23275         if (node.hasAttribute("lang")) {
23276             node.removeAttribute("lang");
23277         }
23278         
23279         if (node.hasAttribute("style")) {
23280             
23281             var styles = node.getAttribute("style").split(";");
23282             var nstyle = [];
23283             Roo.each(styles, function(s) {
23284                 if (!s.match(/:/)) {
23285                     return;
23286                 }
23287                 var kv = s.split(":");
23288                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
23289                     return;
23290                 }
23291                 // what ever is left... we allow.
23292                 nstyle.push(s);
23293             });
23294             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23295             if (!nstyle.length) {
23296                 node.removeAttribute('style');
23297             }
23298         }
23299         this.iterateChildren(node, this.cleanWord);
23300         
23301         
23302         
23303     },
23304     /**
23305      * iterateChildren of a Node, calling fn each time, using this as the scole..
23306      * @param {DomNode} node node to iterate children of.
23307      * @param {Function} fn method of this class to call on each item.
23308      */
23309     iterateChildren : function(node, fn)
23310     {
23311         if (!node.childNodes.length) {
23312                 return;
23313         }
23314         for (var i = node.childNodes.length-1; i > -1 ; i--) {
23315            fn.call(this, node.childNodes[i])
23316         }
23317     },
23318     
23319     
23320     /**
23321      * cleanTableWidths.
23322      *
23323      * Quite often pasting from word etc.. results in tables with column and widths.
23324      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
23325      *
23326      */
23327     cleanTableWidths : function(node)
23328     {
23329          
23330          
23331         if (!node) {
23332             this.cleanTableWidths(this.doc.body);
23333             return;
23334         }
23335         
23336         // ignore list...
23337         if (node.nodeName == "#text" || node.nodeName == "#comment") {
23338             return; 
23339         }
23340         Roo.log(node.tagName);
23341         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
23342             this.iterateChildren(node, this.cleanTableWidths);
23343             return;
23344         }
23345         if (node.hasAttribute('width')) {
23346             node.removeAttribute('width');
23347         }
23348         
23349          
23350         if (node.hasAttribute("style")) {
23351             // pretty basic...
23352             
23353             var styles = node.getAttribute("style").split(";");
23354             var nstyle = [];
23355             Roo.each(styles, function(s) {
23356                 if (!s.match(/:/)) {
23357                     return;
23358                 }
23359                 var kv = s.split(":");
23360                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
23361                     return;
23362                 }
23363                 // what ever is left... we allow.
23364                 nstyle.push(s);
23365             });
23366             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23367             if (!nstyle.length) {
23368                 node.removeAttribute('style');
23369             }
23370         }
23371         
23372         this.iterateChildren(node, this.cleanTableWidths);
23373         
23374         
23375     },
23376     
23377     
23378     
23379     
23380     domToHTML : function(currentElement, depth, nopadtext) {
23381         
23382         depth = depth || 0;
23383         nopadtext = nopadtext || false;
23384     
23385         if (!currentElement) {
23386             return this.domToHTML(this.doc.body);
23387         }
23388         
23389         //Roo.log(currentElement);
23390         var j;
23391         var allText = false;
23392         var nodeName = currentElement.nodeName;
23393         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
23394         
23395         if  (nodeName == '#text') {
23396             
23397             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
23398         }
23399         
23400         
23401         var ret = '';
23402         if (nodeName != 'BODY') {
23403              
23404             var i = 0;
23405             // Prints the node tagName, such as <A>, <IMG>, etc
23406             if (tagName) {
23407                 var attr = [];
23408                 for(i = 0; i < currentElement.attributes.length;i++) {
23409                     // quoting?
23410                     var aname = currentElement.attributes.item(i).name;
23411                     if (!currentElement.attributes.item(i).value.length) {
23412                         continue;
23413                     }
23414                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
23415                 }
23416                 
23417                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
23418             } 
23419             else {
23420                 
23421                 // eack
23422             }
23423         } else {
23424             tagName = false;
23425         }
23426         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
23427             return ret;
23428         }
23429         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
23430             nopadtext = true;
23431         }
23432         
23433         
23434         // Traverse the tree
23435         i = 0;
23436         var currentElementChild = currentElement.childNodes.item(i);
23437         var allText = true;
23438         var innerHTML  = '';
23439         lastnode = '';
23440         while (currentElementChild) {
23441             // Formatting code (indent the tree so it looks nice on the screen)
23442             var nopad = nopadtext;
23443             if (lastnode == 'SPAN') {
23444                 nopad  = true;
23445             }
23446             // text
23447             if  (currentElementChild.nodeName == '#text') {
23448                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
23449                 toadd = nopadtext ? toadd : toadd.trim();
23450                 if (!nopad && toadd.length > 80) {
23451                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
23452                 }
23453                 innerHTML  += toadd;
23454                 
23455                 i++;
23456                 currentElementChild = currentElement.childNodes.item(i);
23457                 lastNode = '';
23458                 continue;
23459             }
23460             allText = false;
23461             
23462             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
23463                 
23464             // Recursively traverse the tree structure of the child node
23465             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
23466             lastnode = currentElementChild.nodeName;
23467             i++;
23468             currentElementChild=currentElement.childNodes.item(i);
23469         }
23470         
23471         ret += innerHTML;
23472         
23473         if (!allText) {
23474                 // The remaining code is mostly for formatting the tree
23475             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
23476         }
23477         
23478         
23479         if (tagName) {
23480             ret+= "</"+tagName+">";
23481         }
23482         return ret;
23483         
23484     },
23485         
23486     applyBlacklists : function()
23487     {
23488         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
23489         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
23490         
23491         this.white = [];
23492         this.black = [];
23493         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
23494             if (b.indexOf(tag) > -1) {
23495                 return;
23496             }
23497             this.white.push(tag);
23498             
23499         }, this);
23500         
23501         Roo.each(w, function(tag) {
23502             if (b.indexOf(tag) > -1) {
23503                 return;
23504             }
23505             if (this.white.indexOf(tag) > -1) {
23506                 return;
23507             }
23508             this.white.push(tag);
23509             
23510         }, this);
23511         
23512         
23513         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
23514             if (w.indexOf(tag) > -1) {
23515                 return;
23516             }
23517             this.black.push(tag);
23518             
23519         }, this);
23520         
23521         Roo.each(b, function(tag) {
23522             if (w.indexOf(tag) > -1) {
23523                 return;
23524             }
23525             if (this.black.indexOf(tag) > -1) {
23526                 return;
23527             }
23528             this.black.push(tag);
23529             
23530         }, this);
23531         
23532         
23533         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
23534         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
23535         
23536         this.cwhite = [];
23537         this.cblack = [];
23538         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
23539             if (b.indexOf(tag) > -1) {
23540                 return;
23541             }
23542             this.cwhite.push(tag);
23543             
23544         }, this);
23545         
23546         Roo.each(w, function(tag) {
23547             if (b.indexOf(tag) > -1) {
23548                 return;
23549             }
23550             if (this.cwhite.indexOf(tag) > -1) {
23551                 return;
23552             }
23553             this.cwhite.push(tag);
23554             
23555         }, this);
23556         
23557         
23558         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
23559             if (w.indexOf(tag) > -1) {
23560                 return;
23561             }
23562             this.cblack.push(tag);
23563             
23564         }, this);
23565         
23566         Roo.each(b, function(tag) {
23567             if (w.indexOf(tag) > -1) {
23568                 return;
23569             }
23570             if (this.cblack.indexOf(tag) > -1) {
23571                 return;
23572             }
23573             this.cblack.push(tag);
23574             
23575         }, this);
23576     },
23577     
23578     setStylesheets : function(stylesheets)
23579     {
23580         if(typeof(stylesheets) == 'string'){
23581             Roo.get(this.iframe.contentDocument.head).createChild({
23582                 tag : 'link',
23583                 rel : 'stylesheet',
23584                 type : 'text/css',
23585                 href : stylesheets
23586             });
23587             
23588             return;
23589         }
23590         var _this = this;
23591      
23592         Roo.each(stylesheets, function(s) {
23593             if(!s.length){
23594                 return;
23595             }
23596             
23597             Roo.get(_this.iframe.contentDocument.head).createChild({
23598                 tag : 'link',
23599                 rel : 'stylesheet',
23600                 type : 'text/css',
23601                 href : s
23602             });
23603         });
23604
23605         
23606     },
23607     
23608     removeStylesheets : function()
23609     {
23610         var _this = this;
23611         
23612         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
23613             s.remove();
23614         });
23615     },
23616     
23617     setStyle : function(style)
23618     {
23619         Roo.get(this.iframe.contentDocument.head).createChild({
23620             tag : 'style',
23621             type : 'text/css',
23622             html : style
23623         });
23624
23625         return;
23626     }
23627     
23628     // hide stuff that is not compatible
23629     /**
23630      * @event blur
23631      * @hide
23632      */
23633     /**
23634      * @event change
23635      * @hide
23636      */
23637     /**
23638      * @event focus
23639      * @hide
23640      */
23641     /**
23642      * @event specialkey
23643      * @hide
23644      */
23645     /**
23646      * @cfg {String} fieldClass @hide
23647      */
23648     /**
23649      * @cfg {String} focusClass @hide
23650      */
23651     /**
23652      * @cfg {String} autoCreate @hide
23653      */
23654     /**
23655      * @cfg {String} inputType @hide
23656      */
23657     /**
23658      * @cfg {String} invalidClass @hide
23659      */
23660     /**
23661      * @cfg {String} invalidText @hide
23662      */
23663     /**
23664      * @cfg {String} msgFx @hide
23665      */
23666     /**
23667      * @cfg {String} validateOnBlur @hide
23668      */
23669 });
23670
23671 Roo.HtmlEditorCore.white = [
23672         'area', 'br', 'img', 'input', 'hr', 'wbr',
23673         
23674        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
23675        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
23676        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
23677        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
23678        'table',   'ul',         'xmp', 
23679        
23680        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
23681       'thead',   'tr', 
23682      
23683       'dir', 'menu', 'ol', 'ul', 'dl',
23684        
23685       'embed',  'object'
23686 ];
23687
23688
23689 Roo.HtmlEditorCore.black = [
23690     //    'embed',  'object', // enable - backend responsiblity to clean thiese
23691         'applet', // 
23692         'base',   'basefont', 'bgsound', 'blink',  'body', 
23693         'frame',  'frameset', 'head',    'html',   'ilayer', 
23694         'iframe', 'layer',  'link',     'meta',    'object',   
23695         'script', 'style' ,'title',  'xml' // clean later..
23696 ];
23697 Roo.HtmlEditorCore.clean = [
23698     'script', 'style', 'title', 'xml'
23699 ];
23700 Roo.HtmlEditorCore.remove = [
23701     'font'
23702 ];
23703 // attributes..
23704
23705 Roo.HtmlEditorCore.ablack = [
23706     'on'
23707 ];
23708     
23709 Roo.HtmlEditorCore.aclean = [ 
23710     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
23711 ];
23712
23713 // protocols..
23714 Roo.HtmlEditorCore.pwhite= [
23715         'http',  'https',  'mailto'
23716 ];
23717
23718 // white listed style attributes.
23719 Roo.HtmlEditorCore.cwhite= [
23720       //  'text-align', /// default is to allow most things..
23721       
23722          
23723 //        'font-size'//??
23724 ];
23725
23726 // black listed style attributes.
23727 Roo.HtmlEditorCore.cblack= [
23728       //  'font-size' -- this can be set by the project 
23729 ];
23730
23731
23732 Roo.HtmlEditorCore.swapCodes   =[ 
23733     [    8211, "--" ], 
23734     [    8212, "--" ], 
23735     [    8216,  "'" ],  
23736     [    8217, "'" ],  
23737     [    8220, '"' ],  
23738     [    8221, '"' ],  
23739     [    8226, "*" ],  
23740     [    8230, "..." ]
23741 ]; 
23742
23743     /*
23744  * - LGPL
23745  *
23746  * HtmlEditor
23747  * 
23748  */
23749
23750 /**
23751  * @class Roo.bootstrap.HtmlEditor
23752  * @extends Roo.bootstrap.TextArea
23753  * Bootstrap HtmlEditor class
23754
23755  * @constructor
23756  * Create a new HtmlEditor
23757  * @param {Object} config The config object
23758  */
23759
23760 Roo.bootstrap.HtmlEditor = function(config){
23761     Roo.bootstrap.HtmlEditor.superclass.constructor.call(this, config);
23762     if (!this.toolbars) {
23763         this.toolbars = [];
23764     }
23765     
23766     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
23767     this.addEvents({
23768             /**
23769              * @event initialize
23770              * Fires when the editor is fully initialized (including the iframe)
23771              * @param {HtmlEditor} this
23772              */
23773             initialize: true,
23774             /**
23775              * @event activate
23776              * Fires when the editor is first receives the focus. Any insertion must wait
23777              * until after this event.
23778              * @param {HtmlEditor} this
23779              */
23780             activate: true,
23781              /**
23782              * @event beforesync
23783              * Fires before the textarea is updated with content from the editor iframe. Return false
23784              * to cancel the sync.
23785              * @param {HtmlEditor} this
23786              * @param {String} html
23787              */
23788             beforesync: true,
23789              /**
23790              * @event beforepush
23791              * Fires before the iframe editor is updated with content from the textarea. Return false
23792              * to cancel the push.
23793              * @param {HtmlEditor} this
23794              * @param {String} html
23795              */
23796             beforepush: true,
23797              /**
23798              * @event sync
23799              * Fires when the textarea is updated with content from the editor iframe.
23800              * @param {HtmlEditor} this
23801              * @param {String} html
23802              */
23803             sync: true,
23804              /**
23805              * @event push
23806              * Fires when the iframe editor is updated with content from the textarea.
23807              * @param {HtmlEditor} this
23808              * @param {String} html
23809              */
23810             push: true,
23811              /**
23812              * @event editmodechange
23813              * Fires when the editor switches edit modes
23814              * @param {HtmlEditor} this
23815              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
23816              */
23817             editmodechange: true,
23818             /**
23819              * @event editorevent
23820              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
23821              * @param {HtmlEditor} this
23822              */
23823             editorevent: true,
23824             /**
23825              * @event firstfocus
23826              * Fires when on first focus - needed by toolbars..
23827              * @param {HtmlEditor} this
23828              */
23829             firstfocus: true,
23830             /**
23831              * @event autosave
23832              * Auto save the htmlEditor value as a file into Events
23833              * @param {HtmlEditor} this
23834              */
23835             autosave: true,
23836             /**
23837              * @event savedpreview
23838              * preview the saved version of htmlEditor
23839              * @param {HtmlEditor} this
23840              */
23841             savedpreview: true
23842         });
23843 };
23844
23845
23846 Roo.extend(Roo.bootstrap.HtmlEditor, Roo.bootstrap.TextArea,  {
23847     
23848     
23849       /**
23850      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
23851      */
23852     toolbars : false,
23853     
23854      /**
23855     * @cfg {Array} buttons Array of toolbar's buttons. - defaults to empty
23856     */
23857     btns : [],
23858    
23859      /**
23860      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
23861      *                        Roo.resizable.
23862      */
23863     resizable : false,
23864      /**
23865      * @cfg {Number} height (in pixels)
23866      */   
23867     height: 300,
23868    /**
23869      * @cfg {Number} width (in pixels)
23870      */   
23871     width: false,
23872     
23873     /**
23874      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
23875      * 
23876      */
23877     stylesheets: false,
23878     
23879     // id of frame..
23880     frameId: false,
23881     
23882     // private properties
23883     validationEvent : false,
23884     deferHeight: true,
23885     initialized : false,
23886     activated : false,
23887     
23888     onFocus : Roo.emptyFn,
23889     iframePad:3,
23890     hideMode:'offsets',
23891     
23892     tbContainer : false,
23893     
23894     bodyCls : '',
23895     
23896     toolbarContainer :function() {
23897         return this.wrap.select('.x-html-editor-tb',true).first();
23898     },
23899
23900     /**
23901      * Protected method that will not generally be called directly. It
23902      * is called when the editor creates its toolbar. Override this method if you need to
23903      * add custom toolbar buttons.
23904      * @param {HtmlEditor} editor
23905      */
23906     createToolbar : function(){
23907         Roo.log('renewing');
23908         Roo.log("create toolbars");
23909         
23910         this.toolbars = [ new Roo.bootstrap.htmleditor.ToolbarStandard({editor: this} ) ];
23911         this.toolbars[0].render(this.toolbarContainer());
23912         
23913         return;
23914         
23915 //        if (!editor.toolbars || !editor.toolbars.length) {
23916 //            editor.toolbars = [ new Roo.bootstrap.HtmlEditor.ToolbarStandard() ]; // can be empty?
23917 //        }
23918 //        
23919 //        for (var i =0 ; i < editor.toolbars.length;i++) {
23920 //            editor.toolbars[i] = Roo.factory(
23921 //                    typeof(editor.toolbars[i]) == 'string' ?
23922 //                        { xtype: editor.toolbars[i]} : editor.toolbars[i],
23923 //                Roo.bootstrap.HtmlEditor);
23924 //            editor.toolbars[i].init(editor);
23925 //        }
23926     },
23927
23928      
23929     // private
23930     onRender : function(ct, position)
23931     {
23932        // Roo.log("Call onRender: " + this.xtype);
23933         var _t = this;
23934         Roo.bootstrap.HtmlEditor.superclass.onRender.call(this, ct, position);
23935       
23936         this.wrap = this.inputEl().wrap({
23937             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
23938         });
23939         
23940         this.editorcore.onRender(ct, position);
23941          
23942         if (this.resizable) {
23943             this.resizeEl = new Roo.Resizable(this.wrap, {
23944                 pinned : true,
23945                 wrap: true,
23946                 dynamic : true,
23947                 minHeight : this.height,
23948                 height: this.height,
23949                 handles : this.resizable,
23950                 width: this.width,
23951                 listeners : {
23952                     resize : function(r, w, h) {
23953                         _t.onResize(w,h); // -something
23954                     }
23955                 }
23956             });
23957             
23958         }
23959         this.createToolbar(this);
23960        
23961         
23962         if(!this.width && this.resizable){
23963             this.setSize(this.wrap.getSize());
23964         }
23965         if (this.resizeEl) {
23966             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
23967             // should trigger onReize..
23968         }
23969         
23970     },
23971
23972     // private
23973     onResize : function(w, h)
23974     {
23975         Roo.log('resize: ' +w + ',' + h );
23976         Roo.bootstrap.HtmlEditor.superclass.onResize.apply(this, arguments);
23977         var ew = false;
23978         var eh = false;
23979         
23980         if(this.inputEl() ){
23981             if(typeof w == 'number'){
23982                 var aw = w - this.wrap.getFrameWidth('lr');
23983                 this.inputEl().setWidth(this.adjustWidth('textarea', aw));
23984                 ew = aw;
23985             }
23986             if(typeof h == 'number'){
23987                  var tbh = -11;  // fixme it needs to tool bar size!
23988                 for (var i =0; i < this.toolbars.length;i++) {
23989                     // fixme - ask toolbars for heights?
23990                     tbh += this.toolbars[i].el.getHeight();
23991                     //if (this.toolbars[i].footer) {
23992                     //    tbh += this.toolbars[i].footer.el.getHeight();
23993                     //}
23994                 }
23995               
23996                 
23997                 
23998                 
23999                 
24000                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
24001                 ah -= 5; // knock a few pixes off for look..
24002                 this.inputEl().setHeight(this.adjustWidth('textarea', ah));
24003                 var eh = ah;
24004             }
24005         }
24006         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
24007         this.editorcore.onResize(ew,eh);
24008         
24009     },
24010
24011     /**
24012      * Toggles the editor between standard and source edit mode.
24013      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
24014      */
24015     toggleSourceEdit : function(sourceEditMode)
24016     {
24017         this.editorcore.toggleSourceEdit(sourceEditMode);
24018         
24019         if(this.editorcore.sourceEditMode){
24020             Roo.log('editor - showing textarea');
24021             
24022 //            Roo.log('in');
24023 //            Roo.log(this.syncValue());
24024             this.syncValue();
24025             this.inputEl().removeClass(['hide', 'x-hidden']);
24026             this.inputEl().dom.removeAttribute('tabIndex');
24027             this.inputEl().focus();
24028         }else{
24029             Roo.log('editor - hiding textarea');
24030 //            Roo.log('out')
24031 //            Roo.log(this.pushValue()); 
24032             this.pushValue();
24033             
24034             this.inputEl().addClass(['hide', 'x-hidden']);
24035             this.inputEl().dom.setAttribute('tabIndex', -1);
24036             //this.deferFocus();
24037         }
24038          
24039         if(this.resizable){
24040             this.setSize(this.wrap.getSize());
24041         }
24042         
24043         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
24044     },
24045  
24046     // private (for BoxComponent)
24047     adjustSize : Roo.BoxComponent.prototype.adjustSize,
24048
24049     // private (for BoxComponent)
24050     getResizeEl : function(){
24051         return this.wrap;
24052     },
24053
24054     // private (for BoxComponent)
24055     getPositionEl : function(){
24056         return this.wrap;
24057     },
24058
24059     // private
24060     initEvents : function(){
24061         this.originalValue = this.getValue();
24062     },
24063
24064 //    /**
24065 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24066 //     * @method
24067 //     */
24068 //    markInvalid : Roo.emptyFn,
24069 //    /**
24070 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24071 //     * @method
24072 //     */
24073 //    clearInvalid : Roo.emptyFn,
24074
24075     setValue : function(v){
24076         Roo.bootstrap.HtmlEditor.superclass.setValue.call(this, v);
24077         this.editorcore.pushValue();
24078     },
24079
24080      
24081     // private
24082     deferFocus : function(){
24083         this.focus.defer(10, this);
24084     },
24085
24086     // doc'ed in Field
24087     focus : function(){
24088         this.editorcore.focus();
24089         
24090     },
24091       
24092
24093     // private
24094     onDestroy : function(){
24095         
24096         
24097         
24098         if(this.rendered){
24099             
24100             for (var i =0; i < this.toolbars.length;i++) {
24101                 // fixme - ask toolbars for heights?
24102                 this.toolbars[i].onDestroy();
24103             }
24104             
24105             this.wrap.dom.innerHTML = '';
24106             this.wrap.remove();
24107         }
24108     },
24109
24110     // private
24111     onFirstFocus : function(){
24112         //Roo.log("onFirstFocus");
24113         this.editorcore.onFirstFocus();
24114          for (var i =0; i < this.toolbars.length;i++) {
24115             this.toolbars[i].onFirstFocus();
24116         }
24117         
24118     },
24119     
24120     // private
24121     syncValue : function()
24122     {   
24123         this.editorcore.syncValue();
24124     },
24125     
24126     pushValue : function()
24127     {   
24128         this.editorcore.pushValue();
24129     }
24130      
24131     
24132     // hide stuff that is not compatible
24133     /**
24134      * @event blur
24135      * @hide
24136      */
24137     /**
24138      * @event change
24139      * @hide
24140      */
24141     /**
24142      * @event focus
24143      * @hide
24144      */
24145     /**
24146      * @event specialkey
24147      * @hide
24148      */
24149     /**
24150      * @cfg {String} fieldClass @hide
24151      */
24152     /**
24153      * @cfg {String} focusClass @hide
24154      */
24155     /**
24156      * @cfg {String} autoCreate @hide
24157      */
24158     /**
24159      * @cfg {String} inputType @hide
24160      */
24161      
24162     /**
24163      * @cfg {String} invalidText @hide
24164      */
24165     /**
24166      * @cfg {String} msgFx @hide
24167      */
24168     /**
24169      * @cfg {String} validateOnBlur @hide
24170      */
24171 });
24172  
24173     
24174    
24175    
24176    
24177       
24178 Roo.namespace('Roo.bootstrap.htmleditor');
24179 /**
24180  * @class Roo.bootstrap.HtmlEditorToolbar1
24181  * Basic Toolbar
24182  * 
24183  * @example
24184  * Usage:
24185  *
24186  new Roo.bootstrap.HtmlEditor({
24187     ....
24188     toolbars : [
24189         new Roo.bootstrap.HtmlEditorToolbar1({
24190             disable : { fonts: 1 , format: 1, ..., ... , ...],
24191             btns : [ .... ]
24192         })
24193     }
24194      
24195  * 
24196  * @cfg {Object} disable List of elements to disable..
24197  * @cfg {Array} btns List of additional buttons.
24198  * 
24199  * 
24200  * NEEDS Extra CSS? 
24201  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
24202  */
24203  
24204 Roo.bootstrap.htmleditor.ToolbarStandard = function(config)
24205 {
24206     
24207     Roo.apply(this, config);
24208     
24209     // default disabled, based on 'good practice'..
24210     this.disable = this.disable || {};
24211     Roo.applyIf(this.disable, {
24212         fontSize : true,
24213         colors : true,
24214         specialElements : true
24215     });
24216     Roo.bootstrap.htmleditor.ToolbarStandard.superclass.constructor.call(this, config);
24217     
24218     this.editor = config.editor;
24219     this.editorcore = config.editor.editorcore;
24220     
24221     this.buttons   = new Roo.util.MixedCollection(false, function(o) { return o.cmd; });
24222     
24223     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
24224     // dont call parent... till later.
24225 }
24226 Roo.extend(Roo.bootstrap.htmleditor.ToolbarStandard, Roo.bootstrap.NavSimplebar,  {
24227      
24228     bar : true,
24229     
24230     editor : false,
24231     editorcore : false,
24232     
24233     
24234     formats : [
24235         "p" ,  
24236         "h1","h2","h3","h4","h5","h6", 
24237         "pre", "code", 
24238         "abbr", "acronym", "address", "cite", "samp", "var",
24239         'div','span'
24240     ],
24241     
24242     onRender : function(ct, position)
24243     {
24244        // Roo.log("Call onRender: " + this.xtype);
24245         
24246        Roo.bootstrap.htmleditor.ToolbarStandard.superclass.onRender.call(this, ct, position);
24247        Roo.log(this.el);
24248        this.el.dom.style.marginBottom = '0';
24249        var _this = this;
24250        var editorcore = this.editorcore;
24251        var editor= this.editor;
24252        
24253        var children = [];
24254        var btn = function(id,cmd , toggle, handler, html){
24255        
24256             var  event = toggle ? 'toggle' : 'click';
24257        
24258             var a = {
24259                 size : 'sm',
24260                 xtype: 'Button',
24261                 xns: Roo.bootstrap,
24262                 //glyphicon : id,
24263                 fa: id,
24264                 cmd : id || cmd,
24265                 enableToggle:toggle !== false,
24266                 html : html || '',
24267                 pressed : toggle ? false : null,
24268                 listeners : {}
24269             };
24270             a.listeners[toggle ? 'toggle' : 'click'] = function() {
24271                 handler ? handler.call(_this,this) :_this.onBtnClick.call(_this, cmd ||  id);
24272             };
24273             children.push(a);
24274             return a;
24275        }
24276        
24277     //    var cb_box = function...
24278         
24279         var style = {
24280                 xtype: 'Button',
24281                 size : 'sm',
24282                 xns: Roo.bootstrap,
24283                 fa : 'font',
24284                 //html : 'submit'
24285                 menu : {
24286                     xtype: 'Menu',
24287                     xns: Roo.bootstrap,
24288                     items:  []
24289                 }
24290         };
24291         Roo.each(this.formats, function(f) {
24292             style.menu.items.push({
24293                 xtype :'MenuItem',
24294                 xns: Roo.bootstrap,
24295                 html : '<'+ f+' style="margin:2px">'+f +'</'+ f+'>',
24296                 tagname : f,
24297                 listeners : {
24298                     click : function()
24299                     {
24300                         editorcore.insertTag(this.tagname);
24301                         editor.focus();
24302                     }
24303                 }
24304                 
24305             });
24306         });
24307         children.push(style);   
24308         
24309         btn('bold',false,true);
24310         btn('italic',false,true);
24311         btn('align-left', 'justifyleft',true);
24312         btn('align-center', 'justifycenter',true);
24313         btn('align-right' , 'justifyright',true);
24314         btn('link', false, false, function(btn) {
24315             //Roo.log("create link?");
24316             var url = prompt(this.createLinkText, this.defaultLinkValue);
24317             if(url && url != 'http:/'+'/'){
24318                 this.editorcore.relayCmd('createlink', url);
24319             }
24320         }),
24321         btn('list','insertunorderedlist',true);
24322         btn('pencil', false,true, function(btn){
24323                 Roo.log(this);
24324                 this.toggleSourceEdit(btn.pressed);
24325         });
24326         
24327         if (this.editor.btns.length > 0) {
24328             for (var i = 0; i<this.editor.btns.length; i++) {
24329                 children.push(this.editor.btns[i]);
24330             }
24331         }
24332         
24333         /*
24334         var cog = {
24335                 xtype: 'Button',
24336                 size : 'sm',
24337                 xns: Roo.bootstrap,
24338                 glyphicon : 'cog',
24339                 //html : 'submit'
24340                 menu : {
24341                     xtype: 'Menu',
24342                     xns: Roo.bootstrap,
24343                     items:  []
24344                 }
24345         };
24346         
24347         cog.menu.items.push({
24348             xtype :'MenuItem',
24349             xns: Roo.bootstrap,
24350             html : Clean styles,
24351             tagname : f,
24352             listeners : {
24353                 click : function()
24354                 {
24355                     editorcore.insertTag(this.tagname);
24356                     editor.focus();
24357                 }
24358             }
24359             
24360         });
24361        */
24362         
24363          
24364        this.xtype = 'NavSimplebar';
24365         
24366         for(var i=0;i< children.length;i++) {
24367             
24368             this.buttons.add(this.addxtypeChild(children[i]));
24369             
24370         }
24371         
24372         editor.on('editorevent', this.updateToolbar, this);
24373     },
24374     onBtnClick : function(id)
24375     {
24376        this.editorcore.relayCmd(id);
24377        this.editorcore.focus();
24378     },
24379     
24380     /**
24381      * Protected method that will not generally be called directly. It triggers
24382      * a toolbar update by reading the markup state of the current selection in the editor.
24383      */
24384     updateToolbar: function(){
24385
24386         if(!this.editorcore.activated){
24387             this.editor.onFirstFocus(); // is this neeed?
24388             return;
24389         }
24390
24391         var btns = this.buttons; 
24392         var doc = this.editorcore.doc;
24393         btns.get('bold').setActive(doc.queryCommandState('bold'));
24394         btns.get('italic').setActive(doc.queryCommandState('italic'));
24395         //btns.get('underline').setActive(doc.queryCommandState('underline'));
24396         
24397         btns.get('align-left').setActive(doc.queryCommandState('justifyleft'));
24398         btns.get('align-center').setActive(doc.queryCommandState('justifycenter'));
24399         btns.get('align-right').setActive(doc.queryCommandState('justifyright'));
24400         
24401         //btns[frameId + '-insertorderedlist').setActive(doc.queryCommandState('insertorderedlist'));
24402         btns.get('list').setActive(doc.queryCommandState('insertunorderedlist'));
24403          /*
24404         
24405         var ans = this.editorcore.getAllAncestors();
24406         if (this.formatCombo) {
24407             
24408             
24409             var store = this.formatCombo.store;
24410             this.formatCombo.setValue("");
24411             for (var i =0; i < ans.length;i++) {
24412                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
24413                     // select it..
24414                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
24415                     break;
24416                 }
24417             }
24418         }
24419         
24420         
24421         
24422         // hides menus... - so this cant be on a menu...
24423         Roo.bootstrap.MenuMgr.hideAll();
24424         */
24425         Roo.bootstrap.MenuMgr.hideAll();
24426         //this.editorsyncValue();
24427     },
24428     onFirstFocus: function() {
24429         this.buttons.each(function(item){
24430            item.enable();
24431         });
24432     },
24433     toggleSourceEdit : function(sourceEditMode){
24434         
24435           
24436         if(sourceEditMode){
24437             Roo.log("disabling buttons");
24438            this.buttons.each( function(item){
24439                 if(item.cmd != 'pencil'){
24440                     item.disable();
24441                 }
24442             });
24443           
24444         }else{
24445             Roo.log("enabling buttons");
24446             if(this.editorcore.initialized){
24447                 this.buttons.each( function(item){
24448                     item.enable();
24449                 });
24450             }
24451             
24452         }
24453         Roo.log("calling toggole on editor");
24454         // tell the editor that it's been pressed..
24455         this.editor.toggleSourceEdit(sourceEditMode);
24456        
24457     }
24458 });
24459
24460
24461
24462
24463
24464 /**
24465  * @class Roo.bootstrap.Table.AbstractSelectionModel
24466  * @extends Roo.util.Observable
24467  * Abstract base class for grid SelectionModels.  It provides the interface that should be
24468  * implemented by descendant classes.  This class should not be directly instantiated.
24469  * @constructor
24470  */
24471 Roo.bootstrap.Table.AbstractSelectionModel = function(){
24472     this.locked = false;
24473     Roo.bootstrap.Table.AbstractSelectionModel.superclass.constructor.call(this);
24474 };
24475
24476
24477 Roo.extend(Roo.bootstrap.Table.AbstractSelectionModel, Roo.util.Observable,  {
24478     /** @ignore Called by the grid automatically. Do not call directly. */
24479     init : function(grid){
24480         this.grid = grid;
24481         this.initEvents();
24482     },
24483
24484     /**
24485      * Locks the selections.
24486      */
24487     lock : function(){
24488         this.locked = true;
24489     },
24490
24491     /**
24492      * Unlocks the selections.
24493      */
24494     unlock : function(){
24495         this.locked = false;
24496     },
24497
24498     /**
24499      * Returns true if the selections are locked.
24500      * @return {Boolean}
24501      */
24502     isLocked : function(){
24503         return this.locked;
24504     }
24505 });
24506 /**
24507  * @extends Roo.bootstrap.Table.AbstractSelectionModel
24508  * @class Roo.bootstrap.Table.RowSelectionModel
24509  * The default SelectionModel used by {@link Roo.bootstrap.Table}.
24510  * It supports multiple selections and keyboard selection/navigation. 
24511  * @constructor
24512  * @param {Object} config
24513  */
24514
24515 Roo.bootstrap.Table.RowSelectionModel = function(config){
24516     Roo.apply(this, config);
24517     this.selections = new Roo.util.MixedCollection(false, function(o){
24518         return o.id;
24519     });
24520
24521     this.last = false;
24522     this.lastActive = false;
24523
24524     this.addEvents({
24525         /**
24526              * @event selectionchange
24527              * Fires when the selection changes
24528              * @param {SelectionModel} this
24529              */
24530             "selectionchange" : true,
24531         /**
24532              * @event afterselectionchange
24533              * Fires after the selection changes (eg. by key press or clicking)
24534              * @param {SelectionModel} this
24535              */
24536             "afterselectionchange" : true,
24537         /**
24538              * @event beforerowselect
24539              * Fires when a row is selected being selected, return false to cancel.
24540              * @param {SelectionModel} this
24541              * @param {Number} rowIndex The selected index
24542              * @param {Boolean} keepExisting False if other selections will be cleared
24543              */
24544             "beforerowselect" : true,
24545         /**
24546              * @event rowselect
24547              * Fires when a row is selected.
24548              * @param {SelectionModel} this
24549              * @param {Number} rowIndex The selected index
24550              * @param {Roo.data.Record} r The record
24551              */
24552             "rowselect" : true,
24553         /**
24554              * @event rowdeselect
24555              * Fires when a row is deselected.
24556              * @param {SelectionModel} this
24557              * @param {Number} rowIndex The selected index
24558              */
24559         "rowdeselect" : true
24560     });
24561     Roo.bootstrap.Table.RowSelectionModel.superclass.constructor.call(this);
24562     this.locked = false;
24563  };
24564
24565 Roo.extend(Roo.bootstrap.Table.RowSelectionModel, Roo.bootstrap.Table.AbstractSelectionModel,  {
24566     /**
24567      * @cfg {Boolean} singleSelect
24568      * True to allow selection of only one row at a time (defaults to false)
24569      */
24570     singleSelect : false,
24571
24572     // private
24573     initEvents : function()
24574     {
24575
24576         //if(!this.grid.enableDragDrop && !this.grid.enableDrag){
24577         //    this.growclickrid.on("mousedown", this.handleMouseDown, this);
24578         //}else{ // allow click to work like normal
24579          //   this.grid.on("rowclick", this.handleDragableRowClick, this);
24580         //}
24581         //this.grid.on("rowdblclick", this.handleMouseDBClick, this);
24582         this.grid.on("rowclick", this.handleMouseDown, this);
24583         
24584         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
24585             "up" : function(e){
24586                 if(!e.shiftKey){
24587                     this.selectPrevious(e.shiftKey);
24588                 }else if(this.last !== false && this.lastActive !== false){
24589                     var last = this.last;
24590                     this.selectRange(this.last,  this.lastActive-1);
24591                     this.grid.getView().focusRow(this.lastActive);
24592                     if(last !== false){
24593                         this.last = last;
24594                     }
24595                 }else{
24596                     this.selectFirstRow();
24597                 }
24598                 this.fireEvent("afterselectionchange", this);
24599             },
24600             "down" : function(e){
24601                 if(!e.shiftKey){
24602                     this.selectNext(e.shiftKey);
24603                 }else if(this.last !== false && this.lastActive !== false){
24604                     var last = this.last;
24605                     this.selectRange(this.last,  this.lastActive+1);
24606                     this.grid.getView().focusRow(this.lastActive);
24607                     if(last !== false){
24608                         this.last = last;
24609                     }
24610                 }else{
24611                     this.selectFirstRow();
24612                 }
24613                 this.fireEvent("afterselectionchange", this);
24614             },
24615             scope: this
24616         });
24617         this.grid.store.on('load', function(){
24618             this.selections.clear();
24619         },this);
24620         /*
24621         var view = this.grid.view;
24622         view.on("refresh", this.onRefresh, this);
24623         view.on("rowupdated", this.onRowUpdated, this);
24624         view.on("rowremoved", this.onRemove, this);
24625         */
24626     },
24627
24628     // private
24629     onRefresh : function()
24630     {
24631         var ds = this.grid.store, i, v = this.grid.view;
24632         var s = this.selections;
24633         s.each(function(r){
24634             if((i = ds.indexOfId(r.id)) != -1){
24635                 v.onRowSelect(i);
24636             }else{
24637                 s.remove(r);
24638             }
24639         });
24640     },
24641
24642     // private
24643     onRemove : function(v, index, r){
24644         this.selections.remove(r);
24645     },
24646
24647     // private
24648     onRowUpdated : function(v, index, r){
24649         if(this.isSelected(r)){
24650             v.onRowSelect(index);
24651         }
24652     },
24653
24654     /**
24655      * Select records.
24656      * @param {Array} records The records to select
24657      * @param {Boolean} keepExisting (optional) True to keep existing selections
24658      */
24659     selectRecords : function(records, keepExisting)
24660     {
24661         if(!keepExisting){
24662             this.clearSelections();
24663         }
24664             var ds = this.grid.store;
24665         for(var i = 0, len = records.length; i < len; i++){
24666             this.selectRow(ds.indexOf(records[i]), true);
24667         }
24668     },
24669
24670     /**
24671      * Gets the number of selected rows.
24672      * @return {Number}
24673      */
24674     getCount : function(){
24675         return this.selections.length;
24676     },
24677
24678     /**
24679      * Selects the first row in the grid.
24680      */
24681     selectFirstRow : function(){
24682         this.selectRow(0);
24683     },
24684
24685     /**
24686      * Select the last row.
24687      * @param {Boolean} keepExisting (optional) True to keep existing selections
24688      */
24689     selectLastRow : function(keepExisting){
24690         //this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
24691         this.selectRow(this.grid.store.getCount() - 1, keepExisting);
24692     },
24693
24694     /**
24695      * Selects the row immediately following the last selected row.
24696      * @param {Boolean} keepExisting (optional) True to keep existing selections
24697      */
24698     selectNext : function(keepExisting)
24699     {
24700             if(this.last !== false && (this.last+1) < this.grid.store.getCount()){
24701             this.selectRow(this.last+1, keepExisting);
24702             this.grid.getView().focusRow(this.last);
24703         }
24704     },
24705
24706     /**
24707      * Selects the row that precedes the last selected row.
24708      * @param {Boolean} keepExisting (optional) True to keep existing selections
24709      */
24710     selectPrevious : function(keepExisting){
24711         if(this.last){
24712             this.selectRow(this.last-1, keepExisting);
24713             this.grid.getView().focusRow(this.last);
24714         }
24715     },
24716
24717     /**
24718      * Returns the selected records
24719      * @return {Array} Array of selected records
24720      */
24721     getSelections : function(){
24722         return [].concat(this.selections.items);
24723     },
24724
24725     /**
24726      * Returns the first selected record.
24727      * @return {Record}
24728      */
24729     getSelected : function(){
24730         return this.selections.itemAt(0);
24731     },
24732
24733
24734     /**
24735      * Clears all selections.
24736      */
24737     clearSelections : function(fast)
24738     {
24739         if(this.locked) {
24740             return;
24741         }
24742         if(fast !== true){
24743                 var ds = this.grid.store;
24744             var s = this.selections;
24745             s.each(function(r){
24746                 this.deselectRow(ds.indexOfId(r.id));
24747             }, this);
24748             s.clear();
24749         }else{
24750             this.selections.clear();
24751         }
24752         this.last = false;
24753     },
24754
24755
24756     /**
24757      * Selects all rows.
24758      */
24759     selectAll : function(){
24760         if(this.locked) {
24761             return;
24762         }
24763         this.selections.clear();
24764         for(var i = 0, len = this.grid.store.getCount(); i < len; i++){
24765             this.selectRow(i, true);
24766         }
24767     },
24768
24769     /**
24770      * Returns True if there is a selection.
24771      * @return {Boolean}
24772      */
24773     hasSelection : function(){
24774         return this.selections.length > 0;
24775     },
24776
24777     /**
24778      * Returns True if the specified row is selected.
24779      * @param {Number/Record} record The record or index of the record to check
24780      * @return {Boolean}
24781      */
24782     isSelected : function(index){
24783             var r = typeof index == "number" ? this.grid.store.getAt(index) : index;
24784         return (r && this.selections.key(r.id) ? true : false);
24785     },
24786
24787     /**
24788      * Returns True if the specified record id is selected.
24789      * @param {String} id The id of record to check
24790      * @return {Boolean}
24791      */
24792     isIdSelected : function(id){
24793         return (this.selections.key(id) ? true : false);
24794     },
24795
24796
24797     // private
24798     handleMouseDBClick : function(e, t){
24799         
24800     },
24801     // private
24802     handleMouseDown : function(e, t)
24803     {
24804             var rowIndex = this.grid.headerShow  ? t.dom.rowIndex - 1 : t.dom.rowIndex ; // first row is header???
24805         if(this.isLocked() || rowIndex < 0 ){
24806             return;
24807         };
24808         if(e.shiftKey && this.last !== false){
24809             var last = this.last;
24810             this.selectRange(last, rowIndex, e.ctrlKey);
24811             this.last = last; // reset the last
24812             t.focus();
24813     
24814         }else{
24815             var isSelected = this.isSelected(rowIndex);
24816             //Roo.log("select row:" + rowIndex);
24817             if(isSelected){
24818                 this.deselectRow(rowIndex);
24819             } else {
24820                         this.selectRow(rowIndex, true);
24821             }
24822     
24823             /*
24824                 if(e.button !== 0 && isSelected){
24825                 alert('rowIndex 2: ' + rowIndex);
24826                     view.focusRow(rowIndex);
24827                 }else if(e.ctrlKey && isSelected){
24828                     this.deselectRow(rowIndex);
24829                 }else if(!isSelected){
24830                     this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
24831                     view.focusRow(rowIndex);
24832                 }
24833             */
24834         }
24835         this.fireEvent("afterselectionchange", this);
24836     },
24837     // private
24838     handleDragableRowClick :  function(grid, rowIndex, e) 
24839     {
24840         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
24841             this.selectRow(rowIndex, false);
24842             grid.view.focusRow(rowIndex);
24843              this.fireEvent("afterselectionchange", this);
24844         }
24845     },
24846     
24847     /**
24848      * Selects multiple rows.
24849      * @param {Array} rows Array of the indexes of the row to select
24850      * @param {Boolean} keepExisting (optional) True to keep existing selections
24851      */
24852     selectRows : function(rows, keepExisting){
24853         if(!keepExisting){
24854             this.clearSelections();
24855         }
24856         for(var i = 0, len = rows.length; i < len; i++){
24857             this.selectRow(rows[i], true);
24858         }
24859     },
24860
24861     /**
24862      * Selects a range of rows. All rows in between startRow and endRow are also selected.
24863      * @param {Number} startRow The index of the first row in the range
24864      * @param {Number} endRow The index of the last row in the range
24865      * @param {Boolean} keepExisting (optional) True to retain existing selections
24866      */
24867     selectRange : function(startRow, endRow, keepExisting){
24868         if(this.locked) {
24869             return;
24870         }
24871         if(!keepExisting){
24872             this.clearSelections();
24873         }
24874         if(startRow <= endRow){
24875             for(var i = startRow; i <= endRow; i++){
24876                 this.selectRow(i, true);
24877             }
24878         }else{
24879             for(var i = startRow; i >= endRow; i--){
24880                 this.selectRow(i, true);
24881             }
24882         }
24883     },
24884
24885     /**
24886      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
24887      * @param {Number} startRow The index of the first row in the range
24888      * @param {Number} endRow The index of the last row in the range
24889      */
24890     deselectRange : function(startRow, endRow, preventViewNotify){
24891         if(this.locked) {
24892             return;
24893         }
24894         for(var i = startRow; i <= endRow; i++){
24895             this.deselectRow(i, preventViewNotify);
24896         }
24897     },
24898
24899     /**
24900      * Selects a row.
24901      * @param {Number} row The index of the row to select
24902      * @param {Boolean} keepExisting (optional) True to keep existing selections
24903      */
24904     selectRow : function(index, keepExisting, preventViewNotify)
24905     {
24906             if(this.locked || (index < 0 || index > this.grid.store.getCount())) {
24907             return;
24908         }
24909         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
24910             if(!keepExisting || this.singleSelect){
24911                 this.clearSelections();
24912             }
24913             
24914             var r = this.grid.store.getAt(index);
24915             //console.log('selectRow - record id :' + r.id);
24916             
24917             this.selections.add(r);
24918             this.last = this.lastActive = index;
24919             if(!preventViewNotify){
24920                 var proxy = new Roo.Element(
24921                                 this.grid.getRowDom(index)
24922                 );
24923                 proxy.addClass('bg-info info');
24924             }
24925             this.fireEvent("rowselect", this, index, r);
24926             this.fireEvent("selectionchange", this);
24927         }
24928     },
24929
24930     /**
24931      * Deselects a row.
24932      * @param {Number} row The index of the row to deselect
24933      */
24934     deselectRow : function(index, preventViewNotify)
24935     {
24936         if(this.locked) {
24937             return;
24938         }
24939         if(this.last == index){
24940             this.last = false;
24941         }
24942         if(this.lastActive == index){
24943             this.lastActive = false;
24944         }
24945         
24946         var r = this.grid.store.getAt(index);
24947         if (!r) {
24948             return;
24949         }
24950         
24951         this.selections.remove(r);
24952         //.console.log('deselectRow - record id :' + r.id);
24953         if(!preventViewNotify){
24954         
24955             var proxy = new Roo.Element(
24956                 this.grid.getRowDom(index)
24957             );
24958             proxy.removeClass('bg-info info');
24959         }
24960         this.fireEvent("rowdeselect", this, index);
24961         this.fireEvent("selectionchange", this);
24962     },
24963
24964     // private
24965     restoreLast : function(){
24966         if(this._last){
24967             this.last = this._last;
24968         }
24969     },
24970
24971     // private
24972     acceptsNav : function(row, col, cm){
24973         return !cm.isHidden(col) && cm.isCellEditable(col, row);
24974     },
24975
24976     // private
24977     onEditorKey : function(field, e){
24978         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
24979         if(k == e.TAB){
24980             e.stopEvent();
24981             ed.completeEdit();
24982             if(e.shiftKey){
24983                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
24984             }else{
24985                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
24986             }
24987         }else if(k == e.ENTER && !e.ctrlKey){
24988             e.stopEvent();
24989             ed.completeEdit();
24990             if(e.shiftKey){
24991                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
24992             }else{
24993                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
24994             }
24995         }else if(k == e.ESC){
24996             ed.cancelEdit();
24997         }
24998         if(newCell){
24999             g.startEditing(newCell[0], newCell[1]);
25000         }
25001     }
25002 });
25003 /*
25004  * Based on:
25005  * Ext JS Library 1.1.1
25006  * Copyright(c) 2006-2007, Ext JS, LLC.
25007  *
25008  * Originally Released Under LGPL - original licence link has changed is not relivant.
25009  *
25010  * Fork - LGPL
25011  * <script type="text/javascript">
25012  */
25013  
25014 /**
25015  * @class Roo.bootstrap.PagingToolbar
25016  * @extends Roo.bootstrap.NavSimplebar
25017  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
25018  * @constructor
25019  * Create a new PagingToolbar
25020  * @param {Object} config The config object
25021  * @param {Roo.data.Store} store
25022  */
25023 Roo.bootstrap.PagingToolbar = function(config)
25024 {
25025     // old args format still supported... - xtype is prefered..
25026         // created from xtype...
25027     
25028     this.ds = config.dataSource;
25029     
25030     if (config.store && !this.ds) {
25031         this.store= Roo.factory(config.store, Roo.data);
25032         this.ds = this.store;
25033         this.ds.xmodule = this.xmodule || false;
25034     }
25035     
25036     this.toolbarItems = [];
25037     if (config.items) {
25038         this.toolbarItems = config.items;
25039     }
25040     
25041     Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, config);
25042     
25043     this.cursor = 0;
25044     
25045     if (this.ds) { 
25046         this.bind(this.ds);
25047     }
25048     
25049     if (Roo.bootstrap.version == 4) {
25050         this.navgroup = new Roo.bootstrap.ButtonGroup({ cls: 'pagination' });
25051     } else {
25052         this.navgroup = new Roo.bootstrap.NavGroup({ cls: 'pagination' });
25053     }
25054     
25055 };
25056
25057 Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.NavSimplebar, {
25058     /**
25059      * @cfg {Roo.data.Store} dataSource
25060      * The underlying data store providing the paged data
25061      */
25062     /**
25063      * @cfg {String/HTMLElement/Element} container
25064      * container The id or element that will contain the toolbar
25065      */
25066     /**
25067      * @cfg {Boolean} displayInfo
25068      * True to display the displayMsg (defaults to false)
25069      */
25070     /**
25071      * @cfg {Number} pageSize
25072      * The number of records to display per page (defaults to 20)
25073      */
25074     pageSize: 20,
25075     /**
25076      * @cfg {String} displayMsg
25077      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
25078      */
25079     displayMsg : 'Displaying {0} - {1} of {2}',
25080     /**
25081      * @cfg {String} emptyMsg
25082      * The message to display when no records are found (defaults to "No data to display")
25083      */
25084     emptyMsg : 'No data to display',
25085     /**
25086      * Customizable piece of the default paging text (defaults to "Page")
25087      * @type String
25088      */
25089     beforePageText : "Page",
25090     /**
25091      * Customizable piece of the default paging text (defaults to "of %0")
25092      * @type String
25093      */
25094     afterPageText : "of {0}",
25095     /**
25096      * Customizable piece of the default paging text (defaults to "First Page")
25097      * @type String
25098      */
25099     firstText : "First Page",
25100     /**
25101      * Customizable piece of the default paging text (defaults to "Previous Page")
25102      * @type String
25103      */
25104     prevText : "Previous Page",
25105     /**
25106      * Customizable piece of the default paging text (defaults to "Next Page")
25107      * @type String
25108      */
25109     nextText : "Next Page",
25110     /**
25111      * Customizable piece of the default paging text (defaults to "Last Page")
25112      * @type String
25113      */
25114     lastText : "Last Page",
25115     /**
25116      * Customizable piece of the default paging text (defaults to "Refresh")
25117      * @type String
25118      */
25119     refreshText : "Refresh",
25120
25121     buttons : false,
25122     // private
25123     onRender : function(ct, position) 
25124     {
25125         Roo.bootstrap.PagingToolbar.superclass.onRender.call(this, ct, position);
25126         this.navgroup.parentId = this.id;
25127         this.navgroup.onRender(this.el, null);
25128         // add the buttons to the navgroup
25129         
25130         if(this.displayInfo){
25131             this.el.select('ul.navbar-nav',true).first().createChild({cls:'x-paging-info'});
25132             this.displayEl = this.el.select('.x-paging-info', true).first();
25133 //            var navel = this.navgroup.addItem( { tagtype : 'span', html : '', cls : 'x-paging-info', preventDefault : true } );
25134 //            this.displayEl = navel.el.select('span',true).first();
25135         }
25136         
25137         var _this = this;
25138         
25139         if(this.buttons){
25140             Roo.each(_this.buttons, function(e){ // this might need to use render????
25141                Roo.factory(e).render(_this.el);
25142             });
25143         }
25144             
25145         Roo.each(_this.toolbarItems, function(e) {
25146             _this.navgroup.addItem(e);
25147         });
25148         
25149         
25150         this.first = this.navgroup.addItem({
25151             tooltip: this.firstText,
25152             cls: "prev btn-outline-secondary",
25153             html : ' <i class="fa fa-step-backward"></i>',
25154             disabled: true,
25155             preventDefault: true,
25156             listeners : { click : this.onClick.createDelegate(this, ["first"]) }
25157         });
25158         
25159         this.prev =  this.navgroup.addItem({
25160             tooltip: this.prevText,
25161             cls: "prev btn-outline-secondary",
25162             html : ' <i class="fa fa-backward"></i>',
25163             disabled: true,
25164             preventDefault: true,
25165             listeners : { click :  this.onClick.createDelegate(this, ["prev"]) }
25166         });
25167     //this.addSeparator();
25168         
25169         
25170         var field = this.navgroup.addItem( {
25171             tagtype : 'span',
25172             cls : 'x-paging-position  btn-outline-secondary',
25173              disabled: true,
25174             html : this.beforePageText  +
25175                 '<input type="text" size="3" value="1" class="x-grid-page-number">' +
25176                 '<span class="x-paging-after">' +  String.format(this.afterPageText, 1) + '</span>'
25177          } ); //?? escaped?
25178         
25179         this.field = field.el.select('input', true).first();
25180         this.field.on("keydown", this.onPagingKeydown, this);
25181         this.field.on("focus", function(){this.dom.select();});
25182     
25183     
25184         this.afterTextEl =  field.el.select('.x-paging-after',true).first();
25185         //this.field.setHeight(18);
25186         //this.addSeparator();
25187         this.next = this.navgroup.addItem({
25188             tooltip: this.nextText,
25189             cls: "next btn-outline-secondary",
25190             html : ' <i class="fa fa-forward"></i>',
25191             disabled: true,
25192             preventDefault: true,
25193             listeners : { click :  this.onClick.createDelegate(this, ["next"]) }
25194         });
25195         this.last = this.navgroup.addItem({
25196             tooltip: this.lastText,
25197             html : ' <i class="fa fa-step-forward"></i>',
25198             cls: "next btn-outline-secondary",
25199             disabled: true,
25200             preventDefault: true,
25201             listeners : { click :  this.onClick.createDelegate(this, ["last"]) }
25202         });
25203     //this.addSeparator();
25204         this.loading = this.navgroup.addItem({
25205             tooltip: this.refreshText,
25206             cls: "btn-outline-secondary",
25207             html : ' <i class="fa fa-refresh"></i>',
25208             preventDefault: true,
25209             listeners : { click : this.onClick.createDelegate(this, ["refresh"]) }
25210         });
25211         
25212     },
25213
25214     // private
25215     updateInfo : function(){
25216         if(this.displayEl){
25217             var count = (typeof(this.getCount) == 'undefined') ? this.ds.getCount() : this.getCount();
25218             var msg = count == 0 ?
25219                 this.emptyMsg :
25220                 String.format(
25221                     this.displayMsg,
25222                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
25223                 );
25224             this.displayEl.update(msg);
25225         }
25226     },
25227
25228     // private
25229     onLoad : function(ds, r, o)
25230     {
25231         this.cursor = o.params.start ? o.params.start : 0;
25232         
25233         var d = this.getPageData(),
25234             ap = d.activePage,
25235             ps = d.pages;
25236         
25237         
25238         this.afterTextEl.dom.innerHTML = String.format(this.afterPageText, d.pages);
25239         this.field.dom.value = ap;
25240         this.first.setDisabled(ap == 1);
25241         this.prev.setDisabled(ap == 1);
25242         this.next.setDisabled(ap == ps);
25243         this.last.setDisabled(ap == ps);
25244         this.loading.enable();
25245         this.updateInfo();
25246     },
25247
25248     // private
25249     getPageData : function(){
25250         var total = this.ds.getTotalCount();
25251         return {
25252             total : total,
25253             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
25254             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
25255         };
25256     },
25257
25258     // private
25259     onLoadError : function(){
25260         this.loading.enable();
25261     },
25262
25263     // private
25264     onPagingKeydown : function(e){
25265         var k = e.getKey();
25266         var d = this.getPageData();
25267         if(k == e.RETURN){
25268             var v = this.field.dom.value, pageNum;
25269             if(!v || isNaN(pageNum = parseInt(v, 10))){
25270                 this.field.dom.value = d.activePage;
25271                 return;
25272             }
25273             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
25274             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25275             e.stopEvent();
25276         }
25277         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))
25278         {
25279           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
25280           this.field.dom.value = pageNum;
25281           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
25282           e.stopEvent();
25283         }
25284         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
25285         {
25286           var v = this.field.dom.value, pageNum; 
25287           var increment = (e.shiftKey) ? 10 : 1;
25288           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
25289                 increment *= -1;
25290           }
25291           if(!v || isNaN(pageNum = parseInt(v, 10))) {
25292             this.field.dom.value = d.activePage;
25293             return;
25294           }
25295           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
25296           {
25297             this.field.dom.value = parseInt(v, 10) + increment;
25298             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
25299             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25300           }
25301           e.stopEvent();
25302         }
25303     },
25304
25305     // private
25306     beforeLoad : function(){
25307         if(this.loading){
25308             this.loading.disable();
25309         }
25310     },
25311
25312     // private
25313     onClick : function(which){
25314         
25315         var ds = this.ds;
25316         if (!ds) {
25317             return;
25318         }
25319         
25320         switch(which){
25321             case "first":
25322                 ds.load({params:{start: 0, limit: this.pageSize}});
25323             break;
25324             case "prev":
25325                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
25326             break;
25327             case "next":
25328                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
25329             break;
25330             case "last":
25331                 var total = ds.getTotalCount();
25332                 var extra = total % this.pageSize;
25333                 var lastStart = extra ? (total - extra) : total-this.pageSize;
25334                 ds.load({params:{start: lastStart, limit: this.pageSize}});
25335             break;
25336             case "refresh":
25337                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
25338             break;
25339         }
25340     },
25341
25342     /**
25343      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
25344      * @param {Roo.data.Store} store The data store to unbind
25345      */
25346     unbind : function(ds){
25347         ds.un("beforeload", this.beforeLoad, this);
25348         ds.un("load", this.onLoad, this);
25349         ds.un("loadexception", this.onLoadError, this);
25350         ds.un("remove", this.updateInfo, this);
25351         ds.un("add", this.updateInfo, this);
25352         this.ds = undefined;
25353     },
25354
25355     /**
25356      * Binds the paging toolbar to the specified {@link Roo.data.Store}
25357      * @param {Roo.data.Store} store The data store to bind
25358      */
25359     bind : function(ds){
25360         ds.on("beforeload", this.beforeLoad, this);
25361         ds.on("load", this.onLoad, this);
25362         ds.on("loadexception", this.onLoadError, this);
25363         ds.on("remove", this.updateInfo, this);
25364         ds.on("add", this.updateInfo, this);
25365         this.ds = ds;
25366     }
25367 });/*
25368  * - LGPL
25369  *
25370  * element
25371  * 
25372  */
25373
25374 /**
25375  * @class Roo.bootstrap.MessageBar
25376  * @extends Roo.bootstrap.Component
25377  * Bootstrap MessageBar class
25378  * @cfg {String} html contents of the MessageBar
25379  * @cfg {String} weight (info | success | warning | danger) default info
25380  * @cfg {String} beforeClass insert the bar before the given class
25381  * @cfg {Boolean} closable (true | false) default false
25382  * @cfg {Boolean} fixed (true | false) default false, fix the bar at the top
25383  * 
25384  * @constructor
25385  * Create a new Element
25386  * @param {Object} config The config object
25387  */
25388
25389 Roo.bootstrap.MessageBar = function(config){
25390     Roo.bootstrap.MessageBar.superclass.constructor.call(this, config);
25391 };
25392
25393 Roo.extend(Roo.bootstrap.MessageBar, Roo.bootstrap.Component,  {
25394     
25395     html: '',
25396     weight: 'info',
25397     closable: false,
25398     fixed: false,
25399     beforeClass: 'bootstrap-sticky-wrap',
25400     
25401     getAutoCreate : function(){
25402         
25403         var cfg = {
25404             tag: 'div',
25405             cls: 'alert alert-dismissable alert-' + this.weight,
25406             cn: [
25407                 {
25408                     tag: 'span',
25409                     cls: 'message',
25410                     html: this.html || ''
25411                 }
25412             ]
25413         };
25414         
25415         if(this.fixed){
25416             cfg.cls += ' alert-messages-fixed';
25417         }
25418         
25419         if(this.closable){
25420             cfg.cn.push({
25421                 tag: 'button',
25422                 cls: 'close',
25423                 html: 'x'
25424             });
25425         }
25426         
25427         return cfg;
25428     },
25429     
25430     onRender : function(ct, position)
25431     {
25432         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
25433         
25434         if(!this.el){
25435             var cfg = Roo.apply({},  this.getAutoCreate());
25436             cfg.id = Roo.id();
25437             
25438             if (this.cls) {
25439                 cfg.cls += ' ' + this.cls;
25440             }
25441             if (this.style) {
25442                 cfg.style = this.style;
25443             }
25444             this.el = Roo.get(document.body).createChild(cfg, Roo.select('.'+this.beforeClass, true).first());
25445             
25446             this.el.setVisibilityMode(Roo.Element.DISPLAY);
25447         }
25448         
25449         this.el.select('>button.close').on('click', this.hide, this);
25450         
25451     },
25452     
25453     show : function()
25454     {
25455         if (!this.rendered) {
25456             this.render();
25457         }
25458         
25459         this.el.show();
25460         
25461         this.fireEvent('show', this);
25462         
25463     },
25464     
25465     hide : function()
25466     {
25467         if (!this.rendered) {
25468             this.render();
25469         }
25470         
25471         this.el.hide();
25472         
25473         this.fireEvent('hide', this);
25474     },
25475     
25476     update : function()
25477     {
25478 //        var e = this.el.dom.firstChild;
25479 //        
25480 //        if(this.closable){
25481 //            e = e.nextSibling;
25482 //        }
25483 //        
25484 //        e.data = this.html || '';
25485
25486         this.el.select('>.message', true).first().dom.innerHTML = this.html || '';
25487     }
25488    
25489 });
25490
25491  
25492
25493      /*
25494  * - LGPL
25495  *
25496  * Graph
25497  * 
25498  */
25499
25500
25501 /**
25502  * @class Roo.bootstrap.Graph
25503  * @extends Roo.bootstrap.Component
25504  * Bootstrap Graph class
25505 > Prameters
25506  -sm {number} sm 4
25507  -md {number} md 5
25508  @cfg {String} graphtype  bar | vbar | pie
25509  @cfg {number} g_x coodinator | centre x (pie)
25510  @cfg {number} g_y coodinator | centre y (pie)
25511  @cfg {number} g_r radius (pie)
25512  @cfg {number} g_height height of the chart (respected by all elements in the set)
25513  @cfg {number} g_width width of the chart (respected by all elements in the set)
25514  @cfg {Object} title The title of the chart
25515     
25516  -{Array}  values
25517  -opts (object) options for the chart 
25518      o {
25519      o type (string) type of endings of the bar. Default: 'square'. Other options are: 'round', 'sharp', 'soft'.
25520      o gutter (number)(string) default '20%' (WHAT DOES IT DO?)
25521      o vgutter (number)
25522      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.
25523      o stacked (boolean) whether or not to tread values as in a stacked bar chart
25524      o to
25525      o stretch (boolean)
25526      o }
25527  -opts (object) options for the pie
25528      o{
25529      o cut
25530      o startAngle (number)
25531      o endAngle (number)
25532      } 
25533  *
25534  * @constructor
25535  * Create a new Input
25536  * @param {Object} config The config object
25537  */
25538
25539 Roo.bootstrap.Graph = function(config){
25540     Roo.bootstrap.Graph.superclass.constructor.call(this, config);
25541     
25542     this.addEvents({
25543         // img events
25544         /**
25545          * @event click
25546          * The img click event for the img.
25547          * @param {Roo.EventObject} e
25548          */
25549         "click" : true
25550     });
25551 };
25552
25553 Roo.extend(Roo.bootstrap.Graph, Roo.bootstrap.Component,  {
25554     
25555     sm: 4,
25556     md: 5,
25557     graphtype: 'bar',
25558     g_height: 250,
25559     g_width: 400,
25560     g_x: 50,
25561     g_y: 50,
25562     g_r: 30,
25563     opts:{
25564         //g_colors: this.colors,
25565         g_type: 'soft',
25566         g_gutter: '20%'
25567
25568     },
25569     title : false,
25570
25571     getAutoCreate : function(){
25572         
25573         var cfg = {
25574             tag: 'div',
25575             html : null
25576         };
25577         
25578         
25579         return  cfg;
25580     },
25581
25582     onRender : function(ct,position){
25583         
25584         
25585         Roo.bootstrap.Graph.superclass.onRender.call(this,ct,position);
25586         
25587         if (typeof(Raphael) == 'undefined') {
25588             Roo.bootstrap.MessageBox.alert("Error","Raphael is not availabe");
25589             return;
25590         }
25591         
25592         this.raphael = Raphael(this.el.dom);
25593         
25594                     // data1 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25595                     // data2 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25596                     // data3 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25597                     // txtattr = { font: "12px 'Fontin Sans', Fontin-Sans, sans-serif" };
25598                 /*
25599                 r.text(160, 10, "Single Series Chart").attr(txtattr);
25600                 r.text(480, 10, "Multiline Series Chart").attr(txtattr);
25601                 r.text(160, 250, "Multiple Series Stacked Chart").attr(txtattr);
25602                 r.text(480, 250, 'Multiline Series Stacked Vertical Chart. Type "round"').attr(txtattr);
25603                 
25604                 r.barchart(10, 10, 300, 220, [[55, 20, 13, 32, 5, 1, 2, 10]], 0, {type: "sharp"});
25605                 r.barchart(330, 10, 300, 220, data1);
25606                 r.barchart(10, 250, 300, 220, data2, {stacked: true});
25607                 r.barchart(330, 250, 300, 220, data3, {stacked: true, type: "round"});
25608                 */
25609                 
25610                 // var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25611                 // r.barchart(30, 30, 560, 250,  xdata, {
25612                 //    labels : [55, 20, 13, 32, 5, 1, 2, 10,5 , 10],
25613                 //     axis : "0 0 1 1",
25614                 //     axisxlabels :  xdata
25615                 //     //yvalues : cols,
25616                    
25617                 // });
25618 //        var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25619 //        
25620 //        this.load(null,xdata,{
25621 //                axis : "0 0 1 1",
25622 //                axisxlabels :  xdata
25623 //                });
25624
25625     },
25626
25627     load : function(graphtype,xdata,opts)
25628     {
25629         this.raphael.clear();
25630         if(!graphtype) {
25631             graphtype = this.graphtype;
25632         }
25633         if(!opts){
25634             opts = this.opts;
25635         }
25636         var r = this.raphael,
25637             fin = function () {
25638                 this.flag = r.popup(this.bar.x, this.bar.y, this.bar.value || "0").insertBefore(this);
25639             },
25640             fout = function () {
25641                 this.flag.animate({opacity: 0}, 300, function () {this.remove();});
25642             },
25643             pfin = function() {
25644                 this.sector.stop();
25645                 this.sector.scale(1.1, 1.1, this.cx, this.cy);
25646
25647                 if (this.label) {
25648                     this.label[0].stop();
25649                     this.label[0].attr({ r: 7.5 });
25650                     this.label[1].attr({ "font-weight": 800 });
25651                 }
25652             },
25653             pfout = function() {
25654                 this.sector.animate({ transform: 's1 1 ' + this.cx + ' ' + this.cy }, 500, "bounce");
25655
25656                 if (this.label) {
25657                     this.label[0].animate({ r: 5 }, 500, "bounce");
25658                     this.label[1].attr({ "font-weight": 400 });
25659                 }
25660             };
25661
25662         switch(graphtype){
25663             case 'bar':
25664                 this.raphael.barchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25665                 break;
25666             case 'hbar':
25667                 this.raphael.hbarchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25668                 break;
25669             case 'pie':
25670 //                opts = { legend: ["%% - Enterprise Users", "% - ddd","Chrome Users"], legendpos: "west", 
25671 //                href: ["http://raphaeljs.com", "http://g.raphaeljs.com"]};
25672 //            
25673                 this.raphael.piechart(this.g_x,this.g_y,this.g_r,xdata,opts).hover(pfin, pfout);
25674                 
25675                 break;
25676
25677         }
25678         
25679         if(this.title){
25680             this.raphael.text(this.title.x, this.title.y, this.title.text).attr(this.title.attr);
25681         }
25682         
25683     },
25684     
25685     setTitle: function(o)
25686     {
25687         this.title = o;
25688     },
25689     
25690     initEvents: function() {
25691         
25692         if(!this.href){
25693             this.el.on('click', this.onClick, this);
25694         }
25695     },
25696     
25697     onClick : function(e)
25698     {
25699         Roo.log('img onclick');
25700         this.fireEvent('click', this, e);
25701     }
25702    
25703 });
25704
25705  
25706 /*
25707  * - LGPL
25708  *
25709  * numberBox
25710  * 
25711  */
25712 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25713
25714 /**
25715  * @class Roo.bootstrap.dash.NumberBox
25716  * @extends Roo.bootstrap.Component
25717  * Bootstrap NumberBox class
25718  * @cfg {String} headline Box headline
25719  * @cfg {String} content Box content
25720  * @cfg {String} icon Box icon
25721  * @cfg {String} footer Footer text
25722  * @cfg {String} fhref Footer href
25723  * 
25724  * @constructor
25725  * Create a new NumberBox
25726  * @param {Object} config The config object
25727  */
25728
25729
25730 Roo.bootstrap.dash.NumberBox = function(config){
25731     Roo.bootstrap.dash.NumberBox.superclass.constructor.call(this, config);
25732     
25733 };
25734
25735 Roo.extend(Roo.bootstrap.dash.NumberBox, Roo.bootstrap.Component,  {
25736     
25737     headline : '',
25738     content : '',
25739     icon : '',
25740     footer : '',
25741     fhref : '',
25742     ficon : '',
25743     
25744     getAutoCreate : function(){
25745         
25746         var cfg = {
25747             tag : 'div',
25748             cls : 'small-box ',
25749             cn : [
25750                 {
25751                     tag : 'div',
25752                     cls : 'inner',
25753                     cn :[
25754                         {
25755                             tag : 'h3',
25756                             cls : 'roo-headline',
25757                             html : this.headline
25758                         },
25759                         {
25760                             tag : 'p',
25761                             cls : 'roo-content',
25762                             html : this.content
25763                         }
25764                     ]
25765                 }
25766             ]
25767         };
25768         
25769         if(this.icon){
25770             cfg.cn.push({
25771                 tag : 'div',
25772                 cls : 'icon',
25773                 cn :[
25774                     {
25775                         tag : 'i',
25776                         cls : 'ion ' + this.icon
25777                     }
25778                 ]
25779             });
25780         }
25781         
25782         if(this.footer){
25783             var footer = {
25784                 tag : 'a',
25785                 cls : 'small-box-footer',
25786                 href : this.fhref || '#',
25787                 html : this.footer
25788             };
25789             
25790             cfg.cn.push(footer);
25791             
25792         }
25793         
25794         return  cfg;
25795     },
25796
25797     onRender : function(ct,position){
25798         Roo.bootstrap.dash.NumberBox.superclass.onRender.call(this,ct,position);
25799
25800
25801        
25802                 
25803     },
25804
25805     setHeadline: function (value)
25806     {
25807         this.el.select('.roo-headline',true).first().dom.innerHTML = value;
25808     },
25809     
25810     setFooter: function (value, href)
25811     {
25812         this.el.select('a.small-box-footer',true).first().dom.innerHTML = value;
25813         
25814         if(href){
25815             this.el.select('a.small-box-footer',true).first().attr('href', href);
25816         }
25817         
25818     },
25819
25820     setContent: function (value)
25821     {
25822         this.el.select('.roo-content',true).first().dom.innerHTML = value;
25823     },
25824
25825     initEvents: function() 
25826     {   
25827         
25828     }
25829     
25830 });
25831
25832  
25833 /*
25834  * - LGPL
25835  *
25836  * TabBox
25837  * 
25838  */
25839 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25840
25841 /**
25842  * @class Roo.bootstrap.dash.TabBox
25843  * @extends Roo.bootstrap.Component
25844  * Bootstrap TabBox class
25845  * @cfg {String} title Title of the TabBox
25846  * @cfg {String} icon Icon of the TabBox
25847  * @cfg {Boolean} showtabs (true|false) show the tabs default true
25848  * @cfg {Boolean} tabScrollable (true|false) tab scrollable when mobile view default false
25849  * 
25850  * @constructor
25851  * Create a new TabBox
25852  * @param {Object} config The config object
25853  */
25854
25855
25856 Roo.bootstrap.dash.TabBox = function(config){
25857     Roo.bootstrap.dash.TabBox.superclass.constructor.call(this, config);
25858     this.addEvents({
25859         // raw events
25860         /**
25861          * @event addpane
25862          * When a pane is added
25863          * @param {Roo.bootstrap.dash.TabPane} pane
25864          */
25865         "addpane" : true,
25866         /**
25867          * @event activatepane
25868          * When a pane is activated
25869          * @param {Roo.bootstrap.dash.TabPane} pane
25870          */
25871         "activatepane" : true
25872         
25873          
25874     });
25875     
25876     this.panes = [];
25877 };
25878
25879 Roo.extend(Roo.bootstrap.dash.TabBox, Roo.bootstrap.Component,  {
25880
25881     title : '',
25882     icon : false,
25883     showtabs : true,
25884     tabScrollable : false,
25885     
25886     getChildContainer : function()
25887     {
25888         return this.el.select('.tab-content', true).first();
25889     },
25890     
25891     getAutoCreate : function(){
25892         
25893         var header = {
25894             tag: 'li',
25895             cls: 'pull-left header',
25896             html: this.title,
25897             cn : []
25898         };
25899         
25900         if(this.icon){
25901             header.cn.push({
25902                 tag: 'i',
25903                 cls: 'fa ' + this.icon
25904             });
25905         }
25906         
25907         var h = {
25908             tag: 'ul',
25909             cls: 'nav nav-tabs pull-right',
25910             cn: [
25911                 header
25912             ]
25913         };
25914         
25915         if(this.tabScrollable){
25916             h = {
25917                 tag: 'div',
25918                 cls: 'tab-header',
25919                 cn: [
25920                     {
25921                         tag: 'ul',
25922                         cls: 'nav nav-tabs pull-right',
25923                         cn: [
25924                             header
25925                         ]
25926                     }
25927                 ]
25928             };
25929         }
25930         
25931         var cfg = {
25932             tag: 'div',
25933             cls: 'nav-tabs-custom',
25934             cn: [
25935                 h,
25936                 {
25937                     tag: 'div',
25938                     cls: 'tab-content no-padding',
25939                     cn: []
25940                 }
25941             ]
25942         };
25943
25944         return  cfg;
25945     },
25946     initEvents : function()
25947     {
25948         //Roo.log('add add pane handler');
25949         this.on('addpane', this.onAddPane, this);
25950     },
25951      /**
25952      * Updates the box title
25953      * @param {String} html to set the title to.
25954      */
25955     setTitle : function(value)
25956     {
25957         this.el.select('.nav-tabs .header', true).first().dom.innerHTML = value;
25958     },
25959     onAddPane : function(pane)
25960     {
25961         this.panes.push(pane);
25962         //Roo.log('addpane');
25963         //Roo.log(pane);
25964         // tabs are rendere left to right..
25965         if(!this.showtabs){
25966             return;
25967         }
25968         
25969         var ctr = this.el.select('.nav-tabs', true).first();
25970          
25971          
25972         var existing = ctr.select('.nav-tab',true);
25973         var qty = existing.getCount();;
25974         
25975         
25976         var tab = ctr.createChild({
25977             tag : 'li',
25978             cls : 'nav-tab' + (qty ? '' : ' active'),
25979             cn : [
25980                 {
25981                     tag : 'a',
25982                     href:'#',
25983                     html : pane.title
25984                 }
25985             ]
25986         }, qty ? existing.first().dom : ctr.select('.header', true).first().dom );
25987         pane.tab = tab;
25988         
25989         tab.on('click', this.onTabClick.createDelegate(this, [pane], true));
25990         if (!qty) {
25991             pane.el.addClass('active');
25992         }
25993         
25994                 
25995     },
25996     onTabClick : function(ev,un,ob,pane)
25997     {
25998         //Roo.log('tab - prev default');
25999         ev.preventDefault();
26000         
26001         
26002         this.el.select('.nav-tabs li.nav-tab', true).removeClass('active');
26003         pane.tab.addClass('active');
26004         //Roo.log(pane.title);
26005         this.getChildContainer().select('.tab-pane',true).removeClass('active');
26006         // technically we should have a deactivate event.. but maybe add later.
26007         // and it should not de-activate the selected tab...
26008         this.fireEvent('activatepane', pane);
26009         pane.el.addClass('active');
26010         pane.fireEvent('activate');
26011         
26012         
26013     },
26014     
26015     getActivePane : function()
26016     {
26017         var r = false;
26018         Roo.each(this.panes, function(p) {
26019             if(p.el.hasClass('active')){
26020                 r = p;
26021                 return false;
26022             }
26023             
26024             return;
26025         });
26026         
26027         return r;
26028     }
26029     
26030     
26031 });
26032
26033  
26034 /*
26035  * - LGPL
26036  *
26037  * Tab pane
26038  * 
26039  */
26040 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
26041 /**
26042  * @class Roo.bootstrap.TabPane
26043  * @extends Roo.bootstrap.Component
26044  * Bootstrap TabPane class
26045  * @cfg {Boolean} active (false | true) Default false
26046  * @cfg {String} title title of panel
26047
26048  * 
26049  * @constructor
26050  * Create a new TabPane
26051  * @param {Object} config The config object
26052  */
26053
26054 Roo.bootstrap.dash.TabPane = function(config){
26055     Roo.bootstrap.dash.TabPane.superclass.constructor.call(this, config);
26056     
26057     this.addEvents({
26058         // raw events
26059         /**
26060          * @event activate
26061          * When a pane is activated
26062          * @param {Roo.bootstrap.dash.TabPane} pane
26063          */
26064         "activate" : true
26065          
26066     });
26067 };
26068
26069 Roo.extend(Roo.bootstrap.dash.TabPane, Roo.bootstrap.Component,  {
26070     
26071     active : false,
26072     title : '',
26073     
26074     // the tabBox that this is attached to.
26075     tab : false,
26076      
26077     getAutoCreate : function() 
26078     {
26079         var cfg = {
26080             tag: 'div',
26081             cls: 'tab-pane'
26082         };
26083         
26084         if(this.active){
26085             cfg.cls += ' active';
26086         }
26087         
26088         return cfg;
26089     },
26090     initEvents  : function()
26091     {
26092         //Roo.log('trigger add pane handler');
26093         this.parent().fireEvent('addpane', this)
26094     },
26095     
26096      /**
26097      * Updates the tab title 
26098      * @param {String} html to set the title to.
26099      */
26100     setTitle: function(str)
26101     {
26102         if (!this.tab) {
26103             return;
26104         }
26105         this.title = str;
26106         this.tab.select('a', true).first().dom.innerHTML = str;
26107         
26108     }
26109     
26110     
26111     
26112 });
26113
26114  
26115
26116
26117  /*
26118  * - LGPL
26119  *
26120  * menu
26121  * 
26122  */
26123 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26124
26125 /**
26126  * @class Roo.bootstrap.menu.Menu
26127  * @extends Roo.bootstrap.Component
26128  * Bootstrap Menu class - container for Menu
26129  * @cfg {String} html Text of the menu
26130  * @cfg {String} weight (default | primary | success | info | warning | danger | inverse)
26131  * @cfg {String} icon Font awesome icon
26132  * @cfg {String} pos Menu align to (top | bottom) default bottom
26133  * 
26134  * 
26135  * @constructor
26136  * Create a new Menu
26137  * @param {Object} config The config object
26138  */
26139
26140
26141 Roo.bootstrap.menu.Menu = function(config){
26142     Roo.bootstrap.menu.Menu.superclass.constructor.call(this, config);
26143     
26144     this.addEvents({
26145         /**
26146          * @event beforeshow
26147          * Fires before this menu is displayed
26148          * @param {Roo.bootstrap.menu.Menu} this
26149          */
26150         beforeshow : true,
26151         /**
26152          * @event beforehide
26153          * Fires before this menu is hidden
26154          * @param {Roo.bootstrap.menu.Menu} this
26155          */
26156         beforehide : true,
26157         /**
26158          * @event show
26159          * Fires after this menu is displayed
26160          * @param {Roo.bootstrap.menu.Menu} this
26161          */
26162         show : true,
26163         /**
26164          * @event hide
26165          * Fires after this menu is hidden
26166          * @param {Roo.bootstrap.menu.Menu} this
26167          */
26168         hide : true,
26169         /**
26170          * @event click
26171          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
26172          * @param {Roo.bootstrap.menu.Menu} this
26173          * @param {Roo.EventObject} e
26174          */
26175         click : true
26176     });
26177     
26178 };
26179
26180 Roo.extend(Roo.bootstrap.menu.Menu, Roo.bootstrap.Component,  {
26181     
26182     submenu : false,
26183     html : '',
26184     weight : 'default',
26185     icon : false,
26186     pos : 'bottom',
26187     
26188     
26189     getChildContainer : function() {
26190         if(this.isSubMenu){
26191             return this.el;
26192         }
26193         
26194         return this.el.select('ul.dropdown-menu', true).first();  
26195     },
26196     
26197     getAutoCreate : function()
26198     {
26199         var text = [
26200             {
26201                 tag : 'span',
26202                 cls : 'roo-menu-text',
26203                 html : this.html
26204             }
26205         ];
26206         
26207         if(this.icon){
26208             text.unshift({
26209                 tag : 'i',
26210                 cls : 'fa ' + this.icon
26211             })
26212         }
26213         
26214         
26215         var cfg = {
26216             tag : 'div',
26217             cls : 'btn-group',
26218             cn : [
26219                 {
26220                     tag : 'button',
26221                     cls : 'dropdown-button btn btn-' + this.weight,
26222                     cn : text
26223                 },
26224                 {
26225                     tag : 'button',
26226                     cls : 'dropdown-toggle btn btn-' + this.weight,
26227                     cn : [
26228                         {
26229                             tag : 'span',
26230                             cls : 'caret'
26231                         }
26232                     ]
26233                 },
26234                 {
26235                     tag : 'ul',
26236                     cls : 'dropdown-menu'
26237                 }
26238             ]
26239             
26240         };
26241         
26242         if(this.pos == 'top'){
26243             cfg.cls += ' dropup';
26244         }
26245         
26246         if(this.isSubMenu){
26247             cfg = {
26248                 tag : 'ul',
26249                 cls : 'dropdown-menu'
26250             }
26251         }
26252         
26253         return cfg;
26254     },
26255     
26256     onRender : function(ct, position)
26257     {
26258         this.isSubMenu = ct.hasClass('dropdown-submenu');
26259         
26260         Roo.bootstrap.menu.Menu.superclass.onRender.call(this, ct, position);
26261     },
26262     
26263     initEvents : function() 
26264     {
26265         if(this.isSubMenu){
26266             return;
26267         }
26268         
26269         this.hidden = true;
26270         
26271         this.triggerEl = this.el.select('button.dropdown-toggle', true).first();
26272         this.triggerEl.on('click', this.onTriggerPress, this);
26273         
26274         this.buttonEl = this.el.select('button.dropdown-button', true).first();
26275         this.buttonEl.on('click', this.onClick, this);
26276         
26277     },
26278     
26279     list : function()
26280     {
26281         if(this.isSubMenu){
26282             return this.el;
26283         }
26284         
26285         return this.el.select('ul.dropdown-menu', true).first();
26286     },
26287     
26288     onClick : function(e)
26289     {
26290         this.fireEvent("click", this, e);
26291     },
26292     
26293     onTriggerPress  : function(e)
26294     {   
26295         if (this.isVisible()) {
26296             this.hide();
26297         } else {
26298             this.show();
26299         }
26300     },
26301     
26302     isVisible : function(){
26303         return !this.hidden;
26304     },
26305     
26306     show : function()
26307     {
26308         this.fireEvent("beforeshow", this);
26309         
26310         this.hidden = false;
26311         this.el.addClass('open');
26312         
26313         Roo.get(document).on("mouseup", this.onMouseUp, this);
26314         
26315         this.fireEvent("show", this);
26316         
26317         
26318     },
26319     
26320     hide : function()
26321     {
26322         this.fireEvent("beforehide", this);
26323         
26324         this.hidden = true;
26325         this.el.removeClass('open');
26326         
26327         Roo.get(document).un("mouseup", this.onMouseUp);
26328         
26329         this.fireEvent("hide", this);
26330     },
26331     
26332     onMouseUp : function()
26333     {
26334         this.hide();
26335     }
26336     
26337 });
26338
26339  
26340  /*
26341  * - LGPL
26342  *
26343  * menu item
26344  * 
26345  */
26346 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26347
26348 /**
26349  * @class Roo.bootstrap.menu.Item
26350  * @extends Roo.bootstrap.Component
26351  * Bootstrap MenuItem class
26352  * @cfg {Boolean} submenu (true | false) default false
26353  * @cfg {String} html text of the item
26354  * @cfg {String} href the link
26355  * @cfg {Boolean} disable (true | false) default false
26356  * @cfg {Boolean} preventDefault (true | false) default true
26357  * @cfg {String} icon Font awesome icon
26358  * @cfg {String} pos Submenu align to (left | right) default right 
26359  * 
26360  * 
26361  * @constructor
26362  * Create a new Item
26363  * @param {Object} config The config object
26364  */
26365
26366
26367 Roo.bootstrap.menu.Item = function(config){
26368     Roo.bootstrap.menu.Item.superclass.constructor.call(this, config);
26369     this.addEvents({
26370         /**
26371          * @event mouseover
26372          * Fires when the mouse is hovering over this menu
26373          * @param {Roo.bootstrap.menu.Item} this
26374          * @param {Roo.EventObject} e
26375          */
26376         mouseover : true,
26377         /**
26378          * @event mouseout
26379          * Fires when the mouse exits this menu
26380          * @param {Roo.bootstrap.menu.Item} this
26381          * @param {Roo.EventObject} e
26382          */
26383         mouseout : true,
26384         // raw events
26385         /**
26386          * @event click
26387          * The raw click event for the entire grid.
26388          * @param {Roo.EventObject} e
26389          */
26390         click : true
26391     });
26392 };
26393
26394 Roo.extend(Roo.bootstrap.menu.Item, Roo.bootstrap.Component,  {
26395     
26396     submenu : false,
26397     href : '',
26398     html : '',
26399     preventDefault: true,
26400     disable : false,
26401     icon : false,
26402     pos : 'right',
26403     
26404     getAutoCreate : function()
26405     {
26406         var text = [
26407             {
26408                 tag : 'span',
26409                 cls : 'roo-menu-item-text',
26410                 html : this.html
26411             }
26412         ];
26413         
26414         if(this.icon){
26415             text.unshift({
26416                 tag : 'i',
26417                 cls : 'fa ' + this.icon
26418             })
26419         }
26420         
26421         var cfg = {
26422             tag : 'li',
26423             cn : [
26424                 {
26425                     tag : 'a',
26426                     href : this.href || '#',
26427                     cn : text
26428                 }
26429             ]
26430         };
26431         
26432         if(this.disable){
26433             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'disabled' : (cfg.cls + ' disabled');
26434         }
26435         
26436         if(this.submenu){
26437             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'dropdown-submenu' : (cfg.cls + ' dropdown-submenu');
26438             
26439             if(this.pos == 'left'){
26440                 cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'pull-left' : (cfg.cls + ' pull-left');
26441             }
26442         }
26443         
26444         return cfg;
26445     },
26446     
26447     initEvents : function() 
26448     {
26449         this.el.on('mouseover', this.onMouseOver, this);
26450         this.el.on('mouseout', this.onMouseOut, this);
26451         
26452         this.el.select('a', true).first().on('click', this.onClick, this);
26453         
26454     },
26455     
26456     onClick : function(e)
26457     {
26458         if(this.preventDefault){
26459             e.preventDefault();
26460         }
26461         
26462         this.fireEvent("click", this, e);
26463     },
26464     
26465     onMouseOver : function(e)
26466     {
26467         if(this.submenu && this.pos == 'left'){
26468             this.el.select('ul.dropdown-menu', true).first().setLeft(this.el.select('ul.dropdown-menu', true).first().getWidth() * -1);
26469         }
26470         
26471         this.fireEvent("mouseover", this, e);
26472     },
26473     
26474     onMouseOut : function(e)
26475     {
26476         this.fireEvent("mouseout", this, e);
26477     }
26478 });
26479
26480  
26481
26482  /*
26483  * - LGPL
26484  *
26485  * menu separator
26486  * 
26487  */
26488 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26489
26490 /**
26491  * @class Roo.bootstrap.menu.Separator
26492  * @extends Roo.bootstrap.Component
26493  * Bootstrap Separator class
26494  * 
26495  * @constructor
26496  * Create a new Separator
26497  * @param {Object} config The config object
26498  */
26499
26500
26501 Roo.bootstrap.menu.Separator = function(config){
26502     Roo.bootstrap.menu.Separator.superclass.constructor.call(this, config);
26503 };
26504
26505 Roo.extend(Roo.bootstrap.menu.Separator, Roo.bootstrap.Component,  {
26506     
26507     getAutoCreate : function(){
26508         var cfg = {
26509             tag : 'li',
26510             cls: 'divider'
26511         };
26512         
26513         return cfg;
26514     }
26515    
26516 });
26517
26518  
26519
26520  /*
26521  * - LGPL
26522  *
26523  * Tooltip
26524  * 
26525  */
26526
26527 /**
26528  * @class Roo.bootstrap.Tooltip
26529  * Bootstrap Tooltip class
26530  * This is basic at present - all componets support it by default, however they should add tooltipEl() method
26531  * to determine which dom element triggers the tooltip.
26532  * 
26533  * It needs to add support for additional attributes like tooltip-position
26534  * 
26535  * @constructor
26536  * Create a new Toolti
26537  * @param {Object} config The config object
26538  */
26539
26540 Roo.bootstrap.Tooltip = function(config){
26541     Roo.bootstrap.Tooltip.superclass.constructor.call(this, config);
26542     
26543     this.alignment = Roo.bootstrap.Tooltip.alignment;
26544     
26545     if(typeof(config) != 'undefined' && typeof(config.alignment) != 'undefined'){
26546         this.alignment = config.alignment;
26547     }
26548     
26549 };
26550
26551 Roo.apply(Roo.bootstrap.Tooltip, {
26552     /**
26553      * @function init initialize tooltip monitoring.
26554      * @static
26555      */
26556     currentEl : false,
26557     currentTip : false,
26558     currentRegion : false,
26559     
26560     //  init : delay?
26561     
26562     init : function()
26563     {
26564         Roo.get(document).on('mouseover', this.enter ,this);
26565         Roo.get(document).on('mouseout', this.leave, this);
26566          
26567         
26568         this.currentTip = new Roo.bootstrap.Tooltip();
26569     },
26570     
26571     enter : function(ev)
26572     {
26573         var dom = ev.getTarget();
26574         
26575         //Roo.log(['enter',dom]);
26576         var el = Roo.fly(dom);
26577         if (this.currentEl) {
26578             //Roo.log(dom);
26579             //Roo.log(this.currentEl);
26580             //Roo.log(this.currentEl.contains(dom));
26581             if (this.currentEl == el) {
26582                 return;
26583             }
26584             if (dom != this.currentEl.dom && this.currentEl.contains(dom)) {
26585                 return;
26586             }
26587
26588         }
26589         
26590         if (this.currentTip.el) {
26591             this.currentTip.el.setVisibilityMode(Roo.Element.DISPLAY).hide(); // force hiding...
26592         }    
26593         //Roo.log(ev);
26594         
26595         if(!el || el.dom == document){
26596             return;
26597         }
26598         
26599         var bindEl = el;
26600         
26601         // you can not look for children, as if el is the body.. then everythign is the child..
26602         if (!el.attr('tooltip')) { //
26603             if (!el.select("[tooltip]").elements.length) {
26604                 return;
26605             }
26606             // is the mouse over this child...?
26607             bindEl = el.select("[tooltip]").first();
26608             var xy = ev.getXY();
26609             if (!bindEl.getRegion().contains( { top : xy[1] ,right : xy[0] , bottom : xy[1], left : xy[0]})) {
26610                 //Roo.log("not in region.");
26611                 return;
26612             }
26613             //Roo.log("child element over..");
26614             
26615         }
26616         this.currentEl = bindEl;
26617         this.currentTip.bind(bindEl);
26618         this.currentRegion = Roo.lib.Region.getRegion(dom);
26619         this.currentTip.enter();
26620         
26621     },
26622     leave : function(ev)
26623     {
26624         var dom = ev.getTarget();
26625         //Roo.log(['leave',dom]);
26626         if (!this.currentEl) {
26627             return;
26628         }
26629         
26630         
26631         if (dom != this.currentEl.dom) {
26632             return;
26633         }
26634         var xy = ev.getXY();
26635         if (this.currentRegion.contains( new Roo.lib.Region( xy[1], xy[0] ,xy[1], xy[0]  ))) {
26636             return;
26637         }
26638         // only activate leave if mouse cursor is outside... bounding box..
26639         
26640         
26641         
26642         
26643         if (this.currentTip) {
26644             this.currentTip.leave();
26645         }
26646         //Roo.log('clear currentEl');
26647         this.currentEl = false;
26648         
26649         
26650     },
26651     alignment : {
26652         'left' : ['r-l', [-2,0], 'right'],
26653         'right' : ['l-r', [2,0], 'left'],
26654         'bottom' : ['t-b', [0,2], 'top'],
26655         'top' : [ 'b-t', [0,-2], 'bottom']
26656     }
26657     
26658 });
26659
26660
26661 Roo.extend(Roo.bootstrap.Tooltip, Roo.bootstrap.Component,  {
26662     
26663     
26664     bindEl : false,
26665     
26666     delay : null, // can be { show : 300 , hide: 500}
26667     
26668     timeout : null,
26669     
26670     hoverState : null, //???
26671     
26672     placement : 'bottom', 
26673     
26674     alignment : false,
26675     
26676     getAutoCreate : function(){
26677     
26678         var cfg = {
26679            cls : 'tooltip',
26680            role : 'tooltip',
26681            cn : [
26682                 {
26683                     cls : 'tooltip-arrow'
26684                 },
26685                 {
26686                     cls : 'tooltip-inner'
26687                 }
26688            ]
26689         };
26690         
26691         return cfg;
26692     },
26693     bind : function(el)
26694     {
26695         this.bindEl = el;
26696     },
26697       
26698     
26699     enter : function () {
26700        
26701         if (this.timeout != null) {
26702             clearTimeout(this.timeout);
26703         }
26704         
26705         this.hoverState = 'in';
26706          //Roo.log("enter - show");
26707         if (!this.delay || !this.delay.show) {
26708             this.show();
26709             return;
26710         }
26711         var _t = this;
26712         this.timeout = setTimeout(function () {
26713             if (_t.hoverState == 'in') {
26714                 _t.show();
26715             }
26716         }, this.delay.show);
26717     },
26718     leave : function()
26719     {
26720         clearTimeout(this.timeout);
26721     
26722         this.hoverState = 'out';
26723          if (!this.delay || !this.delay.hide) {
26724             this.hide();
26725             return;
26726         }
26727        
26728         var _t = this;
26729         this.timeout = setTimeout(function () {
26730             //Roo.log("leave - timeout");
26731             
26732             if (_t.hoverState == 'out') {
26733                 _t.hide();
26734                 Roo.bootstrap.Tooltip.currentEl = false;
26735             }
26736         }, delay);
26737     },
26738     
26739     show : function (msg)
26740     {
26741         if (!this.el) {
26742             this.render(document.body);
26743         }
26744         // set content.
26745         //Roo.log([this.bindEl, this.bindEl.attr('tooltip')]);
26746         
26747         var tip = msg || this.bindEl.attr('tooltip') || this.bindEl.select("[tooltip]").first().attr('tooltip');
26748         
26749         this.el.select('.tooltip-inner',true).first().dom.innerHTML = tip;
26750         
26751         this.el.removeClass(['fade','top','bottom', 'left', 'right','in']);
26752         
26753         var placement = typeof this.placement == 'function' ?
26754             this.placement.call(this, this.el, on_el) :
26755             this.placement;
26756             
26757         var autoToken = /\s?auto?\s?/i;
26758         var autoPlace = autoToken.test(placement);
26759         if (autoPlace) {
26760             placement = placement.replace(autoToken, '') || 'top';
26761         }
26762         
26763         //this.el.detach()
26764         //this.el.setXY([0,0]);
26765         this.el.show();
26766         //this.el.dom.style.display='block';
26767         
26768         //this.el.appendTo(on_el);
26769         
26770         var p = this.getPosition();
26771         var box = this.el.getBox();
26772         
26773         if (autoPlace) {
26774             // fixme..
26775         }
26776         
26777         var align = this.alignment[placement];
26778         
26779         var xy = this.el.getAlignToXY(this.bindEl, align[0], align[1]);
26780         
26781         if(placement == 'top' || placement == 'bottom'){
26782             if(xy[0] < 0){
26783                 placement = 'right';
26784             }
26785             
26786             if(xy[0] + this.el.getWidth() > Roo.lib.Dom.getViewWidth()){
26787                 placement = 'left';
26788             }
26789             
26790             var scroll = Roo.select('body', true).first().getScroll();
26791             
26792             if(xy[1] > Roo.lib.Dom.getViewHeight() + scroll.top - this.el.getHeight()){
26793                 placement = 'top';
26794             }
26795             
26796             align = this.alignment[placement];
26797         }
26798         
26799         this.el.alignTo(this.bindEl, align[0],align[1]);
26800         //var arrow = this.el.select('.arrow',true).first();
26801         //arrow.set(align[2], 
26802         
26803         this.el.addClass(placement);
26804         
26805         this.el.addClass('in fade');
26806         
26807         this.hoverState = null;
26808         
26809         if (this.el.hasClass('fade')) {
26810             // fade it?
26811         }
26812         
26813     },
26814     hide : function()
26815     {
26816          
26817         if (!this.el) {
26818             return;
26819         }
26820         //this.el.setXY([0,0]);
26821         this.el.removeClass('in');
26822         //this.el.hide();
26823         
26824     }
26825     
26826 });
26827  
26828
26829  /*
26830  * - LGPL
26831  *
26832  * Location Picker
26833  * 
26834  */
26835
26836 /**
26837  * @class Roo.bootstrap.LocationPicker
26838  * @extends Roo.bootstrap.Component
26839  * Bootstrap LocationPicker class
26840  * @cfg {Number} latitude Position when init default 0
26841  * @cfg {Number} longitude Position when init default 0
26842  * @cfg {Number} zoom default 15
26843  * @cfg {String} mapTypeId default google.maps.MapTypeId.ROADMAP
26844  * @cfg {Boolean} mapTypeControl default false
26845  * @cfg {Boolean} disableDoubleClickZoom default false
26846  * @cfg {Boolean} scrollwheel default true
26847  * @cfg {Boolean} streetViewControl default false
26848  * @cfg {Number} radius default 0
26849  * @cfg {String} locationName
26850  * @cfg {Boolean} draggable default true
26851  * @cfg {Boolean} enableAutocomplete default false
26852  * @cfg {Boolean} enableReverseGeocode default true
26853  * @cfg {String} markerTitle
26854  * 
26855  * @constructor
26856  * Create a new LocationPicker
26857  * @param {Object} config The config object
26858  */
26859
26860
26861 Roo.bootstrap.LocationPicker = function(config){
26862     
26863     Roo.bootstrap.LocationPicker.superclass.constructor.call(this, config);
26864     
26865     this.addEvents({
26866         /**
26867          * @event initial
26868          * Fires when the picker initialized.
26869          * @param {Roo.bootstrap.LocationPicker} this
26870          * @param {Google Location} location
26871          */
26872         initial : true,
26873         /**
26874          * @event positionchanged
26875          * Fires when the picker position changed.
26876          * @param {Roo.bootstrap.LocationPicker} this
26877          * @param {Google Location} location
26878          */
26879         positionchanged : true,
26880         /**
26881          * @event resize
26882          * Fires when the map resize.
26883          * @param {Roo.bootstrap.LocationPicker} this
26884          */
26885         resize : true,
26886         /**
26887          * @event show
26888          * Fires when the map show.
26889          * @param {Roo.bootstrap.LocationPicker} this
26890          */
26891         show : true,
26892         /**
26893          * @event hide
26894          * Fires when the map hide.
26895          * @param {Roo.bootstrap.LocationPicker} this
26896          */
26897         hide : true,
26898         /**
26899          * @event mapClick
26900          * Fires when click the map.
26901          * @param {Roo.bootstrap.LocationPicker} this
26902          * @param {Map event} e
26903          */
26904         mapClick : true,
26905         /**
26906          * @event mapRightClick
26907          * Fires when right click the map.
26908          * @param {Roo.bootstrap.LocationPicker} this
26909          * @param {Map event} e
26910          */
26911         mapRightClick : true,
26912         /**
26913          * @event markerClick
26914          * Fires when click the marker.
26915          * @param {Roo.bootstrap.LocationPicker} this
26916          * @param {Map event} e
26917          */
26918         markerClick : true,
26919         /**
26920          * @event markerRightClick
26921          * Fires when right click the marker.
26922          * @param {Roo.bootstrap.LocationPicker} this
26923          * @param {Map event} e
26924          */
26925         markerRightClick : true,
26926         /**
26927          * @event OverlayViewDraw
26928          * Fires when OverlayView Draw
26929          * @param {Roo.bootstrap.LocationPicker} this
26930          */
26931         OverlayViewDraw : true,
26932         /**
26933          * @event OverlayViewOnAdd
26934          * Fires when OverlayView Draw
26935          * @param {Roo.bootstrap.LocationPicker} this
26936          */
26937         OverlayViewOnAdd : true,
26938         /**
26939          * @event OverlayViewOnRemove
26940          * Fires when OverlayView Draw
26941          * @param {Roo.bootstrap.LocationPicker} this
26942          */
26943         OverlayViewOnRemove : true,
26944         /**
26945          * @event OverlayViewShow
26946          * Fires when OverlayView Draw
26947          * @param {Roo.bootstrap.LocationPicker} this
26948          * @param {Pixel} cpx
26949          */
26950         OverlayViewShow : true,
26951         /**
26952          * @event OverlayViewHide
26953          * Fires when OverlayView Draw
26954          * @param {Roo.bootstrap.LocationPicker} this
26955          */
26956         OverlayViewHide : true,
26957         /**
26958          * @event loadexception
26959          * Fires when load google lib failed.
26960          * @param {Roo.bootstrap.LocationPicker} this
26961          */
26962         loadexception : true
26963     });
26964         
26965 };
26966
26967 Roo.extend(Roo.bootstrap.LocationPicker, Roo.bootstrap.Component,  {
26968     
26969     gMapContext: false,
26970     
26971     latitude: 0,
26972     longitude: 0,
26973     zoom: 15,
26974     mapTypeId: false,
26975     mapTypeControl: false,
26976     disableDoubleClickZoom: false,
26977     scrollwheel: true,
26978     streetViewControl: false,
26979     radius: 0,
26980     locationName: '',
26981     draggable: true,
26982     enableAutocomplete: false,
26983     enableReverseGeocode: true,
26984     markerTitle: '',
26985     
26986     getAutoCreate: function()
26987     {
26988
26989         var cfg = {
26990             tag: 'div',
26991             cls: 'roo-location-picker'
26992         };
26993         
26994         return cfg
26995     },
26996     
26997     initEvents: function(ct, position)
26998     {       
26999         if(!this.el.getWidth() || this.isApplied()){
27000             return;
27001         }
27002         
27003         this.el.setVisibilityMode(Roo.Element.DISPLAY);
27004         
27005         this.initial();
27006     },
27007     
27008     initial: function()
27009     {
27010         if(typeof(google) == 'undefined' || typeof(google.maps) == 'undefined'){
27011             this.fireEvent('loadexception', this);
27012             return;
27013         }
27014         
27015         if(!this.mapTypeId){
27016             this.mapTypeId = google.maps.MapTypeId.ROADMAP;
27017         }
27018         
27019         this.gMapContext = this.GMapContext();
27020         
27021         this.initOverlayView();
27022         
27023         this.OverlayView = new Roo.bootstrap.LocationPicker.OverlayView(this.gMapContext.map);
27024         
27025         var _this = this;
27026                 
27027         google.maps.event.addListener(this.gMapContext.marker, "dragend", function(event) {
27028             _this.setPosition(_this.gMapContext.marker.position);
27029         });
27030         
27031         google.maps.event.addListener(this.gMapContext.map, 'click', function(event){
27032             _this.fireEvent('mapClick', this, event);
27033             
27034         });
27035
27036         google.maps.event.addListener(this.gMapContext.map, 'rightclick', function(event){
27037             _this.fireEvent('mapRightClick', this, event);
27038             
27039         });
27040         
27041         google.maps.event.addListener(this.gMapContext.marker, 'click', function(event){
27042             _this.fireEvent('markerClick', this, event);
27043             
27044         });
27045
27046         google.maps.event.addListener(this.gMapContext.marker, 'rightclick', function(event){
27047             _this.fireEvent('markerRightClick', this, event);
27048             
27049         });
27050         
27051         this.setPosition(this.gMapContext.location);
27052         
27053         this.fireEvent('initial', this, this.gMapContext.location);
27054     },
27055     
27056     initOverlayView: function()
27057     {
27058         var _this = this;
27059         
27060         Roo.bootstrap.LocationPicker.OverlayView.prototype = Roo.apply(new google.maps.OverlayView(), {
27061             
27062             draw: function()
27063             {
27064                 _this.fireEvent('OverlayViewDraw', _this);
27065             },
27066             
27067             onAdd: function()
27068             {
27069                 _this.fireEvent('OverlayViewOnAdd', _this);
27070             },
27071             
27072             onRemove: function()
27073             {
27074                 _this.fireEvent('OverlayViewOnRemove', _this);
27075             },
27076             
27077             show: function(cpx)
27078             {
27079                 _this.fireEvent('OverlayViewShow', _this, cpx);
27080             },
27081             
27082             hide: function()
27083             {
27084                 _this.fireEvent('OverlayViewHide', _this);
27085             }
27086             
27087         });
27088     },
27089     
27090     fromLatLngToContainerPixel: function(event)
27091     {
27092         return this.OverlayView.getProjection().fromLatLngToContainerPixel(event.latLng);
27093     },
27094     
27095     isApplied: function() 
27096     {
27097         return this.getGmapContext() == false ? false : true;
27098     },
27099     
27100     getGmapContext: function() 
27101     {
27102         return (typeof(this.gMapContext) == 'undefined') ? false : this.gMapContext;
27103     },
27104     
27105     GMapContext: function() 
27106     {
27107         var position = new google.maps.LatLng(this.latitude, this.longitude);
27108         
27109         var _map = new google.maps.Map(this.el.dom, {
27110             center: position,
27111             zoom: this.zoom,
27112             mapTypeId: this.mapTypeId,
27113             mapTypeControl: this.mapTypeControl,
27114             disableDoubleClickZoom: this.disableDoubleClickZoom,
27115             scrollwheel: this.scrollwheel,
27116             streetViewControl: this.streetViewControl,
27117             locationName: this.locationName,
27118             draggable: this.draggable,
27119             enableAutocomplete: this.enableAutocomplete,
27120             enableReverseGeocode: this.enableReverseGeocode
27121         });
27122         
27123         var _marker = new google.maps.Marker({
27124             position: position,
27125             map: _map,
27126             title: this.markerTitle,
27127             draggable: this.draggable
27128         });
27129         
27130         return {
27131             map: _map,
27132             marker: _marker,
27133             circle: null,
27134             location: position,
27135             radius: this.radius,
27136             locationName: this.locationName,
27137             addressComponents: {
27138                 formatted_address: null,
27139                 addressLine1: null,
27140                 addressLine2: null,
27141                 streetName: null,
27142                 streetNumber: null,
27143                 city: null,
27144                 district: null,
27145                 state: null,
27146                 stateOrProvince: null
27147             },
27148             settings: this,
27149             domContainer: this.el.dom,
27150             geodecoder: new google.maps.Geocoder()
27151         };
27152     },
27153     
27154     drawCircle: function(center, radius, options) 
27155     {
27156         if (this.gMapContext.circle != null) {
27157             this.gMapContext.circle.setMap(null);
27158         }
27159         if (radius > 0) {
27160             radius *= 1;
27161             options = Roo.apply({}, options, {
27162                 strokeColor: "#0000FF",
27163                 strokeOpacity: .35,
27164                 strokeWeight: 2,
27165                 fillColor: "#0000FF",
27166                 fillOpacity: .2
27167             });
27168             
27169             options.map = this.gMapContext.map;
27170             options.radius = radius;
27171             options.center = center;
27172             this.gMapContext.circle = new google.maps.Circle(options);
27173             return this.gMapContext.circle;
27174         }
27175         
27176         return null;
27177     },
27178     
27179     setPosition: function(location) 
27180     {
27181         this.gMapContext.location = location;
27182         this.gMapContext.marker.setPosition(location);
27183         this.gMapContext.map.panTo(location);
27184         this.drawCircle(location, this.gMapContext.radius, {});
27185         
27186         var _this = this;
27187         
27188         if (this.gMapContext.settings.enableReverseGeocode) {
27189             this.gMapContext.geodecoder.geocode({
27190                 latLng: this.gMapContext.location
27191             }, function(results, status) {
27192                 
27193                 if (status == google.maps.GeocoderStatus.OK && results.length > 0) {
27194                     _this.gMapContext.locationName = results[0].formatted_address;
27195                     _this.gMapContext.addressComponents = _this.address_component_from_google_geocode(results[0].address_components);
27196                     
27197                     _this.fireEvent('positionchanged', this, location);
27198                 }
27199             });
27200             
27201             return;
27202         }
27203         
27204         this.fireEvent('positionchanged', this, location);
27205     },
27206     
27207     resize: function()
27208     {
27209         google.maps.event.trigger(this.gMapContext.map, "resize");
27210         
27211         this.gMapContext.map.setCenter(this.gMapContext.marker.position);
27212         
27213         this.fireEvent('resize', this);
27214     },
27215     
27216     setPositionByLatLng: function(latitude, longitude)
27217     {
27218         this.setPosition(new google.maps.LatLng(latitude, longitude));
27219     },
27220     
27221     getCurrentPosition: function() 
27222     {
27223         return {
27224             latitude: this.gMapContext.location.lat(),
27225             longitude: this.gMapContext.location.lng()
27226         };
27227     },
27228     
27229     getAddressName: function() 
27230     {
27231         return this.gMapContext.locationName;
27232     },
27233     
27234     getAddressComponents: function() 
27235     {
27236         return this.gMapContext.addressComponents;
27237     },
27238     
27239     address_component_from_google_geocode: function(address_components) 
27240     {
27241         var result = {};
27242         
27243         for (var i = 0; i < address_components.length; i++) {
27244             var component = address_components[i];
27245             if (component.types.indexOf("postal_code") >= 0) {
27246                 result.postalCode = component.short_name;
27247             } else if (component.types.indexOf("street_number") >= 0) {
27248                 result.streetNumber = component.short_name;
27249             } else if (component.types.indexOf("route") >= 0) {
27250                 result.streetName = component.short_name;
27251             } else if (component.types.indexOf("neighborhood") >= 0) {
27252                 result.city = component.short_name;
27253             } else if (component.types.indexOf("locality") >= 0) {
27254                 result.city = component.short_name;
27255             } else if (component.types.indexOf("sublocality") >= 0) {
27256                 result.district = component.short_name;
27257             } else if (component.types.indexOf("administrative_area_level_1") >= 0) {
27258                 result.stateOrProvince = component.short_name;
27259             } else if (component.types.indexOf("country") >= 0) {
27260                 result.country = component.short_name;
27261             }
27262         }
27263         
27264         result.addressLine1 = [ result.streetNumber, result.streetName ].join(" ").trim();
27265         result.addressLine2 = "";
27266         return result;
27267     },
27268     
27269     setZoomLevel: function(zoom)
27270     {
27271         this.gMapContext.map.setZoom(zoom);
27272     },
27273     
27274     show: function()
27275     {
27276         if(!this.el){
27277             return;
27278         }
27279         
27280         this.el.show();
27281         
27282         this.resize();
27283         
27284         this.fireEvent('show', this);
27285     },
27286     
27287     hide: function()
27288     {
27289         if(!this.el){
27290             return;
27291         }
27292         
27293         this.el.hide();
27294         
27295         this.fireEvent('hide', this);
27296     }
27297     
27298 });
27299
27300 Roo.apply(Roo.bootstrap.LocationPicker, {
27301     
27302     OverlayView : function(map, options)
27303     {
27304         options = options || {};
27305         
27306         this.setMap(map);
27307     }
27308     
27309     
27310 });/**
27311  * @class Roo.bootstrap.Alert
27312  * @extends Roo.bootstrap.Component
27313  * Bootstrap Alert class - shows an alert area box
27314  * eg
27315  * <div class="alert alert-danger" role="alert"><span class="fa fa-exclamation-triangle"></span><span class="sr-only">Error:</span>
27316   Enter a valid email address
27317 </div>
27318  * @licence LGPL
27319  * @cfg {String} title The title of alert
27320  * @cfg {String} html The content of alert
27321  * @cfg {String} weight (  success | info | warning | danger )
27322  * @cfg {String} faicon font-awesomeicon
27323  * 
27324  * @constructor
27325  * Create a new alert
27326  * @param {Object} config The config object
27327  */
27328
27329
27330 Roo.bootstrap.Alert = function(config){
27331     Roo.bootstrap.Alert.superclass.constructor.call(this, config);
27332     
27333 };
27334
27335 Roo.extend(Roo.bootstrap.Alert, Roo.bootstrap.Component,  {
27336     
27337     title: '',
27338     html: '',
27339     weight: false,
27340     faicon: false,
27341     
27342     getAutoCreate : function()
27343     {
27344         
27345         var cfg = {
27346             tag : 'div',
27347             cls : 'alert',
27348             cn : [
27349                 {
27350                     tag : 'i',
27351                     cls : 'roo-alert-icon'
27352                     
27353                 },
27354                 {
27355                     tag : 'b',
27356                     cls : 'roo-alert-title',
27357                     html : this.title
27358                 },
27359                 {
27360                     tag : 'span',
27361                     cls : 'roo-alert-text',
27362                     html : this.html
27363                 }
27364             ]
27365         };
27366         
27367         if(this.faicon){
27368             cfg.cn[0].cls += ' fa ' + this.faicon;
27369         }
27370         
27371         if(this.weight){
27372             cfg.cls += ' alert-' + this.weight;
27373         }
27374         
27375         return cfg;
27376     },
27377     
27378     initEvents: function() 
27379     {
27380         this.el.setVisibilityMode(Roo.Element.DISPLAY);
27381     },
27382     
27383     setTitle : function(str)
27384     {
27385         this.el.select('.roo-alert-title',true).first().dom.innerHTML = str;
27386     },
27387     
27388     setText : function(str)
27389     {
27390         this.el.select('.roo-alert-text',true).first().dom.innerHTML = str;
27391     },
27392     
27393     setWeight : function(weight)
27394     {
27395         if(this.weight){
27396             this.el.select('.alert',true).first().removeClass('alert-' + this.weight);
27397         }
27398         
27399         this.weight = weight;
27400         
27401         this.el.select('.alert',true).first().addClass('alert-' + this.weight);
27402     },
27403     
27404     setIcon : function(icon)
27405     {
27406         if(this.faicon){
27407             this.el.select('.roo-alert-icon',true).first().removeClass(['fa', 'fa-' + this.faicon]);
27408         }
27409         
27410         this.faicon = icon;
27411         
27412         this.el.select('.roo-alert-icon',true).first().addClass(['fa', 'fa-' + this.faicon]);
27413     },
27414     
27415     hide: function() 
27416     {
27417         this.el.hide();   
27418     },
27419     
27420     show: function() 
27421     {  
27422         this.el.show();   
27423     }
27424     
27425 });
27426
27427  
27428 /*
27429 * Licence: LGPL
27430 */
27431
27432 /**
27433  * @class Roo.bootstrap.UploadCropbox
27434  * @extends Roo.bootstrap.Component
27435  * Bootstrap UploadCropbox class
27436  * @cfg {String} emptyText show when image has been loaded
27437  * @cfg {String} rotateNotify show when image too small to rotate
27438  * @cfg {Number} errorTimeout default 3000
27439  * @cfg {Number} minWidth default 300
27440  * @cfg {Number} minHeight default 300
27441  * @cfg {Array} buttons default ['rotateLeft', 'pictureBtn', 'rotateRight']
27442  * @cfg {Boolean} isDocument (true|false) default false
27443  * @cfg {String} url action url
27444  * @cfg {String} paramName default 'imageUpload'
27445  * @cfg {String} method default POST
27446  * @cfg {Boolean} loadMask (true|false) default true
27447  * @cfg {Boolean} loadingText default 'Loading...'
27448  * 
27449  * @constructor
27450  * Create a new UploadCropbox
27451  * @param {Object} config The config object
27452  */
27453
27454 Roo.bootstrap.UploadCropbox = function(config){
27455     Roo.bootstrap.UploadCropbox.superclass.constructor.call(this, config);
27456     
27457     this.addEvents({
27458         /**
27459          * @event beforeselectfile
27460          * Fire before select file
27461          * @param {Roo.bootstrap.UploadCropbox} this
27462          */
27463         "beforeselectfile" : true,
27464         /**
27465          * @event initial
27466          * Fire after initEvent
27467          * @param {Roo.bootstrap.UploadCropbox} this
27468          */
27469         "initial" : true,
27470         /**
27471          * @event crop
27472          * Fire after initEvent
27473          * @param {Roo.bootstrap.UploadCropbox} this
27474          * @param {String} data
27475          */
27476         "crop" : true,
27477         /**
27478          * @event prepare
27479          * Fire when preparing the file data
27480          * @param {Roo.bootstrap.UploadCropbox} this
27481          * @param {Object} file
27482          */
27483         "prepare" : true,
27484         /**
27485          * @event exception
27486          * Fire when get exception
27487          * @param {Roo.bootstrap.UploadCropbox} this
27488          * @param {XMLHttpRequest} xhr
27489          */
27490         "exception" : true,
27491         /**
27492          * @event beforeloadcanvas
27493          * Fire before load the canvas
27494          * @param {Roo.bootstrap.UploadCropbox} this
27495          * @param {String} src
27496          */
27497         "beforeloadcanvas" : true,
27498         /**
27499          * @event trash
27500          * Fire when trash image
27501          * @param {Roo.bootstrap.UploadCropbox} this
27502          */
27503         "trash" : true,
27504         /**
27505          * @event download
27506          * Fire when download the image
27507          * @param {Roo.bootstrap.UploadCropbox} this
27508          */
27509         "download" : true,
27510         /**
27511          * @event footerbuttonclick
27512          * Fire when footerbuttonclick
27513          * @param {Roo.bootstrap.UploadCropbox} this
27514          * @param {String} type
27515          */
27516         "footerbuttonclick" : true,
27517         /**
27518          * @event resize
27519          * Fire when resize
27520          * @param {Roo.bootstrap.UploadCropbox} this
27521          */
27522         "resize" : true,
27523         /**
27524          * @event rotate
27525          * Fire when rotate the image
27526          * @param {Roo.bootstrap.UploadCropbox} this
27527          * @param {String} pos
27528          */
27529         "rotate" : true,
27530         /**
27531          * @event inspect
27532          * Fire when inspect the file
27533          * @param {Roo.bootstrap.UploadCropbox} this
27534          * @param {Object} file
27535          */
27536         "inspect" : true,
27537         /**
27538          * @event upload
27539          * Fire when xhr upload the file
27540          * @param {Roo.bootstrap.UploadCropbox} this
27541          * @param {Object} data
27542          */
27543         "upload" : true,
27544         /**
27545          * @event arrange
27546          * Fire when arrange the file data
27547          * @param {Roo.bootstrap.UploadCropbox} this
27548          * @param {Object} formData
27549          */
27550         "arrange" : true
27551     });
27552     
27553     this.buttons = this.buttons || Roo.bootstrap.UploadCropbox.footer.STANDARD;
27554 };
27555
27556 Roo.extend(Roo.bootstrap.UploadCropbox, Roo.bootstrap.Component,  {
27557     
27558     emptyText : 'Click to upload image',
27559     rotateNotify : 'Image is too small to rotate',
27560     errorTimeout : 3000,
27561     scale : 0,
27562     baseScale : 1,
27563     rotate : 0,
27564     dragable : false,
27565     pinching : false,
27566     mouseX : 0,
27567     mouseY : 0,
27568     cropData : false,
27569     minWidth : 300,
27570     minHeight : 300,
27571     file : false,
27572     exif : {},
27573     baseRotate : 1,
27574     cropType : 'image/jpeg',
27575     buttons : false,
27576     canvasLoaded : false,
27577     isDocument : false,
27578     method : 'POST',
27579     paramName : 'imageUpload',
27580     loadMask : true,
27581     loadingText : 'Loading...',
27582     maskEl : false,
27583     
27584     getAutoCreate : function()
27585     {
27586         var cfg = {
27587             tag : 'div',
27588             cls : 'roo-upload-cropbox',
27589             cn : [
27590                 {
27591                     tag : 'input',
27592                     cls : 'roo-upload-cropbox-selector',
27593                     type : 'file'
27594                 },
27595                 {
27596                     tag : 'div',
27597                     cls : 'roo-upload-cropbox-body',
27598                     style : 'cursor:pointer',
27599                     cn : [
27600                         {
27601                             tag : 'div',
27602                             cls : 'roo-upload-cropbox-preview'
27603                         },
27604                         {
27605                             tag : 'div',
27606                             cls : 'roo-upload-cropbox-thumb'
27607                         },
27608                         {
27609                             tag : 'div',
27610                             cls : 'roo-upload-cropbox-empty-notify',
27611                             html : this.emptyText
27612                         },
27613                         {
27614                             tag : 'div',
27615                             cls : 'roo-upload-cropbox-error-notify alert alert-danger',
27616                             html : this.rotateNotify
27617                         }
27618                     ]
27619                 },
27620                 {
27621                     tag : 'div',
27622                     cls : 'roo-upload-cropbox-footer',
27623                     cn : {
27624                         tag : 'div',
27625                         cls : 'btn-group btn-group-justified roo-upload-cropbox-btn-group',
27626                         cn : []
27627                     }
27628                 }
27629             ]
27630         };
27631         
27632         return cfg;
27633     },
27634     
27635     onRender : function(ct, position)
27636     {
27637         Roo.bootstrap.UploadCropbox.superclass.onRender.call(this, ct, position);
27638         
27639         if (this.buttons.length) {
27640             
27641             Roo.each(this.buttons, function(bb) {
27642                 
27643                 var btn = this.el.select('.roo-upload-cropbox-footer div.roo-upload-cropbox-btn-group').first().createChild(bb);
27644                 
27645                 btn.on('click', this.onFooterButtonClick.createDelegate(this, [bb.action], true));
27646                 
27647             }, this);
27648         }
27649         
27650         if(this.loadMask){
27651             this.maskEl = this.el;
27652         }
27653     },
27654     
27655     initEvents : function()
27656     {
27657         this.urlAPI = (window.createObjectURL && window) || 
27658                                 (window.URL && URL.revokeObjectURL && URL) || 
27659                                 (window.webkitURL && webkitURL);
27660                         
27661         this.bodyEl = this.el.select('.roo-upload-cropbox-body', true).first();
27662         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27663         
27664         this.selectorEl = this.el.select('.roo-upload-cropbox-selector', true).first();
27665         this.selectorEl.hide();
27666         
27667         this.previewEl = this.el.select('.roo-upload-cropbox-preview', true).first();
27668         this.previewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27669         
27670         this.thumbEl = this.el.select('.roo-upload-cropbox-thumb', true).first();
27671         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27672         this.thumbEl.hide();
27673         
27674         this.notifyEl = this.el.select('.roo-upload-cropbox-empty-notify', true).first();
27675         this.notifyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27676         
27677         this.errorEl = this.el.select('.roo-upload-cropbox-error-notify', true).first();
27678         this.errorEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27679         this.errorEl.hide();
27680         
27681         this.footerEl = this.el.select('.roo-upload-cropbox-footer', true).first();
27682         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27683         this.footerEl.hide();
27684         
27685         this.setThumbBoxSize();
27686         
27687         this.bind();
27688         
27689         this.resize();
27690         
27691         this.fireEvent('initial', this);
27692     },
27693
27694     bind : function()
27695     {
27696         var _this = this;
27697         
27698         window.addEventListener("resize", function() { _this.resize(); } );
27699         
27700         this.bodyEl.on('click', this.beforeSelectFile, this);
27701         
27702         if(Roo.isTouch){
27703             this.bodyEl.on('touchstart', this.onTouchStart, this);
27704             this.bodyEl.on('touchmove', this.onTouchMove, this);
27705             this.bodyEl.on('touchend', this.onTouchEnd, this);
27706         }
27707         
27708         if(!Roo.isTouch){
27709             this.bodyEl.on('mousedown', this.onMouseDown, this);
27710             this.bodyEl.on('mousemove', this.onMouseMove, this);
27711             var mousewheel = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel';
27712             this.bodyEl.on(mousewheel, this.onMouseWheel, this);
27713             Roo.get(document).on('mouseup', this.onMouseUp, this);
27714         }
27715         
27716         this.selectorEl.on('change', this.onFileSelected, this);
27717     },
27718     
27719     reset : function()
27720     {    
27721         this.scale = 0;
27722         this.baseScale = 1;
27723         this.rotate = 0;
27724         this.baseRotate = 1;
27725         this.dragable = false;
27726         this.pinching = false;
27727         this.mouseX = 0;
27728         this.mouseY = 0;
27729         this.cropData = false;
27730         this.notifyEl.dom.innerHTML = this.emptyText;
27731         
27732         this.selectorEl.dom.value = '';
27733         
27734     },
27735     
27736     resize : function()
27737     {
27738         if(this.fireEvent('resize', this) != false){
27739             this.setThumbBoxPosition();
27740             this.setCanvasPosition();
27741         }
27742     },
27743     
27744     onFooterButtonClick : function(e, el, o, type)
27745     {
27746         switch (type) {
27747             case 'rotate-left' :
27748                 this.onRotateLeft(e);
27749                 break;
27750             case 'rotate-right' :
27751                 this.onRotateRight(e);
27752                 break;
27753             case 'picture' :
27754                 this.beforeSelectFile(e);
27755                 break;
27756             case 'trash' :
27757                 this.trash(e);
27758                 break;
27759             case 'crop' :
27760                 this.crop(e);
27761                 break;
27762             case 'download' :
27763                 this.download(e);
27764                 break;
27765             default :
27766                 break;
27767         }
27768         
27769         this.fireEvent('footerbuttonclick', this, type);
27770     },
27771     
27772     beforeSelectFile : function(e)
27773     {
27774         e.preventDefault();
27775         
27776         if(this.fireEvent('beforeselectfile', this) != false){
27777             this.selectorEl.dom.click();
27778         }
27779     },
27780     
27781     onFileSelected : function(e)
27782     {
27783         e.preventDefault();
27784         
27785         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
27786             return;
27787         }
27788         
27789         var file = this.selectorEl.dom.files[0];
27790         
27791         if(this.fireEvent('inspect', this, file) != false){
27792             this.prepare(file);
27793         }
27794         
27795     },
27796     
27797     trash : function(e)
27798     {
27799         this.fireEvent('trash', this);
27800     },
27801     
27802     download : function(e)
27803     {
27804         this.fireEvent('download', this);
27805     },
27806     
27807     loadCanvas : function(src)
27808     {   
27809         if(this.fireEvent('beforeloadcanvas', this, src) != false){
27810             
27811             this.reset();
27812             
27813             this.imageEl = document.createElement('img');
27814             
27815             var _this = this;
27816             
27817             this.imageEl.addEventListener("load", function(){ _this.onLoadCanvas(); });
27818             
27819             this.imageEl.src = src;
27820         }
27821     },
27822     
27823     onLoadCanvas : function()
27824     {   
27825         this.imageEl.OriginWidth = this.imageEl.naturalWidth || this.imageEl.width;
27826         this.imageEl.OriginHeight = this.imageEl.naturalHeight || this.imageEl.height;
27827         
27828         this.bodyEl.un('click', this.beforeSelectFile, this);
27829         
27830         this.notifyEl.hide();
27831         this.thumbEl.show();
27832         this.footerEl.show();
27833         
27834         this.baseRotateLevel();
27835         
27836         if(this.isDocument){
27837             this.setThumbBoxSize();
27838         }
27839         
27840         this.setThumbBoxPosition();
27841         
27842         this.baseScaleLevel();
27843         
27844         this.draw();
27845         
27846         this.resize();
27847         
27848         this.canvasLoaded = true;
27849         
27850         if(this.loadMask){
27851             this.maskEl.unmask();
27852         }
27853         
27854     },
27855     
27856     setCanvasPosition : function()
27857     {   
27858         if(!this.canvasEl){
27859             return;
27860         }
27861         
27862         var pw = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
27863         var ph = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
27864         
27865         this.previewEl.setLeft(pw);
27866         this.previewEl.setTop(ph);
27867         
27868     },
27869     
27870     onMouseDown : function(e)
27871     {   
27872         e.stopEvent();
27873         
27874         this.dragable = true;
27875         this.pinching = false;
27876         
27877         if(this.isDocument && (this.canvasEl.width < this.thumbEl.getWidth() || this.canvasEl.height < this.thumbEl.getHeight())){
27878             this.dragable = false;
27879             return;
27880         }
27881         
27882         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27883         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27884         
27885     },
27886     
27887     onMouseMove : function(e)
27888     {   
27889         e.stopEvent();
27890         
27891         if(!this.canvasLoaded){
27892             return;
27893         }
27894         
27895         if (!this.dragable){
27896             return;
27897         }
27898         
27899         var minX = Math.ceil(this.thumbEl.getLeft(true));
27900         var minY = Math.ceil(this.thumbEl.getTop(true));
27901         
27902         var maxX = Math.ceil(minX + this.thumbEl.getWidth() - this.canvasEl.width);
27903         var maxY = Math.ceil(minY + this.thumbEl.getHeight() - this.canvasEl.height);
27904         
27905         var x = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27906         var y = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27907         
27908         x = x - this.mouseX;
27909         y = y - this.mouseY;
27910         
27911         var bgX = Math.ceil(x + this.previewEl.getLeft(true));
27912         var bgY = Math.ceil(y + this.previewEl.getTop(true));
27913         
27914         bgX = (minX < bgX) ? minX : ((maxX > bgX) ? maxX : bgX);
27915         bgY = (minY < bgY) ? minY : ((maxY > bgY) ? maxY : bgY);
27916         
27917         this.previewEl.setLeft(bgX);
27918         this.previewEl.setTop(bgY);
27919         
27920         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27921         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27922     },
27923     
27924     onMouseUp : function(e)
27925     {   
27926         e.stopEvent();
27927         
27928         this.dragable = false;
27929     },
27930     
27931     onMouseWheel : function(e)
27932     {   
27933         e.stopEvent();
27934         
27935         this.startScale = this.scale;
27936         
27937         this.scale = (e.getWheelDelta() == 1) ? (this.scale + 1) : (this.scale - 1);
27938         
27939         if(!this.zoomable()){
27940             this.scale = this.startScale;
27941             return;
27942         }
27943         
27944         this.draw();
27945         
27946         return;
27947     },
27948     
27949     zoomable : function()
27950     {
27951         var minScale = this.thumbEl.getWidth() / this.minWidth;
27952         
27953         if(this.minWidth < this.minHeight){
27954             minScale = this.thumbEl.getHeight() / this.minHeight;
27955         }
27956         
27957         var width = Math.ceil(this.imageEl.OriginWidth * this.getScaleLevel() / minScale);
27958         var height = Math.ceil(this.imageEl.OriginHeight * this.getScaleLevel() / minScale);
27959         
27960         if(
27961                 this.isDocument &&
27962                 (this.rotate == 0 || this.rotate == 180) && 
27963                 (
27964                     width > this.imageEl.OriginWidth || 
27965                     height > this.imageEl.OriginHeight ||
27966                     (width < this.minWidth && height < this.minHeight)
27967                 )
27968         ){
27969             return false;
27970         }
27971         
27972         if(
27973                 this.isDocument &&
27974                 (this.rotate == 90 || this.rotate == 270) && 
27975                 (
27976                     width > this.imageEl.OriginWidth || 
27977                     height > this.imageEl.OriginHeight ||
27978                     (width < this.minHeight && height < this.minWidth)
27979                 )
27980         ){
27981             return false;
27982         }
27983         
27984         if(
27985                 !this.isDocument &&
27986                 (this.rotate == 0 || this.rotate == 180) && 
27987                 (
27988                     width < this.minWidth || 
27989                     width > this.imageEl.OriginWidth || 
27990                     height < this.minHeight || 
27991                     height > this.imageEl.OriginHeight
27992                 )
27993         ){
27994             return false;
27995         }
27996         
27997         if(
27998                 !this.isDocument &&
27999                 (this.rotate == 90 || this.rotate == 270) && 
28000                 (
28001                     width < this.minHeight || 
28002                     width > this.imageEl.OriginWidth || 
28003                     height < this.minWidth || 
28004                     height > this.imageEl.OriginHeight
28005                 )
28006         ){
28007             return false;
28008         }
28009         
28010         return true;
28011         
28012     },
28013     
28014     onRotateLeft : function(e)
28015     {   
28016         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
28017             
28018             var minScale = this.thumbEl.getWidth() / this.minWidth;
28019             
28020             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
28021             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
28022             
28023             this.startScale = this.scale;
28024             
28025             while (this.getScaleLevel() < minScale){
28026             
28027                 this.scale = this.scale + 1;
28028                 
28029                 if(!this.zoomable()){
28030                     break;
28031                 }
28032                 
28033                 if(
28034                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
28035                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
28036                 ){
28037                     continue;
28038                 }
28039                 
28040                 this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
28041
28042                 this.draw();
28043                 
28044                 return;
28045             }
28046             
28047             this.scale = this.startScale;
28048             
28049             this.onRotateFail();
28050             
28051             return false;
28052         }
28053         
28054         this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
28055
28056         if(this.isDocument){
28057             this.setThumbBoxSize();
28058             this.setThumbBoxPosition();
28059             this.setCanvasPosition();
28060         }
28061         
28062         this.draw();
28063         
28064         this.fireEvent('rotate', this, 'left');
28065         
28066     },
28067     
28068     onRotateRight : function(e)
28069     {
28070         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
28071             
28072             var minScale = this.thumbEl.getWidth() / this.minWidth;
28073         
28074             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
28075             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
28076             
28077             this.startScale = this.scale;
28078             
28079             while (this.getScaleLevel() < minScale){
28080             
28081                 this.scale = this.scale + 1;
28082                 
28083                 if(!this.zoomable()){
28084                     break;
28085                 }
28086                 
28087                 if(
28088                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
28089                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
28090                 ){
28091                     continue;
28092                 }
28093                 
28094                 this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28095
28096                 this.draw();
28097                 
28098                 return;
28099             }
28100             
28101             this.scale = this.startScale;
28102             
28103             this.onRotateFail();
28104             
28105             return false;
28106         }
28107         
28108         this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28109
28110         if(this.isDocument){
28111             this.setThumbBoxSize();
28112             this.setThumbBoxPosition();
28113             this.setCanvasPosition();
28114         }
28115         
28116         this.draw();
28117         
28118         this.fireEvent('rotate', this, 'right');
28119     },
28120     
28121     onRotateFail : function()
28122     {
28123         this.errorEl.show(true);
28124         
28125         var _this = this;
28126         
28127         (function() { _this.errorEl.hide(true); }).defer(this.errorTimeout);
28128     },
28129     
28130     draw : function()
28131     {
28132         this.previewEl.dom.innerHTML = '';
28133         
28134         var canvasEl = document.createElement("canvas");
28135         
28136         var contextEl = canvasEl.getContext("2d");
28137         
28138         canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28139         canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28140         var center = this.imageEl.OriginWidth / 2;
28141         
28142         if(this.imageEl.OriginWidth < this.imageEl.OriginHeight){
28143             canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28144             canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28145             center = this.imageEl.OriginHeight / 2;
28146         }
28147         
28148         contextEl.scale(this.getScaleLevel(), this.getScaleLevel());
28149         
28150         contextEl.translate(center, center);
28151         contextEl.rotate(this.rotate * Math.PI / 180);
28152
28153         contextEl.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28154         
28155         this.canvasEl = document.createElement("canvas");
28156         
28157         this.contextEl = this.canvasEl.getContext("2d");
28158         
28159         switch (this.rotate) {
28160             case 0 :
28161                 
28162                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28163                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28164                 
28165                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28166                 
28167                 break;
28168             case 90 : 
28169                 
28170                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28171                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28172                 
28173                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28174                     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);
28175                     break;
28176                 }
28177                 
28178                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28179                 
28180                 break;
28181             case 180 :
28182                 
28183                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28184                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28185                 
28186                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28187                     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);
28188                     break;
28189                 }
28190                 
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                 
28193                 break;
28194             case 270 :
28195                 
28196                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28197                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28198         
28199                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28200                     this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28201                     break;
28202                 }
28203                 
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                 
28206                 break;
28207             default : 
28208                 break;
28209         }
28210         
28211         this.previewEl.appendChild(this.canvasEl);
28212         
28213         this.setCanvasPosition();
28214     },
28215     
28216     crop : function()
28217     {
28218         if(!this.canvasLoaded){
28219             return;
28220         }
28221         
28222         var imageCanvas = document.createElement("canvas");
28223         
28224         var imageContext = imageCanvas.getContext("2d");
28225         
28226         imageCanvas.width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28227         imageCanvas.height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28228         
28229         var center = imageCanvas.width / 2;
28230         
28231         imageContext.translate(center, center);
28232         
28233         imageContext.rotate(this.rotate * Math.PI / 180);
28234         
28235         imageContext.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28236         
28237         var canvas = document.createElement("canvas");
28238         
28239         var context = canvas.getContext("2d");
28240                 
28241         canvas.width = this.minWidth;
28242         canvas.height = this.minHeight;
28243
28244         switch (this.rotate) {
28245             case 0 :
28246                 
28247                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28248                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28249                 
28250                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28251                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28252                 
28253                 var targetWidth = this.minWidth - 2 * x;
28254                 var targetHeight = this.minHeight - 2 * y;
28255                 
28256                 var scale = 1;
28257                 
28258                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28259                     scale = targetWidth / width;
28260                 }
28261                 
28262                 if(x > 0 && y == 0){
28263                     scale = targetHeight / height;
28264                 }
28265                 
28266                 if(x > 0 && y > 0){
28267                     scale = targetWidth / width;
28268                     
28269                     if(width < height){
28270                         scale = targetHeight / height;
28271                     }
28272                 }
28273                 
28274                 context.scale(scale, scale);
28275                 
28276                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28277                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28278
28279                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28280                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28281
28282                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28283                 
28284                 break;
28285             case 90 : 
28286                 
28287                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28288                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28289                 
28290                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28291                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28292                 
28293                 var targetWidth = this.minWidth - 2 * x;
28294                 var targetHeight = this.minHeight - 2 * y;
28295                 
28296                 var scale = 1;
28297                 
28298                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28299                     scale = targetWidth / width;
28300                 }
28301                 
28302                 if(x > 0 && y == 0){
28303                     scale = targetHeight / height;
28304                 }
28305                 
28306                 if(x > 0 && y > 0){
28307                     scale = targetWidth / width;
28308                     
28309                     if(width < height){
28310                         scale = targetHeight / height;
28311                     }
28312                 }
28313                 
28314                 context.scale(scale, scale);
28315                 
28316                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28317                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28318
28319                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28320                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28321                 
28322                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28323                 
28324                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28325                 
28326                 break;
28327             case 180 :
28328                 
28329                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28330                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28331                 
28332                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28333                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28334                 
28335                 var targetWidth = this.minWidth - 2 * x;
28336                 var targetHeight = this.minHeight - 2 * y;
28337                 
28338                 var scale = 1;
28339                 
28340                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28341                     scale = targetWidth / width;
28342                 }
28343                 
28344                 if(x > 0 && y == 0){
28345                     scale = targetHeight / height;
28346                 }
28347                 
28348                 if(x > 0 && y > 0){
28349                     scale = targetWidth / width;
28350                     
28351                     if(width < height){
28352                         scale = targetHeight / height;
28353                     }
28354                 }
28355                 
28356                 context.scale(scale, scale);
28357                 
28358                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28359                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28360
28361                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28362                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28363
28364                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28365                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28366                 
28367                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28368                 
28369                 break;
28370             case 270 :
28371                 
28372                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28373                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28374                 
28375                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28376                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28377                 
28378                 var targetWidth = this.minWidth - 2 * x;
28379                 var targetHeight = this.minHeight - 2 * y;
28380                 
28381                 var scale = 1;
28382                 
28383                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28384                     scale = targetWidth / width;
28385                 }
28386                 
28387                 if(x > 0 && y == 0){
28388                     scale = targetHeight / height;
28389                 }
28390                 
28391                 if(x > 0 && y > 0){
28392                     scale = targetWidth / width;
28393                     
28394                     if(width < height){
28395                         scale = targetHeight / height;
28396                     }
28397                 }
28398                 
28399                 context.scale(scale, scale);
28400                 
28401                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28402                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28403
28404                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28405                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28406                 
28407                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28408                 
28409                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28410                 
28411                 break;
28412             default : 
28413                 break;
28414         }
28415         
28416         this.cropData = canvas.toDataURL(this.cropType);
28417         
28418         if(this.fireEvent('crop', this, this.cropData) !== false){
28419             this.process(this.file, this.cropData);
28420         }
28421         
28422         return;
28423         
28424     },
28425     
28426     setThumbBoxSize : function()
28427     {
28428         var width, height;
28429         
28430         if(this.isDocument && typeof(this.imageEl) != 'undefined'){
28431             width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.max(this.minWidth, this.minHeight) : Math.min(this.minWidth, this.minHeight);
28432             height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.min(this.minWidth, this.minHeight) : Math.max(this.minWidth, this.minHeight);
28433             
28434             this.minWidth = width;
28435             this.minHeight = height;
28436             
28437             if(this.rotate == 90 || this.rotate == 270){
28438                 this.minWidth = height;
28439                 this.minHeight = width;
28440             }
28441         }
28442         
28443         height = 300;
28444         width = Math.ceil(this.minWidth * height / this.minHeight);
28445         
28446         if(this.minWidth > this.minHeight){
28447             width = 300;
28448             height = Math.ceil(this.minHeight * width / this.minWidth);
28449         }
28450         
28451         this.thumbEl.setStyle({
28452             width : width + 'px',
28453             height : height + 'px'
28454         });
28455
28456         return;
28457             
28458     },
28459     
28460     setThumbBoxPosition : function()
28461     {
28462         var x = Math.ceil((this.bodyEl.getWidth() - this.thumbEl.getWidth()) / 2 );
28463         var y = Math.ceil((this.bodyEl.getHeight() - this.thumbEl.getHeight()) / 2);
28464         
28465         this.thumbEl.setLeft(x);
28466         this.thumbEl.setTop(y);
28467         
28468     },
28469     
28470     baseRotateLevel : function()
28471     {
28472         this.baseRotate = 1;
28473         
28474         if(
28475                 typeof(this.exif) != 'undefined' &&
28476                 typeof(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != 'undefined' &&
28477                 [1, 3, 6, 8].indexOf(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != -1
28478         ){
28479             this.baseRotate = this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']];
28480         }
28481         
28482         this.rotate = Roo.bootstrap.UploadCropbox['Orientation'][this.baseRotate];
28483         
28484     },
28485     
28486     baseScaleLevel : function()
28487     {
28488         var width, height;
28489         
28490         if(this.isDocument){
28491             
28492             if(this.baseRotate == 6 || this.baseRotate == 8){
28493             
28494                 height = this.thumbEl.getHeight();
28495                 this.baseScale = height / this.imageEl.OriginWidth;
28496
28497                 if(this.imageEl.OriginHeight * this.baseScale > this.thumbEl.getWidth()){
28498                     width = this.thumbEl.getWidth();
28499                     this.baseScale = width / this.imageEl.OriginHeight;
28500                 }
28501
28502                 return;
28503             }
28504
28505             height = this.thumbEl.getHeight();
28506             this.baseScale = height / this.imageEl.OriginHeight;
28507
28508             if(this.imageEl.OriginWidth * this.baseScale > this.thumbEl.getWidth()){
28509                 width = this.thumbEl.getWidth();
28510                 this.baseScale = width / this.imageEl.OriginWidth;
28511             }
28512
28513             return;
28514         }
28515         
28516         if(this.baseRotate == 6 || this.baseRotate == 8){
28517             
28518             width = this.thumbEl.getHeight();
28519             this.baseScale = width / this.imageEl.OriginHeight;
28520             
28521             if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getWidth()){
28522                 height = this.thumbEl.getWidth();
28523                 this.baseScale = height / this.imageEl.OriginHeight;
28524             }
28525             
28526             if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28527                 height = this.thumbEl.getWidth();
28528                 this.baseScale = height / this.imageEl.OriginHeight;
28529                 
28530                 if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getHeight()){
28531                     width = this.thumbEl.getHeight();
28532                     this.baseScale = width / this.imageEl.OriginWidth;
28533                 }
28534             }
28535             
28536             return;
28537         }
28538         
28539         width = this.thumbEl.getWidth();
28540         this.baseScale = width / this.imageEl.OriginWidth;
28541         
28542         if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getHeight()){
28543             height = this.thumbEl.getHeight();
28544             this.baseScale = height / this.imageEl.OriginHeight;
28545         }
28546         
28547         if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28548             
28549             height = this.thumbEl.getHeight();
28550             this.baseScale = height / this.imageEl.OriginHeight;
28551             
28552             if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getWidth()){
28553                 width = this.thumbEl.getWidth();
28554                 this.baseScale = width / this.imageEl.OriginWidth;
28555             }
28556             
28557         }
28558         
28559         return;
28560     },
28561     
28562     getScaleLevel : function()
28563     {
28564         return this.baseScale * Math.pow(1.1, this.scale);
28565     },
28566     
28567     onTouchStart : function(e)
28568     {
28569         if(!this.canvasLoaded){
28570             this.beforeSelectFile(e);
28571             return;
28572         }
28573         
28574         var touches = e.browserEvent.touches;
28575         
28576         if(!touches){
28577             return;
28578         }
28579         
28580         if(touches.length == 1){
28581             this.onMouseDown(e);
28582             return;
28583         }
28584         
28585         if(touches.length != 2){
28586             return;
28587         }
28588         
28589         var coords = [];
28590         
28591         for(var i = 0, finger; finger = touches[i]; i++){
28592             coords.push(finger.pageX, finger.pageY);
28593         }
28594         
28595         var x = Math.pow(coords[0] - coords[2], 2);
28596         var y = Math.pow(coords[1] - coords[3], 2);
28597         
28598         this.startDistance = Math.sqrt(x + y);
28599         
28600         this.startScale = this.scale;
28601         
28602         this.pinching = true;
28603         this.dragable = false;
28604         
28605     },
28606     
28607     onTouchMove : function(e)
28608     {
28609         if(!this.pinching && !this.dragable){
28610             return;
28611         }
28612         
28613         var touches = e.browserEvent.touches;
28614         
28615         if(!touches){
28616             return;
28617         }
28618         
28619         if(this.dragable){
28620             this.onMouseMove(e);
28621             return;
28622         }
28623         
28624         var coords = [];
28625         
28626         for(var i = 0, finger; finger = touches[i]; i++){
28627             coords.push(finger.pageX, finger.pageY);
28628         }
28629         
28630         var x = Math.pow(coords[0] - coords[2], 2);
28631         var y = Math.pow(coords[1] - coords[3], 2);
28632         
28633         this.endDistance = Math.sqrt(x + y);
28634         
28635         this.scale = this.startScale + Math.floor(Math.log(this.endDistance / this.startDistance) / Math.log(1.1));
28636         
28637         if(!this.zoomable()){
28638             this.scale = this.startScale;
28639             return;
28640         }
28641         
28642         this.draw();
28643         
28644     },
28645     
28646     onTouchEnd : function(e)
28647     {
28648         this.pinching = false;
28649         this.dragable = false;
28650         
28651     },
28652     
28653     process : function(file, crop)
28654     {
28655         if(this.loadMask){
28656             this.maskEl.mask(this.loadingText);
28657         }
28658         
28659         this.xhr = new XMLHttpRequest();
28660         
28661         file.xhr = this.xhr;
28662
28663         this.xhr.open(this.method, this.url, true);
28664         
28665         var headers = {
28666             "Accept": "application/json",
28667             "Cache-Control": "no-cache",
28668             "X-Requested-With": "XMLHttpRequest"
28669         };
28670         
28671         for (var headerName in headers) {
28672             var headerValue = headers[headerName];
28673             if (headerValue) {
28674                 this.xhr.setRequestHeader(headerName, headerValue);
28675             }
28676         }
28677         
28678         var _this = this;
28679         
28680         this.xhr.onload = function()
28681         {
28682             _this.xhrOnLoad(_this.xhr);
28683         }
28684         
28685         this.xhr.onerror = function()
28686         {
28687             _this.xhrOnError(_this.xhr);
28688         }
28689         
28690         var formData = new FormData();
28691
28692         formData.append('returnHTML', 'NO');
28693         
28694         if(crop){
28695             formData.append('crop', crop);
28696         }
28697         
28698         if(typeof(file) != 'undefined' && (typeof(file.id) == 'undefined' || file.id * 1 < 1)){
28699             formData.append(this.paramName, file, file.name);
28700         }
28701         
28702         if(typeof(file.filename) != 'undefined'){
28703             formData.append('filename', file.filename);
28704         }
28705         
28706         if(typeof(file.mimetype) != 'undefined'){
28707             formData.append('mimetype', file.mimetype);
28708         }
28709         
28710         if(this.fireEvent('arrange', this, formData) != false){
28711             this.xhr.send(formData);
28712         };
28713     },
28714     
28715     xhrOnLoad : function(xhr)
28716     {
28717         if(this.loadMask){
28718             this.maskEl.unmask();
28719         }
28720         
28721         if (xhr.readyState !== 4) {
28722             this.fireEvent('exception', this, xhr);
28723             return;
28724         }
28725
28726         var response = Roo.decode(xhr.responseText);
28727         
28728         if(!response.success){
28729             this.fireEvent('exception', this, xhr);
28730             return;
28731         }
28732         
28733         var response = Roo.decode(xhr.responseText);
28734         
28735         this.fireEvent('upload', this, response);
28736         
28737     },
28738     
28739     xhrOnError : function()
28740     {
28741         if(this.loadMask){
28742             this.maskEl.unmask();
28743         }
28744         
28745         Roo.log('xhr on error');
28746         
28747         var response = Roo.decode(xhr.responseText);
28748           
28749         Roo.log(response);
28750         
28751     },
28752     
28753     prepare : function(file)
28754     {   
28755         if(this.loadMask){
28756             this.maskEl.mask(this.loadingText);
28757         }
28758         
28759         this.file = false;
28760         this.exif = {};
28761         
28762         if(typeof(file) === 'string'){
28763             this.loadCanvas(file);
28764             return;
28765         }
28766         
28767         if(!file || !this.urlAPI){
28768             return;
28769         }
28770         
28771         this.file = file;
28772         this.cropType = file.type;
28773         
28774         var _this = this;
28775         
28776         if(this.fireEvent('prepare', this, this.file) != false){
28777             
28778             var reader = new FileReader();
28779             
28780             reader.onload = function (e) {
28781                 if (e.target.error) {
28782                     Roo.log(e.target.error);
28783                     return;
28784                 }
28785                 
28786                 var buffer = e.target.result,
28787                     dataView = new DataView(buffer),
28788                     offset = 2,
28789                     maxOffset = dataView.byteLength - 4,
28790                     markerBytes,
28791                     markerLength;
28792                 
28793                 if (dataView.getUint16(0) === 0xffd8) {
28794                     while (offset < maxOffset) {
28795                         markerBytes = dataView.getUint16(offset);
28796                         
28797                         if ((markerBytes >= 0xffe0 && markerBytes <= 0xffef) || markerBytes === 0xfffe) {
28798                             markerLength = dataView.getUint16(offset + 2) + 2;
28799                             if (offset + markerLength > dataView.byteLength) {
28800                                 Roo.log('Invalid meta data: Invalid segment size.');
28801                                 break;
28802                             }
28803                             
28804                             if(markerBytes == 0xffe1){
28805                                 _this.parseExifData(
28806                                     dataView,
28807                                     offset,
28808                                     markerLength
28809                                 );
28810                             }
28811                             
28812                             offset += markerLength;
28813                             
28814                             continue;
28815                         }
28816                         
28817                         break;
28818                     }
28819                     
28820                 }
28821                 
28822                 var url = _this.urlAPI.createObjectURL(_this.file);
28823                 
28824                 _this.loadCanvas(url);
28825                 
28826                 return;
28827             }
28828             
28829             reader.readAsArrayBuffer(this.file);
28830             
28831         }
28832         
28833     },
28834     
28835     parseExifData : function(dataView, offset, length)
28836     {
28837         var tiffOffset = offset + 10,
28838             littleEndian,
28839             dirOffset;
28840     
28841         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28842             // No Exif data, might be XMP data instead
28843             return;
28844         }
28845         
28846         // Check for the ASCII code for "Exif" (0x45786966):
28847         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28848             // No Exif data, might be XMP data instead
28849             return;
28850         }
28851         if (tiffOffset + 8 > dataView.byteLength) {
28852             Roo.log('Invalid Exif data: Invalid segment size.');
28853             return;
28854         }
28855         // Check for the two null bytes:
28856         if (dataView.getUint16(offset + 8) !== 0x0000) {
28857             Roo.log('Invalid Exif data: Missing byte alignment offset.');
28858             return;
28859         }
28860         // Check the byte alignment:
28861         switch (dataView.getUint16(tiffOffset)) {
28862         case 0x4949:
28863             littleEndian = true;
28864             break;
28865         case 0x4D4D:
28866             littleEndian = false;
28867             break;
28868         default:
28869             Roo.log('Invalid Exif data: Invalid byte alignment marker.');
28870             return;
28871         }
28872         // Check for the TIFF tag marker (0x002A):
28873         if (dataView.getUint16(tiffOffset + 2, littleEndian) !== 0x002A) {
28874             Roo.log('Invalid Exif data: Missing TIFF marker.');
28875             return;
28876         }
28877         // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
28878         dirOffset = dataView.getUint32(tiffOffset + 4, littleEndian);
28879         
28880         this.parseExifTags(
28881             dataView,
28882             tiffOffset,
28883             tiffOffset + dirOffset,
28884             littleEndian
28885         );
28886     },
28887     
28888     parseExifTags : function(dataView, tiffOffset, dirOffset, littleEndian)
28889     {
28890         var tagsNumber,
28891             dirEndOffset,
28892             i;
28893         if (dirOffset + 6 > dataView.byteLength) {
28894             Roo.log('Invalid Exif data: Invalid directory offset.');
28895             return;
28896         }
28897         tagsNumber = dataView.getUint16(dirOffset, littleEndian);
28898         dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
28899         if (dirEndOffset + 4 > dataView.byteLength) {
28900             Roo.log('Invalid Exif data: Invalid directory size.');
28901             return;
28902         }
28903         for (i = 0; i < tagsNumber; i += 1) {
28904             this.parseExifTag(
28905                 dataView,
28906                 tiffOffset,
28907                 dirOffset + 2 + 12 * i, // tag offset
28908                 littleEndian
28909             );
28910         }
28911         // Return the offset to the next directory:
28912         return dataView.getUint32(dirEndOffset, littleEndian);
28913     },
28914     
28915     parseExifTag : function (dataView, tiffOffset, offset, littleEndian) 
28916     {
28917         var tag = dataView.getUint16(offset, littleEndian);
28918         
28919         this.exif[tag] = this.getExifValue(
28920             dataView,
28921             tiffOffset,
28922             offset,
28923             dataView.getUint16(offset + 2, littleEndian), // tag type
28924             dataView.getUint32(offset + 4, littleEndian), // tag length
28925             littleEndian
28926         );
28927     },
28928     
28929     getExifValue : function (dataView, tiffOffset, offset, type, length, littleEndian)
28930     {
28931         var tagType = Roo.bootstrap.UploadCropbox.exifTagTypes[type],
28932             tagSize,
28933             dataOffset,
28934             values,
28935             i,
28936             str,
28937             c;
28938     
28939         if (!tagType) {
28940             Roo.log('Invalid Exif data: Invalid tag type.');
28941             return;
28942         }
28943         
28944         tagSize = tagType.size * length;
28945         // Determine if the value is contained in the dataOffset bytes,
28946         // or if the value at the dataOffset is a pointer to the actual data:
28947         dataOffset = tagSize > 4 ?
28948                 tiffOffset + dataView.getUint32(offset + 8, littleEndian) : (offset + 8);
28949         if (dataOffset + tagSize > dataView.byteLength) {
28950             Roo.log('Invalid Exif data: Invalid data offset.');
28951             return;
28952         }
28953         if (length === 1) {
28954             return tagType.getValue(dataView, dataOffset, littleEndian);
28955         }
28956         values = [];
28957         for (i = 0; i < length; i += 1) {
28958             values[i] = tagType.getValue(dataView, dataOffset + i * tagType.size, littleEndian);
28959         }
28960         
28961         if (tagType.ascii) {
28962             str = '';
28963             // Concatenate the chars:
28964             for (i = 0; i < values.length; i += 1) {
28965                 c = values[i];
28966                 // Ignore the terminating NULL byte(s):
28967                 if (c === '\u0000') {
28968                     break;
28969                 }
28970                 str += c;
28971             }
28972             return str;
28973         }
28974         return values;
28975     }
28976     
28977 });
28978
28979 Roo.apply(Roo.bootstrap.UploadCropbox, {
28980     tags : {
28981         'Orientation': 0x0112
28982     },
28983     
28984     Orientation: {
28985             1: 0, //'top-left',
28986 //            2: 'top-right',
28987             3: 180, //'bottom-right',
28988 //            4: 'bottom-left',
28989 //            5: 'left-top',
28990             6: 90, //'right-top',
28991 //            7: 'right-bottom',
28992             8: 270 //'left-bottom'
28993     },
28994     
28995     exifTagTypes : {
28996         // byte, 8-bit unsigned int:
28997         1: {
28998             getValue: function (dataView, dataOffset) {
28999                 return dataView.getUint8(dataOffset);
29000             },
29001             size: 1
29002         },
29003         // ascii, 8-bit byte:
29004         2: {
29005             getValue: function (dataView, dataOffset) {
29006                 return String.fromCharCode(dataView.getUint8(dataOffset));
29007             },
29008             size: 1,
29009             ascii: true
29010         },
29011         // short, 16 bit int:
29012         3: {
29013             getValue: function (dataView, dataOffset, littleEndian) {
29014                 return dataView.getUint16(dataOffset, littleEndian);
29015             },
29016             size: 2
29017         },
29018         // long, 32 bit int:
29019         4: {
29020             getValue: function (dataView, dataOffset, littleEndian) {
29021                 return dataView.getUint32(dataOffset, littleEndian);
29022             },
29023             size: 4
29024         },
29025         // rational = two long values, first is numerator, second is denominator:
29026         5: {
29027             getValue: function (dataView, dataOffset, littleEndian) {
29028                 return dataView.getUint32(dataOffset, littleEndian) /
29029                     dataView.getUint32(dataOffset + 4, littleEndian);
29030             },
29031             size: 8
29032         },
29033         // slong, 32 bit signed int:
29034         9: {
29035             getValue: function (dataView, dataOffset, littleEndian) {
29036                 return dataView.getInt32(dataOffset, littleEndian);
29037             },
29038             size: 4
29039         },
29040         // srational, two slongs, first is numerator, second is denominator:
29041         10: {
29042             getValue: function (dataView, dataOffset, littleEndian) {
29043                 return dataView.getInt32(dataOffset, littleEndian) /
29044                     dataView.getInt32(dataOffset + 4, littleEndian);
29045             },
29046             size: 8
29047         }
29048     },
29049     
29050     footer : {
29051         STANDARD : [
29052             {
29053                 tag : 'div',
29054                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29055                 action : 'rotate-left',
29056                 cn : [
29057                     {
29058                         tag : 'button',
29059                         cls : 'btn btn-default',
29060                         html : '<i class="fa fa-undo"></i>'
29061                     }
29062                 ]
29063             },
29064             {
29065                 tag : 'div',
29066                 cls : 'btn-group roo-upload-cropbox-picture',
29067                 action : 'picture',
29068                 cn : [
29069                     {
29070                         tag : 'button',
29071                         cls : 'btn btn-default',
29072                         html : '<i class="fa fa-picture-o"></i>'
29073                     }
29074                 ]
29075             },
29076             {
29077                 tag : 'div',
29078                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29079                 action : 'rotate-right',
29080                 cn : [
29081                     {
29082                         tag : 'button',
29083                         cls : 'btn btn-default',
29084                         html : '<i class="fa fa-repeat"></i>'
29085                     }
29086                 ]
29087             }
29088         ],
29089         DOCUMENT : [
29090             {
29091                 tag : 'div',
29092                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29093                 action : 'rotate-left',
29094                 cn : [
29095                     {
29096                         tag : 'button',
29097                         cls : 'btn btn-default',
29098                         html : '<i class="fa fa-undo"></i>'
29099                     }
29100                 ]
29101             },
29102             {
29103                 tag : 'div',
29104                 cls : 'btn-group roo-upload-cropbox-download',
29105                 action : 'download',
29106                 cn : [
29107                     {
29108                         tag : 'button',
29109                         cls : 'btn btn-default',
29110                         html : '<i class="fa fa-download"></i>'
29111                     }
29112                 ]
29113             },
29114             {
29115                 tag : 'div',
29116                 cls : 'btn-group roo-upload-cropbox-crop',
29117                 action : 'crop',
29118                 cn : [
29119                     {
29120                         tag : 'button',
29121                         cls : 'btn btn-default',
29122                         html : '<i class="fa fa-crop"></i>'
29123                     }
29124                 ]
29125             },
29126             {
29127                 tag : 'div',
29128                 cls : 'btn-group roo-upload-cropbox-trash',
29129                 action : 'trash',
29130                 cn : [
29131                     {
29132                         tag : 'button',
29133                         cls : 'btn btn-default',
29134                         html : '<i class="fa fa-trash"></i>'
29135                     }
29136                 ]
29137             },
29138             {
29139                 tag : 'div',
29140                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29141                 action : 'rotate-right',
29142                 cn : [
29143                     {
29144                         tag : 'button',
29145                         cls : 'btn btn-default',
29146                         html : '<i class="fa fa-repeat"></i>'
29147                     }
29148                 ]
29149             }
29150         ],
29151         ROTATOR : [
29152             {
29153                 tag : 'div',
29154                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29155                 action : 'rotate-left',
29156                 cn : [
29157                     {
29158                         tag : 'button',
29159                         cls : 'btn btn-default',
29160                         html : '<i class="fa fa-undo"></i>'
29161                     }
29162                 ]
29163             },
29164             {
29165                 tag : 'div',
29166                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29167                 action : 'rotate-right',
29168                 cn : [
29169                     {
29170                         tag : 'button',
29171                         cls : 'btn btn-default',
29172                         html : '<i class="fa fa-repeat"></i>'
29173                     }
29174                 ]
29175             }
29176         ]
29177     }
29178 });
29179
29180 /*
29181 * Licence: LGPL
29182 */
29183
29184 /**
29185  * @class Roo.bootstrap.DocumentManager
29186  * @extends Roo.bootstrap.Component
29187  * Bootstrap DocumentManager class
29188  * @cfg {String} paramName default 'imageUpload'
29189  * @cfg {String} toolTipName default 'filename'
29190  * @cfg {String} method default POST
29191  * @cfg {String} url action url
29192  * @cfg {Number} boxes number of boxes, 0 is no limit.. default 0
29193  * @cfg {Boolean} multiple multiple upload default true
29194  * @cfg {Number} thumbSize default 300
29195  * @cfg {String} fieldLabel
29196  * @cfg {Number} labelWidth default 4
29197  * @cfg {String} labelAlign (left|top) default left
29198  * @cfg {Boolean} editable (true|false) allow edit when upload a image default true
29199 * @cfg {Number} labellg set the width of label (1-12)
29200  * @cfg {Number} labelmd set the width of label (1-12)
29201  * @cfg {Number} labelsm set the width of label (1-12)
29202  * @cfg {Number} labelxs set the width of label (1-12)
29203  * 
29204  * @constructor
29205  * Create a new DocumentManager
29206  * @param {Object} config The config object
29207  */
29208
29209 Roo.bootstrap.DocumentManager = function(config){
29210     Roo.bootstrap.DocumentManager.superclass.constructor.call(this, config);
29211     
29212     this.files = [];
29213     this.delegates = [];
29214     
29215     this.addEvents({
29216         /**
29217          * @event initial
29218          * Fire when initial the DocumentManager
29219          * @param {Roo.bootstrap.DocumentManager} this
29220          */
29221         "initial" : true,
29222         /**
29223          * @event inspect
29224          * inspect selected file
29225          * @param {Roo.bootstrap.DocumentManager} this
29226          * @param {File} file
29227          */
29228         "inspect" : true,
29229         /**
29230          * @event exception
29231          * Fire when xhr load exception
29232          * @param {Roo.bootstrap.DocumentManager} this
29233          * @param {XMLHttpRequest} xhr
29234          */
29235         "exception" : true,
29236         /**
29237          * @event afterupload
29238          * Fire when xhr load exception
29239          * @param {Roo.bootstrap.DocumentManager} this
29240          * @param {XMLHttpRequest} xhr
29241          */
29242         "afterupload" : true,
29243         /**
29244          * @event prepare
29245          * prepare the form data
29246          * @param {Roo.bootstrap.DocumentManager} this
29247          * @param {Object} formData
29248          */
29249         "prepare" : true,
29250         /**
29251          * @event remove
29252          * Fire when remove the file
29253          * @param {Roo.bootstrap.DocumentManager} this
29254          * @param {Object} file
29255          */
29256         "remove" : true,
29257         /**
29258          * @event refresh
29259          * Fire after refresh the file
29260          * @param {Roo.bootstrap.DocumentManager} this
29261          */
29262         "refresh" : true,
29263         /**
29264          * @event click
29265          * Fire after click the image
29266          * @param {Roo.bootstrap.DocumentManager} this
29267          * @param {Object} file
29268          */
29269         "click" : true,
29270         /**
29271          * @event edit
29272          * Fire when upload a image and editable set to true
29273          * @param {Roo.bootstrap.DocumentManager} this
29274          * @param {Object} file
29275          */
29276         "edit" : true,
29277         /**
29278          * @event beforeselectfile
29279          * Fire before select file
29280          * @param {Roo.bootstrap.DocumentManager} this
29281          */
29282         "beforeselectfile" : true,
29283         /**
29284          * @event process
29285          * Fire before process file
29286          * @param {Roo.bootstrap.DocumentManager} this
29287          * @param {Object} file
29288          */
29289         "process" : true,
29290         /**
29291          * @event previewrendered
29292          * Fire when preview rendered
29293          * @param {Roo.bootstrap.DocumentManager} this
29294          * @param {Object} file
29295          */
29296         "previewrendered" : true,
29297         /**
29298          */
29299         "previewResize" : true
29300         
29301     });
29302 };
29303
29304 Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component,  {
29305     
29306     boxes : 0,
29307     inputName : '',
29308     thumbSize : 300,
29309     multiple : true,
29310     files : false,
29311     method : 'POST',
29312     url : '',
29313     paramName : 'imageUpload',
29314     toolTipName : 'filename',
29315     fieldLabel : '',
29316     labelWidth : 4,
29317     labelAlign : 'left',
29318     editable : true,
29319     delegates : false,
29320     xhr : false, 
29321     
29322     labellg : 0,
29323     labelmd : 0,
29324     labelsm : 0,
29325     labelxs : 0,
29326     
29327     getAutoCreate : function()
29328     {   
29329         var managerWidget = {
29330             tag : 'div',
29331             cls : 'roo-document-manager',
29332             cn : [
29333                 {
29334                     tag : 'input',
29335                     cls : 'roo-document-manager-selector',
29336                     type : 'file'
29337                 },
29338                 {
29339                     tag : 'div',
29340                     cls : 'roo-document-manager-uploader',
29341                     cn : [
29342                         {
29343                             tag : 'div',
29344                             cls : 'roo-document-manager-upload-btn',
29345                             html : '<i class="fa fa-plus"></i>'
29346                         }
29347                     ]
29348                     
29349                 }
29350             ]
29351         };
29352         
29353         var content = [
29354             {
29355                 tag : 'div',
29356                 cls : 'column col-md-12',
29357                 cn : managerWidget
29358             }
29359         ];
29360         
29361         if(this.fieldLabel.length){
29362             
29363             content = [
29364                 {
29365                     tag : 'div',
29366                     cls : 'column col-md-12',
29367                     html : this.fieldLabel
29368                 },
29369                 {
29370                     tag : 'div',
29371                     cls : 'column col-md-12',
29372                     cn : managerWidget
29373                 }
29374             ];
29375
29376             if(this.labelAlign == 'left'){
29377                 content = [
29378                     {
29379                         tag : 'div',
29380                         cls : 'column',
29381                         html : this.fieldLabel
29382                     },
29383                     {
29384                         tag : 'div',
29385                         cls : 'column',
29386                         cn : managerWidget
29387                     }
29388                 ];
29389                 
29390                 if(this.labelWidth > 12){
29391                     content[0].style = "width: " + this.labelWidth + 'px';
29392                 }
29393
29394                 if(this.labelWidth < 13 && this.labelmd == 0){
29395                     this.labelmd = this.labelWidth;
29396                 }
29397
29398                 if(this.labellg > 0){
29399                     content[0].cls += ' col-lg-' + this.labellg;
29400                     content[1].cls += ' col-lg-' + (12 - this.labellg);
29401                 }
29402
29403                 if(this.labelmd > 0){
29404                     content[0].cls += ' col-md-' + this.labelmd;
29405                     content[1].cls += ' col-md-' + (12 - this.labelmd);
29406                 }
29407
29408                 if(this.labelsm > 0){
29409                     content[0].cls += ' col-sm-' + this.labelsm;
29410                     content[1].cls += ' col-sm-' + (12 - this.labelsm);
29411                 }
29412
29413                 if(this.labelxs > 0){
29414                     content[0].cls += ' col-xs-' + this.labelxs;
29415                     content[1].cls += ' col-xs-' + (12 - this.labelxs);
29416                 }
29417                 
29418             }
29419         }
29420         
29421         var cfg = {
29422             tag : 'div',
29423             cls : 'row clearfix',
29424             cn : content
29425         };
29426         
29427         return cfg;
29428         
29429     },
29430     
29431     initEvents : function()
29432     {
29433         this.managerEl = this.el.select('.roo-document-manager', true).first();
29434         this.managerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29435         
29436         this.selectorEl = this.el.select('.roo-document-manager-selector', true).first();
29437         this.selectorEl.hide();
29438         
29439         if(this.multiple){
29440             this.selectorEl.attr('multiple', 'multiple');
29441         }
29442         
29443         this.selectorEl.on('change', this.onFileSelected, this);
29444         
29445         this.uploader = this.el.select('.roo-document-manager-uploader', true).first();
29446         this.uploader.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29447         
29448         this.uploader.on('click', this.onUploaderClick, this);
29449         
29450         this.renderProgressDialog();
29451         
29452         var _this = this;
29453         
29454         window.addEventListener("resize", function() { _this.refresh(); } );
29455         
29456         this.fireEvent('initial', this);
29457     },
29458     
29459     renderProgressDialog : function()
29460     {
29461         var _this = this;
29462         
29463         this.progressDialog = new Roo.bootstrap.Modal({
29464             cls : 'roo-document-manager-progress-dialog',
29465             allow_close : false,
29466             animate : false,
29467             title : '',
29468             buttons : [
29469                 {
29470                     name  :'cancel',
29471                     weight : 'danger',
29472                     html : 'Cancel'
29473                 }
29474             ], 
29475             listeners : { 
29476                 btnclick : function() {
29477                     _this.uploadCancel();
29478                     this.hide();
29479                 }
29480             }
29481         });
29482          
29483         this.progressDialog.render(Roo.get(document.body));
29484          
29485         this.progress = new Roo.bootstrap.Progress({
29486             cls : 'roo-document-manager-progress',
29487             active : true,
29488             striped : true
29489         });
29490         
29491         this.progress.render(this.progressDialog.getChildContainer());
29492         
29493         this.progressBar = new Roo.bootstrap.ProgressBar({
29494             cls : 'roo-document-manager-progress-bar',
29495             aria_valuenow : 0,
29496             aria_valuemin : 0,
29497             aria_valuemax : 12,
29498             panel : 'success'
29499         });
29500         
29501         this.progressBar.render(this.progress.getChildContainer());
29502     },
29503     
29504     onUploaderClick : function(e)
29505     {
29506         e.preventDefault();
29507      
29508         if(this.fireEvent('beforeselectfile', this) != false){
29509             this.selectorEl.dom.click();
29510         }
29511         
29512     },
29513     
29514     onFileSelected : function(e)
29515     {
29516         e.preventDefault();
29517         
29518         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
29519             return;
29520         }
29521         
29522         Roo.each(this.selectorEl.dom.files, function(file){
29523             if(this.fireEvent('inspect', this, file) != false){
29524                 this.files.push(file);
29525             }
29526         }, this);
29527         
29528         this.queue();
29529         
29530     },
29531     
29532     queue : function()
29533     {
29534         this.selectorEl.dom.value = '';
29535         
29536         if(!this.files || !this.files.length){
29537             return;
29538         }
29539         
29540         if(this.boxes > 0 && this.files.length > this.boxes){
29541             this.files = this.files.slice(0, this.boxes);
29542         }
29543         
29544         this.uploader.show();
29545         
29546         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29547             this.uploader.hide();
29548         }
29549         
29550         var _this = this;
29551         
29552         var files = [];
29553         
29554         var docs = [];
29555         
29556         Roo.each(this.files, function(file){
29557             
29558             if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29559                 var f = this.renderPreview(file);
29560                 files.push(f);
29561                 return;
29562             }
29563             
29564             if(file.type.indexOf('image') != -1){
29565                 this.delegates.push(
29566                     (function(){
29567                         _this.process(file);
29568                     }).createDelegate(this)
29569                 );
29570         
29571                 return;
29572             }
29573             
29574             docs.push(
29575                 (function(){
29576                     _this.process(file);
29577                 }).createDelegate(this)
29578             );
29579             
29580         }, this);
29581         
29582         this.files = files;
29583         
29584         this.delegates = this.delegates.concat(docs);
29585         
29586         if(!this.delegates.length){
29587             this.refresh();
29588             return;
29589         }
29590         
29591         this.progressBar.aria_valuemax = this.delegates.length;
29592         
29593         this.arrange();
29594         
29595         return;
29596     },
29597     
29598     arrange : function()
29599     {
29600         if(!this.delegates.length){
29601             this.progressDialog.hide();
29602             this.refresh();
29603             return;
29604         }
29605         
29606         var delegate = this.delegates.shift();
29607         
29608         this.progressDialog.show();
29609         
29610         this.progressDialog.setTitle((this.progressBar.aria_valuemax - this.delegates.length) + ' / ' + this.progressBar.aria_valuemax);
29611         
29612         this.progressBar.update(this.progressBar.aria_valuemax - this.delegates.length);
29613         
29614         delegate();
29615     },
29616     
29617     refresh : function()
29618     {
29619         this.uploader.show();
29620         
29621         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29622             this.uploader.hide();
29623         }
29624         
29625         Roo.isTouch ? this.closable(false) : this.closable(true);
29626         
29627         this.fireEvent('refresh', this);
29628     },
29629     
29630     onRemove : function(e, el, o)
29631     {
29632         e.preventDefault();
29633         
29634         this.fireEvent('remove', this, o);
29635         
29636     },
29637     
29638     remove : function(o)
29639     {
29640         var files = [];
29641         
29642         Roo.each(this.files, function(file){
29643             if(typeof(file.id) == 'undefined' || file.id * 1 < 1 || file.id != o.id){
29644                 files.push(file);
29645                 return;
29646             }
29647
29648             o.target.remove();
29649
29650         }, this);
29651         
29652         this.files = files;
29653         
29654         this.refresh();
29655     },
29656     
29657     clear : function()
29658     {
29659         Roo.each(this.files, function(file){
29660             if(!file.target){
29661                 return;
29662             }
29663             
29664             file.target.remove();
29665
29666         }, this);
29667         
29668         this.files = [];
29669         
29670         this.refresh();
29671     },
29672     
29673     onClick : function(e, el, o)
29674     {
29675         e.preventDefault();
29676         
29677         this.fireEvent('click', this, o);
29678         
29679     },
29680     
29681     closable : function(closable)
29682     {
29683         Roo.each(this.managerEl.select('.roo-document-manager-preview > button.close', true).elements, function(el){
29684             
29685             el.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29686             
29687             if(closable){
29688                 el.show();
29689                 return;
29690             }
29691             
29692             el.hide();
29693             
29694         }, this);
29695     },
29696     
29697     xhrOnLoad : function(xhr)
29698     {
29699         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29700             el.remove();
29701         }, this);
29702         
29703         if (xhr.readyState !== 4) {
29704             this.arrange();
29705             this.fireEvent('exception', this, xhr);
29706             return;
29707         }
29708
29709         var response = Roo.decode(xhr.responseText);
29710         
29711         if(!response.success){
29712             this.arrange();
29713             this.fireEvent('exception', this, xhr);
29714             return;
29715         }
29716         
29717         var file = this.renderPreview(response.data);
29718         
29719         this.files.push(file);
29720         
29721         this.arrange();
29722         
29723         this.fireEvent('afterupload', this, xhr);
29724         
29725     },
29726     
29727     xhrOnError : function(xhr)
29728     {
29729         Roo.log('xhr on error');
29730         
29731         var response = Roo.decode(xhr.responseText);
29732           
29733         Roo.log(response);
29734         
29735         this.arrange();
29736     },
29737     
29738     process : function(file)
29739     {
29740         if(this.fireEvent('process', this, file) !== false){
29741             if(this.editable && file.type.indexOf('image') != -1){
29742                 this.fireEvent('edit', this, file);
29743                 return;
29744             }
29745
29746             this.uploadStart(file, false);
29747
29748             return;
29749         }
29750         
29751     },
29752     
29753     uploadStart : function(file, crop)
29754     {
29755         this.xhr = new XMLHttpRequest();
29756         
29757         if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29758             this.arrange();
29759             return;
29760         }
29761         
29762         file.xhr = this.xhr;
29763             
29764         this.managerEl.createChild({
29765             tag : 'div',
29766             cls : 'roo-document-manager-loading',
29767             cn : [
29768                 {
29769                     tag : 'div',
29770                     tooltip : file.name,
29771                     cls : 'roo-document-manager-thumb',
29772                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29773                 }
29774             ]
29775
29776         });
29777
29778         this.xhr.open(this.method, this.url, true);
29779         
29780         var headers = {
29781             "Accept": "application/json",
29782             "Cache-Control": "no-cache",
29783             "X-Requested-With": "XMLHttpRequest"
29784         };
29785         
29786         for (var headerName in headers) {
29787             var headerValue = headers[headerName];
29788             if (headerValue) {
29789                 this.xhr.setRequestHeader(headerName, headerValue);
29790             }
29791         }
29792         
29793         var _this = this;
29794         
29795         this.xhr.onload = function()
29796         {
29797             _this.xhrOnLoad(_this.xhr);
29798         }
29799         
29800         this.xhr.onerror = function()
29801         {
29802             _this.xhrOnError(_this.xhr);
29803         }
29804         
29805         var formData = new FormData();
29806
29807         formData.append('returnHTML', 'NO');
29808         
29809         if(crop){
29810             formData.append('crop', crop);
29811         }
29812         
29813         formData.append(this.paramName, file, file.name);
29814         
29815         var options = {
29816             file : file, 
29817             manually : false
29818         };
29819         
29820         if(this.fireEvent('prepare', this, formData, options) != false){
29821             
29822             if(options.manually){
29823                 return;
29824             }
29825             
29826             this.xhr.send(formData);
29827             return;
29828         };
29829         
29830         this.uploadCancel();
29831     },
29832     
29833     uploadCancel : function()
29834     {
29835         if (this.xhr) {
29836             this.xhr.abort();
29837         }
29838         
29839         this.delegates = [];
29840         
29841         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29842             el.remove();
29843         }, this);
29844         
29845         this.arrange();
29846     },
29847     
29848     renderPreview : function(file)
29849     {
29850         if(typeof(file.target) != 'undefined' && file.target){
29851             return file;
29852         }
29853         
29854         var img_src = encodeURI(baseURL +'/Images/Thumb/' + this.thumbSize + '/' + file.id + '/' + file.filename);
29855         
29856         var previewEl = this.managerEl.createChild({
29857             tag : 'div',
29858             cls : 'roo-document-manager-preview',
29859             cn : [
29860                 {
29861                     tag : 'div',
29862                     tooltip : file[this.toolTipName],
29863                     cls : 'roo-document-manager-thumb',
29864                     html : '<img tooltip="' + file[this.toolTipName] + '" src="' + img_src + '">'
29865                 },
29866                 {
29867                     tag : 'button',
29868                     cls : 'close',
29869                     html : '<i class="fa fa-times-circle"></i>'
29870                 }
29871             ]
29872         });
29873
29874         var close = previewEl.select('button.close', true).first();
29875
29876         close.on('click', this.onRemove, this, file);
29877
29878         file.target = previewEl;
29879
29880         var image = previewEl.select('img', true).first();
29881         
29882         var _this = this;
29883         
29884         image.dom.addEventListener("load", function(){ _this.onPreviewLoad(file, image); });
29885         
29886         image.on('click', this.onClick, this, file);
29887         
29888         this.fireEvent('previewrendered', this, file);
29889         
29890         return file;
29891         
29892     },
29893     
29894     onPreviewLoad : function(file, image)
29895     {
29896         if(typeof(file.target) == 'undefined' || !file.target){
29897             return;
29898         }
29899         
29900         var width = image.dom.naturalWidth || image.dom.width;
29901         var height = image.dom.naturalHeight || image.dom.height;
29902         
29903         if(!this.previewResize) {
29904             return;
29905         }
29906         
29907         if(width > height){
29908             file.target.addClass('wide');
29909             return;
29910         }
29911         
29912         file.target.addClass('tall');
29913         return;
29914         
29915     },
29916     
29917     uploadFromSource : function(file, crop)
29918     {
29919         this.xhr = new XMLHttpRequest();
29920         
29921         this.managerEl.createChild({
29922             tag : 'div',
29923             cls : 'roo-document-manager-loading',
29924             cn : [
29925                 {
29926                     tag : 'div',
29927                     tooltip : file.name,
29928                     cls : 'roo-document-manager-thumb',
29929                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29930                 }
29931             ]
29932
29933         });
29934
29935         this.xhr.open(this.method, this.url, true);
29936         
29937         var headers = {
29938             "Accept": "application/json",
29939             "Cache-Control": "no-cache",
29940             "X-Requested-With": "XMLHttpRequest"
29941         };
29942         
29943         for (var headerName in headers) {
29944             var headerValue = headers[headerName];
29945             if (headerValue) {
29946                 this.xhr.setRequestHeader(headerName, headerValue);
29947             }
29948         }
29949         
29950         var _this = this;
29951         
29952         this.xhr.onload = function()
29953         {
29954             _this.xhrOnLoad(_this.xhr);
29955         }
29956         
29957         this.xhr.onerror = function()
29958         {
29959             _this.xhrOnError(_this.xhr);
29960         }
29961         
29962         var formData = new FormData();
29963
29964         formData.append('returnHTML', 'NO');
29965         
29966         formData.append('crop', crop);
29967         
29968         if(typeof(file.filename) != 'undefined'){
29969             formData.append('filename', file.filename);
29970         }
29971         
29972         if(typeof(file.mimetype) != 'undefined'){
29973             formData.append('mimetype', file.mimetype);
29974         }
29975         
29976         Roo.log(formData);
29977         
29978         if(this.fireEvent('prepare', this, formData) != false){
29979             this.xhr.send(formData);
29980         };
29981     }
29982 });
29983
29984 /*
29985 * Licence: LGPL
29986 */
29987
29988 /**
29989  * @class Roo.bootstrap.DocumentViewer
29990  * @extends Roo.bootstrap.Component
29991  * Bootstrap DocumentViewer class
29992  * @cfg {Boolean} showDownload (true|false) show download button (default true)
29993  * @cfg {Boolean} showTrash (true|false) show trash button (default true)
29994  * 
29995  * @constructor
29996  * Create a new DocumentViewer
29997  * @param {Object} config The config object
29998  */
29999
30000 Roo.bootstrap.DocumentViewer = function(config){
30001     Roo.bootstrap.DocumentViewer.superclass.constructor.call(this, config);
30002     
30003     this.addEvents({
30004         /**
30005          * @event initial
30006          * Fire after initEvent
30007          * @param {Roo.bootstrap.DocumentViewer} this
30008          */
30009         "initial" : true,
30010         /**
30011          * @event click
30012          * Fire after click
30013          * @param {Roo.bootstrap.DocumentViewer} this
30014          */
30015         "click" : true,
30016         /**
30017          * @event download
30018          * Fire after download button
30019          * @param {Roo.bootstrap.DocumentViewer} this
30020          */
30021         "download" : true,
30022         /**
30023          * @event trash
30024          * Fire after trash button
30025          * @param {Roo.bootstrap.DocumentViewer} this
30026          */
30027         "trash" : true
30028         
30029     });
30030 };
30031
30032 Roo.extend(Roo.bootstrap.DocumentViewer, Roo.bootstrap.Component,  {
30033     
30034     showDownload : true,
30035     
30036     showTrash : true,
30037     
30038     getAutoCreate : function()
30039     {
30040         var cfg = {
30041             tag : 'div',
30042             cls : 'roo-document-viewer',
30043             cn : [
30044                 {
30045                     tag : 'div',
30046                     cls : 'roo-document-viewer-body',
30047                     cn : [
30048                         {
30049                             tag : 'div',
30050                             cls : 'roo-document-viewer-thumb',
30051                             cn : [
30052                                 {
30053                                     tag : 'img',
30054                                     cls : 'roo-document-viewer-image'
30055                                 }
30056                             ]
30057                         }
30058                     ]
30059                 },
30060                 {
30061                     tag : 'div',
30062                     cls : 'roo-document-viewer-footer',
30063                     cn : {
30064                         tag : 'div',
30065                         cls : 'btn-group btn-group-justified roo-document-viewer-btn-group',
30066                         cn : [
30067                             {
30068                                 tag : 'div',
30069                                 cls : 'btn-group roo-document-viewer-download',
30070                                 cn : [
30071                                     {
30072                                         tag : 'button',
30073                                         cls : 'btn btn-default',
30074                                         html : '<i class="fa fa-download"></i>'
30075                                     }
30076                                 ]
30077                             },
30078                             {
30079                                 tag : 'div',
30080                                 cls : 'btn-group roo-document-viewer-trash',
30081                                 cn : [
30082                                     {
30083                                         tag : 'button',
30084                                         cls : 'btn btn-default',
30085                                         html : '<i class="fa fa-trash"></i>'
30086                                     }
30087                                 ]
30088                             }
30089                         ]
30090                     }
30091                 }
30092             ]
30093         };
30094         
30095         return cfg;
30096     },
30097     
30098     initEvents : function()
30099     {
30100         this.bodyEl = this.el.select('.roo-document-viewer-body', true).first();
30101         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
30102         
30103         this.thumbEl = this.el.select('.roo-document-viewer-thumb', true).first();
30104         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
30105         
30106         this.imageEl = this.el.select('.roo-document-viewer-image', true).first();
30107         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
30108         
30109         this.footerEl = this.el.select('.roo-document-viewer-footer', true).first();
30110         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY);
30111         
30112         this.downloadBtn = this.el.select('.roo-document-viewer-download', true).first();
30113         this.downloadBtn.setVisibilityMode(Roo.Element.DISPLAY);
30114         
30115         this.trashBtn = this.el.select('.roo-document-viewer-trash', true).first();
30116         this.trashBtn.setVisibilityMode(Roo.Element.DISPLAY);
30117         
30118         this.bodyEl.on('click', this.onClick, this);
30119         this.downloadBtn.on('click', this.onDownload, this);
30120         this.trashBtn.on('click', this.onTrash, this);
30121         
30122         this.downloadBtn.hide();
30123         this.trashBtn.hide();
30124         
30125         if(this.showDownload){
30126             this.downloadBtn.show();
30127         }
30128         
30129         if(this.showTrash){
30130             this.trashBtn.show();
30131         }
30132         
30133         if(!this.showDownload && !this.showTrash) {
30134             this.footerEl.hide();
30135         }
30136         
30137     },
30138     
30139     initial : function()
30140     {
30141         this.fireEvent('initial', this);
30142         
30143     },
30144     
30145     onClick : function(e)
30146     {
30147         e.preventDefault();
30148         
30149         this.fireEvent('click', this);
30150     },
30151     
30152     onDownload : function(e)
30153     {
30154         e.preventDefault();
30155         
30156         this.fireEvent('download', this);
30157     },
30158     
30159     onTrash : function(e)
30160     {
30161         e.preventDefault();
30162         
30163         this.fireEvent('trash', this);
30164     }
30165     
30166 });
30167 /*
30168  * - LGPL
30169  *
30170  * nav progress bar
30171  * 
30172  */
30173
30174 /**
30175  * @class Roo.bootstrap.NavProgressBar
30176  * @extends Roo.bootstrap.Component
30177  * Bootstrap NavProgressBar class
30178  * 
30179  * @constructor
30180  * Create a new nav progress bar
30181  * @param {Object} config The config object
30182  */
30183
30184 Roo.bootstrap.NavProgressBar = function(config){
30185     Roo.bootstrap.NavProgressBar.superclass.constructor.call(this, config);
30186
30187     this.bullets = this.bullets || [];
30188    
30189 //    Roo.bootstrap.NavProgressBar.register(this);
30190      this.addEvents({
30191         /**
30192              * @event changed
30193              * Fires when the active item changes
30194              * @param {Roo.bootstrap.NavProgressBar} this
30195              * @param {Roo.bootstrap.NavProgressItem} selected The item selected
30196              * @param {Roo.bootstrap.NavProgressItem} prev The previously selected item 
30197          */
30198         'changed': true
30199      });
30200     
30201 };
30202
30203 Roo.extend(Roo.bootstrap.NavProgressBar, Roo.bootstrap.Component,  {
30204     
30205     bullets : [],
30206     barItems : [],
30207     
30208     getAutoCreate : function()
30209     {
30210         var cfg = Roo.apply({}, Roo.bootstrap.NavProgressBar.superclass.getAutoCreate.call(this));
30211         
30212         cfg = {
30213             tag : 'div',
30214             cls : 'roo-navigation-bar-group',
30215             cn : [
30216                 {
30217                     tag : 'div',
30218                     cls : 'roo-navigation-top-bar'
30219                 },
30220                 {
30221                     tag : 'div',
30222                     cls : 'roo-navigation-bullets-bar',
30223                     cn : [
30224                         {
30225                             tag : 'ul',
30226                             cls : 'roo-navigation-bar'
30227                         }
30228                     ]
30229                 },
30230                 
30231                 {
30232                     tag : 'div',
30233                     cls : 'roo-navigation-bottom-bar'
30234                 }
30235             ]
30236             
30237         };
30238         
30239         return cfg;
30240         
30241     },
30242     
30243     initEvents: function() 
30244     {
30245         
30246     },
30247     
30248     onRender : function(ct, position) 
30249     {
30250         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30251         
30252         if(this.bullets.length){
30253             Roo.each(this.bullets, function(b){
30254                this.addItem(b);
30255             }, this);
30256         }
30257         
30258         this.format();
30259         
30260     },
30261     
30262     addItem : function(cfg)
30263     {
30264         var item = new Roo.bootstrap.NavProgressItem(cfg);
30265         
30266         item.parentId = this.id;
30267         item.render(this.el.select('.roo-navigation-bar', true).first(), null);
30268         
30269         if(cfg.html){
30270             var top = new Roo.bootstrap.Element({
30271                 tag : 'div',
30272                 cls : 'roo-navigation-bar-text'
30273             });
30274             
30275             var bottom = new Roo.bootstrap.Element({
30276                 tag : 'div',
30277                 cls : 'roo-navigation-bar-text'
30278             });
30279             
30280             top.onRender(this.el.select('.roo-navigation-top-bar', true).first(), null);
30281             bottom.onRender(this.el.select('.roo-navigation-bottom-bar', true).first(), null);
30282             
30283             var topText = new Roo.bootstrap.Element({
30284                 tag : 'span',
30285                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? cfg.html : ''
30286             });
30287             
30288             var bottomText = new Roo.bootstrap.Element({
30289                 tag : 'span',
30290                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? '' : cfg.html
30291             });
30292             
30293             topText.onRender(top.el, null);
30294             bottomText.onRender(bottom.el, null);
30295             
30296             item.topEl = top;
30297             item.bottomEl = bottom;
30298         }
30299         
30300         this.barItems.push(item);
30301         
30302         return item;
30303     },
30304     
30305     getActive : function()
30306     {
30307         var active = false;
30308         
30309         Roo.each(this.barItems, function(v){
30310             
30311             if (!v.isActive()) {
30312                 return;
30313             }
30314             
30315             active = v;
30316             return false;
30317             
30318         });
30319         
30320         return active;
30321     },
30322     
30323     setActiveItem : function(item)
30324     {
30325         var prev = false;
30326         
30327         Roo.each(this.barItems, function(v){
30328             if (v.rid == item.rid) {
30329                 return ;
30330             }
30331             
30332             if (v.isActive()) {
30333                 v.setActive(false);
30334                 prev = v;
30335             }
30336         });
30337
30338         item.setActive(true);
30339         
30340         this.fireEvent('changed', this, item, prev);
30341     },
30342     
30343     getBarItem: function(rid)
30344     {
30345         var ret = false;
30346         
30347         Roo.each(this.barItems, function(e) {
30348             if (e.rid != rid) {
30349                 return;
30350             }
30351             
30352             ret =  e;
30353             return false;
30354         });
30355         
30356         return ret;
30357     },
30358     
30359     indexOfItem : function(item)
30360     {
30361         var index = false;
30362         
30363         Roo.each(this.barItems, function(v, i){
30364             
30365             if (v.rid != item.rid) {
30366                 return;
30367             }
30368             
30369             index = i;
30370             return false
30371         });
30372         
30373         return index;
30374     },
30375     
30376     setActiveNext : function()
30377     {
30378         var i = this.indexOfItem(this.getActive());
30379         
30380         if (i > this.barItems.length) {
30381             return;
30382         }
30383         
30384         this.setActiveItem(this.barItems[i+1]);
30385     },
30386     
30387     setActivePrev : function()
30388     {
30389         var i = this.indexOfItem(this.getActive());
30390         
30391         if (i  < 1) {
30392             return;
30393         }
30394         
30395         this.setActiveItem(this.barItems[i-1]);
30396     },
30397     
30398     format : function()
30399     {
30400         if(!this.barItems.length){
30401             return;
30402         }
30403      
30404         var width = 100 / this.barItems.length;
30405         
30406         Roo.each(this.barItems, function(i){
30407             i.el.setStyle('width', width + '%');
30408             i.topEl.el.setStyle('width', width + '%');
30409             i.bottomEl.el.setStyle('width', width + '%');
30410         }, this);
30411         
30412     }
30413     
30414 });
30415 /*
30416  * - LGPL
30417  *
30418  * Nav Progress Item
30419  * 
30420  */
30421
30422 /**
30423  * @class Roo.bootstrap.NavProgressItem
30424  * @extends Roo.bootstrap.Component
30425  * Bootstrap NavProgressItem class
30426  * @cfg {String} rid the reference id
30427  * @cfg {Boolean} active (true|false) Is item active default false
30428  * @cfg {Boolean} disabled (true|false) Is item active default false
30429  * @cfg {String} html
30430  * @cfg {String} position (top|bottom) text position default bottom
30431  * @cfg {String} icon show icon instead of number
30432  * 
30433  * @constructor
30434  * Create a new NavProgressItem
30435  * @param {Object} config The config object
30436  */
30437 Roo.bootstrap.NavProgressItem = function(config){
30438     Roo.bootstrap.NavProgressItem.superclass.constructor.call(this, config);
30439     this.addEvents({
30440         // raw events
30441         /**
30442          * @event click
30443          * The raw click event for the entire grid.
30444          * @param {Roo.bootstrap.NavProgressItem} this
30445          * @param {Roo.EventObject} e
30446          */
30447         "click" : true
30448     });
30449    
30450 };
30451
30452 Roo.extend(Roo.bootstrap.NavProgressItem, Roo.bootstrap.Component,  {
30453     
30454     rid : '',
30455     active : false,
30456     disabled : false,
30457     html : '',
30458     position : 'bottom',
30459     icon : false,
30460     
30461     getAutoCreate : function()
30462     {
30463         var iconCls = 'roo-navigation-bar-item-icon';
30464         
30465         iconCls += ((this.icon) ? (' ' + this.icon) : (' step-number')) ;
30466         
30467         var cfg = {
30468             tag: 'li',
30469             cls: 'roo-navigation-bar-item',
30470             cn : [
30471                 {
30472                     tag : 'i',
30473                     cls : iconCls
30474                 }
30475             ]
30476         };
30477         
30478         if(this.active){
30479             cfg.cls += ' active';
30480         }
30481         if(this.disabled){
30482             cfg.cls += ' disabled';
30483         }
30484         
30485         return cfg;
30486     },
30487     
30488     disable : function()
30489     {
30490         this.setDisabled(true);
30491     },
30492     
30493     enable : function()
30494     {
30495         this.setDisabled(false);
30496     },
30497     
30498     initEvents: function() 
30499     {
30500         this.iconEl = this.el.select('.roo-navigation-bar-item-icon', true).first();
30501         
30502         this.iconEl.on('click', this.onClick, this);
30503     },
30504     
30505     onClick : function(e)
30506     {
30507         e.preventDefault();
30508         
30509         if(this.disabled){
30510             return;
30511         }
30512         
30513         if(this.fireEvent('click', this, e) === false){
30514             return;
30515         };
30516         
30517         this.parent().setActiveItem(this);
30518     },
30519     
30520     isActive: function () 
30521     {
30522         return this.active;
30523     },
30524     
30525     setActive : function(state)
30526     {
30527         if(this.active == state){
30528             return;
30529         }
30530         
30531         this.active = state;
30532         
30533         if (state) {
30534             this.el.addClass('active');
30535             return;
30536         }
30537         
30538         this.el.removeClass('active');
30539         
30540         return;
30541     },
30542     
30543     setDisabled : function(state)
30544     {
30545         if(this.disabled == state){
30546             return;
30547         }
30548         
30549         this.disabled = state;
30550         
30551         if (state) {
30552             this.el.addClass('disabled');
30553             return;
30554         }
30555         
30556         this.el.removeClass('disabled');
30557     },
30558     
30559     tooltipEl : function()
30560     {
30561         return this.el.select('.roo-navigation-bar-item-icon', true).first();;
30562     }
30563 });
30564  
30565
30566  /*
30567  * - LGPL
30568  *
30569  * FieldLabel
30570  * 
30571  */
30572
30573 /**
30574  * @class Roo.bootstrap.FieldLabel
30575  * @extends Roo.bootstrap.Component
30576  * Bootstrap FieldLabel class
30577  * @cfg {String} html contents of the element
30578  * @cfg {String} tag tag of the element default label
30579  * @cfg {String} cls class of the element
30580  * @cfg {String} target label target 
30581  * @cfg {Boolean} allowBlank (true|false) target allowBlank default true
30582  * @cfg {String} invalidClass DEPRICATED - BS4 uses is-invalid
30583  * @cfg {String} validClass DEPRICATED - BS4 uses is-valid
30584  * @cfg {String} iconTooltip default "This field is required"
30585  * @cfg {String} indicatorpos (left|right) default left
30586  * 
30587  * @constructor
30588  * Create a new FieldLabel
30589  * @param {Object} config The config object
30590  */
30591
30592 Roo.bootstrap.FieldLabel = function(config){
30593     Roo.bootstrap.Element.superclass.constructor.call(this, config);
30594     
30595     this.addEvents({
30596             /**
30597              * @event invalid
30598              * Fires after the field has been marked as invalid.
30599              * @param {Roo.form.FieldLabel} this
30600              * @param {String} msg The validation message
30601              */
30602             invalid : true,
30603             /**
30604              * @event valid
30605              * Fires after the field has been validated with no errors.
30606              * @param {Roo.form.FieldLabel} this
30607              */
30608             valid : true
30609         });
30610 };
30611
30612 Roo.extend(Roo.bootstrap.FieldLabel, Roo.bootstrap.Component,  {
30613     
30614     tag: 'label',
30615     cls: '',
30616     html: '',
30617     target: '',
30618     allowBlank : true,
30619     invalidClass : 'has-warning',
30620     validClass : 'has-success',
30621     iconTooltip : 'This field is required',
30622     indicatorpos : 'left',
30623     
30624     getAutoCreate : function(){
30625         
30626         var cls = "";
30627         if (!this.allowBlank) {
30628             cls  = "visible";
30629         }
30630         
30631         var cfg = {
30632             tag : this.tag,
30633             cls : 'roo-bootstrap-field-label ' + this.cls,
30634             for : this.target,
30635             cn : [
30636                 {
30637                     tag : 'i',
30638                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star ' + cls,
30639                     tooltip : this.iconTooltip
30640                 },
30641                 {
30642                     tag : 'span',
30643                     html : this.html
30644                 }
30645             ] 
30646         };
30647         
30648         if(this.indicatorpos == 'right'){
30649             var cfg = {
30650                 tag : this.tag,
30651                 cls : 'roo-bootstrap-field-label ' + this.cls,
30652                 for : this.target,
30653                 cn : [
30654                     {
30655                         tag : 'span',
30656                         html : this.html
30657                     },
30658                     {
30659                         tag : 'i',
30660                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star '+ cls,
30661                         tooltip : this.iconTooltip
30662                     }
30663                 ] 
30664             };
30665         }
30666         
30667         return cfg;
30668     },
30669     
30670     initEvents: function() 
30671     {
30672         Roo.bootstrap.Element.superclass.initEvents.call(this);
30673         
30674         this.indicator = this.indicatorEl();
30675         
30676         if(this.indicator){
30677             this.indicator.removeClass('visible');
30678             this.indicator.addClass('invisible');
30679         }
30680         
30681         Roo.bootstrap.FieldLabel.register(this);
30682     },
30683     
30684     indicatorEl : function()
30685     {
30686         var indicator = this.el.select('i.roo-required-indicator',true).first();
30687         
30688         if(!indicator){
30689             return false;
30690         }
30691         
30692         return indicator;
30693         
30694     },
30695     
30696     /**
30697      * Mark this field as valid
30698      */
30699     markValid : function()
30700     {
30701         if(this.indicator){
30702             this.indicator.removeClass('visible');
30703             this.indicator.addClass('invisible');
30704         }
30705         if (Roo.bootstrap.version == 3) {
30706             this.el.removeClass(this.invalidClass);
30707             this.el.addClass(this.validClass);
30708         } else {
30709             this.el.removeClass('is-invalid');
30710             this.el.addClass('is-valid');
30711         }
30712         
30713         
30714         this.fireEvent('valid', this);
30715     },
30716     
30717     /**
30718      * Mark this field as invalid
30719      * @param {String} msg The validation message
30720      */
30721     markInvalid : function(msg)
30722     {
30723         if(this.indicator){
30724             this.indicator.removeClass('invisible');
30725             this.indicator.addClass('visible');
30726         }
30727           if (Roo.bootstrap.version == 3) {
30728             this.el.removeClass(this.validClass);
30729             this.el.addClass(this.invalidClass);
30730         } else {
30731             this.el.removeClass('is-valid');
30732             this.el.addClass('is-invalid');
30733         }
30734         
30735         
30736         this.fireEvent('invalid', this, msg);
30737     }
30738     
30739    
30740 });
30741
30742 Roo.apply(Roo.bootstrap.FieldLabel, {
30743     
30744     groups: {},
30745     
30746      /**
30747     * register a FieldLabel Group
30748     * @param {Roo.bootstrap.FieldLabel} the FieldLabel to add
30749     */
30750     register : function(label)
30751     {
30752         if(this.groups.hasOwnProperty(label.target)){
30753             return;
30754         }
30755      
30756         this.groups[label.target] = label;
30757         
30758     },
30759     /**
30760     * fetch a FieldLabel Group based on the target
30761     * @param {string} target
30762     * @returns {Roo.bootstrap.FieldLabel} the CheckBox group
30763     */
30764     get: function(target) {
30765         if (typeof(this.groups[target]) == 'undefined') {
30766             return false;
30767         }
30768         
30769         return this.groups[target] ;
30770     }
30771 });
30772
30773  
30774
30775  /*
30776  * - LGPL
30777  *
30778  * page DateSplitField.
30779  * 
30780  */
30781
30782
30783 /**
30784  * @class Roo.bootstrap.DateSplitField
30785  * @extends Roo.bootstrap.Component
30786  * Bootstrap DateSplitField class
30787  * @cfg {string} fieldLabel - the label associated
30788  * @cfg {Number} labelWidth set the width of label (0-12)
30789  * @cfg {String} labelAlign (top|left)
30790  * @cfg {Boolean} dayAllowBlank (true|false) default false
30791  * @cfg {Boolean} monthAllowBlank (true|false) default false
30792  * @cfg {Boolean} yearAllowBlank (true|false) default false
30793  * @cfg {string} dayPlaceholder 
30794  * @cfg {string} monthPlaceholder
30795  * @cfg {string} yearPlaceholder
30796  * @cfg {string} dayFormat default 'd'
30797  * @cfg {string} monthFormat default 'm'
30798  * @cfg {string} yearFormat default 'Y'
30799  * @cfg {Number} labellg set the width of label (1-12)
30800  * @cfg {Number} labelmd set the width of label (1-12)
30801  * @cfg {Number} labelsm set the width of label (1-12)
30802  * @cfg {Number} labelxs set the width of label (1-12)
30803
30804  *     
30805  * @constructor
30806  * Create a new DateSplitField
30807  * @param {Object} config The config object
30808  */
30809
30810 Roo.bootstrap.DateSplitField = function(config){
30811     Roo.bootstrap.DateSplitField.superclass.constructor.call(this, config);
30812     
30813     this.addEvents({
30814         // raw events
30815          /**
30816          * @event years
30817          * getting the data of years
30818          * @param {Roo.bootstrap.DateSplitField} this
30819          * @param {Object} years
30820          */
30821         "years" : true,
30822         /**
30823          * @event days
30824          * getting the data of days
30825          * @param {Roo.bootstrap.DateSplitField} this
30826          * @param {Object} days
30827          */
30828         "days" : true,
30829         /**
30830          * @event invalid
30831          * Fires after the field has been marked as invalid.
30832          * @param {Roo.form.Field} this
30833          * @param {String} msg The validation message
30834          */
30835         invalid : true,
30836        /**
30837          * @event valid
30838          * Fires after the field has been validated with no errors.
30839          * @param {Roo.form.Field} this
30840          */
30841         valid : true
30842     });
30843 };
30844
30845 Roo.extend(Roo.bootstrap.DateSplitField, Roo.bootstrap.Component,  {
30846     
30847     fieldLabel : '',
30848     labelAlign : 'top',
30849     labelWidth : 3,
30850     dayAllowBlank : false,
30851     monthAllowBlank : false,
30852     yearAllowBlank : false,
30853     dayPlaceholder : '',
30854     monthPlaceholder : '',
30855     yearPlaceholder : '',
30856     dayFormat : 'd',
30857     monthFormat : 'm',
30858     yearFormat : 'Y',
30859     isFormField : true,
30860     labellg : 0,
30861     labelmd : 0,
30862     labelsm : 0,
30863     labelxs : 0,
30864     
30865     getAutoCreate : function()
30866     {
30867         var cfg = {
30868             tag : 'div',
30869             cls : 'row roo-date-split-field-group',
30870             cn : [
30871                 {
30872                     tag : 'input',
30873                     type : 'hidden',
30874                     cls : 'form-hidden-field roo-date-split-field-group-value',
30875                     name : this.name
30876                 }
30877             ]
30878         };
30879         
30880         var labelCls = 'col-md-12';
30881         var contentCls = 'col-md-4';
30882         
30883         if(this.fieldLabel){
30884             
30885             var label = {
30886                 tag : 'div',
30887                 cls : 'column roo-date-split-field-label col-md-' + ((this.labelAlign == 'top') ? '12' : this.labelWidth),
30888                 cn : [
30889                     {
30890                         tag : 'label',
30891                         html : this.fieldLabel
30892                     }
30893                 ]
30894             };
30895             
30896             if(this.labelAlign == 'left'){
30897             
30898                 if(this.labelWidth > 12){
30899                     label.style = "width: " + this.labelWidth + 'px';
30900                 }
30901
30902                 if(this.labelWidth < 13 && this.labelmd == 0){
30903                     this.labelmd = this.labelWidth;
30904                 }
30905
30906                 if(this.labellg > 0){
30907                     labelCls = ' col-lg-' + this.labellg;
30908                     contentCls = ' col-lg-' + ((12 - this.labellg) / 3);
30909                 }
30910
30911                 if(this.labelmd > 0){
30912                     labelCls = ' col-md-' + this.labelmd;
30913                     contentCls = ' col-md-' + ((12 - this.labelmd) / 3);
30914                 }
30915
30916                 if(this.labelsm > 0){
30917                     labelCls = ' col-sm-' + this.labelsm;
30918                     contentCls = ' col-sm-' + ((12 - this.labelsm) / 3);
30919                 }
30920
30921                 if(this.labelxs > 0){
30922                     labelCls = ' col-xs-' + this.labelxs;
30923                     contentCls = ' col-xs-' + ((12 - this.labelxs) / 3);
30924                 }
30925             }
30926             
30927             label.cls += ' ' + labelCls;
30928             
30929             cfg.cn.push(label);
30930         }
30931         
30932         Roo.each(['day', 'month', 'year'], function(t){
30933             cfg.cn.push({
30934                 tag : 'div',
30935                 cls : 'column roo-date-split-field-' + t + ' ' + contentCls
30936             });
30937         }, this);
30938         
30939         return cfg;
30940     },
30941     
30942     inputEl: function ()
30943     {
30944         return this.el.select('.roo-date-split-field-group-value', true).first();
30945     },
30946     
30947     onRender : function(ct, position) 
30948     {
30949         var _this = this;
30950         
30951         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30952         
30953         this.inputEl = this.el.select('.roo-date-split-field-group-value', true).first();
30954         
30955         this.dayField = new Roo.bootstrap.ComboBox({
30956             allowBlank : this.dayAllowBlank,
30957             alwaysQuery : true,
30958             displayField : 'value',
30959             editable : false,
30960             fieldLabel : '',
30961             forceSelection : true,
30962             mode : 'local',
30963             placeholder : this.dayPlaceholder,
30964             selectOnFocus : true,
30965             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
30966             triggerAction : 'all',
30967             typeAhead : true,
30968             valueField : 'value',
30969             store : new Roo.data.SimpleStore({
30970                 data : (function() {    
30971                     var days = [];
30972                     _this.fireEvent('days', _this, days);
30973                     return days;
30974                 })(),
30975                 fields : [ 'value' ]
30976             }),
30977             listeners : {
30978                 select : function (_self, record, index)
30979                 {
30980                     _this.setValue(_this.getValue());
30981                 }
30982             }
30983         });
30984
30985         this.dayField.render(this.el.select('.roo-date-split-field-day', true).first(), null);
30986         
30987         this.monthField = new Roo.bootstrap.MonthField({
30988             after : '<i class=\"fa fa-calendar\"></i>',
30989             allowBlank : this.monthAllowBlank,
30990             placeholder : this.monthPlaceholder,
30991             readOnly : true,
30992             listeners : {
30993                 render : function (_self)
30994                 {
30995                     this.el.select('span.input-group-addon', true).first().on('click', function(e){
30996                         e.preventDefault();
30997                         _self.focus();
30998                     });
30999                 },
31000                 select : function (_self, oldvalue, newvalue)
31001                 {
31002                     _this.setValue(_this.getValue());
31003                 }
31004             }
31005         });
31006         
31007         this.monthField.render(this.el.select('.roo-date-split-field-month', true).first(), null);
31008         
31009         this.yearField = new Roo.bootstrap.ComboBox({
31010             allowBlank : this.yearAllowBlank,
31011             alwaysQuery : true,
31012             displayField : 'value',
31013             editable : false,
31014             fieldLabel : '',
31015             forceSelection : true,
31016             mode : 'local',
31017             placeholder : this.yearPlaceholder,
31018             selectOnFocus : true,
31019             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
31020             triggerAction : 'all',
31021             typeAhead : true,
31022             valueField : 'value',
31023             store : new Roo.data.SimpleStore({
31024                 data : (function() {
31025                     var years = [];
31026                     _this.fireEvent('years', _this, years);
31027                     return years;
31028                 })(),
31029                 fields : [ 'value' ]
31030             }),
31031             listeners : {
31032                 select : function (_self, record, index)
31033                 {
31034                     _this.setValue(_this.getValue());
31035                 }
31036             }
31037         });
31038
31039         this.yearField.render(this.el.select('.roo-date-split-field-year', true).first(), null);
31040     },
31041     
31042     setValue : function(v, format)
31043     {
31044         this.inputEl.dom.value = v;
31045         
31046         var f = format || (this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat);
31047         
31048         var d = Date.parseDate(v, f);
31049         
31050         if(!d){
31051             this.validate();
31052             return;
31053         }
31054         
31055         this.setDay(d.format(this.dayFormat));
31056         this.setMonth(d.format(this.monthFormat));
31057         this.setYear(d.format(this.yearFormat));
31058         
31059         this.validate();
31060         
31061         return;
31062     },
31063     
31064     setDay : function(v)
31065     {
31066         this.dayField.setValue(v);
31067         this.inputEl.dom.value = this.getValue();
31068         this.validate();
31069         return;
31070     },
31071     
31072     setMonth : function(v)
31073     {
31074         this.monthField.setValue(v, true);
31075         this.inputEl.dom.value = this.getValue();
31076         this.validate();
31077         return;
31078     },
31079     
31080     setYear : function(v)
31081     {
31082         this.yearField.setValue(v);
31083         this.inputEl.dom.value = this.getValue();
31084         this.validate();
31085         return;
31086     },
31087     
31088     getDay : function()
31089     {
31090         return this.dayField.getValue();
31091     },
31092     
31093     getMonth : function()
31094     {
31095         return this.monthField.getValue();
31096     },
31097     
31098     getYear : function()
31099     {
31100         return this.yearField.getValue();
31101     },
31102     
31103     getValue : function()
31104     {
31105         var f = this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat;
31106         
31107         var date = this.yearField.getValue() + '-' + this.monthField.getValue() + '-' + this.dayField.getValue();
31108         
31109         return date;
31110     },
31111     
31112     reset : function()
31113     {
31114         this.setDay('');
31115         this.setMonth('');
31116         this.setYear('');
31117         this.inputEl.dom.value = '';
31118         this.validate();
31119         return;
31120     },
31121     
31122     validate : function()
31123     {
31124         var d = this.dayField.validate();
31125         var m = this.monthField.validate();
31126         var y = this.yearField.validate();
31127         
31128         var valid = true;
31129         
31130         if(
31131                 (!this.dayAllowBlank && !d) ||
31132                 (!this.monthAllowBlank && !m) ||
31133                 (!this.yearAllowBlank && !y)
31134         ){
31135             valid = false;
31136         }
31137         
31138         if(this.dayAllowBlank && this.monthAllowBlank && this.yearAllowBlank){
31139             return valid;
31140         }
31141         
31142         if(valid){
31143             this.markValid();
31144             return valid;
31145         }
31146         
31147         this.markInvalid();
31148         
31149         return valid;
31150     },
31151     
31152     markValid : function()
31153     {
31154         
31155         var label = this.el.select('label', true).first();
31156         var icon = this.el.select('i.fa-star', true).first();
31157
31158         if(label && icon){
31159             icon.remove();
31160         }
31161         
31162         this.fireEvent('valid', this);
31163     },
31164     
31165      /**
31166      * Mark this field as invalid
31167      * @param {String} msg The validation message
31168      */
31169     markInvalid : function(msg)
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             this.el.select('.roo-date-split-field-label', true).createChild({
31177                 tag : 'i',
31178                 cls : 'text-danger fa fa-lg fa-star',
31179                 tooltip : 'This field is required',
31180                 style : 'margin-right:5px;'
31181             }, label, true);
31182         }
31183         
31184         this.fireEvent('invalid', this, msg);
31185     },
31186     
31187     clearInvalid : function()
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             icon.remove();
31194         }
31195         
31196         this.fireEvent('valid', this);
31197     },
31198     
31199     getName: function()
31200     {
31201         return this.name;
31202     }
31203     
31204 });
31205
31206  /**
31207  *
31208  * This is based on 
31209  * http://masonry.desandro.com
31210  *
31211  * The idea is to render all the bricks based on vertical width...
31212  *
31213  * The original code extends 'outlayer' - we might need to use that....
31214  * 
31215  */
31216
31217
31218 /**
31219  * @class Roo.bootstrap.LayoutMasonry
31220  * @extends Roo.bootstrap.Component
31221  * Bootstrap Layout Masonry class
31222  * 
31223  * @constructor
31224  * Create a new Element
31225  * @param {Object} config The config object
31226  */
31227
31228 Roo.bootstrap.LayoutMasonry = function(config){
31229     
31230     Roo.bootstrap.LayoutMasonry.superclass.constructor.call(this, config);
31231     
31232     this.bricks = [];
31233     
31234     Roo.bootstrap.LayoutMasonry.register(this);
31235     
31236     this.addEvents({
31237         // raw events
31238         /**
31239          * @event layout
31240          * Fire after layout the items
31241          * @param {Roo.bootstrap.LayoutMasonry} this
31242          * @param {Roo.EventObject} e
31243          */
31244         "layout" : true
31245     });
31246     
31247 };
31248
31249 Roo.extend(Roo.bootstrap.LayoutMasonry, Roo.bootstrap.Component,  {
31250     
31251     /**
31252      * @cfg {Boolean} isLayoutInstant = no animation?
31253      */   
31254     isLayoutInstant : false, // needed?
31255    
31256     /**
31257      * @cfg {Number} boxWidth  width of the columns
31258      */   
31259     boxWidth : 450,
31260     
31261       /**
31262      * @cfg {Number} boxHeight  - 0 for square, or fix it at a certian height
31263      */   
31264     boxHeight : 0,
31265     
31266     /**
31267      * @cfg {Number} padWidth padding below box..
31268      */   
31269     padWidth : 10, 
31270     
31271     /**
31272      * @cfg {Number} gutter gutter width..
31273      */   
31274     gutter : 10,
31275     
31276      /**
31277      * @cfg {Number} maxCols maximum number of columns
31278      */   
31279     
31280     maxCols: 0,
31281     
31282     /**
31283      * @cfg {Boolean} isAutoInitial defalut true
31284      */   
31285     isAutoInitial : true, 
31286     
31287     containerWidth: 0,
31288     
31289     /**
31290      * @cfg {Boolean} isHorizontal defalut false
31291      */   
31292     isHorizontal : false, 
31293
31294     currentSize : null,
31295     
31296     tag: 'div',
31297     
31298     cls: '',
31299     
31300     bricks: null, //CompositeElement
31301     
31302     cols : 1,
31303     
31304     _isLayoutInited : false,
31305     
31306 //    isAlternative : false, // only use for vertical layout...
31307     
31308     /**
31309      * @cfg {Number} alternativePadWidth padding below box..
31310      */   
31311     alternativePadWidth : 50,
31312     
31313     selectedBrick : [],
31314     
31315     getAutoCreate : function(){
31316         
31317         var cfg = Roo.apply({}, Roo.bootstrap.LayoutMasonry.superclass.getAutoCreate.call(this));
31318         
31319         var cfg = {
31320             tag: this.tag,
31321             cls: 'blog-masonary-wrapper ' + this.cls,
31322             cn : {
31323                 cls : 'mas-boxes masonary'
31324             }
31325         };
31326         
31327         return cfg;
31328     },
31329     
31330     getChildContainer: function( )
31331     {
31332         if (this.boxesEl) {
31333             return this.boxesEl;
31334         }
31335         
31336         this.boxesEl = this.el.select('.mas-boxes').first();
31337         
31338         return this.boxesEl;
31339     },
31340     
31341     
31342     initEvents : function()
31343     {
31344         var _this = this;
31345         
31346         if(this.isAutoInitial){
31347             Roo.log('hook children rendered');
31348             this.on('childrenrendered', function() {
31349                 Roo.log('children rendered');
31350                 _this.initial();
31351             } ,this);
31352         }
31353     },
31354     
31355     initial : function()
31356     {
31357         this.selectedBrick = [];
31358         
31359         this.currentSize = this.el.getBox(true);
31360         
31361         Roo.EventManager.onWindowResize(this.resize, this); 
31362
31363         if(!this.isAutoInitial){
31364             this.layout();
31365             return;
31366         }
31367         
31368         this.layout();
31369         
31370         return;
31371         //this.layout.defer(500,this);
31372         
31373     },
31374     
31375     resize : function()
31376     {
31377         var cs = this.el.getBox(true);
31378         
31379         if (
31380                 this.currentSize.width == cs.width && 
31381                 this.currentSize.x == cs.x && 
31382                 this.currentSize.height == cs.height && 
31383                 this.currentSize.y == cs.y 
31384         ) {
31385             Roo.log("no change in with or X or Y");
31386             return;
31387         }
31388         
31389         this.currentSize = cs;
31390         
31391         this.layout();
31392         
31393     },
31394     
31395     layout : function()
31396     {   
31397         this._resetLayout();
31398         
31399         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
31400         
31401         this.layoutItems( isInstant );
31402       
31403         this._isLayoutInited = true;
31404         
31405         this.fireEvent('layout', this);
31406         
31407     },
31408     
31409     _resetLayout : function()
31410     {
31411         if(this.isHorizontal){
31412             this.horizontalMeasureColumns();
31413             return;
31414         }
31415         
31416         this.verticalMeasureColumns();
31417         
31418     },
31419     
31420     verticalMeasureColumns : function()
31421     {
31422         this.getContainerWidth();
31423         
31424 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31425 //            this.colWidth = Math.floor(this.containerWidth * 0.8);
31426 //            return;
31427 //        }
31428         
31429         var boxWidth = this.boxWidth + this.padWidth;
31430         
31431         if(this.containerWidth < this.boxWidth){
31432             boxWidth = this.containerWidth
31433         }
31434         
31435         var containerWidth = this.containerWidth;
31436         
31437         var cols = Math.floor(containerWidth / boxWidth);
31438         
31439         this.cols = Math.max( cols, 1 );
31440         
31441         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
31442         
31443         var totalBoxWidth = this.cols * boxWidth - this.padWidth;
31444         
31445         var avail = Math.floor((containerWidth - totalBoxWidth) / this.cols);
31446         
31447         this.colWidth = boxWidth + avail - this.padWidth;
31448         
31449         this.unitWidth = Math.round((this.colWidth - (this.gutter * 2)) / 3);
31450         this.unitHeight = this.boxHeight > 0 ? this.boxHeight  : this.unitWidth;
31451     },
31452     
31453     horizontalMeasureColumns : function()
31454     {
31455         this.getContainerWidth();
31456         
31457         var boxWidth = this.boxWidth;
31458         
31459         if(this.containerWidth < boxWidth){
31460             boxWidth = this.containerWidth;
31461         }
31462         
31463         this.unitWidth = Math.floor((boxWidth - (this.gutter * 2)) / 3);
31464         
31465         this.el.setHeight(boxWidth);
31466         
31467     },
31468     
31469     getContainerWidth : function()
31470     {
31471         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
31472     },
31473     
31474     layoutItems : function( isInstant )
31475     {
31476         Roo.log(this.bricks);
31477         
31478         var items = Roo.apply([], this.bricks);
31479         
31480         if(this.isHorizontal){
31481             this._horizontalLayoutItems( items , isInstant );
31482             return;
31483         }
31484         
31485 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31486 //            this._verticalAlternativeLayoutItems( items , isInstant );
31487 //            return;
31488 //        }
31489         
31490         this._verticalLayoutItems( items , isInstant );
31491         
31492     },
31493     
31494     _verticalLayoutItems : function ( items , isInstant)
31495     {
31496         if ( !items || !items.length ) {
31497             return;
31498         }
31499         
31500         var standard = [
31501             ['xs', 'xs', 'xs', 'tall'],
31502             ['xs', 'xs', 'tall'],
31503             ['xs', 'xs', 'sm'],
31504             ['xs', 'xs', 'xs'],
31505             ['xs', 'tall'],
31506             ['xs', 'sm'],
31507             ['xs', 'xs'],
31508             ['xs'],
31509             
31510             ['sm', 'xs', 'xs'],
31511             ['sm', 'xs'],
31512             ['sm'],
31513             
31514             ['tall', 'xs', 'xs', 'xs'],
31515             ['tall', 'xs', 'xs'],
31516             ['tall', 'xs'],
31517             ['tall']
31518             
31519         ];
31520         
31521         var queue = [];
31522         
31523         var boxes = [];
31524         
31525         var box = [];
31526         
31527         Roo.each(items, function(item, k){
31528             
31529             switch (item.size) {
31530                 // these layouts take up a full box,
31531                 case 'md' :
31532                 case 'md-left' :
31533                 case 'md-right' :
31534                 case 'wide' :
31535                     
31536                     if(box.length){
31537                         boxes.push(box);
31538                         box = [];
31539                     }
31540                     
31541                     boxes.push([item]);
31542                     
31543                     break;
31544                     
31545                 case 'xs' :
31546                 case 'sm' :
31547                 case 'tall' :
31548                     
31549                     box.push(item);
31550                     
31551                     break;
31552                 default :
31553                     break;
31554                     
31555             }
31556             
31557         }, this);
31558         
31559         if(box.length){
31560             boxes.push(box);
31561             box = [];
31562         }
31563         
31564         var filterPattern = function(box, length)
31565         {
31566             if(!box.length){
31567                 return;
31568             }
31569             
31570             var match = false;
31571             
31572             var pattern = box.slice(0, length);
31573             
31574             var format = [];
31575             
31576             Roo.each(pattern, function(i){
31577                 format.push(i.size);
31578             }, this);
31579             
31580             Roo.each(standard, function(s){
31581                 
31582                 if(String(s) != String(format)){
31583                     return;
31584                 }
31585                 
31586                 match = true;
31587                 return false;
31588                 
31589             }, this);
31590             
31591             if(!match && length == 1){
31592                 return;
31593             }
31594             
31595             if(!match){
31596                 filterPattern(box, length - 1);
31597                 return;
31598             }
31599                 
31600             queue.push(pattern);
31601
31602             box = box.slice(length, box.length);
31603
31604             filterPattern(box, 4);
31605
31606             return;
31607             
31608         }
31609         
31610         Roo.each(boxes, function(box, k){
31611             
31612             if(!box.length){
31613                 return;
31614             }
31615             
31616             if(box.length == 1){
31617                 queue.push(box);
31618                 return;
31619             }
31620             
31621             filterPattern(box, 4);
31622             
31623         }, this);
31624         
31625         this._processVerticalLayoutQueue( queue, isInstant );
31626         
31627     },
31628     
31629 //    _verticalAlternativeLayoutItems : function( items , isInstant )
31630 //    {
31631 //        if ( !items || !items.length ) {
31632 //            return;
31633 //        }
31634 //
31635 //        this._processVerticalAlternativeLayoutQueue( items, isInstant );
31636 //        
31637 //    },
31638     
31639     _horizontalLayoutItems : function ( items , isInstant)
31640     {
31641         if ( !items || !items.length || items.length < 3) {
31642             return;
31643         }
31644         
31645         items.reverse();
31646         
31647         var eItems = items.slice(0, 3);
31648         
31649         items = items.slice(3, items.length);
31650         
31651         var standard = [
31652             ['xs', 'xs', 'xs', 'wide'],
31653             ['xs', 'xs', 'wide'],
31654             ['xs', 'xs', 'sm'],
31655             ['xs', 'xs', 'xs'],
31656             ['xs', 'wide'],
31657             ['xs', 'sm'],
31658             ['xs', 'xs'],
31659             ['xs'],
31660             
31661             ['sm', 'xs', 'xs'],
31662             ['sm', 'xs'],
31663             ['sm'],
31664             
31665             ['wide', 'xs', 'xs', 'xs'],
31666             ['wide', 'xs', 'xs'],
31667             ['wide', 'xs'],
31668             ['wide'],
31669             
31670             ['wide-thin']
31671         ];
31672         
31673         var queue = [];
31674         
31675         var boxes = [];
31676         
31677         var box = [];
31678         
31679         Roo.each(items, function(item, k){
31680             
31681             switch (item.size) {
31682                 case 'md' :
31683                 case 'md-left' :
31684                 case 'md-right' :
31685                 case 'tall' :
31686                     
31687                     if(box.length){
31688                         boxes.push(box);
31689                         box = [];
31690                     }
31691                     
31692                     boxes.push([item]);
31693                     
31694                     break;
31695                     
31696                 case 'xs' :
31697                 case 'sm' :
31698                 case 'wide' :
31699                 case 'wide-thin' :
31700                     
31701                     box.push(item);
31702                     
31703                     break;
31704                 default :
31705                     break;
31706                     
31707             }
31708             
31709         }, this);
31710         
31711         if(box.length){
31712             boxes.push(box);
31713             box = [];
31714         }
31715         
31716         var filterPattern = function(box, length)
31717         {
31718             if(!box.length){
31719                 return;
31720             }
31721             
31722             var match = false;
31723             
31724             var pattern = box.slice(0, length);
31725             
31726             var format = [];
31727             
31728             Roo.each(pattern, function(i){
31729                 format.push(i.size);
31730             }, this);
31731             
31732             Roo.each(standard, function(s){
31733                 
31734                 if(String(s) != String(format)){
31735                     return;
31736                 }
31737                 
31738                 match = true;
31739                 return false;
31740                 
31741             }, this);
31742             
31743             if(!match && length == 1){
31744                 return;
31745             }
31746             
31747             if(!match){
31748                 filterPattern(box, length - 1);
31749                 return;
31750             }
31751                 
31752             queue.push(pattern);
31753
31754             box = box.slice(length, box.length);
31755
31756             filterPattern(box, 4);
31757
31758             return;
31759             
31760         }
31761         
31762         Roo.each(boxes, function(box, k){
31763             
31764             if(!box.length){
31765                 return;
31766             }
31767             
31768             if(box.length == 1){
31769                 queue.push(box);
31770                 return;
31771             }
31772             
31773             filterPattern(box, 4);
31774             
31775         }, this);
31776         
31777         
31778         var prune = [];
31779         
31780         var pos = this.el.getBox(true);
31781         
31782         var minX = pos.x;
31783         
31784         var maxX = pos.right - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
31785         
31786         var hit_end = false;
31787         
31788         Roo.each(queue, function(box){
31789             
31790             if(hit_end){
31791                 
31792                 Roo.each(box, function(b){
31793                 
31794                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31795                     b.el.hide();
31796
31797                 }, this);
31798
31799                 return;
31800             }
31801             
31802             var mx = 0;
31803             
31804             Roo.each(box, function(b){
31805                 
31806                 b.el.setVisibilityMode(Roo.Element.DISPLAY);
31807                 b.el.show();
31808
31809                 mx = Math.max(mx, b.x);
31810                 
31811             }, this);
31812             
31813             maxX = maxX - this.unitWidth * mx - this.gutter * (mx - 1) - this.padWidth;
31814             
31815             if(maxX < minX){
31816                 
31817                 Roo.each(box, function(b){
31818                 
31819                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31820                     b.el.hide();
31821                     
31822                 }, this);
31823                 
31824                 hit_end = true;
31825                 
31826                 return;
31827             }
31828             
31829             prune.push(box);
31830             
31831         }, this);
31832         
31833         this._processHorizontalLayoutQueue( prune, eItems, isInstant );
31834     },
31835     
31836     /** Sets position of item in DOM
31837     * @param {Element} item
31838     * @param {Number} x - horizontal position
31839     * @param {Number} y - vertical position
31840     * @param {Boolean} isInstant - disables transitions
31841     */
31842     _processVerticalLayoutQueue : function( queue, isInstant )
31843     {
31844         var pos = this.el.getBox(true);
31845         var x = pos.x;
31846         var y = pos.y;
31847         var maxY = [];
31848         
31849         for (var i = 0; i < this.cols; i++){
31850             maxY[i] = pos.y;
31851         }
31852         
31853         Roo.each(queue, function(box, k){
31854             
31855             var col = k % this.cols;
31856             
31857             Roo.each(box, function(b,kk){
31858                 
31859                 b.el.position('absolute');
31860                 
31861                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31862                 var height = Math.floor(this.unitHeight * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31863                 
31864                 if(b.size == 'md-left' || b.size == 'md-right'){
31865                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
31866                     height = Math.floor(this.unitHeight * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
31867                 }
31868                 
31869                 b.el.setWidth(width);
31870                 b.el.setHeight(height);
31871                 // iframe?
31872                 b.el.select('iframe',true).setSize(width,height);
31873                 
31874             }, this);
31875             
31876             for (var i = 0; i < this.cols; i++){
31877                 
31878                 if(maxY[i] < maxY[col]){
31879                     col = i;
31880                     continue;
31881                 }
31882                 
31883                 col = Math.min(col, i);
31884                 
31885             }
31886             
31887             x = pos.x + col * (this.colWidth + this.padWidth);
31888             
31889             y = maxY[col];
31890             
31891             var positions = [];
31892             
31893             switch (box.length){
31894                 case 1 :
31895                     positions = this.getVerticalOneBoxColPositions(x, y, box);
31896                     break;
31897                 case 2 :
31898                     positions = this.getVerticalTwoBoxColPositions(x, y, box);
31899                     break;
31900                 case 3 :
31901                     positions = this.getVerticalThreeBoxColPositions(x, y, box);
31902                     break;
31903                 case 4 :
31904                     positions = this.getVerticalFourBoxColPositions(x, y, box);
31905                     break;
31906                 default :
31907                     break;
31908             }
31909             
31910             Roo.each(box, function(b,kk){
31911                 
31912                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
31913                 
31914                 var sz = b.el.getSize();
31915                 
31916                 maxY[col] = Math.max(maxY[col], positions[kk].y + sz.height + this.padWidth);
31917                 
31918             }, this);
31919             
31920         }, this);
31921         
31922         var mY = 0;
31923         
31924         for (var i = 0; i < this.cols; i++){
31925             mY = Math.max(mY, maxY[i]);
31926         }
31927         
31928         this.el.setHeight(mY - pos.y);
31929         
31930     },
31931     
31932 //    _processVerticalAlternativeLayoutQueue : function( items, isInstant )
31933 //    {
31934 //        var pos = this.el.getBox(true);
31935 //        var x = pos.x;
31936 //        var y = pos.y;
31937 //        var maxX = pos.right;
31938 //        
31939 //        var maxHeight = 0;
31940 //        
31941 //        Roo.each(items, function(item, k){
31942 //            
31943 //            var c = k % 2;
31944 //            
31945 //            item.el.position('absolute');
31946 //                
31947 //            var width = Math.floor(this.colWidth + item.el.getPadding('lr'));
31948 //
31949 //            item.el.setWidth(width);
31950 //
31951 //            var height = Math.floor(this.colWidth * item.y / item.x + item.el.getPadding('tb'));
31952 //
31953 //            item.el.setHeight(height);
31954 //            
31955 //            if(c == 0){
31956 //                item.el.setXY([x, y], isInstant ? false : true);
31957 //            } else {
31958 //                item.el.setXY([maxX - width, y], isInstant ? false : true);
31959 //            }
31960 //            
31961 //            y = y + height + this.alternativePadWidth;
31962 //            
31963 //            maxHeight = maxHeight + height + this.alternativePadWidth;
31964 //            
31965 //        }, this);
31966 //        
31967 //        this.el.setHeight(maxHeight);
31968 //        
31969 //    },
31970     
31971     _processHorizontalLayoutQueue : function( queue, eItems, isInstant )
31972     {
31973         var pos = this.el.getBox(true);
31974         
31975         var minX = pos.x;
31976         var minY = pos.y;
31977         
31978         var maxX = pos.right;
31979         
31980         this._processHorizontalEndItem(eItems, maxX, minX, minY, isInstant);
31981         
31982         var maxX = maxX - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
31983         
31984         Roo.each(queue, function(box, k){
31985             
31986             Roo.each(box, function(b, kk){
31987                 
31988                 b.el.position('absolute');
31989                 
31990                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31991                 var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31992                 
31993                 if(b.size == 'md-left' || b.size == 'md-right'){
31994                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
31995                     height = Math.floor(this.unitWidth * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
31996                 }
31997                 
31998                 b.el.setWidth(width);
31999                 b.el.setHeight(height);
32000                 
32001             }, this);
32002             
32003             if(!box.length){
32004                 return;
32005             }
32006             
32007             var positions = [];
32008             
32009             switch (box.length){
32010                 case 1 :
32011                     positions = this.getHorizontalOneBoxColPositions(maxX, minY, box);
32012                     break;
32013                 case 2 :
32014                     positions = this.getHorizontalTwoBoxColPositions(maxX, minY, box);
32015                     break;
32016                 case 3 :
32017                     positions = this.getHorizontalThreeBoxColPositions(maxX, minY, box);
32018                     break;
32019                 case 4 :
32020                     positions = this.getHorizontalFourBoxColPositions(maxX, minY, box);
32021                     break;
32022                 default :
32023                     break;
32024             }
32025             
32026             Roo.each(box, function(b,kk){
32027                 
32028                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
32029                 
32030                 maxX = Math.min(maxX, positions[kk].x - this.padWidth);
32031                 
32032             }, this);
32033             
32034         }, this);
32035         
32036     },
32037     
32038     _processHorizontalEndItem : function(eItems, maxX, minX, minY, isInstant)
32039     {
32040         Roo.each(eItems, function(b,k){
32041             
32042             b.size = (k == 0) ? 'sm' : 'xs';
32043             b.x = (k == 0) ? 2 : 1;
32044             b.y = (k == 0) ? 2 : 1;
32045             
32046             b.el.position('absolute');
32047             
32048             var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
32049                 
32050             b.el.setWidth(width);
32051             
32052             var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
32053             
32054             b.el.setHeight(height);
32055             
32056         }, this);
32057
32058         var positions = [];
32059         
32060         positions.push({
32061             x : maxX - this.unitWidth * 2 - this.gutter,
32062             y : minY
32063         });
32064         
32065         positions.push({
32066             x : maxX - this.unitWidth,
32067             y : minY + (this.unitWidth + this.gutter) * 2
32068         });
32069         
32070         positions.push({
32071             x : maxX - this.unitWidth * 3 - this.gutter * 2,
32072             y : minY
32073         });
32074         
32075         Roo.each(eItems, function(b,k){
32076             
32077             b.el.setXY([positions[k].x, positions[k].y], isInstant ? false : true);
32078
32079         }, this);
32080         
32081     },
32082     
32083     getVerticalOneBoxColPositions : function(x, y, box)
32084     {
32085         var pos = [];
32086         
32087         var rand = Math.floor(Math.random() * ((4 - box[0].x)));
32088         
32089         if(box[0].size == 'md-left'){
32090             rand = 0;
32091         }
32092         
32093         if(box[0].size == 'md-right'){
32094             rand = 1;
32095         }
32096         
32097         pos.push({
32098             x : x + (this.unitWidth + this.gutter) * rand,
32099             y : y
32100         });
32101         
32102         return pos;
32103     },
32104     
32105     getVerticalTwoBoxColPositions : function(x, y, box)
32106     {
32107         var pos = [];
32108         
32109         if(box[0].size == 'xs'){
32110             
32111             pos.push({
32112                 x : x,
32113                 y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[1].y))
32114             });
32115
32116             pos.push({
32117                 x : x + (this.unitWidth + this.gutter) * (3 - box[1].x),
32118                 y : y
32119             });
32120             
32121             return pos;
32122             
32123         }
32124         
32125         pos.push({
32126             x : x,
32127             y : y
32128         });
32129
32130         pos.push({
32131             x : x + (this.unitWidth + this.gutter) * 2,
32132             y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[0].y))
32133         });
32134         
32135         return pos;
32136         
32137     },
32138     
32139     getVerticalThreeBoxColPositions : function(x, y, box)
32140     {
32141         var pos = [];
32142         
32143         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32144             
32145             pos.push({
32146                 x : x,
32147                 y : y
32148             });
32149
32150             pos.push({
32151                 x : x + (this.unitWidth + this.gutter) * 1,
32152                 y : y
32153             });
32154             
32155             pos.push({
32156                 x : x + (this.unitWidth + this.gutter) * 2,
32157                 y : y
32158             });
32159             
32160             return pos;
32161             
32162         }
32163         
32164         if(box[0].size == 'xs' && box[1].size == 'xs'){
32165             
32166             pos.push({
32167                 x : x,
32168                 y : y
32169             });
32170
32171             pos.push({
32172                 x : x,
32173                 y : y + ((this.unitHeight + this.gutter) * (box[2].y - 1))
32174             });
32175             
32176             pos.push({
32177                 x : x + (this.unitWidth + this.gutter) * 1,
32178                 y : y
32179             });
32180             
32181             return pos;
32182             
32183         }
32184         
32185         pos.push({
32186             x : x,
32187             y : y
32188         });
32189
32190         pos.push({
32191             x : x + (this.unitWidth + this.gutter) * 2,
32192             y : y
32193         });
32194
32195         pos.push({
32196             x : x + (this.unitWidth + this.gutter) * 2,
32197             y : y + (this.unitHeight + this.gutter) * (box[0].y - 1)
32198         });
32199             
32200         return pos;
32201         
32202     },
32203     
32204     getVerticalFourBoxColPositions : function(x, y, box)
32205     {
32206         var pos = [];
32207         
32208         if(box[0].size == 'xs'){
32209             
32210             pos.push({
32211                 x : x,
32212                 y : y
32213             });
32214
32215             pos.push({
32216                 x : x,
32217                 y : y + (this.unitHeight + this.gutter) * 1
32218             });
32219             
32220             pos.push({
32221                 x : x,
32222                 y : y + (this.unitHeight + this.gutter) * 2
32223             });
32224             
32225             pos.push({
32226                 x : x + (this.unitWidth + this.gutter) * 1,
32227                 y : y
32228             });
32229             
32230             return pos;
32231             
32232         }
32233         
32234         pos.push({
32235             x : x,
32236             y : y
32237         });
32238
32239         pos.push({
32240             x : x + (this.unitWidth + this.gutter) * 2,
32241             y : y
32242         });
32243
32244         pos.push({
32245             x : x + (this.unitHeightunitWidth + this.gutter) * 2,
32246             y : y + (this.unitHeight + this.gutter) * 1
32247         });
32248
32249         pos.push({
32250             x : x + (this.unitWidth + this.gutter) * 2,
32251             y : y + (this.unitWidth + this.gutter) * 2
32252         });
32253
32254         return pos;
32255         
32256     },
32257     
32258     getHorizontalOneBoxColPositions : function(maxX, minY, box)
32259     {
32260         var pos = [];
32261         
32262         if(box[0].size == 'md-left'){
32263             pos.push({
32264                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32265                 y : minY
32266             });
32267             
32268             return pos;
32269         }
32270         
32271         if(box[0].size == 'md-right'){
32272             pos.push({
32273                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32274                 y : minY + (this.unitWidth + this.gutter) * 1
32275             });
32276             
32277             return pos;
32278         }
32279         
32280         var rand = Math.floor(Math.random() * (4 - box[0].y));
32281         
32282         pos.push({
32283             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32284             y : minY + (this.unitWidth + this.gutter) * rand
32285         });
32286         
32287         return pos;
32288         
32289     },
32290     
32291     getHorizontalTwoBoxColPositions : function(maxX, minY, box)
32292     {
32293         var pos = [];
32294         
32295         if(box[0].size == 'xs'){
32296             
32297             pos.push({
32298                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32299                 y : minY
32300             });
32301
32302             pos.push({
32303                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32304                 y : minY + (this.unitWidth + this.gutter) * (3 - box[1].y)
32305             });
32306             
32307             return pos;
32308             
32309         }
32310         
32311         pos.push({
32312             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32313             y : minY
32314         });
32315
32316         pos.push({
32317             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32318             y : minY + (this.unitWidth + this.gutter) * 2
32319         });
32320         
32321         return pos;
32322         
32323     },
32324     
32325     getHorizontalThreeBoxColPositions : function(maxX, minY, box)
32326     {
32327         var pos = [];
32328         
32329         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32330             
32331             pos.push({
32332                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32333                 y : minY
32334             });
32335
32336             pos.push({
32337                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32338                 y : minY + (this.unitWidth + this.gutter) * 1
32339             });
32340             
32341             pos.push({
32342                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32343                 y : minY + (this.unitWidth + this.gutter) * 2
32344             });
32345             
32346             return pos;
32347             
32348         }
32349         
32350         if(box[0].size == 'xs' && box[1].size == 'xs'){
32351             
32352             pos.push({
32353                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32354                 y : minY
32355             });
32356
32357             pos.push({
32358                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32359                 y : minY
32360             });
32361             
32362             pos.push({
32363                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32364                 y : minY + (this.unitWidth + this.gutter) * 1
32365             });
32366             
32367             return pos;
32368             
32369         }
32370         
32371         pos.push({
32372             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32373             y : minY
32374         });
32375
32376         pos.push({
32377             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32378             y : minY + (this.unitWidth + this.gutter) * 2
32379         });
32380
32381         pos.push({
32382             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32383             y : minY + (this.unitWidth + this.gutter) * 2
32384         });
32385             
32386         return pos;
32387         
32388     },
32389     
32390     getHorizontalFourBoxColPositions : function(maxX, minY, box)
32391     {
32392         var pos = [];
32393         
32394         if(box[0].size == 'xs'){
32395             
32396             pos.push({
32397                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32398                 y : minY
32399             });
32400
32401             pos.push({
32402                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32403                 y : minY
32404             });
32405             
32406             pos.push({
32407                 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),
32408                 y : minY
32409             });
32410             
32411             pos.push({
32412                 x : maxX - this.unitWidth * box[3].x - this.gutter * (box[3].x - 1),
32413                 y : minY + (this.unitWidth + this.gutter) * 1
32414             });
32415             
32416             return pos;
32417             
32418         }
32419         
32420         pos.push({
32421             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32422             y : minY
32423         });
32424         
32425         pos.push({
32426             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32427             y : minY + (this.unitWidth + this.gutter) * 2
32428         });
32429         
32430         pos.push({
32431             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32432             y : minY + (this.unitWidth + this.gutter) * 2
32433         });
32434         
32435         pos.push({
32436             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),
32437             y : minY + (this.unitWidth + this.gutter) * 2
32438         });
32439
32440         return pos;
32441         
32442     },
32443     
32444     /**
32445     * remove a Masonry Brick
32446     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to remove
32447     */
32448     removeBrick : function(brick_id)
32449     {
32450         if (!brick_id) {
32451             return;
32452         }
32453         
32454         for (var i = 0; i<this.bricks.length; i++) {
32455             if (this.bricks[i].id == brick_id) {
32456                 this.bricks.splice(i,1);
32457                 this.el.dom.removeChild(Roo.get(brick_id).dom);
32458                 this.initial();
32459             }
32460         }
32461     },
32462     
32463     /**
32464     * adds a Masonry Brick
32465     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32466     */
32467     addBrick : function(cfg)
32468     {
32469         var cn = new Roo.bootstrap.MasonryBrick(cfg);
32470         //this.register(cn);
32471         cn.parentId = this.id;
32472         cn.render(this.el);
32473         return cn;
32474     },
32475     
32476     /**
32477     * register a Masonry Brick
32478     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32479     */
32480     
32481     register : function(brick)
32482     {
32483         this.bricks.push(brick);
32484         brick.masonryId = this.id;
32485     },
32486     
32487     /**
32488     * clear all the Masonry Brick
32489     */
32490     clearAll : function()
32491     {
32492         this.bricks = [];
32493         //this.getChildContainer().dom.innerHTML = "";
32494         this.el.dom.innerHTML = '';
32495     },
32496     
32497     getSelected : function()
32498     {
32499         if (!this.selectedBrick) {
32500             return false;
32501         }
32502         
32503         return this.selectedBrick;
32504     }
32505 });
32506
32507 Roo.apply(Roo.bootstrap.LayoutMasonry, {
32508     
32509     groups: {},
32510      /**
32511     * register a Masonry Layout
32512     * @param {Roo.bootstrap.LayoutMasonry} the masonry layout to add
32513     */
32514     
32515     register : function(layout)
32516     {
32517         this.groups[layout.id] = layout;
32518     },
32519     /**
32520     * fetch a  Masonry Layout based on the masonry layout ID
32521     * @param {string} the masonry layout to add
32522     * @returns {Roo.bootstrap.LayoutMasonry} the masonry layout
32523     */
32524     
32525     get: function(layout_id) {
32526         if (typeof(this.groups[layout_id]) == 'undefined') {
32527             return false;
32528         }
32529         return this.groups[layout_id] ;
32530     }
32531     
32532     
32533     
32534 });
32535
32536  
32537
32538  /**
32539  *
32540  * This is based on 
32541  * http://masonry.desandro.com
32542  *
32543  * The idea is to render all the bricks based on vertical width...
32544  *
32545  * The original code extends 'outlayer' - we might need to use that....
32546  * 
32547  */
32548
32549
32550 /**
32551  * @class Roo.bootstrap.LayoutMasonryAuto
32552  * @extends Roo.bootstrap.Component
32553  * Bootstrap Layout Masonry class
32554  * 
32555  * @constructor
32556  * Create a new Element
32557  * @param {Object} config The config object
32558  */
32559
32560 Roo.bootstrap.LayoutMasonryAuto = function(config){
32561     Roo.bootstrap.LayoutMasonryAuto.superclass.constructor.call(this, config);
32562 };
32563
32564 Roo.extend(Roo.bootstrap.LayoutMasonryAuto, Roo.bootstrap.Component,  {
32565     
32566       /**
32567      * @cfg {Boolean} isFitWidth  - resize the width..
32568      */   
32569     isFitWidth : false,  // options..
32570     /**
32571      * @cfg {Boolean} isOriginLeft = left align?
32572      */   
32573     isOriginLeft : true,
32574     /**
32575      * @cfg {Boolean} isOriginTop = top align?
32576      */   
32577     isOriginTop : false,
32578     /**
32579      * @cfg {Boolean} isLayoutInstant = no animation?
32580      */   
32581     isLayoutInstant : false, // needed?
32582     /**
32583      * @cfg {Boolean} isResizingContainer = not sure if this is used..
32584      */   
32585     isResizingContainer : true,
32586     /**
32587      * @cfg {Number} columnWidth  width of the columns 
32588      */   
32589     
32590     columnWidth : 0,
32591     
32592     /**
32593      * @cfg {Number} maxCols maximum number of columns
32594      */   
32595     
32596     maxCols: 0,
32597     /**
32598      * @cfg {Number} padHeight padding below box..
32599      */   
32600     
32601     padHeight : 10, 
32602     
32603     /**
32604      * @cfg {Boolean} isAutoInitial defalut true
32605      */   
32606     
32607     isAutoInitial : true, 
32608     
32609     // private?
32610     gutter : 0,
32611     
32612     containerWidth: 0,
32613     initialColumnWidth : 0,
32614     currentSize : null,
32615     
32616     colYs : null, // array.
32617     maxY : 0,
32618     padWidth: 10,
32619     
32620     
32621     tag: 'div',
32622     cls: '',
32623     bricks: null, //CompositeElement
32624     cols : 0, // array?
32625     // element : null, // wrapped now this.el
32626     _isLayoutInited : null, 
32627     
32628     
32629     getAutoCreate : function(){
32630         
32631         var cfg = {
32632             tag: this.tag,
32633             cls: 'blog-masonary-wrapper ' + this.cls,
32634             cn : {
32635                 cls : 'mas-boxes masonary'
32636             }
32637         };
32638         
32639         return cfg;
32640     },
32641     
32642     getChildContainer: function( )
32643     {
32644         if (this.boxesEl) {
32645             return this.boxesEl;
32646         }
32647         
32648         this.boxesEl = this.el.select('.mas-boxes').first();
32649         
32650         return this.boxesEl;
32651     },
32652     
32653     
32654     initEvents : function()
32655     {
32656         var _this = this;
32657         
32658         if(this.isAutoInitial){
32659             Roo.log('hook children rendered');
32660             this.on('childrenrendered', function() {
32661                 Roo.log('children rendered');
32662                 _this.initial();
32663             } ,this);
32664         }
32665         
32666     },
32667     
32668     initial : function()
32669     {
32670         this.reloadItems();
32671
32672         this.currentSize = this.el.getBox(true);
32673
32674         /// was window resize... - let's see if this works..
32675         Roo.EventManager.onWindowResize(this.resize, this); 
32676
32677         if(!this.isAutoInitial){
32678             this.layout();
32679             return;
32680         }
32681         
32682         this.layout.defer(500,this);
32683     },
32684     
32685     reloadItems: function()
32686     {
32687         this.bricks = this.el.select('.masonry-brick', true);
32688         
32689         this.bricks.each(function(b) {
32690             //Roo.log(b.getSize());
32691             if (!b.attr('originalwidth')) {
32692                 b.attr('originalwidth',  b.getSize().width);
32693             }
32694             
32695         });
32696         
32697         Roo.log(this.bricks.elements.length);
32698     },
32699     
32700     resize : function()
32701     {
32702         Roo.log('resize');
32703         var cs = this.el.getBox(true);
32704         
32705         if (this.currentSize.width == cs.width && this.currentSize.x == cs.x ) {
32706             Roo.log("no change in with or X");
32707             return;
32708         }
32709         this.currentSize = cs;
32710         this.layout();
32711     },
32712     
32713     layout : function()
32714     {
32715          Roo.log('layout');
32716         this._resetLayout();
32717         //this._manageStamps();
32718       
32719         // don't animate first layout
32720         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
32721         this.layoutItems( isInstant );
32722       
32723         // flag for initalized
32724         this._isLayoutInited = true;
32725     },
32726     
32727     layoutItems : function( isInstant )
32728     {
32729         //var items = this._getItemsForLayout( this.items );
32730         // original code supports filtering layout items.. we just ignore it..
32731         
32732         this._layoutItems( this.bricks , isInstant );
32733       
32734         this._postLayout();
32735     },
32736     _layoutItems : function ( items , isInstant)
32737     {
32738        //this.fireEvent( 'layout', this, items );
32739     
32740
32741         if ( !items || !items.elements.length ) {
32742           // no items, emit event with empty array
32743             return;
32744         }
32745
32746         var queue = [];
32747         items.each(function(item) {
32748             Roo.log("layout item");
32749             Roo.log(item);
32750             // get x/y object from method
32751             var position = this._getItemLayoutPosition( item );
32752             // enqueue
32753             position.item = item;
32754             position.isInstant = isInstant; // || item.isLayoutInstant; << not set yet...
32755             queue.push( position );
32756         }, this);
32757       
32758         this._processLayoutQueue( queue );
32759     },
32760     /** Sets position of item in DOM
32761     * @param {Element} item
32762     * @param {Number} x - horizontal position
32763     * @param {Number} y - vertical position
32764     * @param {Boolean} isInstant - disables transitions
32765     */
32766     _processLayoutQueue : function( queue )
32767     {
32768         for ( var i=0, len = queue.length; i < len; i++ ) {
32769             var obj = queue[i];
32770             obj.item.position('absolute');
32771             obj.item.setXY([obj.x,obj.y], obj.isInstant ? false : true);
32772         }
32773     },
32774       
32775     
32776     /**
32777     * Any logic you want to do after each layout,
32778     * i.e. size the container
32779     */
32780     _postLayout : function()
32781     {
32782         this.resizeContainer();
32783     },
32784     
32785     resizeContainer : function()
32786     {
32787         if ( !this.isResizingContainer ) {
32788             return;
32789         }
32790         var size = this._getContainerSize();
32791         if ( size ) {
32792             this.el.setSize(size.width,size.height);
32793             this.boxesEl.setSize(size.width,size.height);
32794         }
32795     },
32796     
32797     
32798     
32799     _resetLayout : function()
32800     {
32801         //this.getSize();  // -- does not really do anything.. it probably applies left/right etc. to obuject but not used
32802         this.colWidth = this.el.getWidth();
32803         //this.gutter = this.el.getWidth(); 
32804         
32805         this.measureColumns();
32806
32807         // reset column Y
32808         var i = this.cols;
32809         this.colYs = [];
32810         while (i--) {
32811             this.colYs.push( 0 );
32812         }
32813     
32814         this.maxY = 0;
32815     },
32816
32817     measureColumns : function()
32818     {
32819         this.getContainerWidth();
32820       // if columnWidth is 0, default to outerWidth of first item
32821         if ( !this.columnWidth ) {
32822             var firstItem = this.bricks.first();
32823             Roo.log(firstItem);
32824             this.columnWidth  = this.containerWidth;
32825             if (firstItem && firstItem.attr('originalwidth') ) {
32826                 this.columnWidth = 1* (firstItem.attr('originalwidth') || firstItem.getWidth());
32827             }
32828             // columnWidth fall back to item of first element
32829             Roo.log("set column width?");
32830                         this.initialColumnWidth = this.columnWidth  ;
32831
32832             // if first elem has no width, default to size of container
32833             
32834         }
32835         
32836         
32837         if (this.initialColumnWidth) {
32838             this.columnWidth = this.initialColumnWidth;
32839         }
32840         
32841         
32842             
32843         // column width is fixed at the top - however if container width get's smaller we should
32844         // reduce it...
32845         
32846         // this bit calcs how man columns..
32847             
32848         var columnWidth = this.columnWidth += this.gutter;
32849       
32850         // calculate columns
32851         var containerWidth = this.containerWidth + this.gutter;
32852         
32853         var cols = (containerWidth - this.padWidth) / (columnWidth - this.padWidth);
32854         // fix rounding errors, typically with gutters
32855         var excess = columnWidth - containerWidth % columnWidth;
32856         
32857         
32858         // if overshoot is less than a pixel, round up, otherwise floor it
32859         var mathMethod = excess && excess < 1 ? 'round' : 'floor';
32860         cols = Math[ mathMethod ]( cols );
32861         this.cols = Math.max( cols, 1 );
32862         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
32863         
32864          // padding positioning..
32865         var totalColWidth = this.cols * this.columnWidth;
32866         var padavail = this.containerWidth - totalColWidth;
32867         // so for 2 columns - we need 3 'pads'
32868         
32869         var padNeeded = (1+this.cols) * this.padWidth;
32870         
32871         var padExtra = Math.floor((padavail - padNeeded) / this.cols);
32872         
32873         this.columnWidth += padExtra
32874         //this.padWidth = Math.floor(padavail /  ( this.cols));
32875         
32876         // adjust colum width so that padding is fixed??
32877         
32878         // we have 3 columns ... total = width * 3
32879         // we have X left over... that should be used by 
32880         
32881         //if (this.expandC) {
32882             
32883         //}
32884         
32885         
32886         
32887     },
32888     
32889     getContainerWidth : function()
32890     {
32891        /* // container is parent if fit width
32892         var container = this.isFitWidth ? this.element.parentNode : this.element;
32893         // check that this.size and size are there
32894         // IE8 triggers resize on body size change, so they might not be
32895         
32896         var size = getSize( container );  //FIXME
32897         this.containerWidth = size && size.innerWidth; //FIXME
32898         */
32899          
32900         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
32901         
32902     },
32903     
32904     _getItemLayoutPosition : function( item )  // what is item?
32905     {
32906         // we resize the item to our columnWidth..
32907       
32908         item.setWidth(this.columnWidth);
32909         item.autoBoxAdjust  = false;
32910         
32911         var sz = item.getSize();
32912  
32913         // how many columns does this brick span
32914         var remainder = this.containerWidth % this.columnWidth;
32915         
32916         var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil';
32917         // round if off by 1 pixel, otherwise use ceil
32918         var colSpan = Math[ mathMethod ]( sz.width  / this.columnWidth );
32919         colSpan = Math.min( colSpan, this.cols );
32920         
32921         // normally this should be '1' as we dont' currently allow multi width columns..
32922         
32923         var colGroup = this._getColGroup( colSpan );
32924         // get the minimum Y value from the columns
32925         var minimumY = Math.min.apply( Math, colGroup );
32926         Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32927         
32928         var shortColIndex = colGroup.indexOf(  minimumY ); // broken on ie8..?? probably...
32929          
32930         // position the brick
32931         var position = {
32932             x: this.currentSize.x + (this.padWidth /2) + ((this.columnWidth + this.padWidth )* shortColIndex),
32933             y: this.currentSize.y + minimumY + this.padHeight
32934         };
32935         
32936         Roo.log(position);
32937         // apply setHeight to necessary columns
32938         var setHeight = minimumY + sz.height + this.padHeight;
32939         //Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32940         
32941         var setSpan = this.cols + 1 - colGroup.length;
32942         for ( var i = 0; i < setSpan; i++ ) {
32943           this.colYs[ shortColIndex + i ] = setHeight ;
32944         }
32945       
32946         return position;
32947     },
32948     
32949     /**
32950      * @param {Number} colSpan - number of columns the element spans
32951      * @returns {Array} colGroup
32952      */
32953     _getColGroup : function( colSpan )
32954     {
32955         if ( colSpan < 2 ) {
32956           // if brick spans only one column, use all the column Ys
32957           return this.colYs;
32958         }
32959       
32960         var colGroup = [];
32961         // how many different places could this brick fit horizontally
32962         var groupCount = this.cols + 1 - colSpan;
32963         // for each group potential horizontal position
32964         for ( var i = 0; i < groupCount; i++ ) {
32965           // make an array of colY values for that one group
32966           var groupColYs = this.colYs.slice( i, i + colSpan );
32967           // and get the max value of the array
32968           colGroup[i] = Math.max.apply( Math, groupColYs );
32969         }
32970         return colGroup;
32971     },
32972     /*
32973     _manageStamp : function( stamp )
32974     {
32975         var stampSize =  stamp.getSize();
32976         var offset = stamp.getBox();
32977         // get the columns that this stamp affects
32978         var firstX = this.isOriginLeft ? offset.x : offset.right;
32979         var lastX = firstX + stampSize.width;
32980         var firstCol = Math.floor( firstX / this.columnWidth );
32981         firstCol = Math.max( 0, firstCol );
32982         
32983         var lastCol = Math.floor( lastX / this.columnWidth );
32984         // lastCol should not go over if multiple of columnWidth #425
32985         lastCol -= lastX % this.columnWidth ? 0 : 1;
32986         lastCol = Math.min( this.cols - 1, lastCol );
32987         
32988         // set colYs to bottom of the stamp
32989         var stampMaxY = ( this.isOriginTop ? offset.y : offset.bottom ) +
32990             stampSize.height;
32991             
32992         for ( var i = firstCol; i <= lastCol; i++ ) {
32993           this.colYs[i] = Math.max( stampMaxY, this.colYs[i] );
32994         }
32995     },
32996     */
32997     
32998     _getContainerSize : function()
32999     {
33000         this.maxY = Math.max.apply( Math, this.colYs );
33001         var size = {
33002             height: this.maxY
33003         };
33004       
33005         if ( this.isFitWidth ) {
33006             size.width = this._getContainerFitWidth();
33007         }
33008       
33009         return size;
33010     },
33011     
33012     _getContainerFitWidth : function()
33013     {
33014         var unusedCols = 0;
33015         // count unused columns
33016         var i = this.cols;
33017         while ( --i ) {
33018           if ( this.colYs[i] !== 0 ) {
33019             break;
33020           }
33021           unusedCols++;
33022         }
33023         // fit container to columns that have been used
33024         return ( this.cols - unusedCols ) * this.columnWidth - this.gutter;
33025     },
33026     
33027     needsResizeLayout : function()
33028     {
33029         var previousWidth = this.containerWidth;
33030         this.getContainerWidth();
33031         return previousWidth !== this.containerWidth;
33032     }
33033  
33034 });
33035
33036  
33037
33038  /*
33039  * - LGPL
33040  *
33041  * element
33042  * 
33043  */
33044
33045 /**
33046  * @class Roo.bootstrap.MasonryBrick
33047  * @extends Roo.bootstrap.Component
33048  * Bootstrap MasonryBrick class
33049  * 
33050  * @constructor
33051  * Create a new MasonryBrick
33052  * @param {Object} config The config object
33053  */
33054
33055 Roo.bootstrap.MasonryBrick = function(config){
33056     
33057     Roo.bootstrap.MasonryBrick.superclass.constructor.call(this, config);
33058     
33059     Roo.bootstrap.MasonryBrick.register(this);
33060     
33061     this.addEvents({
33062         // raw events
33063         /**
33064          * @event click
33065          * When a MasonryBrick is clcik
33066          * @param {Roo.bootstrap.MasonryBrick} this
33067          * @param {Roo.EventObject} e
33068          */
33069         "click" : true
33070     });
33071 };
33072
33073 Roo.extend(Roo.bootstrap.MasonryBrick, Roo.bootstrap.Component,  {
33074     
33075     /**
33076      * @cfg {String} title
33077      */   
33078     title : '',
33079     /**
33080      * @cfg {String} html
33081      */   
33082     html : '',
33083     /**
33084      * @cfg {String} bgimage
33085      */   
33086     bgimage : '',
33087     /**
33088      * @cfg {String} videourl
33089      */   
33090     videourl : '',
33091     /**
33092      * @cfg {String} cls
33093      */   
33094     cls : '',
33095     /**
33096      * @cfg {String} href
33097      */   
33098     href : '',
33099     /**
33100      * @cfg {String} size (xs|sm|md|md-left|md-right|tall|wide)
33101      */   
33102     size : 'xs',
33103     
33104     /**
33105      * @cfg {String} placetitle (center|bottom)
33106      */   
33107     placetitle : '',
33108     
33109     /**
33110      * @cfg {Boolean} isFitContainer defalut true
33111      */   
33112     isFitContainer : true, 
33113     
33114     /**
33115      * @cfg {Boolean} preventDefault defalut false
33116      */   
33117     preventDefault : false, 
33118     
33119     /**
33120      * @cfg {Boolean} inverse defalut false
33121      */   
33122     maskInverse : false, 
33123     
33124     getAutoCreate : function()
33125     {
33126         if(!this.isFitContainer){
33127             return this.getSplitAutoCreate();
33128         }
33129         
33130         var cls = 'masonry-brick masonry-brick-full';
33131         
33132         if(this.href.length){
33133             cls += ' masonry-brick-link';
33134         }
33135         
33136         if(this.bgimage.length){
33137             cls += ' masonry-brick-image';
33138         }
33139         
33140         if(this.maskInverse){
33141             cls += ' mask-inverse';
33142         }
33143         
33144         if(!this.html.length && !this.maskInverse && !this.videourl.length){
33145             cls += ' enable-mask';
33146         }
33147         
33148         if(this.size){
33149             cls += ' masonry-' + this.size + '-brick';
33150         }
33151         
33152         if(this.placetitle.length){
33153             
33154             switch (this.placetitle) {
33155                 case 'center' :
33156                     cls += ' masonry-center-title';
33157                     break;
33158                 case 'bottom' :
33159                     cls += ' masonry-bottom-title';
33160                     break;
33161                 default:
33162                     break;
33163             }
33164             
33165         } else {
33166             if(!this.html.length && !this.bgimage.length){
33167                 cls += ' masonry-center-title';
33168             }
33169
33170             if(!this.html.length && this.bgimage.length){
33171                 cls += ' masonry-bottom-title';
33172             }
33173         }
33174         
33175         if(this.cls){
33176             cls += ' ' + this.cls;
33177         }
33178         
33179         var cfg = {
33180             tag: (this.href.length) ? 'a' : 'div',
33181             cls: cls,
33182             cn: [
33183                 {
33184                     tag: 'div',
33185                     cls: 'masonry-brick-mask'
33186                 },
33187                 {
33188                     tag: 'div',
33189                     cls: 'masonry-brick-paragraph',
33190                     cn: []
33191                 }
33192             ]
33193         };
33194         
33195         if(this.href.length){
33196             cfg.href = this.href;
33197         }
33198         
33199         var cn = cfg.cn[1].cn;
33200         
33201         if(this.title.length){
33202             cn.push({
33203                 tag: 'h4',
33204                 cls: 'masonry-brick-title',
33205                 html: this.title
33206             });
33207         }
33208         
33209         if(this.html.length){
33210             cn.push({
33211                 tag: 'p',
33212                 cls: 'masonry-brick-text',
33213                 html: this.html
33214             });
33215         }
33216         
33217         if (!this.title.length && !this.html.length) {
33218             cfg.cn[1].cls += ' hide';
33219         }
33220         
33221         if(this.bgimage.length){
33222             cfg.cn.push({
33223                 tag: 'img',
33224                 cls: 'masonry-brick-image-view',
33225                 src: this.bgimage
33226             });
33227         }
33228         
33229         if(this.videourl.length){
33230             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33231             // youtube support only?
33232             cfg.cn.push({
33233                 tag: 'iframe',
33234                 cls: 'masonry-brick-image-view',
33235                 src: vurl,
33236                 frameborder : 0,
33237                 allowfullscreen : true
33238             });
33239         }
33240         
33241         return cfg;
33242         
33243     },
33244     
33245     getSplitAutoCreate : function()
33246     {
33247         var cls = 'masonry-brick masonry-brick-split';
33248         
33249         if(this.href.length){
33250             cls += ' masonry-brick-link';
33251         }
33252         
33253         if(this.bgimage.length){
33254             cls += ' masonry-brick-image';
33255         }
33256         
33257         if(this.size){
33258             cls += ' masonry-' + this.size + '-brick';
33259         }
33260         
33261         switch (this.placetitle) {
33262             case 'center' :
33263                 cls += ' masonry-center-title';
33264                 break;
33265             case 'bottom' :
33266                 cls += ' masonry-bottom-title';
33267                 break;
33268             default:
33269                 if(!this.bgimage.length){
33270                     cls += ' masonry-center-title';
33271                 }
33272
33273                 if(this.bgimage.length){
33274                     cls += ' masonry-bottom-title';
33275                 }
33276                 break;
33277         }
33278         
33279         if(this.cls){
33280             cls += ' ' + this.cls;
33281         }
33282         
33283         var cfg = {
33284             tag: (this.href.length) ? 'a' : 'div',
33285             cls: cls,
33286             cn: [
33287                 {
33288                     tag: 'div',
33289                     cls: 'masonry-brick-split-head',
33290                     cn: [
33291                         {
33292                             tag: 'div',
33293                             cls: 'masonry-brick-paragraph',
33294                             cn: []
33295                         }
33296                     ]
33297                 },
33298                 {
33299                     tag: 'div',
33300                     cls: 'masonry-brick-split-body',
33301                     cn: []
33302                 }
33303             ]
33304         };
33305         
33306         if(this.href.length){
33307             cfg.href = this.href;
33308         }
33309         
33310         if(this.title.length){
33311             cfg.cn[0].cn[0].cn.push({
33312                 tag: 'h4',
33313                 cls: 'masonry-brick-title',
33314                 html: this.title
33315             });
33316         }
33317         
33318         if(this.html.length){
33319             cfg.cn[1].cn.push({
33320                 tag: 'p',
33321                 cls: 'masonry-brick-text',
33322                 html: this.html
33323             });
33324         }
33325
33326         if(this.bgimage.length){
33327             cfg.cn[0].cn.push({
33328                 tag: 'img',
33329                 cls: 'masonry-brick-image-view',
33330                 src: this.bgimage
33331             });
33332         }
33333         
33334         if(this.videourl.length){
33335             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33336             // youtube support only?
33337             cfg.cn[0].cn.cn.push({
33338                 tag: 'iframe',
33339                 cls: 'masonry-brick-image-view',
33340                 src: vurl,
33341                 frameborder : 0,
33342                 allowfullscreen : true
33343             });
33344         }
33345         
33346         return cfg;
33347     },
33348     
33349     initEvents: function() 
33350     {
33351         switch (this.size) {
33352             case 'xs' :
33353                 this.x = 1;
33354                 this.y = 1;
33355                 break;
33356             case 'sm' :
33357                 this.x = 2;
33358                 this.y = 2;
33359                 break;
33360             case 'md' :
33361             case 'md-left' :
33362             case 'md-right' :
33363                 this.x = 3;
33364                 this.y = 3;
33365                 break;
33366             case 'tall' :
33367                 this.x = 2;
33368                 this.y = 3;
33369                 break;
33370             case 'wide' :
33371                 this.x = 3;
33372                 this.y = 2;
33373                 break;
33374             case 'wide-thin' :
33375                 this.x = 3;
33376                 this.y = 1;
33377                 break;
33378                         
33379             default :
33380                 break;
33381         }
33382         
33383         if(Roo.isTouch){
33384             this.el.on('touchstart', this.onTouchStart, this);
33385             this.el.on('touchmove', this.onTouchMove, this);
33386             this.el.on('touchend', this.onTouchEnd, this);
33387             this.el.on('contextmenu', this.onContextMenu, this);
33388         } else {
33389             this.el.on('mouseenter'  ,this.enter, this);
33390             this.el.on('mouseleave', this.leave, this);
33391             this.el.on('click', this.onClick, this);
33392         }
33393         
33394         if (typeof(this.parent().bricks) == 'object' && this.parent().bricks != null) {
33395             this.parent().bricks.push(this);   
33396         }
33397         
33398     },
33399     
33400     onClick: function(e, el)
33401     {
33402         var time = this.endTimer - this.startTimer;
33403         // Roo.log(e.preventDefault());
33404         if(Roo.isTouch){
33405             if(time > 1000){
33406                 e.preventDefault();
33407                 return;
33408             }
33409         }
33410         
33411         if(!this.preventDefault){
33412             return;
33413         }
33414         
33415         e.preventDefault();
33416         
33417         if (this.activeClass != '') {
33418             this.selectBrick();
33419         }
33420         
33421         this.fireEvent('click', this, e);
33422     },
33423     
33424     enter: function(e, el)
33425     {
33426         e.preventDefault();
33427         
33428         if(!this.isFitContainer || this.maskInverse || this.videourl.length){
33429             return;
33430         }
33431         
33432         if(this.bgimage.length && this.html.length){
33433             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33434         }
33435     },
33436     
33437     leave: function(e, el)
33438     {
33439         e.preventDefault();
33440         
33441         if(!this.isFitContainer || this.maskInverse  || this.videourl.length){
33442             return;
33443         }
33444         
33445         if(this.bgimage.length && this.html.length){
33446             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33447         }
33448     },
33449     
33450     onTouchStart: function(e, el)
33451     {
33452 //        e.preventDefault();
33453         
33454         this.touchmoved = false;
33455         
33456         if(!this.isFitContainer){
33457             return;
33458         }
33459         
33460         if(!this.bgimage.length || !this.html.length){
33461             return;
33462         }
33463         
33464         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33465         
33466         this.timer = new Date().getTime();
33467         
33468     },
33469     
33470     onTouchMove: function(e, el)
33471     {
33472         this.touchmoved = true;
33473     },
33474     
33475     onContextMenu : function(e,el)
33476     {
33477         e.preventDefault();
33478         e.stopPropagation();
33479         return false;
33480     },
33481     
33482     onTouchEnd: function(e, el)
33483     {
33484 //        e.preventDefault();
33485         
33486         if((new Date().getTime() - this.timer > 1000) || !this.href.length || this.touchmoved){
33487         
33488             this.leave(e,el);
33489             
33490             return;
33491         }
33492         
33493         if(!this.bgimage.length || !this.html.length){
33494             
33495             if(this.href.length){
33496                 window.location.href = this.href;
33497             }
33498             
33499             return;
33500         }
33501         
33502         if(!this.isFitContainer){
33503             return;
33504         }
33505         
33506         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33507         
33508         window.location.href = this.href;
33509     },
33510     
33511     //selection on single brick only
33512     selectBrick : function() {
33513         
33514         if (!this.parentId) {
33515             return;
33516         }
33517         
33518         var m = Roo.bootstrap.LayoutMasonry.get(this.parentId);
33519         var index = m.selectedBrick.indexOf(this.id);
33520         
33521         if ( index > -1) {
33522             m.selectedBrick.splice(index,1);
33523             this.el.removeClass(this.activeClass);
33524             return;
33525         }
33526         
33527         for(var i = 0; i < m.selectedBrick.length; i++) {
33528             var b = Roo.bootstrap.MasonryBrick.get(m.selectedBrick[i]);
33529             b.el.removeClass(b.activeClass);
33530         }
33531         
33532         m.selectedBrick = [];
33533         
33534         m.selectedBrick.push(this.id);
33535         this.el.addClass(this.activeClass);
33536         return;
33537     },
33538     
33539     isSelected : function(){
33540         return this.el.hasClass(this.activeClass);
33541         
33542     }
33543 });
33544
33545 Roo.apply(Roo.bootstrap.MasonryBrick, {
33546     
33547     //groups: {},
33548     groups : new Roo.util.MixedCollection(false, function(o) { return o.el.id; }),
33549      /**
33550     * register a Masonry Brick
33551     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
33552     */
33553     
33554     register : function(brick)
33555     {
33556         //this.groups[brick.id] = brick;
33557         this.groups.add(brick.id, brick);
33558     },
33559     /**
33560     * fetch a  masonry brick based on the masonry brick ID
33561     * @param {string} the masonry brick to add
33562     * @returns {Roo.bootstrap.MasonryBrick} the masonry brick
33563     */
33564     
33565     get: function(brick_id) 
33566     {
33567         // if (typeof(this.groups[brick_id]) == 'undefined') {
33568         //     return false;
33569         // }
33570         // return this.groups[brick_id] ;
33571         
33572         if(this.groups.key(brick_id)) {
33573             return this.groups.key(brick_id);
33574         }
33575         
33576         return false;
33577     }
33578     
33579     
33580     
33581 });
33582
33583  /*
33584  * - LGPL
33585  *
33586  * element
33587  * 
33588  */
33589
33590 /**
33591  * @class Roo.bootstrap.Brick
33592  * @extends Roo.bootstrap.Component
33593  * Bootstrap Brick class
33594  * 
33595  * @constructor
33596  * Create a new Brick
33597  * @param {Object} config The config object
33598  */
33599
33600 Roo.bootstrap.Brick = function(config){
33601     Roo.bootstrap.Brick.superclass.constructor.call(this, config);
33602     
33603     this.addEvents({
33604         // raw events
33605         /**
33606          * @event click
33607          * When a Brick is click
33608          * @param {Roo.bootstrap.Brick} this
33609          * @param {Roo.EventObject} e
33610          */
33611         "click" : true
33612     });
33613 };
33614
33615 Roo.extend(Roo.bootstrap.Brick, Roo.bootstrap.Component,  {
33616     
33617     /**
33618      * @cfg {String} title
33619      */   
33620     title : '',
33621     /**
33622      * @cfg {String} html
33623      */   
33624     html : '',
33625     /**
33626      * @cfg {String} bgimage
33627      */   
33628     bgimage : '',
33629     /**
33630      * @cfg {String} cls
33631      */   
33632     cls : '',
33633     /**
33634      * @cfg {String} href
33635      */   
33636     href : '',
33637     /**
33638      * @cfg {String} video
33639      */   
33640     video : '',
33641     /**
33642      * @cfg {Boolean} square
33643      */   
33644     square : true,
33645     
33646     getAutoCreate : function()
33647     {
33648         var cls = 'roo-brick';
33649         
33650         if(this.href.length){
33651             cls += ' roo-brick-link';
33652         }
33653         
33654         if(this.bgimage.length){
33655             cls += ' roo-brick-image';
33656         }
33657         
33658         if(!this.html.length && !this.bgimage.length){
33659             cls += ' roo-brick-center-title';
33660         }
33661         
33662         if(!this.html.length && this.bgimage.length){
33663             cls += ' roo-brick-bottom-title';
33664         }
33665         
33666         if(this.cls){
33667             cls += ' ' + this.cls;
33668         }
33669         
33670         var cfg = {
33671             tag: (this.href.length) ? 'a' : 'div',
33672             cls: cls,
33673             cn: [
33674                 {
33675                     tag: 'div',
33676                     cls: 'roo-brick-paragraph',
33677                     cn: []
33678                 }
33679             ]
33680         };
33681         
33682         if(this.href.length){
33683             cfg.href = this.href;
33684         }
33685         
33686         var cn = cfg.cn[0].cn;
33687         
33688         if(this.title.length){
33689             cn.push({
33690                 tag: 'h4',
33691                 cls: 'roo-brick-title',
33692                 html: this.title
33693             });
33694         }
33695         
33696         if(this.html.length){
33697             cn.push({
33698                 tag: 'p',
33699                 cls: 'roo-brick-text',
33700                 html: this.html
33701             });
33702         } else {
33703             cn.cls += ' hide';
33704         }
33705         
33706         if(this.bgimage.length){
33707             cfg.cn.push({
33708                 tag: 'img',
33709                 cls: 'roo-brick-image-view',
33710                 src: this.bgimage
33711             });
33712         }
33713         
33714         return cfg;
33715     },
33716     
33717     initEvents: function() 
33718     {
33719         if(this.title.length || this.html.length){
33720             this.el.on('mouseenter'  ,this.enter, this);
33721             this.el.on('mouseleave', this.leave, this);
33722         }
33723         
33724         Roo.EventManager.onWindowResize(this.resize, this); 
33725         
33726         if(this.bgimage.length){
33727             this.imageEl = this.el.select('.roo-brick-image-view', true).first();
33728             this.imageEl.on('load', this.onImageLoad, this);
33729             return;
33730         }
33731         
33732         this.resize();
33733     },
33734     
33735     onImageLoad : function()
33736     {
33737         this.resize();
33738     },
33739     
33740     resize : function()
33741     {
33742         var paragraph = this.el.select('.roo-brick-paragraph', true).first();
33743         
33744         paragraph.setHeight(paragraph.getWidth() + paragraph.getPadding('tb'));
33745         
33746         if(this.bgimage.length){
33747             var image = this.el.select('.roo-brick-image-view', true).first();
33748             
33749             image.setWidth(paragraph.getWidth());
33750             
33751             if(this.square){
33752                 image.setHeight(paragraph.getWidth());
33753             }
33754             
33755             this.el.setHeight(image.getHeight());
33756             paragraph.setHeight(image.getHeight());
33757             
33758         }
33759         
33760     },
33761     
33762     enter: function(e, el)
33763     {
33764         e.preventDefault();
33765         
33766         if(this.bgimage.length){
33767             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0.9, true);
33768             this.el.select('.roo-brick-image-view', true).first().setOpacity(0.1, true);
33769         }
33770     },
33771     
33772     leave: function(e, el)
33773     {
33774         e.preventDefault();
33775         
33776         if(this.bgimage.length){
33777             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0, true);
33778             this.el.select('.roo-brick-image-view', true).first().setOpacity(1, true);
33779         }
33780     }
33781     
33782 });
33783
33784  
33785
33786  /*
33787  * - LGPL
33788  *
33789  * Number field 
33790  */
33791
33792 /**
33793  * @class Roo.bootstrap.NumberField
33794  * @extends Roo.bootstrap.Input
33795  * Bootstrap NumberField class
33796  * 
33797  * 
33798  * 
33799  * 
33800  * @constructor
33801  * Create a new NumberField
33802  * @param {Object} config The config object
33803  */
33804
33805 Roo.bootstrap.NumberField = function(config){
33806     Roo.bootstrap.NumberField.superclass.constructor.call(this, config);
33807 };
33808
33809 Roo.extend(Roo.bootstrap.NumberField, Roo.bootstrap.Input, {
33810     
33811     /**
33812      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
33813      */
33814     allowDecimals : true,
33815     /**
33816      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
33817      */
33818     decimalSeparator : ".",
33819     /**
33820      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
33821      */
33822     decimalPrecision : 2,
33823     /**
33824      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
33825      */
33826     allowNegative : true,
33827     
33828     /**
33829      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
33830      */
33831     allowZero: true,
33832     /**
33833      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
33834      */
33835     minValue : Number.NEGATIVE_INFINITY,
33836     /**
33837      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
33838      */
33839     maxValue : Number.MAX_VALUE,
33840     /**
33841      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
33842      */
33843     minText : "The minimum value for this field is {0}",
33844     /**
33845      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
33846      */
33847     maxText : "The maximum value for this field is {0}",
33848     /**
33849      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
33850      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
33851      */
33852     nanText : "{0} is not a valid number",
33853     /**
33854      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
33855      */
33856     thousandsDelimiter : false,
33857     /**
33858      * @cfg {String} valueAlign alignment of value
33859      */
33860     valueAlign : "left",
33861
33862     getAutoCreate : function()
33863     {
33864         var hiddenInput = {
33865             tag: 'input',
33866             type: 'hidden',
33867             id: Roo.id(),
33868             cls: 'hidden-number-input'
33869         };
33870         
33871         if (this.name) {
33872             hiddenInput.name = this.name;
33873         }
33874         
33875         this.name = '';
33876         
33877         var cfg = Roo.bootstrap.NumberField.superclass.getAutoCreate.call(this);
33878         
33879         this.name = hiddenInput.name;
33880         
33881         if(cfg.cn.length > 0) {
33882             cfg.cn.push(hiddenInput);
33883         }
33884         
33885         return cfg;
33886     },
33887
33888     // private
33889     initEvents : function()
33890     {   
33891         Roo.bootstrap.NumberField.superclass.initEvents.call(this);
33892         
33893         var allowed = "0123456789";
33894         
33895         if(this.allowDecimals){
33896             allowed += this.decimalSeparator;
33897         }
33898         
33899         if(this.allowNegative){
33900             allowed += "-";
33901         }
33902         
33903         if(this.thousandsDelimiter) {
33904             allowed += ",";
33905         }
33906         
33907         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
33908         
33909         var keyPress = function(e){
33910             
33911             var k = e.getKey();
33912             
33913             var c = e.getCharCode();
33914             
33915             if(
33916                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
33917                     allowed.indexOf(String.fromCharCode(c)) === -1
33918             ){
33919                 e.stopEvent();
33920                 return;
33921             }
33922             
33923             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
33924                 return;
33925             }
33926             
33927             if(allowed.indexOf(String.fromCharCode(c)) === -1){
33928                 e.stopEvent();
33929             }
33930         };
33931         
33932         this.el.on("keypress", keyPress, this);
33933     },
33934     
33935     validateValue : function(value)
33936     {
33937         
33938         if(!Roo.bootstrap.NumberField.superclass.validateValue.call(this, value)){
33939             return false;
33940         }
33941         
33942         var num = this.parseValue(value);
33943         
33944         if(isNaN(num)){
33945             this.markInvalid(String.format(this.nanText, value));
33946             return false;
33947         }
33948         
33949         if(num < this.minValue){
33950             this.markInvalid(String.format(this.minText, this.minValue));
33951             return false;
33952         }
33953         
33954         if(num > this.maxValue){
33955             this.markInvalid(String.format(this.maxText, this.maxValue));
33956             return false;
33957         }
33958         
33959         return true;
33960     },
33961
33962     getValue : function()
33963     {
33964         var v = this.hiddenEl().getValue();
33965         
33966         return this.fixPrecision(this.parseValue(v));
33967     },
33968
33969     parseValue : function(value)
33970     {
33971         if(this.thousandsDelimiter) {
33972             value += "";
33973             r = new RegExp(",", "g");
33974             value = value.replace(r, "");
33975         }
33976         
33977         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
33978         return isNaN(value) ? '' : value;
33979     },
33980
33981     fixPrecision : function(value)
33982     {
33983         if(this.thousandsDelimiter) {
33984             value += "";
33985             r = new RegExp(",", "g");
33986             value = value.replace(r, "");
33987         }
33988         
33989         var nan = isNaN(value);
33990         
33991         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
33992             return nan ? '' : value;
33993         }
33994         return parseFloat(value).toFixed(this.decimalPrecision);
33995     },
33996
33997     setValue : function(v)
33998     {
33999         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
34000         
34001         this.value = v;
34002         
34003         if(this.rendered){
34004             
34005             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
34006             
34007             this.inputEl().dom.value = (v == '') ? '' :
34008                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
34009             
34010             if(!this.allowZero && v === '0') {
34011                 this.hiddenEl().dom.value = '';
34012                 this.inputEl().dom.value = '';
34013             }
34014             
34015             this.validate();
34016         }
34017     },
34018
34019     decimalPrecisionFcn : function(v)
34020     {
34021         return Math.floor(v);
34022     },
34023
34024     beforeBlur : function()
34025     {
34026         var v = this.parseValue(this.getRawValue());
34027         
34028         if(v || v === 0 || v === ''){
34029             this.setValue(v);
34030         }
34031     },
34032     
34033     hiddenEl : function()
34034     {
34035         return this.el.select('input.hidden-number-input',true).first();
34036     }
34037     
34038 });
34039
34040  
34041
34042 /*
34043 * Licence: LGPL
34044 */
34045
34046 /**
34047  * @class Roo.bootstrap.DocumentSlider
34048  * @extends Roo.bootstrap.Component
34049  * Bootstrap DocumentSlider class
34050  * 
34051  * @constructor
34052  * Create a new DocumentViewer
34053  * @param {Object} config The config object
34054  */
34055
34056 Roo.bootstrap.DocumentSlider = function(config){
34057     Roo.bootstrap.DocumentSlider.superclass.constructor.call(this, config);
34058     
34059     this.files = [];
34060     
34061     this.addEvents({
34062         /**
34063          * @event initial
34064          * Fire after initEvent
34065          * @param {Roo.bootstrap.DocumentSlider} this
34066          */
34067         "initial" : true,
34068         /**
34069          * @event update
34070          * Fire after update
34071          * @param {Roo.bootstrap.DocumentSlider} this
34072          */
34073         "update" : true,
34074         /**
34075          * @event click
34076          * Fire after click
34077          * @param {Roo.bootstrap.DocumentSlider} this
34078          */
34079         "click" : true
34080     });
34081 };
34082
34083 Roo.extend(Roo.bootstrap.DocumentSlider, Roo.bootstrap.Component,  {
34084     
34085     files : false,
34086     
34087     indicator : 0,
34088     
34089     getAutoCreate : function()
34090     {
34091         var cfg = {
34092             tag : 'div',
34093             cls : 'roo-document-slider',
34094             cn : [
34095                 {
34096                     tag : 'div',
34097                     cls : 'roo-document-slider-header',
34098                     cn : [
34099                         {
34100                             tag : 'div',
34101                             cls : 'roo-document-slider-header-title'
34102                         }
34103                     ]
34104                 },
34105                 {
34106                     tag : 'div',
34107                     cls : 'roo-document-slider-body',
34108                     cn : [
34109                         {
34110                             tag : 'div',
34111                             cls : 'roo-document-slider-prev',
34112                             cn : [
34113                                 {
34114                                     tag : 'i',
34115                                     cls : 'fa fa-chevron-left'
34116                                 }
34117                             ]
34118                         },
34119                         {
34120                             tag : 'div',
34121                             cls : 'roo-document-slider-thumb',
34122                             cn : [
34123                                 {
34124                                     tag : 'img',
34125                                     cls : 'roo-document-slider-image'
34126                                 }
34127                             ]
34128                         },
34129                         {
34130                             tag : 'div',
34131                             cls : 'roo-document-slider-next',
34132                             cn : [
34133                                 {
34134                                     tag : 'i',
34135                                     cls : 'fa fa-chevron-right'
34136                                 }
34137                             ]
34138                         }
34139                     ]
34140                 }
34141             ]
34142         };
34143         
34144         return cfg;
34145     },
34146     
34147     initEvents : function()
34148     {
34149         this.headerEl = this.el.select('.roo-document-slider-header', true).first();
34150         this.headerEl.setVisibilityMode(Roo.Element.DISPLAY);
34151         
34152         this.titleEl = this.el.select('.roo-document-slider-header .roo-document-slider-header-title', true).first();
34153         this.titleEl.setVisibilityMode(Roo.Element.DISPLAY);
34154         
34155         this.bodyEl = this.el.select('.roo-document-slider-body', true).first();
34156         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
34157         
34158         this.thumbEl = this.el.select('.roo-document-slider-thumb', true).first();
34159         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
34160         
34161         this.imageEl = this.el.select('.roo-document-slider-image', true).first();
34162         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
34163         
34164         this.prevIndicator = this.el.select('.roo-document-slider-prev i', true).first();
34165         this.prevIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34166         
34167         this.nextIndicator = this.el.select('.roo-document-slider-next i', true).first();
34168         this.nextIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34169         
34170         this.thumbEl.on('click', this.onClick, this);
34171         
34172         this.prevIndicator.on('click', this.prev, this);
34173         
34174         this.nextIndicator.on('click', this.next, this);
34175         
34176     },
34177     
34178     initial : function()
34179     {
34180         if(this.files.length){
34181             this.indicator = 1;
34182             this.update()
34183         }
34184         
34185         this.fireEvent('initial', this);
34186     },
34187     
34188     update : function()
34189     {
34190         this.imageEl.attr('src', this.files[this.indicator - 1]);
34191         
34192         this.titleEl.dom.innerHTML = String.format('{0} / {1}', this.indicator, this.files.length);
34193         
34194         this.prevIndicator.show();
34195         
34196         if(this.indicator == 1){
34197             this.prevIndicator.hide();
34198         }
34199         
34200         this.nextIndicator.show();
34201         
34202         if(this.indicator == this.files.length){
34203             this.nextIndicator.hide();
34204         }
34205         
34206         this.thumbEl.scrollTo('top');
34207         
34208         this.fireEvent('update', this);
34209     },
34210     
34211     onClick : function(e)
34212     {
34213         e.preventDefault();
34214         
34215         this.fireEvent('click', this);
34216     },
34217     
34218     prev : function(e)
34219     {
34220         e.preventDefault();
34221         
34222         this.indicator = Math.max(1, this.indicator - 1);
34223         
34224         this.update();
34225     },
34226     
34227     next : function(e)
34228     {
34229         e.preventDefault();
34230         
34231         this.indicator = Math.min(this.files.length, this.indicator + 1);
34232         
34233         this.update();
34234     }
34235 });
34236 /*
34237  * - LGPL
34238  *
34239  * RadioSet
34240  *
34241  *
34242  */
34243
34244 /**
34245  * @class Roo.bootstrap.RadioSet
34246  * @extends Roo.bootstrap.Input
34247  * Bootstrap RadioSet class
34248  * @cfg {String} indicatorpos (left|right) default left
34249  * @cfg {Boolean} inline (true|false) inline the element (default true)
34250  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the radio
34251  * @constructor
34252  * Create a new RadioSet
34253  * @param {Object} config The config object
34254  */
34255
34256 Roo.bootstrap.RadioSet = function(config){
34257     
34258     Roo.bootstrap.RadioSet.superclass.constructor.call(this, config);
34259     
34260     this.radioes = [];
34261     
34262     Roo.bootstrap.RadioSet.register(this);
34263     
34264     this.addEvents({
34265         /**
34266         * @event check
34267         * Fires when the element is checked or unchecked.
34268         * @param {Roo.bootstrap.RadioSet} this This radio
34269         * @param {Roo.bootstrap.Radio} item The checked item
34270         */
34271        check : true,
34272        /**
34273         * @event click
34274         * Fires when the element is click.
34275         * @param {Roo.bootstrap.RadioSet} this This radio set
34276         * @param {Roo.bootstrap.Radio} item The checked item
34277         * @param {Roo.EventObject} e The event object
34278         */
34279        click : true
34280     });
34281     
34282 };
34283
34284 Roo.extend(Roo.bootstrap.RadioSet, Roo.bootstrap.Input,  {
34285
34286     radioes : false,
34287     
34288     inline : true,
34289     
34290     weight : '',
34291     
34292     indicatorpos : 'left',
34293     
34294     getAutoCreate : function()
34295     {
34296         var label = {
34297             tag : 'label',
34298             cls : 'roo-radio-set-label',
34299             cn : [
34300                 {
34301                     tag : 'span',
34302                     html : this.fieldLabel
34303                 }
34304             ]
34305         };
34306         if (Roo.bootstrap.version == 3) {
34307             
34308             
34309             if(this.indicatorpos == 'left'){
34310                 label.cn.unshift({
34311                     tag : 'i',
34312                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
34313                     tooltip : 'This field is required'
34314                 });
34315             } else {
34316                 label.cn.push({
34317                     tag : 'i',
34318                     cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
34319                     tooltip : 'This field is required'
34320                 });
34321             }
34322         }
34323         var items = {
34324             tag : 'div',
34325             cls : 'roo-radio-set-items'
34326         };
34327         
34328         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
34329         
34330         if (align === 'left' && this.fieldLabel.length) {
34331             
34332             items = {
34333                 cls : "roo-radio-set-right", 
34334                 cn: [
34335                     items
34336                 ]
34337             };
34338             
34339             if(this.labelWidth > 12){
34340                 label.style = "width: " + this.labelWidth + 'px';
34341             }
34342             
34343             if(this.labelWidth < 13 && this.labelmd == 0){
34344                 this.labelmd = this.labelWidth;
34345             }
34346             
34347             if(this.labellg > 0){
34348                 label.cls += ' col-lg-' + this.labellg;
34349                 items.cls += ' col-lg-' + (12 - this.labellg);
34350             }
34351             
34352             if(this.labelmd > 0){
34353                 label.cls += ' col-md-' + this.labelmd;
34354                 items.cls += ' col-md-' + (12 - this.labelmd);
34355             }
34356             
34357             if(this.labelsm > 0){
34358                 label.cls += ' col-sm-' + this.labelsm;
34359                 items.cls += ' col-sm-' + (12 - this.labelsm);
34360             }
34361             
34362             if(this.labelxs > 0){
34363                 label.cls += ' col-xs-' + this.labelxs;
34364                 items.cls += ' col-xs-' + (12 - this.labelxs);
34365             }
34366         }
34367         
34368         var cfg = {
34369             tag : 'div',
34370             cls : 'roo-radio-set',
34371             cn : [
34372                 {
34373                     tag : 'input',
34374                     cls : 'roo-radio-set-input',
34375                     type : 'hidden',
34376                     name : this.name,
34377                     value : this.value ? this.value :  ''
34378                 },
34379                 label,
34380                 items
34381             ]
34382         };
34383         
34384         if(this.weight.length){
34385             cfg.cls += ' roo-radio-' + this.weight;
34386         }
34387         
34388         if(this.inline) {
34389             cfg.cls += ' roo-radio-set-inline';
34390         }
34391         
34392         var settings=this;
34393         ['xs','sm','md','lg'].map(function(size){
34394             if (settings[size]) {
34395                 cfg.cls += ' col-' + size + '-' + settings[size];
34396             }
34397         });
34398         
34399         return cfg;
34400         
34401     },
34402
34403     initEvents : function()
34404     {
34405         this.labelEl = this.el.select('.roo-radio-set-label', true).first();
34406         this.labelEl.setVisibilityMode(Roo.Element.DISPLAY);
34407         
34408         if(!this.fieldLabel.length){
34409             this.labelEl.hide();
34410         }
34411         
34412         this.itemsEl = this.el.select('.roo-radio-set-items', true).first();
34413         this.itemsEl.setVisibilityMode(Roo.Element.DISPLAY);
34414         
34415         this.indicator = this.indicatorEl();
34416         
34417         if(this.indicator){
34418             this.indicator.addClass('invisible');
34419         }
34420         
34421         this.originalValue = this.getValue();
34422         
34423     },
34424     
34425     inputEl: function ()
34426     {
34427         return this.el.select('.roo-radio-set-input', true).first();
34428     },
34429     
34430     getChildContainer : function()
34431     {
34432         return this.itemsEl;
34433     },
34434     
34435     register : function(item)
34436     {
34437         this.radioes.push(item);
34438         
34439     },
34440     
34441     validate : function()
34442     {   
34443         if(this.getVisibilityEl().hasClass('hidden')){
34444             return true;
34445         }
34446         
34447         var valid = false;
34448         
34449         Roo.each(this.radioes, function(i){
34450             if(!i.checked){
34451                 return;
34452             }
34453             
34454             valid = true;
34455             return false;
34456         });
34457         
34458         if(this.allowBlank) {
34459             return true;
34460         }
34461         
34462         if(this.disabled || valid){
34463             this.markValid();
34464             return true;
34465         }
34466         
34467         this.markInvalid();
34468         return false;
34469         
34470     },
34471     
34472     markValid : function()
34473     {
34474         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34475             this.indicatorEl().removeClass('visible');
34476             this.indicatorEl().addClass('invisible');
34477         }
34478         
34479         
34480         if (Roo.bootstrap.version == 3) {
34481             this.el.removeClass([this.invalidClass, this.validClass]);
34482             this.el.addClass(this.validClass);
34483         } else {
34484             this.el.removeClass(['is-invalid','is-valid']);
34485             this.el.addClass(['is-valid']);
34486         }
34487         this.fireEvent('valid', this);
34488     },
34489     
34490     markInvalid : function(msg)
34491     {
34492         if(this.allowBlank || this.disabled){
34493             return;
34494         }
34495         
34496         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34497             this.indicatorEl().removeClass('invisible');
34498             this.indicatorEl().addClass('visible');
34499         }
34500         if (Roo.bootstrap.version == 3) {
34501             this.el.removeClass([this.invalidClass, this.validClass]);
34502             this.el.addClass(this.invalidClass);
34503         } else {
34504             this.el.removeClass(['is-invalid','is-valid']);
34505             this.el.addClass(['is-invalid']);
34506         }
34507         
34508         this.fireEvent('invalid', this, msg);
34509         
34510     },
34511     
34512     setValue : function(v, suppressEvent)
34513     {   
34514         if(this.value === v){
34515             return;
34516         }
34517         
34518         this.value = v;
34519         
34520         if(this.rendered){
34521             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
34522         }
34523         
34524         Roo.each(this.radioes, function(i){
34525             i.checked = false;
34526             i.el.removeClass('checked');
34527         });
34528         
34529         Roo.each(this.radioes, function(i){
34530             
34531             if(i.value === v || i.value.toString() === v.toString()){
34532                 i.checked = true;
34533                 i.el.addClass('checked');
34534                 
34535                 if(suppressEvent !== true){
34536                     this.fireEvent('check', this, i);
34537                 }
34538                 
34539                 return false;
34540             }
34541             
34542         }, this);
34543         
34544         this.validate();
34545     },
34546     
34547     clearInvalid : function(){
34548         
34549         if(!this.el || this.preventMark){
34550             return;
34551         }
34552         
34553         this.el.removeClass([this.invalidClass]);
34554         
34555         this.fireEvent('valid', this);
34556     }
34557     
34558 });
34559
34560 Roo.apply(Roo.bootstrap.RadioSet, {
34561     
34562     groups: {},
34563     
34564     register : function(set)
34565     {
34566         this.groups[set.name] = set;
34567     },
34568     
34569     get: function(name) 
34570     {
34571         if (typeof(this.groups[name]) == 'undefined') {
34572             return false;
34573         }
34574         
34575         return this.groups[name] ;
34576     }
34577     
34578 });
34579 /*
34580  * Based on:
34581  * Ext JS Library 1.1.1
34582  * Copyright(c) 2006-2007, Ext JS, LLC.
34583  *
34584  * Originally Released Under LGPL - original licence link has changed is not relivant.
34585  *
34586  * Fork - LGPL
34587  * <script type="text/javascript">
34588  */
34589
34590
34591 /**
34592  * @class Roo.bootstrap.SplitBar
34593  * @extends Roo.util.Observable
34594  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
34595  * <br><br>
34596  * Usage:
34597  * <pre><code>
34598 var split = new Roo.bootstrap.SplitBar("elementToDrag", "elementToSize",
34599                    Roo.bootstrap.SplitBar.HORIZONTAL, Roo.bootstrap.SplitBar.LEFT);
34600 split.setAdapter(new Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter("container"));
34601 split.minSize = 100;
34602 split.maxSize = 600;
34603 split.animate = true;
34604 split.on('moved', splitterMoved);
34605 </code></pre>
34606  * @constructor
34607  * Create a new SplitBar
34608  * @config {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
34609  * @config {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
34610  * @config {Number} orientation (optional) Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34611  * @config {Number} placement (optional) Either Roo.bootstrap.SplitBar.LEFT or Roo.bootstrap.SplitBar.RIGHT for horizontal or  
34612                         Roo.bootstrap.SplitBar.TOP or Roo.bootstrap.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
34613                         position of the SplitBar).
34614  */
34615 Roo.bootstrap.SplitBar = function(cfg){
34616     
34617     /** @private */
34618     
34619     //{
34620     //  dragElement : elm
34621     //  resizingElement: el,
34622         // optional..
34623     //    orientation : Either Roo.bootstrap.SplitBar.HORIZONTAL
34624     //    placement : Roo.bootstrap.SplitBar.LEFT  ,
34625         // existingProxy ???
34626     //}
34627     
34628     this.el = Roo.get(cfg.dragElement, true);
34629     this.el.dom.unselectable = "on";
34630     /** @private */
34631     this.resizingEl = Roo.get(cfg.resizingElement, true);
34632
34633     /**
34634      * @private
34635      * The orientation of the split. Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34636      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
34637      * @type Number
34638      */
34639     this.orientation = cfg.orientation || Roo.bootstrap.SplitBar.HORIZONTAL;
34640     
34641     /**
34642      * The minimum size of the resizing element. (Defaults to 0)
34643      * @type Number
34644      */
34645     this.minSize = 0;
34646     
34647     /**
34648      * The maximum size of the resizing element. (Defaults to 2000)
34649      * @type Number
34650      */
34651     this.maxSize = 2000;
34652     
34653     /**
34654      * Whether to animate the transition to the new size
34655      * @type Boolean
34656      */
34657     this.animate = false;
34658     
34659     /**
34660      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
34661      * @type Boolean
34662      */
34663     this.useShim = false;
34664     
34665     /** @private */
34666     this.shim = null;
34667     
34668     if(!cfg.existingProxy){
34669         /** @private */
34670         this.proxy = Roo.bootstrap.SplitBar.createProxy(this.orientation);
34671     }else{
34672         this.proxy = Roo.get(cfg.existingProxy).dom;
34673     }
34674     /** @private */
34675     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
34676     
34677     /** @private */
34678     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
34679     
34680     /** @private */
34681     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
34682     
34683     /** @private */
34684     this.dragSpecs = {};
34685     
34686     /**
34687      * @private The adapter to use to positon and resize elements
34688      */
34689     this.adapter = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34690     this.adapter.init(this);
34691     
34692     if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34693         /** @private */
34694         this.placement = cfg.placement || (this.el.getX() > this.resizingEl.getX() ? Roo.bootstrap.SplitBar.LEFT : Roo.bootstrap.SplitBar.RIGHT);
34695         this.el.addClass("roo-splitbar-h");
34696     }else{
34697         /** @private */
34698         this.placement = cfg.placement || (this.el.getY() > this.resizingEl.getY() ? Roo.bootstrap.SplitBar.TOP : Roo.bootstrap.SplitBar.BOTTOM);
34699         this.el.addClass("roo-splitbar-v");
34700     }
34701     
34702     this.addEvents({
34703         /**
34704          * @event resize
34705          * Fires when the splitter is moved (alias for {@link #event-moved})
34706          * @param {Roo.bootstrap.SplitBar} this
34707          * @param {Number} newSize the new width or height
34708          */
34709         "resize" : true,
34710         /**
34711          * @event moved
34712          * Fires when the splitter is moved
34713          * @param {Roo.bootstrap.SplitBar} this
34714          * @param {Number} newSize the new width or height
34715          */
34716         "moved" : true,
34717         /**
34718          * @event beforeresize
34719          * Fires before the splitter is dragged
34720          * @param {Roo.bootstrap.SplitBar} this
34721          */
34722         "beforeresize" : true,
34723
34724         "beforeapply" : true
34725     });
34726
34727     Roo.util.Observable.call(this);
34728 };
34729
34730 Roo.extend(Roo.bootstrap.SplitBar, Roo.util.Observable, {
34731     onStartProxyDrag : function(x, y){
34732         this.fireEvent("beforeresize", this);
34733         if(!this.overlay){
34734             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "roo-drag-overlay", html: "&#160;"}, true);
34735             o.unselectable();
34736             o.enableDisplayMode("block");
34737             // all splitbars share the same overlay
34738             Roo.bootstrap.SplitBar.prototype.overlay = o;
34739         }
34740         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34741         this.overlay.show();
34742         Roo.get(this.proxy).setDisplayed("block");
34743         var size = this.adapter.getElementSize(this);
34744         this.activeMinSize = this.getMinimumSize();;
34745         this.activeMaxSize = this.getMaximumSize();;
34746         var c1 = size - this.activeMinSize;
34747         var c2 = Math.max(this.activeMaxSize - size, 0);
34748         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34749             this.dd.resetConstraints();
34750             this.dd.setXConstraint(
34751                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c1 : c2, 
34752                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c2 : c1
34753             );
34754             this.dd.setYConstraint(0, 0);
34755         }else{
34756             this.dd.resetConstraints();
34757             this.dd.setXConstraint(0, 0);
34758             this.dd.setYConstraint(
34759                 this.placement == Roo.bootstrap.SplitBar.TOP ? c1 : c2, 
34760                 this.placement == Roo.bootstrap.SplitBar.TOP ? c2 : c1
34761             );
34762          }
34763         this.dragSpecs.startSize = size;
34764         this.dragSpecs.startPoint = [x, y];
34765         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
34766     },
34767     
34768     /** 
34769      * @private Called after the drag operation by the DDProxy
34770      */
34771     onEndProxyDrag : function(e){
34772         Roo.get(this.proxy).setDisplayed(false);
34773         var endPoint = Roo.lib.Event.getXY(e);
34774         if(this.overlay){
34775             this.overlay.hide();
34776         }
34777         var newSize;
34778         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34779             newSize = this.dragSpecs.startSize + 
34780                 (this.placement == Roo.bootstrap.SplitBar.LEFT ?
34781                     endPoint[0] - this.dragSpecs.startPoint[0] :
34782                     this.dragSpecs.startPoint[0] - endPoint[0]
34783                 );
34784         }else{
34785             newSize = this.dragSpecs.startSize + 
34786                 (this.placement == Roo.bootstrap.SplitBar.TOP ?
34787                     endPoint[1] - this.dragSpecs.startPoint[1] :
34788                     this.dragSpecs.startPoint[1] - endPoint[1]
34789                 );
34790         }
34791         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
34792         if(newSize != this.dragSpecs.startSize){
34793             if(this.fireEvent('beforeapply', this, newSize) !== false){
34794                 this.adapter.setElementSize(this, newSize);
34795                 this.fireEvent("moved", this, newSize);
34796                 this.fireEvent("resize", this, newSize);
34797             }
34798         }
34799     },
34800     
34801     /**
34802      * Get the adapter this SplitBar uses
34803      * @return The adapter object
34804      */
34805     getAdapter : function(){
34806         return this.adapter;
34807     },
34808     
34809     /**
34810      * Set the adapter this SplitBar uses
34811      * @param {Object} adapter A SplitBar adapter object
34812      */
34813     setAdapter : function(adapter){
34814         this.adapter = adapter;
34815         this.adapter.init(this);
34816     },
34817     
34818     /**
34819      * Gets the minimum size for the resizing element
34820      * @return {Number} The minimum size
34821      */
34822     getMinimumSize : function(){
34823         return this.minSize;
34824     },
34825     
34826     /**
34827      * Sets the minimum size for the resizing element
34828      * @param {Number} minSize The minimum size
34829      */
34830     setMinimumSize : function(minSize){
34831         this.minSize = minSize;
34832     },
34833     
34834     /**
34835      * Gets the maximum size for the resizing element
34836      * @return {Number} The maximum size
34837      */
34838     getMaximumSize : function(){
34839         return this.maxSize;
34840     },
34841     
34842     /**
34843      * Sets the maximum size for the resizing element
34844      * @param {Number} maxSize The maximum size
34845      */
34846     setMaximumSize : function(maxSize){
34847         this.maxSize = maxSize;
34848     },
34849     
34850     /**
34851      * Sets the initialize size for the resizing element
34852      * @param {Number} size The initial size
34853      */
34854     setCurrentSize : function(size){
34855         var oldAnimate = this.animate;
34856         this.animate = false;
34857         this.adapter.setElementSize(this, size);
34858         this.animate = oldAnimate;
34859     },
34860     
34861     /**
34862      * Destroy this splitbar. 
34863      * @param {Boolean} removeEl True to remove the element
34864      */
34865     destroy : function(removeEl){
34866         if(this.shim){
34867             this.shim.remove();
34868         }
34869         this.dd.unreg();
34870         this.proxy.parentNode.removeChild(this.proxy);
34871         if(removeEl){
34872             this.el.remove();
34873         }
34874     }
34875 });
34876
34877 /**
34878  * @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.
34879  */
34880 Roo.bootstrap.SplitBar.createProxy = function(dir){
34881     var proxy = new Roo.Element(document.createElement("div"));
34882     proxy.unselectable();
34883     var cls = 'roo-splitbar-proxy';
34884     proxy.addClass(cls + ' ' + (dir == Roo.bootstrap.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
34885     document.body.appendChild(proxy.dom);
34886     return proxy.dom;
34887 };
34888
34889 /** 
34890  * @class Roo.bootstrap.SplitBar.BasicLayoutAdapter
34891  * Default Adapter. It assumes the splitter and resizing element are not positioned
34892  * elements and only gets/sets the width of the element. Generally used for table based layouts.
34893  */
34894 Roo.bootstrap.SplitBar.BasicLayoutAdapter = function(){
34895 };
34896
34897 Roo.bootstrap.SplitBar.BasicLayoutAdapter.prototype = {
34898     // do nothing for now
34899     init : function(s){
34900     
34901     },
34902     /**
34903      * Called before drag operations to get the current size of the resizing element. 
34904      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34905      */
34906      getElementSize : function(s){
34907         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34908             return s.resizingEl.getWidth();
34909         }else{
34910             return s.resizingEl.getHeight();
34911         }
34912     },
34913     
34914     /**
34915      * Called after drag operations to set the size of the resizing element.
34916      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34917      * @param {Number} newSize The new size to set
34918      * @param {Function} onComplete A function to be invoked when resizing is complete
34919      */
34920     setElementSize : function(s, newSize, onComplete){
34921         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34922             if(!s.animate){
34923                 s.resizingEl.setWidth(newSize);
34924                 if(onComplete){
34925                     onComplete(s, newSize);
34926                 }
34927             }else{
34928                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
34929             }
34930         }else{
34931             
34932             if(!s.animate){
34933                 s.resizingEl.setHeight(newSize);
34934                 if(onComplete){
34935                     onComplete(s, newSize);
34936                 }
34937             }else{
34938                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
34939             }
34940         }
34941     }
34942 };
34943
34944 /** 
34945  *@class Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter
34946  * @extends Roo.bootstrap.SplitBar.BasicLayoutAdapter
34947  * Adapter that  moves the splitter element to align with the resized sizing element. 
34948  * Used with an absolute positioned SplitBar.
34949  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
34950  * document.body, make sure you assign an id to the body element.
34951  */
34952 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter = function(container){
34953     this.basic = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34954     this.container = Roo.get(container);
34955 };
34956
34957 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter.prototype = {
34958     init : function(s){
34959         this.basic.init(s);
34960     },
34961     
34962     getElementSize : function(s){
34963         return this.basic.getElementSize(s);
34964     },
34965     
34966     setElementSize : function(s, newSize, onComplete){
34967         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
34968     },
34969     
34970     moveSplitter : function(s){
34971         var yes = Roo.bootstrap.SplitBar;
34972         switch(s.placement){
34973             case yes.LEFT:
34974                 s.el.setX(s.resizingEl.getRight());
34975                 break;
34976             case yes.RIGHT:
34977                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
34978                 break;
34979             case yes.TOP:
34980                 s.el.setY(s.resizingEl.getBottom());
34981                 break;
34982             case yes.BOTTOM:
34983                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
34984                 break;
34985         }
34986     }
34987 };
34988
34989 /**
34990  * Orientation constant - Create a vertical SplitBar
34991  * @static
34992  * @type Number
34993  */
34994 Roo.bootstrap.SplitBar.VERTICAL = 1;
34995
34996 /**
34997  * Orientation constant - Create a horizontal SplitBar
34998  * @static
34999  * @type Number
35000  */
35001 Roo.bootstrap.SplitBar.HORIZONTAL = 2;
35002
35003 /**
35004  * Placement constant - The resizing element is to the left of the splitter element
35005  * @static
35006  * @type Number
35007  */
35008 Roo.bootstrap.SplitBar.LEFT = 1;
35009
35010 /**
35011  * Placement constant - The resizing element is to the right of the splitter element
35012  * @static
35013  * @type Number
35014  */
35015 Roo.bootstrap.SplitBar.RIGHT = 2;
35016
35017 /**
35018  * Placement constant - The resizing element is positioned above the splitter element
35019  * @static
35020  * @type Number
35021  */
35022 Roo.bootstrap.SplitBar.TOP = 3;
35023
35024 /**
35025  * Placement constant - The resizing element is positioned under splitter element
35026  * @static
35027  * @type Number
35028  */
35029 Roo.bootstrap.SplitBar.BOTTOM = 4;
35030 Roo.namespace("Roo.bootstrap.layout");/*
35031  * Based on:
35032  * Ext JS Library 1.1.1
35033  * Copyright(c) 2006-2007, Ext JS, LLC.
35034  *
35035  * Originally Released Under LGPL - original licence link has changed is not relivant.
35036  *
35037  * Fork - LGPL
35038  * <script type="text/javascript">
35039  */
35040
35041 /**
35042  * @class Roo.bootstrap.layout.Manager
35043  * @extends Roo.bootstrap.Component
35044  * Base class for layout managers.
35045  */
35046 Roo.bootstrap.layout.Manager = function(config)
35047 {
35048     Roo.bootstrap.layout.Manager.superclass.constructor.call(this,config);
35049
35050
35051
35052
35053
35054     /** false to disable window resize monitoring @type Boolean */
35055     this.monitorWindowResize = true;
35056     this.regions = {};
35057     this.addEvents({
35058         /**
35059          * @event layout
35060          * Fires when a layout is performed.
35061          * @param {Roo.LayoutManager} this
35062          */
35063         "layout" : true,
35064         /**
35065          * @event regionresized
35066          * Fires when the user resizes a region.
35067          * @param {Roo.LayoutRegion} region The resized region
35068          * @param {Number} newSize The new size (width for east/west, height for north/south)
35069          */
35070         "regionresized" : true,
35071         /**
35072          * @event regioncollapsed
35073          * Fires when a region is collapsed.
35074          * @param {Roo.LayoutRegion} region The collapsed region
35075          */
35076         "regioncollapsed" : true,
35077         /**
35078          * @event regionexpanded
35079          * Fires when a region is expanded.
35080          * @param {Roo.LayoutRegion} region The expanded region
35081          */
35082         "regionexpanded" : true
35083     });
35084     this.updating = false;
35085
35086     if (config.el) {
35087         this.el = Roo.get(config.el);
35088         this.initEvents();
35089     }
35090
35091 };
35092
35093 Roo.extend(Roo.bootstrap.layout.Manager, Roo.bootstrap.Component, {
35094
35095
35096     regions : null,
35097
35098     monitorWindowResize : true,
35099
35100
35101     updating : false,
35102
35103
35104     onRender : function(ct, position)
35105     {
35106         if(!this.el){
35107             this.el = Roo.get(ct);
35108             this.initEvents();
35109         }
35110         //this.fireEvent('render',this);
35111     },
35112
35113
35114     initEvents: function()
35115     {
35116
35117
35118         // ie scrollbar fix
35119         if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
35120             document.body.scroll = "no";
35121         }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
35122             this.el.position('relative');
35123         }
35124         this.id = this.el.id;
35125         this.el.addClass("roo-layout-container");
35126         Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
35127         if(this.el.dom != document.body ) {
35128             this.el.on('resize', this.layout,this);
35129             this.el.on('show', this.layout,this);
35130         }
35131
35132     },
35133
35134     /**
35135      * Returns true if this layout is currently being updated
35136      * @return {Boolean}
35137      */
35138     isUpdating : function(){
35139         return this.updating;
35140     },
35141
35142     /**
35143      * Suspend the LayoutManager from doing auto-layouts while
35144      * making multiple add or remove calls
35145      */
35146     beginUpdate : function(){
35147         this.updating = true;
35148     },
35149
35150     /**
35151      * Restore auto-layouts and optionally disable the manager from performing a layout
35152      * @param {Boolean} noLayout true to disable a layout update
35153      */
35154     endUpdate : function(noLayout){
35155         this.updating = false;
35156         if(!noLayout){
35157             this.layout();
35158         }
35159     },
35160
35161     layout: function(){
35162         // abstract...
35163     },
35164
35165     onRegionResized : function(region, newSize){
35166         this.fireEvent("regionresized", region, newSize);
35167         this.layout();
35168     },
35169
35170     onRegionCollapsed : function(region){
35171         this.fireEvent("regioncollapsed", region);
35172     },
35173
35174     onRegionExpanded : function(region){
35175         this.fireEvent("regionexpanded", region);
35176     },
35177
35178     /**
35179      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
35180      * performs box-model adjustments.
35181      * @return {Object} The size as an object {width: (the width), height: (the height)}
35182      */
35183     getViewSize : function()
35184     {
35185         var size;
35186         if(this.el.dom != document.body){
35187             size = this.el.getSize();
35188         }else{
35189             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
35190         }
35191         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
35192         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
35193         return size;
35194     },
35195
35196     /**
35197      * Returns the Element this layout is bound to.
35198      * @return {Roo.Element}
35199      */
35200     getEl : function(){
35201         return this.el;
35202     },
35203
35204     /**
35205      * Returns the specified region.
35206      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
35207      * @return {Roo.LayoutRegion}
35208      */
35209     getRegion : function(target){
35210         return this.regions[target.toLowerCase()];
35211     },
35212
35213     onWindowResize : function(){
35214         if(this.monitorWindowResize){
35215             this.layout();
35216         }
35217     }
35218 });
35219 /*
35220  * Based on:
35221  * Ext JS Library 1.1.1
35222  * Copyright(c) 2006-2007, Ext JS, LLC.
35223  *
35224  * Originally Released Under LGPL - original licence link has changed is not relivant.
35225  *
35226  * Fork - LGPL
35227  * <script type="text/javascript">
35228  */
35229 /**
35230  * @class Roo.bootstrap.layout.Border
35231  * @extends Roo.bootstrap.layout.Manager
35232  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
35233  * please see: examples/bootstrap/nested.html<br><br>
35234  
35235 <b>The container the layout is rendered into can be either the body element or any other element.
35236 If it is not the body element, the container needs to either be an absolute positioned element,
35237 or you will need to add "position:relative" to the css of the container.  You will also need to specify
35238 the container size if it is not the body element.</b>
35239
35240 * @constructor
35241 * Create a new Border
35242 * @param {Object} config Configuration options
35243  */
35244 Roo.bootstrap.layout.Border = function(config){
35245     config = config || {};
35246     Roo.bootstrap.layout.Border.superclass.constructor.call(this, config);
35247     
35248     
35249     
35250     Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35251         if(config[region]){
35252             config[region].region = region;
35253             this.addRegion(config[region]);
35254         }
35255     },this);
35256     
35257 };
35258
35259 Roo.bootstrap.layout.Border.regions =  ["north","south","east","west","center"];
35260
35261 Roo.extend(Roo.bootstrap.layout.Border, Roo.bootstrap.layout.Manager, {
35262     
35263     parent : false, // this might point to a 'nest' or a ???
35264     
35265     /**
35266      * Creates and adds a new region if it doesn't already exist.
35267      * @param {String} target The target region key (north, south, east, west or center).
35268      * @param {Object} config The regions config object
35269      * @return {BorderLayoutRegion} The new region
35270      */
35271     addRegion : function(config)
35272     {
35273         if(!this.regions[config.region]){
35274             var r = this.factory(config);
35275             this.bindRegion(r);
35276         }
35277         return this.regions[config.region];
35278     },
35279
35280     // private (kinda)
35281     bindRegion : function(r){
35282         this.regions[r.config.region] = r;
35283         
35284         r.on("visibilitychange",    this.layout, this);
35285         r.on("paneladded",          this.layout, this);
35286         r.on("panelremoved",        this.layout, this);
35287         r.on("invalidated",         this.layout, this);
35288         r.on("resized",             this.onRegionResized, this);
35289         r.on("collapsed",           this.onRegionCollapsed, this);
35290         r.on("expanded",            this.onRegionExpanded, this);
35291     },
35292
35293     /**
35294      * Performs a layout update.
35295      */
35296     layout : function()
35297     {
35298         if(this.updating) {
35299             return;
35300         }
35301         
35302         // render all the rebions if they have not been done alreayd?
35303         Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35304             if(this.regions[region] && !this.regions[region].bodyEl){
35305                 this.regions[region].onRender(this.el)
35306             }
35307         },this);
35308         
35309         var size = this.getViewSize();
35310         var w = size.width;
35311         var h = size.height;
35312         var centerW = w;
35313         var centerH = h;
35314         var centerY = 0;
35315         var centerX = 0;
35316         //var x = 0, y = 0;
35317
35318         var rs = this.regions;
35319         var north = rs["north"];
35320         var south = rs["south"]; 
35321         var west = rs["west"];
35322         var east = rs["east"];
35323         var center = rs["center"];
35324         //if(this.hideOnLayout){ // not supported anymore
35325             //c.el.setStyle("display", "none");
35326         //}
35327         if(north && north.isVisible()){
35328             var b = north.getBox();
35329             var m = north.getMargins();
35330             b.width = w - (m.left+m.right);
35331             b.x = m.left;
35332             b.y = m.top;
35333             centerY = b.height + b.y + m.bottom;
35334             centerH -= centerY;
35335             north.updateBox(this.safeBox(b));
35336         }
35337         if(south && south.isVisible()){
35338             var b = south.getBox();
35339             var m = south.getMargins();
35340             b.width = w - (m.left+m.right);
35341             b.x = m.left;
35342             var totalHeight = (b.height + m.top + m.bottom);
35343             b.y = h - totalHeight + m.top;
35344             centerH -= totalHeight;
35345             south.updateBox(this.safeBox(b));
35346         }
35347         if(west && west.isVisible()){
35348             var b = west.getBox();
35349             var m = west.getMargins();
35350             b.height = centerH - (m.top+m.bottom);
35351             b.x = m.left;
35352             b.y = centerY + m.top;
35353             var totalWidth = (b.width + m.left + m.right);
35354             centerX += totalWidth;
35355             centerW -= totalWidth;
35356             west.updateBox(this.safeBox(b));
35357         }
35358         if(east && east.isVisible()){
35359             var b = east.getBox();
35360             var m = east.getMargins();
35361             b.height = centerH - (m.top+m.bottom);
35362             var totalWidth = (b.width + m.left + m.right);
35363             b.x = w - totalWidth + m.left;
35364             b.y = centerY + m.top;
35365             centerW -= totalWidth;
35366             east.updateBox(this.safeBox(b));
35367         }
35368         if(center){
35369             var m = center.getMargins();
35370             var centerBox = {
35371                 x: centerX + m.left,
35372                 y: centerY + m.top,
35373                 width: centerW - (m.left+m.right),
35374                 height: centerH - (m.top+m.bottom)
35375             };
35376             //if(this.hideOnLayout){
35377                 //center.el.setStyle("display", "block");
35378             //}
35379             center.updateBox(this.safeBox(centerBox));
35380         }
35381         this.el.repaint();
35382         this.fireEvent("layout", this);
35383     },
35384
35385     // private
35386     safeBox : function(box){
35387         box.width = Math.max(0, box.width);
35388         box.height = Math.max(0, box.height);
35389         return box;
35390     },
35391
35392     /**
35393      * Adds a ContentPanel (or subclass) to this layout.
35394      * @param {String} target The target region key (north, south, east, west or center).
35395      * @param {Roo.ContentPanel} panel The panel to add
35396      * @return {Roo.ContentPanel} The added panel
35397      */
35398     add : function(target, panel){
35399          
35400         target = target.toLowerCase();
35401         return this.regions[target].add(panel);
35402     },
35403
35404     /**
35405      * Remove a ContentPanel (or subclass) to this layout.
35406      * @param {String} target The target region key (north, south, east, west or center).
35407      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
35408      * @return {Roo.ContentPanel} The removed panel
35409      */
35410     remove : function(target, panel){
35411         target = target.toLowerCase();
35412         return this.regions[target].remove(panel);
35413     },
35414
35415     /**
35416      * Searches all regions for a panel with the specified id
35417      * @param {String} panelId
35418      * @return {Roo.ContentPanel} The panel or null if it wasn't found
35419      */
35420     findPanel : function(panelId){
35421         var rs = this.regions;
35422         for(var target in rs){
35423             if(typeof rs[target] != "function"){
35424                 var p = rs[target].getPanel(panelId);
35425                 if(p){
35426                     return p;
35427                 }
35428             }
35429         }
35430         return null;
35431     },
35432
35433     /**
35434      * Searches all regions for a panel with the specified id and activates (shows) it.
35435      * @param {String/ContentPanel} panelId The panels id or the panel itself
35436      * @return {Roo.ContentPanel} The shown panel or null
35437      */
35438     showPanel : function(panelId) {
35439       var rs = this.regions;
35440       for(var target in rs){
35441          var r = rs[target];
35442          if(typeof r != "function"){
35443             if(r.hasPanel(panelId)){
35444                return r.showPanel(panelId);
35445             }
35446          }
35447       }
35448       return null;
35449    },
35450
35451    /**
35452      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
35453      * @param {Roo.state.Provider} provider (optional) An alternate state provider
35454      */
35455    /*
35456     restoreState : function(provider){
35457         if(!provider){
35458             provider = Roo.state.Manager;
35459         }
35460         var sm = new Roo.LayoutStateManager();
35461         sm.init(this, provider);
35462     },
35463 */
35464  
35465  
35466     /**
35467      * Adds a xtype elements to the layout.
35468      * <pre><code>
35469
35470 layout.addxtype({
35471        xtype : 'ContentPanel',
35472        region: 'west',
35473        items: [ .... ]
35474    }
35475 );
35476
35477 layout.addxtype({
35478         xtype : 'NestedLayoutPanel',
35479         region: 'west',
35480         layout: {
35481            center: { },
35482            west: { }   
35483         },
35484         items : [ ... list of content panels or nested layout panels.. ]
35485    }
35486 );
35487 </code></pre>
35488      * @param {Object} cfg Xtype definition of item to add.
35489      */
35490     addxtype : function(cfg)
35491     {
35492         // basically accepts a pannel...
35493         // can accept a layout region..!?!?
35494         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
35495         
35496         
35497         // theory?  children can only be panels??
35498         
35499         //if (!cfg.xtype.match(/Panel$/)) {
35500         //    return false;
35501         //}
35502         var ret = false;
35503         
35504         if (typeof(cfg.region) == 'undefined') {
35505             Roo.log("Failed to add Panel, region was not set");
35506             Roo.log(cfg);
35507             return false;
35508         }
35509         var region = cfg.region;
35510         delete cfg.region;
35511         
35512           
35513         var xitems = [];
35514         if (cfg.items) {
35515             xitems = cfg.items;
35516             delete cfg.items;
35517         }
35518         var nb = false;
35519         
35520         if ( region == 'center') {
35521             Roo.log("Center: " + cfg.title);
35522         }
35523         
35524         
35525         switch(cfg.xtype) 
35526         {
35527             case 'Content':  // ContentPanel (el, cfg)
35528             case 'Scroll':  // ContentPanel (el, cfg)
35529             case 'View': 
35530                 cfg.autoCreate = cfg.autoCreate || true;
35531                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35532                 //} else {
35533                 //    var el = this.el.createChild();
35534                 //    ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
35535                 //}
35536                 
35537                 this.add(region, ret);
35538                 break;
35539             
35540             /*
35541             case 'TreePanel': // our new panel!
35542                 cfg.el = this.el.createChild();
35543                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35544                 this.add(region, ret);
35545                 break;
35546             */
35547             
35548             case 'Nest': 
35549                 // create a new Layout (which is  a Border Layout...
35550                 
35551                 var clayout = cfg.layout;
35552                 clayout.el  = this.el.createChild();
35553                 clayout.items   = clayout.items  || [];
35554                 
35555                 delete cfg.layout;
35556                 
35557                 // replace this exitems with the clayout ones..
35558                 xitems = clayout.items;
35559                  
35560                 // force background off if it's in center...
35561                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
35562                     cfg.background = false;
35563                 }
35564                 cfg.layout  = new Roo.bootstrap.layout.Border(clayout);
35565                 
35566                 
35567                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35568                 //console.log('adding nested layout panel '  + cfg.toSource());
35569                 this.add(region, ret);
35570                 nb = {}; /// find first...
35571                 break;
35572             
35573             case 'Grid':
35574                 
35575                 // needs grid and region
35576                 
35577                 //var el = this.getRegion(region).el.createChild();
35578                 /*
35579                  *var el = this.el.createChild();
35580                 // create the grid first...
35581                 cfg.grid.container = el;
35582                 cfg.grid = new cfg.grid.xns[cfg.grid.xtype](cfg.grid);
35583                 */
35584                 
35585                 if (region == 'center' && this.active ) {
35586                     cfg.background = false;
35587                 }
35588                 
35589                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35590                 
35591                 this.add(region, ret);
35592                 /*
35593                 if (cfg.background) {
35594                     // render grid on panel activation (if panel background)
35595                     ret.on('activate', function(gp) {
35596                         if (!gp.grid.rendered) {
35597                     //        gp.grid.render(el);
35598                         }
35599                     });
35600                 } else {
35601                   //  cfg.grid.render(el);
35602                 }
35603                 */
35604                 break;
35605            
35606            
35607             case 'Border': // it can get called on it'self... - might need to check if this is fixed?
35608                 // it was the old xcomponent building that caused this before.
35609                 // espeically if border is the top element in the tree.
35610                 ret = this;
35611                 break; 
35612                 
35613                     
35614                 
35615                 
35616                 
35617             default:
35618                 /*
35619                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
35620                     
35621                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35622                     this.add(region, ret);
35623                 } else {
35624                 */
35625                     Roo.log(cfg);
35626                     throw "Can not add '" + cfg.xtype + "' to Border";
35627                     return null;
35628              
35629                                 
35630              
35631         }
35632         this.beginUpdate();
35633         // add children..
35634         var region = '';
35635         var abn = {};
35636         Roo.each(xitems, function(i)  {
35637             region = nb && i.region ? i.region : false;
35638             
35639             var add = ret.addxtype(i);
35640            
35641             if (region) {
35642                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
35643                 if (!i.background) {
35644                     abn[region] = nb[region] ;
35645                 }
35646             }
35647             
35648         });
35649         this.endUpdate();
35650
35651         // make the last non-background panel active..
35652         //if (nb) { Roo.log(abn); }
35653         if (nb) {
35654             
35655             for(var r in abn) {
35656                 region = this.getRegion(r);
35657                 if (region) {
35658                     // tried using nb[r], but it does not work..
35659                      
35660                     region.showPanel(abn[r]);
35661                    
35662                 }
35663             }
35664         }
35665         return ret;
35666         
35667     },
35668     
35669     
35670 // private
35671     factory : function(cfg)
35672     {
35673         
35674         var validRegions = Roo.bootstrap.layout.Border.regions;
35675
35676         var target = cfg.region;
35677         cfg.mgr = this;
35678         
35679         var r = Roo.bootstrap.layout;
35680         Roo.log(target);
35681         switch(target){
35682             case "north":
35683                 return new r.North(cfg);
35684             case "south":
35685                 return new r.South(cfg);
35686             case "east":
35687                 return new r.East(cfg);
35688             case "west":
35689                 return new r.West(cfg);
35690             case "center":
35691                 return new r.Center(cfg);
35692         }
35693         throw 'Layout region "'+target+'" not supported.';
35694     }
35695     
35696     
35697 });
35698  /*
35699  * Based on:
35700  * Ext JS Library 1.1.1
35701  * Copyright(c) 2006-2007, Ext JS, LLC.
35702  *
35703  * Originally Released Under LGPL - original licence link has changed is not relivant.
35704  *
35705  * Fork - LGPL
35706  * <script type="text/javascript">
35707  */
35708  
35709 /**
35710  * @class Roo.bootstrap.layout.Basic
35711  * @extends Roo.util.Observable
35712  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
35713  * and does not have a titlebar, tabs or any other features. All it does is size and position 
35714  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
35715  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
35716  * @cfg {string}   region  the region that it inhabits..
35717  * @cfg {bool}   skipConfig skip config?
35718  * 
35719
35720  */
35721 Roo.bootstrap.layout.Basic = function(config){
35722     
35723     this.mgr = config.mgr;
35724     
35725     this.position = config.region;
35726     
35727     var skipConfig = config.skipConfig;
35728     
35729     this.events = {
35730         /**
35731          * @scope Roo.BasicLayoutRegion
35732          */
35733         
35734         /**
35735          * @event beforeremove
35736          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
35737          * @param {Roo.LayoutRegion} this
35738          * @param {Roo.ContentPanel} panel The panel
35739          * @param {Object} e The cancel event object
35740          */
35741         "beforeremove" : true,
35742         /**
35743          * @event invalidated
35744          * Fires when the layout for this region is changed.
35745          * @param {Roo.LayoutRegion} this
35746          */
35747         "invalidated" : true,
35748         /**
35749          * @event visibilitychange
35750          * Fires when this region is shown or hidden 
35751          * @param {Roo.LayoutRegion} this
35752          * @param {Boolean} visibility true or false
35753          */
35754         "visibilitychange" : true,
35755         /**
35756          * @event paneladded
35757          * Fires when a panel is added. 
35758          * @param {Roo.LayoutRegion} this
35759          * @param {Roo.ContentPanel} panel The panel
35760          */
35761         "paneladded" : true,
35762         /**
35763          * @event panelremoved
35764          * Fires when a panel is removed. 
35765          * @param {Roo.LayoutRegion} this
35766          * @param {Roo.ContentPanel} panel The panel
35767          */
35768         "panelremoved" : true,
35769         /**
35770          * @event beforecollapse
35771          * Fires when this region before collapse.
35772          * @param {Roo.LayoutRegion} this
35773          */
35774         "beforecollapse" : true,
35775         /**
35776          * @event collapsed
35777          * Fires when this region is collapsed.
35778          * @param {Roo.LayoutRegion} this
35779          */
35780         "collapsed" : true,
35781         /**
35782          * @event expanded
35783          * Fires when this region is expanded.
35784          * @param {Roo.LayoutRegion} this
35785          */
35786         "expanded" : true,
35787         /**
35788          * @event slideshow
35789          * Fires when this region is slid into view.
35790          * @param {Roo.LayoutRegion} this
35791          */
35792         "slideshow" : true,
35793         /**
35794          * @event slidehide
35795          * Fires when this region slides out of view. 
35796          * @param {Roo.LayoutRegion} this
35797          */
35798         "slidehide" : true,
35799         /**
35800          * @event panelactivated
35801          * Fires when a panel is activated. 
35802          * @param {Roo.LayoutRegion} this
35803          * @param {Roo.ContentPanel} panel The activated panel
35804          */
35805         "panelactivated" : true,
35806         /**
35807          * @event resized
35808          * Fires when the user resizes this region. 
35809          * @param {Roo.LayoutRegion} this
35810          * @param {Number} newSize The new size (width for east/west, height for north/south)
35811          */
35812         "resized" : true
35813     };
35814     /** A collection of panels in this region. @type Roo.util.MixedCollection */
35815     this.panels = new Roo.util.MixedCollection();
35816     this.panels.getKey = this.getPanelId.createDelegate(this);
35817     this.box = null;
35818     this.activePanel = null;
35819     // ensure listeners are added...
35820     
35821     if (config.listeners || config.events) {
35822         Roo.bootstrap.layout.Basic.superclass.constructor.call(this, {
35823             listeners : config.listeners || {},
35824             events : config.events || {}
35825         });
35826     }
35827     
35828     if(skipConfig !== true){
35829         this.applyConfig(config);
35830     }
35831 };
35832
35833 Roo.extend(Roo.bootstrap.layout.Basic, Roo.util.Observable,
35834 {
35835     getPanelId : function(p){
35836         return p.getId();
35837     },
35838     
35839     applyConfig : function(config){
35840         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
35841         this.config = config;
35842         
35843     },
35844     
35845     /**
35846      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
35847      * the width, for horizontal (north, south) the height.
35848      * @param {Number} newSize The new width or height
35849      */
35850     resizeTo : function(newSize){
35851         var el = this.el ? this.el :
35852                  (this.activePanel ? this.activePanel.getEl() : null);
35853         if(el){
35854             switch(this.position){
35855                 case "east":
35856                 case "west":
35857                     el.setWidth(newSize);
35858                     this.fireEvent("resized", this, newSize);
35859                 break;
35860                 case "north":
35861                 case "south":
35862                     el.setHeight(newSize);
35863                     this.fireEvent("resized", this, newSize);
35864                 break;                
35865             }
35866         }
35867     },
35868     
35869     getBox : function(){
35870         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
35871     },
35872     
35873     getMargins : function(){
35874         return this.margins;
35875     },
35876     
35877     updateBox : function(box){
35878         this.box = box;
35879         var el = this.activePanel.getEl();
35880         el.dom.style.left = box.x + "px";
35881         el.dom.style.top = box.y + "px";
35882         this.activePanel.setSize(box.width, box.height);
35883     },
35884     
35885     /**
35886      * Returns the container element for this region.
35887      * @return {Roo.Element}
35888      */
35889     getEl : function(){
35890         return this.activePanel;
35891     },
35892     
35893     /**
35894      * Returns true if this region is currently visible.
35895      * @return {Boolean}
35896      */
35897     isVisible : function(){
35898         return this.activePanel ? true : false;
35899     },
35900     
35901     setActivePanel : function(panel){
35902         panel = this.getPanel(panel);
35903         if(this.activePanel && this.activePanel != panel){
35904             this.activePanel.setActiveState(false);
35905             this.activePanel.getEl().setLeftTop(-10000,-10000);
35906         }
35907         this.activePanel = panel;
35908         panel.setActiveState(true);
35909         if(this.box){
35910             panel.setSize(this.box.width, this.box.height);
35911         }
35912         this.fireEvent("panelactivated", this, panel);
35913         this.fireEvent("invalidated");
35914     },
35915     
35916     /**
35917      * Show the specified panel.
35918      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
35919      * @return {Roo.ContentPanel} The shown panel or null
35920      */
35921     showPanel : function(panel){
35922         panel = this.getPanel(panel);
35923         if(panel){
35924             this.setActivePanel(panel);
35925         }
35926         return panel;
35927     },
35928     
35929     /**
35930      * Get the active panel for this region.
35931      * @return {Roo.ContentPanel} The active panel or null
35932      */
35933     getActivePanel : function(){
35934         return this.activePanel;
35935     },
35936     
35937     /**
35938      * Add the passed ContentPanel(s)
35939      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
35940      * @return {Roo.ContentPanel} The panel added (if only one was added)
35941      */
35942     add : function(panel){
35943         if(arguments.length > 1){
35944             for(var i = 0, len = arguments.length; i < len; i++) {
35945                 this.add(arguments[i]);
35946             }
35947             return null;
35948         }
35949         if(this.hasPanel(panel)){
35950             this.showPanel(panel);
35951             return panel;
35952         }
35953         var el = panel.getEl();
35954         if(el.dom.parentNode != this.mgr.el.dom){
35955             this.mgr.el.dom.appendChild(el.dom);
35956         }
35957         if(panel.setRegion){
35958             panel.setRegion(this);
35959         }
35960         this.panels.add(panel);
35961         el.setStyle("position", "absolute");
35962         if(!panel.background){
35963             this.setActivePanel(panel);
35964             if(this.config.initialSize && this.panels.getCount()==1){
35965                 this.resizeTo(this.config.initialSize);
35966             }
35967         }
35968         this.fireEvent("paneladded", this, panel);
35969         return panel;
35970     },
35971     
35972     /**
35973      * Returns true if the panel is in this region.
35974      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35975      * @return {Boolean}
35976      */
35977     hasPanel : function(panel){
35978         if(typeof panel == "object"){ // must be panel obj
35979             panel = panel.getId();
35980         }
35981         return this.getPanel(panel) ? true : false;
35982     },
35983     
35984     /**
35985      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
35986      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
35987      * @param {Boolean} preservePanel Overrides the config preservePanel option
35988      * @return {Roo.ContentPanel} The panel that was removed
35989      */
35990     remove : function(panel, preservePanel){
35991         panel = this.getPanel(panel);
35992         if(!panel){
35993             return null;
35994         }
35995         var e = {};
35996         this.fireEvent("beforeremove", this, panel, e);
35997         if(e.cancel === true){
35998             return null;
35999         }
36000         var panelId = panel.getId();
36001         this.panels.removeKey(panelId);
36002         return panel;
36003     },
36004     
36005     /**
36006      * Returns the panel specified or null if it's not in this region.
36007      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
36008      * @return {Roo.ContentPanel}
36009      */
36010     getPanel : function(id){
36011         if(typeof id == "object"){ // must be panel obj
36012             return id;
36013         }
36014         return this.panels.get(id);
36015     },
36016     
36017     /**
36018      * Returns this regions position (north/south/east/west/center).
36019      * @return {String} 
36020      */
36021     getPosition: function(){
36022         return this.position;    
36023     }
36024 });/*
36025  * Based on:
36026  * Ext JS Library 1.1.1
36027  * Copyright(c) 2006-2007, Ext JS, LLC.
36028  *
36029  * Originally Released Under LGPL - original licence link has changed is not relivant.
36030  *
36031  * Fork - LGPL
36032  * <script type="text/javascript">
36033  */
36034  
36035 /**
36036  * @class Roo.bootstrap.layout.Region
36037  * @extends Roo.bootstrap.layout.Basic
36038  * This class represents a region in a layout manager.
36039  
36040  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
36041  * @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})
36042  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
36043  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
36044  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
36045  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
36046  * @cfg {String}    title           The title for the region (overrides panel titles)
36047  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
36048  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
36049  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
36050  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
36051  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
36052  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
36053  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
36054  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
36055  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
36056  * @cfg {String}    overflow       (hidden|visible) if you have menus in the region, then you need to set this to visible.
36057
36058  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
36059  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
36060  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
36061  * @cfg {Number}    width           For East/West panels
36062  * @cfg {Number}    height          For North/South panels
36063  * @cfg {Boolean}   split           To show the splitter
36064  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
36065  * 
36066  * @cfg {string}   cls             Extra CSS classes to add to region
36067  * 
36068  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
36069  * @cfg {string}   region  the region that it inhabits..
36070  *
36071
36072  * @xxxcfg {Boolean}   collapsible     DISABLED False to disable collapsing (defaults to true)
36073  * @xxxcfg {Boolean}   collapsed       DISABLED True to set the initial display to collapsed (defaults to false)
36074
36075  * @xxxcfg {String}    collapsedTitle  DISABLED Optional string message to display in the collapsed block of a north or south region
36076  * @xxxxcfg {Boolean}   floatable       DISABLED False to disable floating (defaults to true)
36077  * @xxxxcfg {Boolean}   showPin         True to show a pin button NOT SUPPORTED YET
36078  */
36079 Roo.bootstrap.layout.Region = function(config)
36080 {
36081     this.applyConfig(config);
36082
36083     var mgr = config.mgr;
36084     var pos = config.region;
36085     config.skipConfig = true;
36086     Roo.bootstrap.layout.Region.superclass.constructor.call(this, config);
36087     
36088     if (mgr.el) {
36089         this.onRender(mgr.el);   
36090     }
36091      
36092     this.visible = true;
36093     this.collapsed = false;
36094     this.unrendered_panels = [];
36095 };
36096
36097 Roo.extend(Roo.bootstrap.layout.Region, Roo.bootstrap.layout.Basic, {
36098
36099     position: '', // set by wrapper (eg. north/south etc..)
36100     unrendered_panels : null,  // unrendered panels.
36101     
36102     tabPosition : false,
36103     
36104     mgr: false, // points to 'Border'
36105     
36106     
36107     createBody : function(){
36108         /** This region's body element 
36109         * @type Roo.Element */
36110         this.bodyEl = this.el.createChild({
36111                 tag: "div",
36112                 cls: "roo-layout-panel-body tab-content" // bootstrap added...
36113         });
36114     },
36115
36116     onRender: function(ctr, pos)
36117     {
36118         var dh = Roo.DomHelper;
36119         /** This region's container element 
36120         * @type Roo.Element */
36121         this.el = dh.append(ctr.dom, {
36122                 tag: "div",
36123                 cls: (this.config.cls || '') + " roo-layout-region roo-layout-panel roo-layout-panel-" + this.position
36124             }, true);
36125         /** This region's title element 
36126         * @type Roo.Element */
36127     
36128         this.titleEl = dh.append(this.el.dom,  {
36129                 tag: "div",
36130                 unselectable: "on",
36131                 cls: "roo-unselectable roo-layout-panel-hd breadcrumb roo-layout-title-" + this.position,
36132                 children:[
36133                     {tag: "span", cls: "roo-unselectable roo-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
36134                     {tag: "div", cls: "roo-unselectable roo-layout-panel-hd-tools", unselectable: "on"}
36135                 ]
36136             }, true);
36137         
36138         this.titleEl.enableDisplayMode();
36139         /** This region's title text element 
36140         * @type HTMLElement */
36141         this.titleTextEl = this.titleEl.dom.firstChild;
36142         this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
36143         /*
36144         this.closeBtn = this.createTool(this.tools.dom, "roo-layout-close");
36145         this.closeBtn.enableDisplayMode();
36146         this.closeBtn.on("click", this.closeClicked, this);
36147         this.closeBtn.hide();
36148     */
36149         this.createBody(this.config);
36150         if(this.config.hideWhenEmpty){
36151             this.hide();
36152             this.on("paneladded", this.validateVisibility, this);
36153             this.on("panelremoved", this.validateVisibility, this);
36154         }
36155         if(this.autoScroll){
36156             this.bodyEl.setStyle("overflow", "auto");
36157         }else{
36158             this.bodyEl.setStyle("overflow", this.config.overflow || 'hidden');
36159         }
36160         //if(c.titlebar !== false){
36161             if((!this.config.titlebar && !this.config.title) || this.config.titlebar === false){
36162                 this.titleEl.hide();
36163             }else{
36164                 this.titleEl.show();
36165                 if(this.config.title){
36166                     this.titleTextEl.innerHTML = this.config.title;
36167                 }
36168             }
36169         //}
36170         if(this.config.collapsed){
36171             this.collapse(true);
36172         }
36173         if(this.config.hidden){
36174             this.hide();
36175         }
36176         
36177         if (this.unrendered_panels && this.unrendered_panels.length) {
36178             for (var i =0;i< this.unrendered_panels.length; i++) {
36179                 this.add(this.unrendered_panels[i]);
36180             }
36181             this.unrendered_panels = null;
36182             
36183         }
36184         
36185     },
36186     
36187     applyConfig : function(c)
36188     {
36189         /*
36190          *if(c.collapsible && this.position != "center" && !this.collapsedEl){
36191             var dh = Roo.DomHelper;
36192             if(c.titlebar !== false){
36193                 this.collapseBtn = this.createTool(this.tools.dom, "roo-layout-collapse-"+this.position);
36194                 this.collapseBtn.on("click", this.collapse, this);
36195                 this.collapseBtn.enableDisplayMode();
36196                 /*
36197                 if(c.showPin === true || this.showPin){
36198                     this.stickBtn = this.createTool(this.tools.dom, "roo-layout-stick");
36199                     this.stickBtn.enableDisplayMode();
36200                     this.stickBtn.on("click", this.expand, this);
36201                     this.stickBtn.hide();
36202                 }
36203                 
36204             }
36205             */
36206             /** This region's collapsed element
36207             * @type Roo.Element */
36208             /*
36209              *
36210             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
36211                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
36212             ]}, true);
36213             
36214             if(c.floatable !== false){
36215                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
36216                this.collapsedEl.on("click", this.collapseClick, this);
36217             }
36218
36219             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
36220                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
36221                    id: "message", unselectable: "on", style:{"float":"left"}});
36222                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
36223              }
36224             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
36225             this.expandBtn.on("click", this.expand, this);
36226             
36227         }
36228         
36229         if(this.collapseBtn){
36230             this.collapseBtn.setVisible(c.collapsible == true);
36231         }
36232         
36233         this.cmargins = c.cmargins || this.cmargins ||
36234                          (this.position == "west" || this.position == "east" ?
36235                              {top: 0, left: 2, right:2, bottom: 0} :
36236                              {top: 2, left: 0, right:0, bottom: 2});
36237         */
36238         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
36239         
36240         
36241         this.tabPosition = [ 'top','bottom', 'west'].indexOf(c.tabPosition) > -1 ? c.tabPosition : "top";
36242         
36243         this.autoScroll = c.autoScroll || false;
36244         
36245         
36246        
36247         
36248         this.duration = c.duration || .30;
36249         this.slideDuration = c.slideDuration || .45;
36250         this.config = c;
36251        
36252     },
36253     /**
36254      * Returns true if this region is currently visible.
36255      * @return {Boolean}
36256      */
36257     isVisible : function(){
36258         return this.visible;
36259     },
36260
36261     /**
36262      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
36263      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
36264      */
36265     //setCollapsedTitle : function(title){
36266     //    title = title || "&#160;";
36267      //   if(this.collapsedTitleTextEl){
36268       //      this.collapsedTitleTextEl.innerHTML = title;
36269        // }
36270     //},
36271
36272     getBox : function(){
36273         var b;
36274       //  if(!this.collapsed){
36275             b = this.el.getBox(false, true);
36276        // }else{
36277           //  b = this.collapsedEl.getBox(false, true);
36278         //}
36279         return b;
36280     },
36281
36282     getMargins : function(){
36283         return this.margins;
36284         //return this.collapsed ? this.cmargins : this.margins;
36285     },
36286 /*
36287     highlight : function(){
36288         this.el.addClass("x-layout-panel-dragover");
36289     },
36290
36291     unhighlight : function(){
36292         this.el.removeClass("x-layout-panel-dragover");
36293     },
36294 */
36295     updateBox : function(box)
36296     {
36297         if (!this.bodyEl) {
36298             return; // not rendered yet..
36299         }
36300         
36301         this.box = box;
36302         if(!this.collapsed){
36303             this.el.dom.style.left = box.x + "px";
36304             this.el.dom.style.top = box.y + "px";
36305             this.updateBody(box.width, box.height);
36306         }else{
36307             this.collapsedEl.dom.style.left = box.x + "px";
36308             this.collapsedEl.dom.style.top = box.y + "px";
36309             this.collapsedEl.setSize(box.width, box.height);
36310         }
36311         if(this.tabs){
36312             this.tabs.autoSizeTabs();
36313         }
36314     },
36315
36316     updateBody : function(w, h)
36317     {
36318         if(w !== null){
36319             this.el.setWidth(w);
36320             w -= this.el.getBorderWidth("rl");
36321             if(this.config.adjustments){
36322                 w += this.config.adjustments[0];
36323             }
36324         }
36325         if(h !== null && h > 0){
36326             this.el.setHeight(h);
36327             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
36328             h -= this.el.getBorderWidth("tb");
36329             if(this.config.adjustments){
36330                 h += this.config.adjustments[1];
36331             }
36332             this.bodyEl.setHeight(h);
36333             if(this.tabs){
36334                 h = this.tabs.syncHeight(h);
36335             }
36336         }
36337         if(this.panelSize){
36338             w = w !== null ? w : this.panelSize.width;
36339             h = h !== null ? h : this.panelSize.height;
36340         }
36341         if(this.activePanel){
36342             var el = this.activePanel.getEl();
36343             w = w !== null ? w : el.getWidth();
36344             h = h !== null ? h : el.getHeight();
36345             this.panelSize = {width: w, height: h};
36346             this.activePanel.setSize(w, h);
36347         }
36348         if(Roo.isIE && this.tabs){
36349             this.tabs.el.repaint();
36350         }
36351     },
36352
36353     /**
36354      * Returns the container element for this region.
36355      * @return {Roo.Element}
36356      */
36357     getEl : function(){
36358         return this.el;
36359     },
36360
36361     /**
36362      * Hides this region.
36363      */
36364     hide : function(){
36365         //if(!this.collapsed){
36366             this.el.dom.style.left = "-2000px";
36367             this.el.hide();
36368         //}else{
36369          //   this.collapsedEl.dom.style.left = "-2000px";
36370          //   this.collapsedEl.hide();
36371        // }
36372         this.visible = false;
36373         this.fireEvent("visibilitychange", this, false);
36374     },
36375
36376     /**
36377      * Shows this region if it was previously hidden.
36378      */
36379     show : function(){
36380         //if(!this.collapsed){
36381             this.el.show();
36382         //}else{
36383         //    this.collapsedEl.show();
36384        // }
36385         this.visible = true;
36386         this.fireEvent("visibilitychange", this, true);
36387     },
36388 /*
36389     closeClicked : function(){
36390         if(this.activePanel){
36391             this.remove(this.activePanel);
36392         }
36393     },
36394
36395     collapseClick : function(e){
36396         if(this.isSlid){
36397            e.stopPropagation();
36398            this.slideIn();
36399         }else{
36400            e.stopPropagation();
36401            this.slideOut();
36402         }
36403     },
36404 */
36405     /**
36406      * Collapses this region.
36407      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
36408      */
36409     /*
36410     collapse : function(skipAnim, skipCheck = false){
36411         if(this.collapsed) {
36412             return;
36413         }
36414         
36415         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
36416             
36417             this.collapsed = true;
36418             if(this.split){
36419                 this.split.el.hide();
36420             }
36421             if(this.config.animate && skipAnim !== true){
36422                 this.fireEvent("invalidated", this);
36423                 this.animateCollapse();
36424             }else{
36425                 this.el.setLocation(-20000,-20000);
36426                 this.el.hide();
36427                 this.collapsedEl.show();
36428                 this.fireEvent("collapsed", this);
36429                 this.fireEvent("invalidated", this);
36430             }
36431         }
36432         
36433     },
36434 */
36435     animateCollapse : function(){
36436         // overridden
36437     },
36438
36439     /**
36440      * Expands this region if it was previously collapsed.
36441      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
36442      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
36443      */
36444     /*
36445     expand : function(e, skipAnim){
36446         if(e) {
36447             e.stopPropagation();
36448         }
36449         if(!this.collapsed || this.el.hasActiveFx()) {
36450             return;
36451         }
36452         if(this.isSlid){
36453             this.afterSlideIn();
36454             skipAnim = true;
36455         }
36456         this.collapsed = false;
36457         if(this.config.animate && skipAnim !== true){
36458             this.animateExpand();
36459         }else{
36460             this.el.show();
36461             if(this.split){
36462                 this.split.el.show();
36463             }
36464             this.collapsedEl.setLocation(-2000,-2000);
36465             this.collapsedEl.hide();
36466             this.fireEvent("invalidated", this);
36467             this.fireEvent("expanded", this);
36468         }
36469     },
36470 */
36471     animateExpand : function(){
36472         // overridden
36473     },
36474
36475     initTabs : function()
36476     {
36477         //this.bodyEl.setStyle("overflow", "hidden"); -- this is set in render?
36478         
36479         var ts = new Roo.bootstrap.panel.Tabs({
36480             el: this.bodyEl.dom,
36481             region : this,
36482             tabPosition: this.tabPosition ? this.tabPosition  : 'top',
36483             disableTooltips: this.config.disableTabTips,
36484             toolbar : this.config.toolbar
36485         });
36486         
36487         if(this.config.hideTabs){
36488             ts.stripWrap.setDisplayed(false);
36489         }
36490         this.tabs = ts;
36491         ts.resizeTabs = this.config.resizeTabs === true;
36492         ts.minTabWidth = this.config.minTabWidth || 40;
36493         ts.maxTabWidth = this.config.maxTabWidth || 250;
36494         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
36495         ts.monitorResize = false;
36496         //ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden"); // this is set in render?
36497         ts.bodyEl.addClass('roo-layout-tabs-body');
36498         this.panels.each(this.initPanelAsTab, this);
36499     },
36500
36501     initPanelAsTab : function(panel){
36502         var ti = this.tabs.addTab(
36503             panel.getEl().id,
36504             panel.getTitle(),
36505             null,
36506             this.config.closeOnTab && panel.isClosable(),
36507             panel.tpl
36508         );
36509         if(panel.tabTip !== undefined){
36510             ti.setTooltip(panel.tabTip);
36511         }
36512         ti.on("activate", function(){
36513               this.setActivePanel(panel);
36514         }, this);
36515         
36516         if(this.config.closeOnTab){
36517             ti.on("beforeclose", function(t, e){
36518                 e.cancel = true;
36519                 this.remove(panel);
36520             }, this);
36521         }
36522         
36523         panel.tabItem = ti;
36524         
36525         return ti;
36526     },
36527
36528     updatePanelTitle : function(panel, title)
36529     {
36530         if(this.activePanel == panel){
36531             this.updateTitle(title);
36532         }
36533         if(this.tabs){
36534             var ti = this.tabs.getTab(panel.getEl().id);
36535             ti.setText(title);
36536             if(panel.tabTip !== undefined){
36537                 ti.setTooltip(panel.tabTip);
36538             }
36539         }
36540     },
36541
36542     updateTitle : function(title){
36543         if(this.titleTextEl && !this.config.title){
36544             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
36545         }
36546     },
36547
36548     setActivePanel : function(panel)
36549     {
36550         panel = this.getPanel(panel);
36551         if(this.activePanel && this.activePanel != panel){
36552             if(this.activePanel.setActiveState(false) === false){
36553                 return;
36554             }
36555         }
36556         this.activePanel = panel;
36557         panel.setActiveState(true);
36558         if(this.panelSize){
36559             panel.setSize(this.panelSize.width, this.panelSize.height);
36560         }
36561         if(this.closeBtn){
36562             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
36563         }
36564         this.updateTitle(panel.getTitle());
36565         if(this.tabs){
36566             this.fireEvent("invalidated", this);
36567         }
36568         this.fireEvent("panelactivated", this, panel);
36569     },
36570
36571     /**
36572      * Shows the specified panel.
36573      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
36574      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
36575      */
36576     showPanel : function(panel)
36577     {
36578         panel = this.getPanel(panel);
36579         if(panel){
36580             if(this.tabs){
36581                 var tab = this.tabs.getTab(panel.getEl().id);
36582                 if(tab.isHidden()){
36583                     this.tabs.unhideTab(tab.id);
36584                 }
36585                 tab.activate();
36586             }else{
36587                 this.setActivePanel(panel);
36588             }
36589         }
36590         return panel;
36591     },
36592
36593     /**
36594      * Get the active panel for this region.
36595      * @return {Roo.ContentPanel} The active panel or null
36596      */
36597     getActivePanel : function(){
36598         return this.activePanel;
36599     },
36600
36601     validateVisibility : function(){
36602         if(this.panels.getCount() < 1){
36603             this.updateTitle("&#160;");
36604             this.closeBtn.hide();
36605             this.hide();
36606         }else{
36607             if(!this.isVisible()){
36608                 this.show();
36609             }
36610         }
36611     },
36612
36613     /**
36614      * Adds the passed ContentPanel(s) to this region.
36615      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
36616      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
36617      */
36618     add : function(panel)
36619     {
36620         if(arguments.length > 1){
36621             for(var i = 0, len = arguments.length; i < len; i++) {
36622                 this.add(arguments[i]);
36623             }
36624             return null;
36625         }
36626         
36627         // if we have not been rendered yet, then we can not really do much of this..
36628         if (!this.bodyEl) {
36629             this.unrendered_panels.push(panel);
36630             return panel;
36631         }
36632         
36633         
36634         
36635         
36636         if(this.hasPanel(panel)){
36637             this.showPanel(panel);
36638             return panel;
36639         }
36640         panel.setRegion(this);
36641         this.panels.add(panel);
36642        /* if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
36643             // sinle panel - no tab...?? would it not be better to render it with the tabs,
36644             // and hide them... ???
36645             this.bodyEl.dom.appendChild(panel.getEl().dom);
36646             if(panel.background !== true){
36647                 this.setActivePanel(panel);
36648             }
36649             this.fireEvent("paneladded", this, panel);
36650             return panel;
36651         }
36652         */
36653         if(!this.tabs){
36654             this.initTabs();
36655         }else{
36656             this.initPanelAsTab(panel);
36657         }
36658         
36659         
36660         if(panel.background !== true){
36661             this.tabs.activate(panel.getEl().id);
36662         }
36663         this.fireEvent("paneladded", this, panel);
36664         return panel;
36665     },
36666
36667     /**
36668      * Hides the tab for the specified panel.
36669      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36670      */
36671     hidePanel : function(panel){
36672         if(this.tabs && (panel = this.getPanel(panel))){
36673             this.tabs.hideTab(panel.getEl().id);
36674         }
36675     },
36676
36677     /**
36678      * Unhides the tab for a previously hidden panel.
36679      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36680      */
36681     unhidePanel : function(panel){
36682         if(this.tabs && (panel = this.getPanel(panel))){
36683             this.tabs.unhideTab(panel.getEl().id);
36684         }
36685     },
36686
36687     clearPanels : function(){
36688         while(this.panels.getCount() > 0){
36689              this.remove(this.panels.first());
36690         }
36691     },
36692
36693     /**
36694      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
36695      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36696      * @param {Boolean} preservePanel Overrides the config preservePanel option
36697      * @return {Roo.ContentPanel} The panel that was removed
36698      */
36699     remove : function(panel, preservePanel)
36700     {
36701         panel = this.getPanel(panel);
36702         if(!panel){
36703             return null;
36704         }
36705         var e = {};
36706         this.fireEvent("beforeremove", this, panel, e);
36707         if(e.cancel === true){
36708             return null;
36709         }
36710         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
36711         var panelId = panel.getId();
36712         this.panels.removeKey(panelId);
36713         if(preservePanel){
36714             document.body.appendChild(panel.getEl().dom);
36715         }
36716         if(this.tabs){
36717             this.tabs.removeTab(panel.getEl().id);
36718         }else if (!preservePanel){
36719             this.bodyEl.dom.removeChild(panel.getEl().dom);
36720         }
36721         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
36722             var p = this.panels.first();
36723             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
36724             tempEl.appendChild(p.getEl().dom);
36725             this.bodyEl.update("");
36726             this.bodyEl.dom.appendChild(p.getEl().dom);
36727             tempEl = null;
36728             this.updateTitle(p.getTitle());
36729             this.tabs = null;
36730             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
36731             this.setActivePanel(p);
36732         }
36733         panel.setRegion(null);
36734         if(this.activePanel == panel){
36735             this.activePanel = null;
36736         }
36737         if(this.config.autoDestroy !== false && preservePanel !== true){
36738             try{panel.destroy();}catch(e){}
36739         }
36740         this.fireEvent("panelremoved", this, panel);
36741         return panel;
36742     },
36743
36744     /**
36745      * Returns the TabPanel component used by this region
36746      * @return {Roo.TabPanel}
36747      */
36748     getTabs : function(){
36749         return this.tabs;
36750     },
36751
36752     createTool : function(parentEl, className){
36753         var btn = Roo.DomHelper.append(parentEl, {
36754             tag: "div",
36755             cls: "x-layout-tools-button",
36756             children: [ {
36757                 tag: "div",
36758                 cls: "roo-layout-tools-button-inner " + className,
36759                 html: "&#160;"
36760             }]
36761         }, true);
36762         btn.addClassOnOver("roo-layout-tools-button-over");
36763         return btn;
36764     }
36765 });/*
36766  * Based on:
36767  * Ext JS Library 1.1.1
36768  * Copyright(c) 2006-2007, Ext JS, LLC.
36769  *
36770  * Originally Released Under LGPL - original licence link has changed is not relivant.
36771  *
36772  * Fork - LGPL
36773  * <script type="text/javascript">
36774  */
36775  
36776
36777
36778 /**
36779  * @class Roo.SplitLayoutRegion
36780  * @extends Roo.LayoutRegion
36781  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
36782  */
36783 Roo.bootstrap.layout.Split = function(config){
36784     this.cursor = config.cursor;
36785     Roo.bootstrap.layout.Split.superclass.constructor.call(this, config);
36786 };
36787
36788 Roo.extend(Roo.bootstrap.layout.Split, Roo.bootstrap.layout.Region,
36789 {
36790     splitTip : "Drag to resize.",
36791     collapsibleSplitTip : "Drag to resize. Double click to hide.",
36792     useSplitTips : false,
36793
36794     applyConfig : function(config){
36795         Roo.bootstrap.layout.Split.superclass.applyConfig.call(this, config);
36796     },
36797     
36798     onRender : function(ctr,pos) {
36799         
36800         Roo.bootstrap.layout.Split.superclass.onRender.call(this, ctr,pos);
36801         if(!this.config.split){
36802             return;
36803         }
36804         if(!this.split){
36805             
36806             var splitEl = Roo.DomHelper.append(ctr.dom,  {
36807                             tag: "div",
36808                             id: this.el.id + "-split",
36809                             cls: "roo-layout-split roo-layout-split-"+this.position,
36810                             html: "&#160;"
36811             });
36812             /** The SplitBar for this region 
36813             * @type Roo.SplitBar */
36814             // does not exist yet...
36815             Roo.log([this.position, this.orientation]);
36816             
36817             this.split = new Roo.bootstrap.SplitBar({
36818                 dragElement : splitEl,
36819                 resizingElement: this.el,
36820                 orientation : this.orientation
36821             });
36822             
36823             this.split.on("moved", this.onSplitMove, this);
36824             this.split.useShim = this.config.useShim === true;
36825             this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
36826             if(this.useSplitTips){
36827                 this.split.el.dom.title = this.config.collapsible ? this.collapsibleSplitTip : this.splitTip;
36828             }
36829             //if(config.collapsible){
36830             //    this.split.el.on("dblclick", this.collapse,  this);
36831             //}
36832         }
36833         if(typeof this.config.minSize != "undefined"){
36834             this.split.minSize = this.config.minSize;
36835         }
36836         if(typeof this.config.maxSize != "undefined"){
36837             this.split.maxSize = this.config.maxSize;
36838         }
36839         if(this.config.hideWhenEmpty || this.config.hidden || this.config.collapsed){
36840             this.hideSplitter();
36841         }
36842         
36843     },
36844
36845     getHMaxSize : function(){
36846          var cmax = this.config.maxSize || 10000;
36847          var center = this.mgr.getRegion("center");
36848          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
36849     },
36850
36851     getVMaxSize : function(){
36852          var cmax = this.config.maxSize || 10000;
36853          var center = this.mgr.getRegion("center");
36854          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
36855     },
36856
36857     onSplitMove : function(split, newSize){
36858         this.fireEvent("resized", this, newSize);
36859     },
36860     
36861     /** 
36862      * Returns the {@link Roo.SplitBar} for this region.
36863      * @return {Roo.SplitBar}
36864      */
36865     getSplitBar : function(){
36866         return this.split;
36867     },
36868     
36869     hide : function(){
36870         this.hideSplitter();
36871         Roo.bootstrap.layout.Split.superclass.hide.call(this);
36872     },
36873
36874     hideSplitter : function(){
36875         if(this.split){
36876             this.split.el.setLocation(-2000,-2000);
36877             this.split.el.hide();
36878         }
36879     },
36880
36881     show : function(){
36882         if(this.split){
36883             this.split.el.show();
36884         }
36885         Roo.bootstrap.layout.Split.superclass.show.call(this);
36886     },
36887     
36888     beforeSlide: function(){
36889         if(Roo.isGecko){// firefox overflow auto bug workaround
36890             this.bodyEl.clip();
36891             if(this.tabs) {
36892                 this.tabs.bodyEl.clip();
36893             }
36894             if(this.activePanel){
36895                 this.activePanel.getEl().clip();
36896                 
36897                 if(this.activePanel.beforeSlide){
36898                     this.activePanel.beforeSlide();
36899                 }
36900             }
36901         }
36902     },
36903     
36904     afterSlide : function(){
36905         if(Roo.isGecko){// firefox overflow auto bug workaround
36906             this.bodyEl.unclip();
36907             if(this.tabs) {
36908                 this.tabs.bodyEl.unclip();
36909             }
36910             if(this.activePanel){
36911                 this.activePanel.getEl().unclip();
36912                 if(this.activePanel.afterSlide){
36913                     this.activePanel.afterSlide();
36914                 }
36915             }
36916         }
36917     },
36918
36919     initAutoHide : function(){
36920         if(this.autoHide !== false){
36921             if(!this.autoHideHd){
36922                 var st = new Roo.util.DelayedTask(this.slideIn, this);
36923                 this.autoHideHd = {
36924                     "mouseout": function(e){
36925                         if(!e.within(this.el, true)){
36926                             st.delay(500);
36927                         }
36928                     },
36929                     "mouseover" : function(e){
36930                         st.cancel();
36931                     },
36932                     scope : this
36933                 };
36934             }
36935             this.el.on(this.autoHideHd);
36936         }
36937     },
36938
36939     clearAutoHide : function(){
36940         if(this.autoHide !== false){
36941             this.el.un("mouseout", this.autoHideHd.mouseout);
36942             this.el.un("mouseover", this.autoHideHd.mouseover);
36943         }
36944     },
36945
36946     clearMonitor : function(){
36947         Roo.get(document).un("click", this.slideInIf, this);
36948     },
36949
36950     // these names are backwards but not changed for compat
36951     slideOut : function(){
36952         if(this.isSlid || this.el.hasActiveFx()){
36953             return;
36954         }
36955         this.isSlid = true;
36956         if(this.collapseBtn){
36957             this.collapseBtn.hide();
36958         }
36959         this.closeBtnState = this.closeBtn.getStyle('display');
36960         this.closeBtn.hide();
36961         if(this.stickBtn){
36962             this.stickBtn.show();
36963         }
36964         this.el.show();
36965         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
36966         this.beforeSlide();
36967         this.el.setStyle("z-index", 10001);
36968         this.el.slideIn(this.getSlideAnchor(), {
36969             callback: function(){
36970                 this.afterSlide();
36971                 this.initAutoHide();
36972                 Roo.get(document).on("click", this.slideInIf, this);
36973                 this.fireEvent("slideshow", this);
36974             },
36975             scope: this,
36976             block: true
36977         });
36978     },
36979
36980     afterSlideIn : function(){
36981         this.clearAutoHide();
36982         this.isSlid = false;
36983         this.clearMonitor();
36984         this.el.setStyle("z-index", "");
36985         if(this.collapseBtn){
36986             this.collapseBtn.show();
36987         }
36988         this.closeBtn.setStyle('display', this.closeBtnState);
36989         if(this.stickBtn){
36990             this.stickBtn.hide();
36991         }
36992         this.fireEvent("slidehide", this);
36993     },
36994
36995     slideIn : function(cb){
36996         if(!this.isSlid || this.el.hasActiveFx()){
36997             Roo.callback(cb);
36998             return;
36999         }
37000         this.isSlid = false;
37001         this.beforeSlide();
37002         this.el.slideOut(this.getSlideAnchor(), {
37003             callback: function(){
37004                 this.el.setLeftTop(-10000, -10000);
37005                 this.afterSlide();
37006                 this.afterSlideIn();
37007                 Roo.callback(cb);
37008             },
37009             scope: this,
37010             block: true
37011         });
37012     },
37013     
37014     slideInIf : function(e){
37015         if(!e.within(this.el)){
37016             this.slideIn();
37017         }
37018     },
37019
37020     animateCollapse : function(){
37021         this.beforeSlide();
37022         this.el.setStyle("z-index", 20000);
37023         var anchor = this.getSlideAnchor();
37024         this.el.slideOut(anchor, {
37025             callback : function(){
37026                 this.el.setStyle("z-index", "");
37027                 this.collapsedEl.slideIn(anchor, {duration:.3});
37028                 this.afterSlide();
37029                 this.el.setLocation(-10000,-10000);
37030                 this.el.hide();
37031                 this.fireEvent("collapsed", this);
37032             },
37033             scope: this,
37034             block: true
37035         });
37036     },
37037
37038     animateExpand : function(){
37039         this.beforeSlide();
37040         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
37041         this.el.setStyle("z-index", 20000);
37042         this.collapsedEl.hide({
37043             duration:.1
37044         });
37045         this.el.slideIn(this.getSlideAnchor(), {
37046             callback : function(){
37047                 this.el.setStyle("z-index", "");
37048                 this.afterSlide();
37049                 if(this.split){
37050                     this.split.el.show();
37051                 }
37052                 this.fireEvent("invalidated", this);
37053                 this.fireEvent("expanded", this);
37054             },
37055             scope: this,
37056             block: true
37057         });
37058     },
37059
37060     anchors : {
37061         "west" : "left",
37062         "east" : "right",
37063         "north" : "top",
37064         "south" : "bottom"
37065     },
37066
37067     sanchors : {
37068         "west" : "l",
37069         "east" : "r",
37070         "north" : "t",
37071         "south" : "b"
37072     },
37073
37074     canchors : {
37075         "west" : "tl-tr",
37076         "east" : "tr-tl",
37077         "north" : "tl-bl",
37078         "south" : "bl-tl"
37079     },
37080
37081     getAnchor : function(){
37082         return this.anchors[this.position];
37083     },
37084
37085     getCollapseAnchor : function(){
37086         return this.canchors[this.position];
37087     },
37088
37089     getSlideAnchor : function(){
37090         return this.sanchors[this.position];
37091     },
37092
37093     getAlignAdj : function(){
37094         var cm = this.cmargins;
37095         switch(this.position){
37096             case "west":
37097                 return [0, 0];
37098             break;
37099             case "east":
37100                 return [0, 0];
37101             break;
37102             case "north":
37103                 return [0, 0];
37104             break;
37105             case "south":
37106                 return [0, 0];
37107             break;
37108         }
37109     },
37110
37111     getExpandAdj : function(){
37112         var c = this.collapsedEl, cm = this.cmargins;
37113         switch(this.position){
37114             case "west":
37115                 return [-(cm.right+c.getWidth()+cm.left), 0];
37116             break;
37117             case "east":
37118                 return [cm.right+c.getWidth()+cm.left, 0];
37119             break;
37120             case "north":
37121                 return [0, -(cm.top+cm.bottom+c.getHeight())];
37122             break;
37123             case "south":
37124                 return [0, cm.top+cm.bottom+c.getHeight()];
37125             break;
37126         }
37127     }
37128 });/*
37129  * Based on:
37130  * Ext JS Library 1.1.1
37131  * Copyright(c) 2006-2007, Ext JS, LLC.
37132  *
37133  * Originally Released Under LGPL - original licence link has changed is not relivant.
37134  *
37135  * Fork - LGPL
37136  * <script type="text/javascript">
37137  */
37138 /*
37139  * These classes are private internal classes
37140  */
37141 Roo.bootstrap.layout.Center = function(config){
37142     config.region = "center";
37143     Roo.bootstrap.layout.Region.call(this, config);
37144     this.visible = true;
37145     this.minWidth = config.minWidth || 20;
37146     this.minHeight = config.minHeight || 20;
37147 };
37148
37149 Roo.extend(Roo.bootstrap.layout.Center, Roo.bootstrap.layout.Region, {
37150     hide : function(){
37151         // center panel can't be hidden
37152     },
37153     
37154     show : function(){
37155         // center panel can't be hidden
37156     },
37157     
37158     getMinWidth: function(){
37159         return this.minWidth;
37160     },
37161     
37162     getMinHeight: function(){
37163         return this.minHeight;
37164     }
37165 });
37166
37167
37168
37169
37170  
37171
37172
37173
37174
37175
37176
37177 Roo.bootstrap.layout.North = function(config)
37178 {
37179     config.region = 'north';
37180     config.cursor = 'n-resize';
37181     
37182     Roo.bootstrap.layout.Split.call(this, config);
37183     
37184     
37185     if(this.split){
37186         this.split.placement = Roo.bootstrap.SplitBar.TOP;
37187         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37188         this.split.el.addClass("roo-layout-split-v");
37189     }
37190     var size = config.initialSize || config.height;
37191     if(typeof size != "undefined"){
37192         this.el.setHeight(size);
37193     }
37194 };
37195 Roo.extend(Roo.bootstrap.layout.North, Roo.bootstrap.layout.Split,
37196 {
37197     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37198     
37199     
37200     
37201     getBox : function(){
37202         if(this.collapsed){
37203             return this.collapsedEl.getBox();
37204         }
37205         var box = this.el.getBox();
37206         if(this.split){
37207             box.height += this.split.el.getHeight();
37208         }
37209         return box;
37210     },
37211     
37212     updateBox : function(box){
37213         if(this.split && !this.collapsed){
37214             box.height -= this.split.el.getHeight();
37215             this.split.el.setLeft(box.x);
37216             this.split.el.setTop(box.y+box.height);
37217             this.split.el.setWidth(box.width);
37218         }
37219         if(this.collapsed){
37220             this.updateBody(box.width, null);
37221         }
37222         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37223     }
37224 });
37225
37226
37227
37228
37229
37230 Roo.bootstrap.layout.South = function(config){
37231     config.region = 'south';
37232     config.cursor = 's-resize';
37233     Roo.bootstrap.layout.Split.call(this, config);
37234     if(this.split){
37235         this.split.placement = Roo.bootstrap.SplitBar.BOTTOM;
37236         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37237         this.split.el.addClass("roo-layout-split-v");
37238     }
37239     var size = config.initialSize || config.height;
37240     if(typeof size != "undefined"){
37241         this.el.setHeight(size);
37242     }
37243 };
37244
37245 Roo.extend(Roo.bootstrap.layout.South, Roo.bootstrap.layout.Split, {
37246     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37247     getBox : function(){
37248         if(this.collapsed){
37249             return this.collapsedEl.getBox();
37250         }
37251         var box = this.el.getBox();
37252         if(this.split){
37253             var sh = this.split.el.getHeight();
37254             box.height += sh;
37255             box.y -= sh;
37256         }
37257         return box;
37258     },
37259     
37260     updateBox : function(box){
37261         if(this.split && !this.collapsed){
37262             var sh = this.split.el.getHeight();
37263             box.height -= sh;
37264             box.y += sh;
37265             this.split.el.setLeft(box.x);
37266             this.split.el.setTop(box.y-sh);
37267             this.split.el.setWidth(box.width);
37268         }
37269         if(this.collapsed){
37270             this.updateBody(box.width, null);
37271         }
37272         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37273     }
37274 });
37275
37276 Roo.bootstrap.layout.East = function(config){
37277     config.region = "east";
37278     config.cursor = "e-resize";
37279     Roo.bootstrap.layout.Split.call(this, config);
37280     if(this.split){
37281         this.split.placement = Roo.bootstrap.SplitBar.RIGHT;
37282         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37283         this.split.el.addClass("roo-layout-split-h");
37284     }
37285     var size = config.initialSize || config.width;
37286     if(typeof size != "undefined"){
37287         this.el.setWidth(size);
37288     }
37289 };
37290 Roo.extend(Roo.bootstrap.layout.East, Roo.bootstrap.layout.Split, {
37291     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37292     getBox : function(){
37293         if(this.collapsed){
37294             return this.collapsedEl.getBox();
37295         }
37296         var box = this.el.getBox();
37297         if(this.split){
37298             var sw = this.split.el.getWidth();
37299             box.width += sw;
37300             box.x -= sw;
37301         }
37302         return box;
37303     },
37304
37305     updateBox : function(box){
37306         if(this.split && !this.collapsed){
37307             var sw = this.split.el.getWidth();
37308             box.width -= sw;
37309             this.split.el.setLeft(box.x);
37310             this.split.el.setTop(box.y);
37311             this.split.el.setHeight(box.height);
37312             box.x += sw;
37313         }
37314         if(this.collapsed){
37315             this.updateBody(null, box.height);
37316         }
37317         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37318     }
37319 });
37320
37321 Roo.bootstrap.layout.West = function(config){
37322     config.region = "west";
37323     config.cursor = "w-resize";
37324     
37325     Roo.bootstrap.layout.Split.call(this, config);
37326     if(this.split){
37327         this.split.placement = Roo.bootstrap.SplitBar.LEFT;
37328         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37329         this.split.el.addClass("roo-layout-split-h");
37330     }
37331     
37332 };
37333 Roo.extend(Roo.bootstrap.layout.West, Roo.bootstrap.layout.Split, {
37334     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37335     
37336     onRender: function(ctr, pos)
37337     {
37338         Roo.bootstrap.layout.West.superclass.onRender.call(this, ctr,pos);
37339         var size = this.config.initialSize || this.config.width;
37340         if(typeof size != "undefined"){
37341             this.el.setWidth(size);
37342         }
37343     },
37344     
37345     getBox : function(){
37346         if(this.collapsed){
37347             return this.collapsedEl.getBox();
37348         }
37349         var box = this.el.getBox();
37350         if(this.split){
37351             box.width += this.split.el.getWidth();
37352         }
37353         return box;
37354     },
37355     
37356     updateBox : function(box){
37357         if(this.split && !this.collapsed){
37358             var sw = this.split.el.getWidth();
37359             box.width -= sw;
37360             this.split.el.setLeft(box.x+box.width);
37361             this.split.el.setTop(box.y);
37362             this.split.el.setHeight(box.height);
37363         }
37364         if(this.collapsed){
37365             this.updateBody(null, box.height);
37366         }
37367         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37368     }
37369 });Roo.namespace("Roo.bootstrap.panel");/*
37370  * Based on:
37371  * Ext JS Library 1.1.1
37372  * Copyright(c) 2006-2007, Ext JS, LLC.
37373  *
37374  * Originally Released Under LGPL - original licence link has changed is not relivant.
37375  *
37376  * Fork - LGPL
37377  * <script type="text/javascript">
37378  */
37379 /**
37380  * @class Roo.ContentPanel
37381  * @extends Roo.util.Observable
37382  * A basic ContentPanel element.
37383  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
37384  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
37385  * @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
37386  * @cfg {Boolean}   closable      True if the panel can be closed/removed
37387  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
37388  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
37389  * @cfg {Toolbar}   toolbar       A toolbar for this panel
37390  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
37391  * @cfg {String} title          The title for this panel
37392  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
37393  * @cfg {String} url            Calls {@link #setUrl} with this value
37394  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
37395  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
37396  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
37397  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
37398  * @cfg {Boolean} badges render the badges
37399
37400  * @constructor
37401  * Create a new ContentPanel.
37402  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
37403  * @param {String/Object} config A string to set only the title or a config object
37404  * @param {String} content (optional) Set the HTML content for this panel
37405  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
37406  */
37407 Roo.bootstrap.panel.Content = function( config){
37408     
37409     this.tpl = config.tpl || false;
37410     
37411     var el = config.el;
37412     var content = config.content;
37413
37414     if(config.autoCreate){ // xtype is available if this is called from factory
37415         el = Roo.id();
37416     }
37417     this.el = Roo.get(el);
37418     if(!this.el && config && config.autoCreate){
37419         if(typeof config.autoCreate == "object"){
37420             if(!config.autoCreate.id){
37421                 config.autoCreate.id = config.id||el;
37422             }
37423             this.el = Roo.DomHelper.append(document.body,
37424                         config.autoCreate, true);
37425         }else{
37426             var elcfg =  {   tag: "div",
37427                             cls: "roo-layout-inactive-content",
37428                             id: config.id||el
37429                             };
37430             if (config.html) {
37431                 elcfg.html = config.html;
37432                 
37433             }
37434                         
37435             this.el = Roo.DomHelper.append(document.body, elcfg , true);
37436         }
37437     } 
37438     this.closable = false;
37439     this.loaded = false;
37440     this.active = false;
37441    
37442       
37443     if (config.toolbar && !config.toolbar.el && config.toolbar.xtype) {
37444         
37445         this.toolbar = new config.toolbar.xns[config.toolbar.xtype](config.toolbar);
37446         
37447         this.wrapEl = this.el; //this.el.wrap();
37448         var ti = [];
37449         if (config.toolbar.items) {
37450             ti = config.toolbar.items ;
37451             delete config.toolbar.items ;
37452         }
37453         
37454         var nitems = [];
37455         this.toolbar.render(this.wrapEl, 'before');
37456         for(var i =0;i < ti.length;i++) {
37457           //  Roo.log(['add child', items[i]]);
37458             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37459         }
37460         this.toolbar.items = nitems;
37461         this.toolbar.el.insertBefore(this.wrapEl.dom.firstChild);
37462         delete config.toolbar;
37463         
37464     }
37465     /*
37466     // xtype created footer. - not sure if will work as we normally have to render first..
37467     if (this.footer && !this.footer.el && this.footer.xtype) {
37468         if (!this.wrapEl) {
37469             this.wrapEl = this.el.wrap();
37470         }
37471     
37472         this.footer.container = this.wrapEl.createChild();
37473          
37474         this.footer = Roo.factory(this.footer, Roo);
37475         
37476     }
37477     */
37478     
37479      if(typeof config == "string"){
37480         this.title = config;
37481     }else{
37482         Roo.apply(this, config);
37483     }
37484     
37485     if(this.resizeEl){
37486         this.resizeEl = Roo.get(this.resizeEl, true);
37487     }else{
37488         this.resizeEl = this.el;
37489     }
37490     // handle view.xtype
37491     
37492  
37493     
37494     
37495     this.addEvents({
37496         /**
37497          * @event activate
37498          * Fires when this panel is activated. 
37499          * @param {Roo.ContentPanel} this
37500          */
37501         "activate" : true,
37502         /**
37503          * @event deactivate
37504          * Fires when this panel is activated. 
37505          * @param {Roo.ContentPanel} this
37506          */
37507         "deactivate" : true,
37508
37509         /**
37510          * @event resize
37511          * Fires when this panel is resized if fitToFrame is true.
37512          * @param {Roo.ContentPanel} this
37513          * @param {Number} width The width after any component adjustments
37514          * @param {Number} height The height after any component adjustments
37515          */
37516         "resize" : true,
37517         
37518          /**
37519          * @event render
37520          * Fires when this tab is created
37521          * @param {Roo.ContentPanel} this
37522          */
37523         "render" : true
37524         
37525         
37526         
37527     });
37528     
37529
37530     
37531     
37532     if(this.autoScroll){
37533         this.resizeEl.setStyle("overflow", "auto");
37534     } else {
37535         // fix randome scrolling
37536         //this.el.on('scroll', function() {
37537         //    Roo.log('fix random scolling');
37538         //    this.scrollTo('top',0); 
37539         //});
37540     }
37541     content = content || this.content;
37542     if(content){
37543         this.setContent(content);
37544     }
37545     if(config && config.url){
37546         this.setUrl(this.url, this.params, this.loadOnce);
37547     }
37548     
37549     
37550     
37551     Roo.bootstrap.panel.Content.superclass.constructor.call(this);
37552     
37553     if (this.view && typeof(this.view.xtype) != 'undefined') {
37554         this.view.el = this.el.appendChild(document.createElement("div"));
37555         this.view = Roo.factory(this.view); 
37556         this.view.render  &&  this.view.render(false, '');  
37557     }
37558     
37559     
37560     this.fireEvent('render', this);
37561 };
37562
37563 Roo.extend(Roo.bootstrap.panel.Content, Roo.bootstrap.Component, {
37564     
37565     tabTip : '',
37566     
37567     setRegion : function(region){
37568         this.region = region;
37569         this.setActiveClass(region && !this.background);
37570     },
37571     
37572     
37573     setActiveClass: function(state)
37574     {
37575         if(state){
37576            this.el.replaceClass("roo-layout-inactive-content", "roo-layout-active-content");
37577            this.el.setStyle('position','relative');
37578         }else{
37579            this.el.replaceClass("roo-layout-active-content", "roo-layout-inactive-content");
37580            this.el.setStyle('position', 'absolute');
37581         } 
37582     },
37583     
37584     /**
37585      * Returns the toolbar for this Panel if one was configured. 
37586      * @return {Roo.Toolbar} 
37587      */
37588     getToolbar : function(){
37589         return this.toolbar;
37590     },
37591     
37592     setActiveState : function(active)
37593     {
37594         this.active = active;
37595         this.setActiveClass(active);
37596         if(!active){
37597             if(this.fireEvent("deactivate", this) === false){
37598                 return false;
37599             }
37600             return true;
37601         }
37602         this.fireEvent("activate", this);
37603         return true;
37604     },
37605     /**
37606      * Updates this panel's element
37607      * @param {String} content The new content
37608      * @param {Boolean} loadScripts (optional) true to look for and process scripts
37609     */
37610     setContent : function(content, loadScripts){
37611         this.el.update(content, loadScripts);
37612     },
37613
37614     ignoreResize : function(w, h){
37615         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
37616             return true;
37617         }else{
37618             this.lastSize = {width: w, height: h};
37619             return false;
37620         }
37621     },
37622     /**
37623      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
37624      * @return {Roo.UpdateManager} The UpdateManager
37625      */
37626     getUpdateManager : function(){
37627         return this.el.getUpdateManager();
37628     },
37629      /**
37630      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
37631      * @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:
37632 <pre><code>
37633 panel.load({
37634     url: "your-url.php",
37635     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
37636     callback: yourFunction,
37637     scope: yourObject, //(optional scope)
37638     discardUrl: false,
37639     nocache: false,
37640     text: "Loading...",
37641     timeout: 30,
37642     scripts: false
37643 });
37644 </code></pre>
37645      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
37646      * 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.
37647      * @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}
37648      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
37649      * @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.
37650      * @return {Roo.ContentPanel} this
37651      */
37652     load : function(){
37653         var um = this.el.getUpdateManager();
37654         um.update.apply(um, arguments);
37655         return this;
37656     },
37657
37658
37659     /**
37660      * 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.
37661      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
37662      * @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)
37663      * @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)
37664      * @return {Roo.UpdateManager} The UpdateManager
37665      */
37666     setUrl : function(url, params, loadOnce){
37667         if(this.refreshDelegate){
37668             this.removeListener("activate", this.refreshDelegate);
37669         }
37670         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
37671         this.on("activate", this.refreshDelegate);
37672         return this.el.getUpdateManager();
37673     },
37674     
37675     _handleRefresh : function(url, params, loadOnce){
37676         if(!loadOnce || !this.loaded){
37677             var updater = this.el.getUpdateManager();
37678             updater.update(url, params, this._setLoaded.createDelegate(this));
37679         }
37680     },
37681     
37682     _setLoaded : function(){
37683         this.loaded = true;
37684     }, 
37685     
37686     /**
37687      * Returns this panel's id
37688      * @return {String} 
37689      */
37690     getId : function(){
37691         return this.el.id;
37692     },
37693     
37694     /** 
37695      * Returns this panel's element - used by regiosn to add.
37696      * @return {Roo.Element} 
37697      */
37698     getEl : function(){
37699         return this.wrapEl || this.el;
37700     },
37701     
37702    
37703     
37704     adjustForComponents : function(width, height)
37705     {
37706         //Roo.log('adjustForComponents ');
37707         if(this.resizeEl != this.el){
37708             width -= this.el.getFrameWidth('lr');
37709             height -= this.el.getFrameWidth('tb');
37710         }
37711         if(this.toolbar){
37712             var te = this.toolbar.getEl();
37713             te.setWidth(width);
37714             height -= te.getHeight();
37715         }
37716         if(this.footer){
37717             var te = this.footer.getEl();
37718             te.setWidth(width);
37719             height -= te.getHeight();
37720         }
37721         
37722         
37723         if(this.adjustments){
37724             width += this.adjustments[0];
37725             height += this.adjustments[1];
37726         }
37727         return {"width": width, "height": height};
37728     },
37729     
37730     setSize : function(width, height){
37731         if(this.fitToFrame && !this.ignoreResize(width, height)){
37732             if(this.fitContainer && this.resizeEl != this.el){
37733                 this.el.setSize(width, height);
37734             }
37735             var size = this.adjustForComponents(width, height);
37736             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
37737             this.fireEvent('resize', this, size.width, size.height);
37738         }
37739     },
37740     
37741     /**
37742      * Returns this panel's title
37743      * @return {String} 
37744      */
37745     getTitle : function(){
37746         
37747         if (typeof(this.title) != 'object') {
37748             return this.title;
37749         }
37750         
37751         var t = '';
37752         for (var k in this.title) {
37753             if (!this.title.hasOwnProperty(k)) {
37754                 continue;
37755             }
37756             
37757             if (k.indexOf('-') >= 0) {
37758                 var s = k.split('-');
37759                 for (var i = 0; i<s.length; i++) {
37760                     t += "<span class='visible-"+s[i]+"'>"+this.title[k]+"</span>";
37761                 }
37762             } else {
37763                 t += "<span class='visible-"+k+"'>"+this.title[k]+"</span>";
37764             }
37765         }
37766         return t;
37767     },
37768     
37769     /**
37770      * Set this panel's title
37771      * @param {String} title
37772      */
37773     setTitle : function(title){
37774         this.title = title;
37775         if(this.region){
37776             this.region.updatePanelTitle(this, title);
37777         }
37778     },
37779     
37780     /**
37781      * Returns true is this panel was configured to be closable
37782      * @return {Boolean} 
37783      */
37784     isClosable : function(){
37785         return this.closable;
37786     },
37787     
37788     beforeSlide : function(){
37789         this.el.clip();
37790         this.resizeEl.clip();
37791     },
37792     
37793     afterSlide : function(){
37794         this.el.unclip();
37795         this.resizeEl.unclip();
37796     },
37797     
37798     /**
37799      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
37800      *   Will fail silently if the {@link #setUrl} method has not been called.
37801      *   This does not activate the panel, just updates its content.
37802      */
37803     refresh : function(){
37804         if(this.refreshDelegate){
37805            this.loaded = false;
37806            this.refreshDelegate();
37807         }
37808     },
37809     
37810     /**
37811      * Destroys this panel
37812      */
37813     destroy : function(){
37814         this.el.removeAllListeners();
37815         var tempEl = document.createElement("span");
37816         tempEl.appendChild(this.el.dom);
37817         tempEl.innerHTML = "";
37818         this.el.remove();
37819         this.el = null;
37820     },
37821     
37822     /**
37823      * form - if the content panel contains a form - this is a reference to it.
37824      * @type {Roo.form.Form}
37825      */
37826     form : false,
37827     /**
37828      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
37829      *    This contains a reference to it.
37830      * @type {Roo.View}
37831      */
37832     view : false,
37833     
37834       /**
37835      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
37836      * <pre><code>
37837
37838 layout.addxtype({
37839        xtype : 'Form',
37840        items: [ .... ]
37841    }
37842 );
37843
37844 </code></pre>
37845      * @param {Object} cfg Xtype definition of item to add.
37846      */
37847     
37848     
37849     getChildContainer: function () {
37850         return this.getEl();
37851     }
37852     
37853     
37854     /*
37855         var  ret = new Roo.factory(cfg);
37856         return ret;
37857         
37858         
37859         // add form..
37860         if (cfg.xtype.match(/^Form$/)) {
37861             
37862             var el;
37863             //if (this.footer) {
37864             //    el = this.footer.container.insertSibling(false, 'before');
37865             //} else {
37866                 el = this.el.createChild();
37867             //}
37868
37869             this.form = new  Roo.form.Form(cfg);
37870             
37871             
37872             if ( this.form.allItems.length) {
37873                 this.form.render(el.dom);
37874             }
37875             return this.form;
37876         }
37877         // should only have one of theses..
37878         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
37879             // views.. should not be just added - used named prop 'view''
37880             
37881             cfg.el = this.el.appendChild(document.createElement("div"));
37882             // factory?
37883             
37884             var ret = new Roo.factory(cfg);
37885              
37886              ret.render && ret.render(false, ''); // render blank..
37887             this.view = ret;
37888             return ret;
37889         }
37890         return false;
37891     }
37892     \*/
37893 });
37894  
37895 /**
37896  * @class Roo.bootstrap.panel.Grid
37897  * @extends Roo.bootstrap.panel.Content
37898  * @constructor
37899  * Create a new GridPanel.
37900  * @cfg {Roo.bootstrap.Table} grid The grid for this panel
37901  * @param {Object} config A the config object
37902   
37903  */
37904
37905
37906
37907 Roo.bootstrap.panel.Grid = function(config)
37908 {
37909     
37910       
37911     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
37912         {tag: "div", cls: "roo-layout-grid-wrapper roo-layout-inactive-content"}, true);
37913
37914     config.el = this.wrapper;
37915     //this.el = this.wrapper;
37916     
37917       if (config.container) {
37918         // ctor'ed from a Border/panel.grid
37919         
37920         
37921         this.wrapper.setStyle("overflow", "hidden");
37922         this.wrapper.addClass('roo-grid-container');
37923
37924     }
37925     
37926     
37927     if(config.toolbar){
37928         var tool_el = this.wrapper.createChild();    
37929         this.toolbar = Roo.factory(config.toolbar);
37930         var ti = [];
37931         if (config.toolbar.items) {
37932             ti = config.toolbar.items ;
37933             delete config.toolbar.items ;
37934         }
37935         
37936         var nitems = [];
37937         this.toolbar.render(tool_el);
37938         for(var i =0;i < ti.length;i++) {
37939           //  Roo.log(['add child', items[i]]);
37940             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37941         }
37942         this.toolbar.items = nitems;
37943         
37944         delete config.toolbar;
37945     }
37946     
37947     Roo.bootstrap.panel.Grid.superclass.constructor.call(this, config);
37948     config.grid.scrollBody = true;;
37949     config.grid.monitorWindowResize = false; // turn off autosizing
37950     config.grid.autoHeight = false;
37951     config.grid.autoWidth = false;
37952     
37953     this.grid = new config.grid.xns[config.grid.xtype](config.grid);
37954     
37955     if (config.background) {
37956         // render grid on panel activation (if panel background)
37957         this.on('activate', function(gp) {
37958             if (!gp.grid.rendered) {
37959                 gp.grid.render(this.wrapper);
37960                 gp.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");   
37961             }
37962         });
37963             
37964     } else {
37965         this.grid.render(this.wrapper);
37966         this.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");               
37967
37968     }
37969     //this.wrapper.dom.appendChild(config.grid.getGridEl().dom);
37970     // ??? needed ??? config.el = this.wrapper;
37971     
37972     
37973     
37974   
37975     // xtype created footer. - not sure if will work as we normally have to render first..
37976     if (this.footer && !this.footer.el && this.footer.xtype) {
37977         
37978         var ctr = this.grid.getView().getFooterPanel(true);
37979         this.footer.dataSource = this.grid.dataSource;
37980         this.footer = Roo.factory(this.footer, Roo);
37981         this.footer.render(ctr);
37982         
37983     }
37984     
37985     
37986     
37987     
37988      
37989 };
37990
37991 Roo.extend(Roo.bootstrap.panel.Grid, Roo.bootstrap.panel.Content, {
37992     getId : function(){
37993         return this.grid.id;
37994     },
37995     
37996     /**
37997      * Returns the grid for this panel
37998      * @return {Roo.bootstrap.Table} 
37999      */
38000     getGrid : function(){
38001         return this.grid;    
38002     },
38003     
38004     setSize : function(width, height){
38005         if(!this.ignoreResize(width, height)){
38006             var grid = this.grid;
38007             var size = this.adjustForComponents(width, height);
38008             var gridel = grid.getGridEl();
38009             gridel.setSize(size.width, size.height);
38010             /*
38011             var thd = grid.getGridEl().select('thead',true).first();
38012             var tbd = grid.getGridEl().select('tbody', true).first();
38013             if (tbd) {
38014                 tbd.setSize(width, height - thd.getHeight());
38015             }
38016             */
38017             grid.autoSize();
38018         }
38019     },
38020      
38021     
38022     
38023     beforeSlide : function(){
38024         this.grid.getView().scroller.clip();
38025     },
38026     
38027     afterSlide : function(){
38028         this.grid.getView().scroller.unclip();
38029     },
38030     
38031     destroy : function(){
38032         this.grid.destroy();
38033         delete this.grid;
38034         Roo.bootstrap.panel.Grid.superclass.destroy.call(this); 
38035     }
38036 });
38037
38038 /**
38039  * @class Roo.bootstrap.panel.Nest
38040  * @extends Roo.bootstrap.panel.Content
38041  * @constructor
38042  * Create a new Panel, that can contain a layout.Border.
38043  * 
38044  * 
38045  * @param {Roo.BorderLayout} layout The layout for this panel
38046  * @param {String/Object} config A string to set only the title or a config object
38047  */
38048 Roo.bootstrap.panel.Nest = function(config)
38049 {
38050     // construct with only one argument..
38051     /* FIXME - implement nicer consturctors
38052     if (layout.layout) {
38053         config = layout;
38054         layout = config.layout;
38055         delete config.layout;
38056     }
38057     if (layout.xtype && !layout.getEl) {
38058         // then layout needs constructing..
38059         layout = Roo.factory(layout, Roo);
38060     }
38061     */
38062     
38063     config.el =  config.layout.getEl();
38064     
38065     Roo.bootstrap.panel.Nest.superclass.constructor.call(this, config);
38066     
38067     config.layout.monitorWindowResize = false; // turn off autosizing
38068     this.layout = config.layout;
38069     this.layout.getEl().addClass("roo-layout-nested-layout");
38070     this.layout.parent = this;
38071     
38072     
38073     
38074     
38075 };
38076
38077 Roo.extend(Roo.bootstrap.panel.Nest, Roo.bootstrap.panel.Content, {
38078
38079     setSize : function(width, height){
38080         if(!this.ignoreResize(width, height)){
38081             var size = this.adjustForComponents(width, height);
38082             var el = this.layout.getEl();
38083             if (size.height < 1) {
38084                 el.setWidth(size.width);   
38085             } else {
38086                 el.setSize(size.width, size.height);
38087             }
38088             var touch = el.dom.offsetWidth;
38089             this.layout.layout();
38090             // ie requires a double layout on the first pass
38091             if(Roo.isIE && !this.initialized){
38092                 this.initialized = true;
38093                 this.layout.layout();
38094             }
38095         }
38096     },
38097     
38098     // activate all subpanels if not currently active..
38099     
38100     setActiveState : function(active){
38101         this.active = active;
38102         this.setActiveClass(active);
38103         
38104         if(!active){
38105             this.fireEvent("deactivate", this);
38106             return;
38107         }
38108         
38109         this.fireEvent("activate", this);
38110         // not sure if this should happen before or after..
38111         if (!this.layout) {
38112             return; // should not happen..
38113         }
38114         var reg = false;
38115         for (var r in this.layout.regions) {
38116             reg = this.layout.getRegion(r);
38117             if (reg.getActivePanel()) {
38118                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
38119                 reg.setActivePanel(reg.getActivePanel());
38120                 continue;
38121             }
38122             if (!reg.panels.length) {
38123                 continue;
38124             }
38125             reg.showPanel(reg.getPanel(0));
38126         }
38127         
38128         
38129         
38130         
38131     },
38132     
38133     /**
38134      * Returns the nested BorderLayout for this panel
38135      * @return {Roo.BorderLayout} 
38136      */
38137     getLayout : function(){
38138         return this.layout;
38139     },
38140     
38141      /**
38142      * Adds a xtype elements to the layout of the nested panel
38143      * <pre><code>
38144
38145 panel.addxtype({
38146        xtype : 'ContentPanel',
38147        region: 'west',
38148        items: [ .... ]
38149    }
38150 );
38151
38152 panel.addxtype({
38153         xtype : 'NestedLayoutPanel',
38154         region: 'west',
38155         layout: {
38156            center: { },
38157            west: { }   
38158         },
38159         items : [ ... list of content panels or nested layout panels.. ]
38160    }
38161 );
38162 </code></pre>
38163      * @param {Object} cfg Xtype definition of item to add.
38164      */
38165     addxtype : function(cfg) {
38166         return this.layout.addxtype(cfg);
38167     
38168     }
38169 });/*
38170  * Based on:
38171  * Ext JS Library 1.1.1
38172  * Copyright(c) 2006-2007, Ext JS, LLC.
38173  *
38174  * Originally Released Under LGPL - original licence link has changed is not relivant.
38175  *
38176  * Fork - LGPL
38177  * <script type="text/javascript">
38178  */
38179 /**
38180  * @class Roo.TabPanel
38181  * @extends Roo.util.Observable
38182  * A lightweight tab container.
38183  * <br><br>
38184  * Usage:
38185  * <pre><code>
38186 // basic tabs 1, built from existing content
38187 var tabs = new Roo.TabPanel("tabs1");
38188 tabs.addTab("script", "View Script");
38189 tabs.addTab("markup", "View Markup");
38190 tabs.activate("script");
38191
38192 // more advanced tabs, built from javascript
38193 var jtabs = new Roo.TabPanel("jtabs");
38194 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
38195
38196 // set up the UpdateManager
38197 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
38198 var updater = tab2.getUpdateManager();
38199 updater.setDefaultUrl("ajax1.htm");
38200 tab2.on('activate', updater.refresh, updater, true);
38201
38202 // Use setUrl for Ajax loading
38203 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
38204 tab3.setUrl("ajax2.htm", null, true);
38205
38206 // Disabled tab
38207 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
38208 tab4.disable();
38209
38210 jtabs.activate("jtabs-1");
38211  * </code></pre>
38212  * @constructor
38213  * Create a new TabPanel.
38214  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
38215  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
38216  */
38217 Roo.bootstrap.panel.Tabs = function(config){
38218     /**
38219     * The container element for this TabPanel.
38220     * @type Roo.Element
38221     */
38222     this.el = Roo.get(config.el);
38223     delete config.el;
38224     if(config){
38225         if(typeof config == "boolean"){
38226             this.tabPosition = config ? "bottom" : "top";
38227         }else{
38228             Roo.apply(this, config);
38229         }
38230     }
38231     
38232     if(this.tabPosition == "bottom"){
38233         // if tabs are at the bottom = create the body first.
38234         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38235         this.el.addClass("roo-tabs-bottom");
38236     }
38237     // next create the tabs holders
38238     
38239     if (this.tabPosition == "west"){
38240         
38241         var reg = this.region; // fake it..
38242         while (reg) {
38243             if (!reg.mgr.parent) {
38244                 break;
38245             }
38246             reg = reg.mgr.parent.region;
38247         }
38248         Roo.log("got nest?");
38249         Roo.log(reg);
38250         if (reg.mgr.getRegion('west')) {
38251             var ctrdom = reg.mgr.getRegion('west').bodyEl.dom;
38252             this.stripWrap = Roo.get(this.createStrip(ctrdom ), true);
38253             this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38254             this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38255             this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38256         
38257             
38258         }
38259         
38260         
38261     } else {
38262      
38263         this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
38264         this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38265         this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38266         this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38267     }
38268     
38269     
38270     if(Roo.isIE){
38271         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
38272     }
38273     
38274     // finally - if tabs are at the top, then create the body last..
38275     if(this.tabPosition != "bottom"){
38276         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
38277          * @type Roo.Element
38278          */
38279         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38280         this.el.addClass("roo-tabs-top");
38281     }
38282     this.items = [];
38283
38284     this.bodyEl.setStyle("position", "relative");
38285
38286     this.active = null;
38287     this.activateDelegate = this.activate.createDelegate(this);
38288
38289     this.addEvents({
38290         /**
38291          * @event tabchange
38292          * Fires when the active tab changes
38293          * @param {Roo.TabPanel} this
38294          * @param {Roo.TabPanelItem} activePanel The new active tab
38295          */
38296         "tabchange": true,
38297         /**
38298          * @event beforetabchange
38299          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
38300          * @param {Roo.TabPanel} this
38301          * @param {Object} e Set cancel to true on this object to cancel the tab change
38302          * @param {Roo.TabPanelItem} tab The tab being changed to
38303          */
38304         "beforetabchange" : true
38305     });
38306
38307     Roo.EventManager.onWindowResize(this.onResize, this);
38308     this.cpad = this.el.getPadding("lr");
38309     this.hiddenCount = 0;
38310
38311
38312     // toolbar on the tabbar support...
38313     if (this.toolbar) {
38314         alert("no toolbar support yet");
38315         this.toolbar  = false;
38316         /*
38317         var tcfg = this.toolbar;
38318         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
38319         this.toolbar = new Roo.Toolbar(tcfg);
38320         if (Roo.isSafari) {
38321             var tbl = tcfg.container.child('table', true);
38322             tbl.setAttribute('width', '100%');
38323         }
38324         */
38325         
38326     }
38327    
38328
38329
38330     Roo.bootstrap.panel.Tabs.superclass.constructor.call(this);
38331 };
38332
38333 Roo.extend(Roo.bootstrap.panel.Tabs, Roo.util.Observable, {
38334     /*
38335      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
38336      */
38337     tabPosition : "top",
38338     /*
38339      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
38340      */
38341     currentTabWidth : 0,
38342     /*
38343      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
38344      */
38345     minTabWidth : 40,
38346     /*
38347      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
38348      */
38349     maxTabWidth : 250,
38350     /*
38351      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
38352      */
38353     preferredTabWidth : 175,
38354     /*
38355      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
38356      */
38357     resizeTabs : false,
38358     /*
38359      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
38360      */
38361     monitorResize : true,
38362     /*
38363      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
38364      */
38365     toolbar : false,  // set by caller..
38366     
38367     region : false, /// set by caller
38368     
38369     disableTooltips : true, // not used yet...
38370
38371     /**
38372      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
38373      * @param {String} id The id of the div to use <b>or create</b>
38374      * @param {String} text The text for the tab
38375      * @param {String} content (optional) Content to put in the TabPanelItem body
38376      * @param {Boolean} closable (optional) True to create a close icon on the tab
38377      * @return {Roo.TabPanelItem} The created TabPanelItem
38378      */
38379     addTab : function(id, text, content, closable, tpl)
38380     {
38381         var item = new Roo.bootstrap.panel.TabItem({
38382             panel: this,
38383             id : id,
38384             text : text,
38385             closable : closable,
38386             tpl : tpl
38387         });
38388         this.addTabItem(item);
38389         if(content){
38390             item.setContent(content);
38391         }
38392         return item;
38393     },
38394
38395     /**
38396      * Returns the {@link Roo.TabPanelItem} with the specified id/index
38397      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
38398      * @return {Roo.TabPanelItem}
38399      */
38400     getTab : function(id){
38401         return this.items[id];
38402     },
38403
38404     /**
38405      * Hides the {@link Roo.TabPanelItem} with the specified id/index
38406      * @param {String/Number} id The id or index of the TabPanelItem to hide.
38407      */
38408     hideTab : function(id){
38409         var t = this.items[id];
38410         if(!t.isHidden()){
38411            t.setHidden(true);
38412            this.hiddenCount++;
38413            this.autoSizeTabs();
38414         }
38415     },
38416
38417     /**
38418      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
38419      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
38420      */
38421     unhideTab : function(id){
38422         var t = this.items[id];
38423         if(t.isHidden()){
38424            t.setHidden(false);
38425            this.hiddenCount--;
38426            this.autoSizeTabs();
38427         }
38428     },
38429
38430     /**
38431      * Adds an existing {@link Roo.TabPanelItem}.
38432      * @param {Roo.TabPanelItem} item The TabPanelItem to add
38433      */
38434     addTabItem : function(item)
38435     {
38436         this.items[item.id] = item;
38437         this.items.push(item);
38438         this.autoSizeTabs();
38439       //  if(this.resizeTabs){
38440     //       item.setWidth(this.currentTabWidth || this.preferredTabWidth);
38441   //         this.autoSizeTabs();
38442 //        }else{
38443 //            item.autoSize();
38444        // }
38445     },
38446
38447     /**
38448      * Removes a {@link Roo.TabPanelItem}.
38449      * @param {String/Number} id The id or index of the TabPanelItem to remove.
38450      */
38451     removeTab : function(id){
38452         var items = this.items;
38453         var tab = items[id];
38454         if(!tab) { return; }
38455         var index = items.indexOf(tab);
38456         if(this.active == tab && items.length > 1){
38457             var newTab = this.getNextAvailable(index);
38458             if(newTab) {
38459                 newTab.activate();
38460             }
38461         }
38462         this.stripEl.dom.removeChild(tab.pnode.dom);
38463         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
38464             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
38465         }
38466         items.splice(index, 1);
38467         delete this.items[tab.id];
38468         tab.fireEvent("close", tab);
38469         tab.purgeListeners();
38470         this.autoSizeTabs();
38471     },
38472
38473     getNextAvailable : function(start){
38474         var items = this.items;
38475         var index = start;
38476         // look for a next tab that will slide over to
38477         // replace the one being removed
38478         while(index < items.length){
38479             var item = items[++index];
38480             if(item && !item.isHidden()){
38481                 return item;
38482             }
38483         }
38484         // if one isn't found select the previous tab (on the left)
38485         index = start;
38486         while(index >= 0){
38487             var item = items[--index];
38488             if(item && !item.isHidden()){
38489                 return item;
38490             }
38491         }
38492         return null;
38493     },
38494
38495     /**
38496      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
38497      * @param {String/Number} id The id or index of the TabPanelItem to disable.
38498      */
38499     disableTab : function(id){
38500         var tab = this.items[id];
38501         if(tab && this.active != tab){
38502             tab.disable();
38503         }
38504     },
38505
38506     /**
38507      * Enables a {@link Roo.TabPanelItem} that is disabled.
38508      * @param {String/Number} id The id or index of the TabPanelItem to enable.
38509      */
38510     enableTab : function(id){
38511         var tab = this.items[id];
38512         tab.enable();
38513     },
38514
38515     /**
38516      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
38517      * @param {String/Number} id The id or index of the TabPanelItem to activate.
38518      * @return {Roo.TabPanelItem} The TabPanelItem.
38519      */
38520     activate : function(id)
38521     {
38522         //Roo.log('activite:'  + id);
38523         
38524         var tab = this.items[id];
38525         if(!tab){
38526             return null;
38527         }
38528         if(tab == this.active || tab.disabled){
38529             return tab;
38530         }
38531         var e = {};
38532         this.fireEvent("beforetabchange", this, e, tab);
38533         if(e.cancel !== true && !tab.disabled){
38534             if(this.active){
38535                 this.active.hide();
38536             }
38537             this.active = this.items[id];
38538             this.active.show();
38539             this.fireEvent("tabchange", this, this.active);
38540         }
38541         return tab;
38542     },
38543
38544     /**
38545      * Gets the active {@link Roo.TabPanelItem}.
38546      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
38547      */
38548     getActiveTab : function(){
38549         return this.active;
38550     },
38551
38552     /**
38553      * Updates the tab body element to fit the height of the container element
38554      * for overflow scrolling
38555      * @param {Number} targetHeight (optional) Override the starting height from the elements height
38556      */
38557     syncHeight : function(targetHeight){
38558         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
38559         var bm = this.bodyEl.getMargins();
38560         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
38561         this.bodyEl.setHeight(newHeight);
38562         return newHeight;
38563     },
38564
38565     onResize : function(){
38566         if(this.monitorResize){
38567             this.autoSizeTabs();
38568         }
38569     },
38570
38571     /**
38572      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
38573      */
38574     beginUpdate : function(){
38575         this.updating = true;
38576     },
38577
38578     /**
38579      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
38580      */
38581     endUpdate : function(){
38582         this.updating = false;
38583         this.autoSizeTabs();
38584     },
38585
38586     /**
38587      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
38588      */
38589     autoSizeTabs : function()
38590     {
38591         var count = this.items.length;
38592         var vcount = count - this.hiddenCount;
38593         
38594         if (vcount < 2) {
38595             this.stripEl.hide();
38596         } else {
38597             this.stripEl.show();
38598         }
38599         
38600         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
38601             return;
38602         }
38603         
38604         
38605         var w = Math.max(this.el.getWidth() - this.cpad, 10);
38606         var availWidth = Math.floor(w / vcount);
38607         var b = this.stripBody;
38608         if(b.getWidth() > w){
38609             var tabs = this.items;
38610             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
38611             if(availWidth < this.minTabWidth){
38612                 /*if(!this.sleft){    // incomplete scrolling code
38613                     this.createScrollButtons();
38614                 }
38615                 this.showScroll();
38616                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
38617             }
38618         }else{
38619             if(this.currentTabWidth < this.preferredTabWidth){
38620                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
38621             }
38622         }
38623     },
38624
38625     /**
38626      * Returns the number of tabs in this TabPanel.
38627      * @return {Number}
38628      */
38629      getCount : function(){
38630          return this.items.length;
38631      },
38632
38633     /**
38634      * Resizes all the tabs to the passed width
38635      * @param {Number} The new width
38636      */
38637     setTabWidth : function(width){
38638         this.currentTabWidth = width;
38639         for(var i = 0, len = this.items.length; i < len; i++) {
38640                 if(!this.items[i].isHidden()) {
38641                 this.items[i].setWidth(width);
38642             }
38643         }
38644     },
38645
38646     /**
38647      * Destroys this TabPanel
38648      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
38649      */
38650     destroy : function(removeEl){
38651         Roo.EventManager.removeResizeListener(this.onResize, this);
38652         for(var i = 0, len = this.items.length; i < len; i++){
38653             this.items[i].purgeListeners();
38654         }
38655         if(removeEl === true){
38656             this.el.update("");
38657             this.el.remove();
38658         }
38659     },
38660     
38661     createStrip : function(container)
38662     {
38663         var strip = document.createElement("nav");
38664         strip.className = Roo.bootstrap.version == 4 ?
38665             "navbar-light bg-light" : 
38666             "navbar navbar-default"; //"x-tabs-wrap";
38667         container.appendChild(strip);
38668         return strip;
38669     },
38670     
38671     createStripList : function(strip)
38672     {
38673         // div wrapper for retard IE
38674         // returns the "tr" element.
38675         strip.innerHTML = '<ul class="nav nav-tabs" role="tablist"></ul>';
38676         //'<div class="x-tabs-strip-wrap">'+
38677           //  '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
38678           //  '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
38679         return strip.firstChild; //.firstChild.firstChild.firstChild;
38680     },
38681     createBody : function(container)
38682     {
38683         var body = document.createElement("div");
38684         Roo.id(body, "tab-body");
38685         //Roo.fly(body).addClass("x-tabs-body");
38686         Roo.fly(body).addClass("tab-content");
38687         container.appendChild(body);
38688         return body;
38689     },
38690     createItemBody :function(bodyEl, id){
38691         var body = Roo.getDom(id);
38692         if(!body){
38693             body = document.createElement("div");
38694             body.id = id;
38695         }
38696         //Roo.fly(body).addClass("x-tabs-item-body");
38697         Roo.fly(body).addClass("tab-pane");
38698          bodyEl.insertBefore(body, bodyEl.firstChild);
38699         return body;
38700     },
38701     /** @private */
38702     createStripElements :  function(stripEl, text, closable, tpl)
38703     {
38704         var td = document.createElement("li"); // was td..
38705         td.className = 'nav-item';
38706         
38707         //stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
38708         
38709         
38710         stripEl.appendChild(td);
38711         /*if(closable){
38712             td.className = "x-tabs-closable";
38713             if(!this.closeTpl){
38714                 this.closeTpl = new Roo.Template(
38715                    '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38716                    '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
38717                    '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
38718                 );
38719             }
38720             var el = this.closeTpl.overwrite(td, {"text": text});
38721             var close = el.getElementsByTagName("div")[0];
38722             var inner = el.getElementsByTagName("em")[0];
38723             return {"el": el, "close": close, "inner": inner};
38724         } else {
38725         */
38726         // not sure what this is..
38727 //            if(!this.tabTpl){
38728                 //this.tabTpl = new Roo.Template(
38729                 //   '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38730                 //   '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
38731                 //);
38732 //                this.tabTpl = new Roo.Template(
38733 //                   '<a href="#">' +
38734 //                   '<span unselectable="on"' +
38735 //                            (this.disableTooltips ? '' : ' title="{text}"') +
38736 //                            ' >{text}</span></a>'
38737 //                );
38738 //                
38739 //            }
38740
38741
38742             var template = tpl || this.tabTpl || false;
38743             
38744             if(!template){
38745                 template =  new Roo.Template(
38746                         Roo.bootstrap.version == 4 ? 
38747                             (
38748                                 '<a class="nav-link" href="#" unselectable="on"' +
38749                                      (this.disableTooltips ? '' : ' title="{text}"') +
38750                                      ' >{text}</a>'
38751                             ) : (
38752                                 '<a class="nav-link" href="#">' +
38753                                 '<span unselectable="on"' +
38754                                          (this.disableTooltips ? '' : ' title="{text}"') +
38755                                     ' >{text}</span></a>'
38756                             )
38757                 );
38758             }
38759             
38760             switch (typeof(template)) {
38761                 case 'object' :
38762                     break;
38763                 case 'string' :
38764                     template = new Roo.Template(template);
38765                     break;
38766                 default :
38767                     break;
38768             }
38769             
38770             var el = template.overwrite(td, {"text": text});
38771             
38772             var inner = el.getElementsByTagName("span")[0];
38773             
38774             return {"el": el, "inner": inner};
38775             
38776     }
38777         
38778     
38779 });
38780
38781 /**
38782  * @class Roo.TabPanelItem
38783  * @extends Roo.util.Observable
38784  * Represents an individual item (tab plus body) in a TabPanel.
38785  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
38786  * @param {String} id The id of this TabPanelItem
38787  * @param {String} text The text for the tab of this TabPanelItem
38788  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
38789  */
38790 Roo.bootstrap.panel.TabItem = function(config){
38791     /**
38792      * The {@link Roo.TabPanel} this TabPanelItem belongs to
38793      * @type Roo.TabPanel
38794      */
38795     this.tabPanel = config.panel;
38796     /**
38797      * The id for this TabPanelItem
38798      * @type String
38799      */
38800     this.id = config.id;
38801     /** @private */
38802     this.disabled = false;
38803     /** @private */
38804     this.text = config.text;
38805     /** @private */
38806     this.loaded = false;
38807     this.closable = config.closable;
38808
38809     /**
38810      * The body element for this TabPanelItem.
38811      * @type Roo.Element
38812      */
38813     this.bodyEl = Roo.get(this.tabPanel.createItemBody(this.tabPanel.bodyEl.dom, config.id));
38814     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
38815     this.bodyEl.setStyle("display", "block");
38816     this.bodyEl.setStyle("zoom", "1");
38817     //this.hideAction();
38818
38819     var els = this.tabPanel.createStripElements(this.tabPanel.stripEl.dom, config.text, config.closable, config.tpl);
38820     /** @private */
38821     this.el = Roo.get(els.el);
38822     this.inner = Roo.get(els.inner, true);
38823      this.textEl = Roo.bootstrap.version == 4 ?
38824         this.el : Roo.get(this.el.dom.firstChild, true);
38825
38826     this.pnode = this.linode = Roo.get(els.el.parentNode, true);
38827     this.status_node = Roo.bootstrap.version == 4 ? this.el : this.linode;
38828
38829     
38830 //    this.el.on("mousedown", this.onTabMouseDown, this);
38831     this.el.on("click", this.onTabClick, this);
38832     /** @private */
38833     if(config.closable){
38834         var c = Roo.get(els.close, true);
38835         c.dom.title = this.closeText;
38836         c.addClassOnOver("close-over");
38837         c.on("click", this.closeClick, this);
38838      }
38839
38840     this.addEvents({
38841          /**
38842          * @event activate
38843          * Fires when this tab becomes the active tab.
38844          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38845          * @param {Roo.TabPanelItem} this
38846          */
38847         "activate": true,
38848         /**
38849          * @event beforeclose
38850          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
38851          * @param {Roo.TabPanelItem} this
38852          * @param {Object} e Set cancel to true on this object to cancel the close.
38853          */
38854         "beforeclose": true,
38855         /**
38856          * @event close
38857          * Fires when this tab is closed.
38858          * @param {Roo.TabPanelItem} this
38859          */
38860          "close": true,
38861         /**
38862          * @event deactivate
38863          * Fires when this tab is no longer the active tab.
38864          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38865          * @param {Roo.TabPanelItem} this
38866          */
38867          "deactivate" : true
38868     });
38869     this.hidden = false;
38870
38871     Roo.bootstrap.panel.TabItem.superclass.constructor.call(this);
38872 };
38873
38874 Roo.extend(Roo.bootstrap.panel.TabItem, Roo.util.Observable,
38875            {
38876     purgeListeners : function(){
38877        Roo.util.Observable.prototype.purgeListeners.call(this);
38878        this.el.removeAllListeners();
38879     },
38880     /**
38881      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
38882      */
38883     show : function(){
38884         this.status_node.addClass("active");
38885         this.showAction();
38886         if(Roo.isOpera){
38887             this.tabPanel.stripWrap.repaint();
38888         }
38889         this.fireEvent("activate", this.tabPanel, this);
38890     },
38891
38892     /**
38893      * Returns true if this tab is the active tab.
38894      * @return {Boolean}
38895      */
38896     isActive : function(){
38897         return this.tabPanel.getActiveTab() == this;
38898     },
38899
38900     /**
38901      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
38902      */
38903     hide : function(){
38904         this.status_node.removeClass("active");
38905         this.hideAction();
38906         this.fireEvent("deactivate", this.tabPanel, this);
38907     },
38908
38909     hideAction : function(){
38910         this.bodyEl.hide();
38911         this.bodyEl.setStyle("position", "absolute");
38912         this.bodyEl.setLeft("-20000px");
38913         this.bodyEl.setTop("-20000px");
38914     },
38915
38916     showAction : function(){
38917         this.bodyEl.setStyle("position", "relative");
38918         this.bodyEl.setTop("");
38919         this.bodyEl.setLeft("");
38920         this.bodyEl.show();
38921     },
38922
38923     /**
38924      * Set the tooltip for the tab.
38925      * @param {String} tooltip The tab's tooltip
38926      */
38927     setTooltip : function(text){
38928         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
38929             this.textEl.dom.qtip = text;
38930             this.textEl.dom.removeAttribute('title');
38931         }else{
38932             this.textEl.dom.title = text;
38933         }
38934     },
38935
38936     onTabClick : function(e){
38937         e.preventDefault();
38938         this.tabPanel.activate(this.id);
38939     },
38940
38941     onTabMouseDown : function(e){
38942         e.preventDefault();
38943         this.tabPanel.activate(this.id);
38944     },
38945 /*
38946     getWidth : function(){
38947         return this.inner.getWidth();
38948     },
38949
38950     setWidth : function(width){
38951         var iwidth = width - this.linode.getPadding("lr");
38952         this.inner.setWidth(iwidth);
38953         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
38954         this.linode.setWidth(width);
38955     },
38956 */
38957     /**
38958      * Show or hide the tab
38959      * @param {Boolean} hidden True to hide or false to show.
38960      */
38961     setHidden : function(hidden){
38962         this.hidden = hidden;
38963         this.linode.setStyle("display", hidden ? "none" : "");
38964     },
38965
38966     /**
38967      * Returns true if this tab is "hidden"
38968      * @return {Boolean}
38969      */
38970     isHidden : function(){
38971         return this.hidden;
38972     },
38973
38974     /**
38975      * Returns the text for this tab
38976      * @return {String}
38977      */
38978     getText : function(){
38979         return this.text;
38980     },
38981     /*
38982     autoSize : function(){
38983         //this.el.beginMeasure();
38984         this.textEl.setWidth(1);
38985         /*
38986          *  #2804 [new] Tabs in Roojs
38987          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
38988          */
38989         //this.setWidth(this.textEl.dom.scrollWidth+this.linode.getPadding("lr")+this.inner.getPadding("lr") + 2);
38990         //this.el.endMeasure();
38991     //},
38992
38993     /**
38994      * Sets the text for the tab (Note: this also sets the tooltip text)
38995      * @param {String} text The tab's text and tooltip
38996      */
38997     setText : function(text){
38998         this.text = text;
38999         this.textEl.update(text);
39000         this.setTooltip(text);
39001         //if(!this.tabPanel.resizeTabs){
39002         //    this.autoSize();
39003         //}
39004     },
39005     /**
39006      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
39007      */
39008     activate : function(){
39009         this.tabPanel.activate(this.id);
39010     },
39011
39012     /**
39013      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
39014      */
39015     disable : function(){
39016         if(this.tabPanel.active != this){
39017             this.disabled = true;
39018             this.status_node.addClass("disabled");
39019         }
39020     },
39021
39022     /**
39023      * Enables this TabPanelItem if it was previously disabled.
39024      */
39025     enable : function(){
39026         this.disabled = false;
39027         this.status_node.removeClass("disabled");
39028     },
39029
39030     /**
39031      * Sets the content for this TabPanelItem.
39032      * @param {String} content The content
39033      * @param {Boolean} loadScripts true to look for and load scripts
39034      */
39035     setContent : function(content, loadScripts){
39036         this.bodyEl.update(content, loadScripts);
39037     },
39038
39039     /**
39040      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
39041      * @return {Roo.UpdateManager} The UpdateManager
39042      */
39043     getUpdateManager : function(){
39044         return this.bodyEl.getUpdateManager();
39045     },
39046
39047     /**
39048      * Set a URL to be used to load the content for this TabPanelItem.
39049      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
39050      * @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)
39051      * @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)
39052      * @return {Roo.UpdateManager} The UpdateManager
39053      */
39054     setUrl : function(url, params, loadOnce){
39055         if(this.refreshDelegate){
39056             this.un('activate', this.refreshDelegate);
39057         }
39058         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
39059         this.on("activate", this.refreshDelegate);
39060         return this.bodyEl.getUpdateManager();
39061     },
39062
39063     /** @private */
39064     _handleRefresh : function(url, params, loadOnce){
39065         if(!loadOnce || !this.loaded){
39066             var updater = this.bodyEl.getUpdateManager();
39067             updater.update(url, params, this._setLoaded.createDelegate(this));
39068         }
39069     },
39070
39071     /**
39072      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
39073      *   Will fail silently if the setUrl method has not been called.
39074      *   This does not activate the panel, just updates its content.
39075      */
39076     refresh : function(){
39077         if(this.refreshDelegate){
39078            this.loaded = false;
39079            this.refreshDelegate();
39080         }
39081     },
39082
39083     /** @private */
39084     _setLoaded : function(){
39085         this.loaded = true;
39086     },
39087
39088     /** @private */
39089     closeClick : function(e){
39090         var o = {};
39091         e.stopEvent();
39092         this.fireEvent("beforeclose", this, o);
39093         if(o.cancel !== true){
39094             this.tabPanel.removeTab(this.id);
39095         }
39096     },
39097     /**
39098      * The text displayed in the tooltip for the close icon.
39099      * @type String
39100      */
39101     closeText : "Close this tab"
39102 });
39103 /**
39104 *    This script refer to:
39105 *    Title: International Telephone Input
39106 *    Author: Jack O'Connor
39107 *    Code version:  v12.1.12
39108 *    Availability: https://github.com/jackocnr/intl-tel-input.git
39109 **/
39110
39111 Roo.bootstrap.PhoneInputData = function() {
39112     var d = [
39113       [
39114         "Afghanistan (‫افغانستان‬‎)",
39115         "af",
39116         "93"
39117       ],
39118       [
39119         "Albania (Shqipëri)",
39120         "al",
39121         "355"
39122       ],
39123       [
39124         "Algeria (‫الجزائر‬‎)",
39125         "dz",
39126         "213"
39127       ],
39128       [
39129         "American Samoa",
39130         "as",
39131         "1684"
39132       ],
39133       [
39134         "Andorra",
39135         "ad",
39136         "376"
39137       ],
39138       [
39139         "Angola",
39140         "ao",
39141         "244"
39142       ],
39143       [
39144         "Anguilla",
39145         "ai",
39146         "1264"
39147       ],
39148       [
39149         "Antigua and Barbuda",
39150         "ag",
39151         "1268"
39152       ],
39153       [
39154         "Argentina",
39155         "ar",
39156         "54"
39157       ],
39158       [
39159         "Armenia (Հայաստան)",
39160         "am",
39161         "374"
39162       ],
39163       [
39164         "Aruba",
39165         "aw",
39166         "297"
39167       ],
39168       [
39169         "Australia",
39170         "au",
39171         "61",
39172         0
39173       ],
39174       [
39175         "Austria (Österreich)",
39176         "at",
39177         "43"
39178       ],
39179       [
39180         "Azerbaijan (Azərbaycan)",
39181         "az",
39182         "994"
39183       ],
39184       [
39185         "Bahamas",
39186         "bs",
39187         "1242"
39188       ],
39189       [
39190         "Bahrain (‫البحرين‬‎)",
39191         "bh",
39192         "973"
39193       ],
39194       [
39195         "Bangladesh (বাংলাদেশ)",
39196         "bd",
39197         "880"
39198       ],
39199       [
39200         "Barbados",
39201         "bb",
39202         "1246"
39203       ],
39204       [
39205         "Belarus (Беларусь)",
39206         "by",
39207         "375"
39208       ],
39209       [
39210         "Belgium (België)",
39211         "be",
39212         "32"
39213       ],
39214       [
39215         "Belize",
39216         "bz",
39217         "501"
39218       ],
39219       [
39220         "Benin (Bénin)",
39221         "bj",
39222         "229"
39223       ],
39224       [
39225         "Bermuda",
39226         "bm",
39227         "1441"
39228       ],
39229       [
39230         "Bhutan (འབྲུག)",
39231         "bt",
39232         "975"
39233       ],
39234       [
39235         "Bolivia",
39236         "bo",
39237         "591"
39238       ],
39239       [
39240         "Bosnia and Herzegovina (Босна и Херцеговина)",
39241         "ba",
39242         "387"
39243       ],
39244       [
39245         "Botswana",
39246         "bw",
39247         "267"
39248       ],
39249       [
39250         "Brazil (Brasil)",
39251         "br",
39252         "55"
39253       ],
39254       [
39255         "British Indian Ocean Territory",
39256         "io",
39257         "246"
39258       ],
39259       [
39260         "British Virgin Islands",
39261         "vg",
39262         "1284"
39263       ],
39264       [
39265         "Brunei",
39266         "bn",
39267         "673"
39268       ],
39269       [
39270         "Bulgaria (България)",
39271         "bg",
39272         "359"
39273       ],
39274       [
39275         "Burkina Faso",
39276         "bf",
39277         "226"
39278       ],
39279       [
39280         "Burundi (Uburundi)",
39281         "bi",
39282         "257"
39283       ],
39284       [
39285         "Cambodia (កម្ពុជា)",
39286         "kh",
39287         "855"
39288       ],
39289       [
39290         "Cameroon (Cameroun)",
39291         "cm",
39292         "237"
39293       ],
39294       [
39295         "Canada",
39296         "ca",
39297         "1",
39298         1,
39299         ["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"]
39300       ],
39301       [
39302         "Cape Verde (Kabu Verdi)",
39303         "cv",
39304         "238"
39305       ],
39306       [
39307         "Caribbean Netherlands",
39308         "bq",
39309         "599",
39310         1
39311       ],
39312       [
39313         "Cayman Islands",
39314         "ky",
39315         "1345"
39316       ],
39317       [
39318         "Central African Republic (République centrafricaine)",
39319         "cf",
39320         "236"
39321       ],
39322       [
39323         "Chad (Tchad)",
39324         "td",
39325         "235"
39326       ],
39327       [
39328         "Chile",
39329         "cl",
39330         "56"
39331       ],
39332       [
39333         "China (中国)",
39334         "cn",
39335         "86"
39336       ],
39337       [
39338         "Christmas Island",
39339         "cx",
39340         "61",
39341         2
39342       ],
39343       [
39344         "Cocos (Keeling) Islands",
39345         "cc",
39346         "61",
39347         1
39348       ],
39349       [
39350         "Colombia",
39351         "co",
39352         "57"
39353       ],
39354       [
39355         "Comoros (‫جزر القمر‬‎)",
39356         "km",
39357         "269"
39358       ],
39359       [
39360         "Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)",
39361         "cd",
39362         "243"
39363       ],
39364       [
39365         "Congo (Republic) (Congo-Brazzaville)",
39366         "cg",
39367         "242"
39368       ],
39369       [
39370         "Cook Islands",
39371         "ck",
39372         "682"
39373       ],
39374       [
39375         "Costa Rica",
39376         "cr",
39377         "506"
39378       ],
39379       [
39380         "Côte d’Ivoire",
39381         "ci",
39382         "225"
39383       ],
39384       [
39385         "Croatia (Hrvatska)",
39386         "hr",
39387         "385"
39388       ],
39389       [
39390         "Cuba",
39391         "cu",
39392         "53"
39393       ],
39394       [
39395         "Curaçao",
39396         "cw",
39397         "599",
39398         0
39399       ],
39400       [
39401         "Cyprus (Κύπρος)",
39402         "cy",
39403         "357"
39404       ],
39405       [
39406         "Czech Republic (Česká republika)",
39407         "cz",
39408         "420"
39409       ],
39410       [
39411         "Denmark (Danmark)",
39412         "dk",
39413         "45"
39414       ],
39415       [
39416         "Djibouti",
39417         "dj",
39418         "253"
39419       ],
39420       [
39421         "Dominica",
39422         "dm",
39423         "1767"
39424       ],
39425       [
39426         "Dominican Republic (República Dominicana)",
39427         "do",
39428         "1",
39429         2,
39430         ["809", "829", "849"]
39431       ],
39432       [
39433         "Ecuador",
39434         "ec",
39435         "593"
39436       ],
39437       [
39438         "Egypt (‫مصر‬‎)",
39439         "eg",
39440         "20"
39441       ],
39442       [
39443         "El Salvador",
39444         "sv",
39445         "503"
39446       ],
39447       [
39448         "Equatorial Guinea (Guinea Ecuatorial)",
39449         "gq",
39450         "240"
39451       ],
39452       [
39453         "Eritrea",
39454         "er",
39455         "291"
39456       ],
39457       [
39458         "Estonia (Eesti)",
39459         "ee",
39460         "372"
39461       ],
39462       [
39463         "Ethiopia",
39464         "et",
39465         "251"
39466       ],
39467       [
39468         "Falkland Islands (Islas Malvinas)",
39469         "fk",
39470         "500"
39471       ],
39472       [
39473         "Faroe Islands (Føroyar)",
39474         "fo",
39475         "298"
39476       ],
39477       [
39478         "Fiji",
39479         "fj",
39480         "679"
39481       ],
39482       [
39483         "Finland (Suomi)",
39484         "fi",
39485         "358",
39486         0
39487       ],
39488       [
39489         "France",
39490         "fr",
39491         "33"
39492       ],
39493       [
39494         "French Guiana (Guyane française)",
39495         "gf",
39496         "594"
39497       ],
39498       [
39499         "French Polynesia (Polynésie française)",
39500         "pf",
39501         "689"
39502       ],
39503       [
39504         "Gabon",
39505         "ga",
39506         "241"
39507       ],
39508       [
39509         "Gambia",
39510         "gm",
39511         "220"
39512       ],
39513       [
39514         "Georgia (საქართველო)",
39515         "ge",
39516         "995"
39517       ],
39518       [
39519         "Germany (Deutschland)",
39520         "de",
39521         "49"
39522       ],
39523       [
39524         "Ghana (Gaana)",
39525         "gh",
39526         "233"
39527       ],
39528       [
39529         "Gibraltar",
39530         "gi",
39531         "350"
39532       ],
39533       [
39534         "Greece (Ελλάδα)",
39535         "gr",
39536         "30"
39537       ],
39538       [
39539         "Greenland (Kalaallit Nunaat)",
39540         "gl",
39541         "299"
39542       ],
39543       [
39544         "Grenada",
39545         "gd",
39546         "1473"
39547       ],
39548       [
39549         "Guadeloupe",
39550         "gp",
39551         "590",
39552         0
39553       ],
39554       [
39555         "Guam",
39556         "gu",
39557         "1671"
39558       ],
39559       [
39560         "Guatemala",
39561         "gt",
39562         "502"
39563       ],
39564       [
39565         "Guernsey",
39566         "gg",
39567         "44",
39568         1
39569       ],
39570       [
39571         "Guinea (Guinée)",
39572         "gn",
39573         "224"
39574       ],
39575       [
39576         "Guinea-Bissau (Guiné Bissau)",
39577         "gw",
39578         "245"
39579       ],
39580       [
39581         "Guyana",
39582         "gy",
39583         "592"
39584       ],
39585       [
39586         "Haiti",
39587         "ht",
39588         "509"
39589       ],
39590       [
39591         "Honduras",
39592         "hn",
39593         "504"
39594       ],
39595       [
39596         "Hong Kong (香港)",
39597         "hk",
39598         "852"
39599       ],
39600       [
39601         "Hungary (Magyarország)",
39602         "hu",
39603         "36"
39604       ],
39605       [
39606         "Iceland (Ísland)",
39607         "is",
39608         "354"
39609       ],
39610       [
39611         "India (भारत)",
39612         "in",
39613         "91"
39614       ],
39615       [
39616         "Indonesia",
39617         "id",
39618         "62"
39619       ],
39620       [
39621         "Iran (‫ایران‬‎)",
39622         "ir",
39623         "98"
39624       ],
39625       [
39626         "Iraq (‫العراق‬‎)",
39627         "iq",
39628         "964"
39629       ],
39630       [
39631         "Ireland",
39632         "ie",
39633         "353"
39634       ],
39635       [
39636         "Isle of Man",
39637         "im",
39638         "44",
39639         2
39640       ],
39641       [
39642         "Israel (‫ישראל‬‎)",
39643         "il",
39644         "972"
39645       ],
39646       [
39647         "Italy (Italia)",
39648         "it",
39649         "39",
39650         0
39651       ],
39652       [
39653         "Jamaica",
39654         "jm",
39655         "1876"
39656       ],
39657       [
39658         "Japan (日本)",
39659         "jp",
39660         "81"
39661       ],
39662       [
39663         "Jersey",
39664         "je",
39665         "44",
39666         3
39667       ],
39668       [
39669         "Jordan (‫الأردن‬‎)",
39670         "jo",
39671         "962"
39672       ],
39673       [
39674         "Kazakhstan (Казахстан)",
39675         "kz",
39676         "7",
39677         1
39678       ],
39679       [
39680         "Kenya",
39681         "ke",
39682         "254"
39683       ],
39684       [
39685         "Kiribati",
39686         "ki",
39687         "686"
39688       ],
39689       [
39690         "Kosovo",
39691         "xk",
39692         "383"
39693       ],
39694       [
39695         "Kuwait (‫الكويت‬‎)",
39696         "kw",
39697         "965"
39698       ],
39699       [
39700         "Kyrgyzstan (Кыргызстан)",
39701         "kg",
39702         "996"
39703       ],
39704       [
39705         "Laos (ລາວ)",
39706         "la",
39707         "856"
39708       ],
39709       [
39710         "Latvia (Latvija)",
39711         "lv",
39712         "371"
39713       ],
39714       [
39715         "Lebanon (‫لبنان‬‎)",
39716         "lb",
39717         "961"
39718       ],
39719       [
39720         "Lesotho",
39721         "ls",
39722         "266"
39723       ],
39724       [
39725         "Liberia",
39726         "lr",
39727         "231"
39728       ],
39729       [
39730         "Libya (‫ليبيا‬‎)",
39731         "ly",
39732         "218"
39733       ],
39734       [
39735         "Liechtenstein",
39736         "li",
39737         "423"
39738       ],
39739       [
39740         "Lithuania (Lietuva)",
39741         "lt",
39742         "370"
39743       ],
39744       [
39745         "Luxembourg",
39746         "lu",
39747         "352"
39748       ],
39749       [
39750         "Macau (澳門)",
39751         "mo",
39752         "853"
39753       ],
39754       [
39755         "Macedonia (FYROM) (Македонија)",
39756         "mk",
39757         "389"
39758       ],
39759       [
39760         "Madagascar (Madagasikara)",
39761         "mg",
39762         "261"
39763       ],
39764       [
39765         "Malawi",
39766         "mw",
39767         "265"
39768       ],
39769       [
39770         "Malaysia",
39771         "my",
39772         "60"
39773       ],
39774       [
39775         "Maldives",
39776         "mv",
39777         "960"
39778       ],
39779       [
39780         "Mali",
39781         "ml",
39782         "223"
39783       ],
39784       [
39785         "Malta",
39786         "mt",
39787         "356"
39788       ],
39789       [
39790         "Marshall Islands",
39791         "mh",
39792         "692"
39793       ],
39794       [
39795         "Martinique",
39796         "mq",
39797         "596"
39798       ],
39799       [
39800         "Mauritania (‫موريتانيا‬‎)",
39801         "mr",
39802         "222"
39803       ],
39804       [
39805         "Mauritius (Moris)",
39806         "mu",
39807         "230"
39808       ],
39809       [
39810         "Mayotte",
39811         "yt",
39812         "262",
39813         1
39814       ],
39815       [
39816         "Mexico (México)",
39817         "mx",
39818         "52"
39819       ],
39820       [
39821         "Micronesia",
39822         "fm",
39823         "691"
39824       ],
39825       [
39826         "Moldova (Republica Moldova)",
39827         "md",
39828         "373"
39829       ],
39830       [
39831         "Monaco",
39832         "mc",
39833         "377"
39834       ],
39835       [
39836         "Mongolia (Монгол)",
39837         "mn",
39838         "976"
39839       ],
39840       [
39841         "Montenegro (Crna Gora)",
39842         "me",
39843         "382"
39844       ],
39845       [
39846         "Montserrat",
39847         "ms",
39848         "1664"
39849       ],
39850       [
39851         "Morocco (‫المغرب‬‎)",
39852         "ma",
39853         "212",
39854         0
39855       ],
39856       [
39857         "Mozambique (Moçambique)",
39858         "mz",
39859         "258"
39860       ],
39861       [
39862         "Myanmar (Burma) (မြန်မာ)",
39863         "mm",
39864         "95"
39865       ],
39866       [
39867         "Namibia (Namibië)",
39868         "na",
39869         "264"
39870       ],
39871       [
39872         "Nauru",
39873         "nr",
39874         "674"
39875       ],
39876       [
39877         "Nepal (नेपाल)",
39878         "np",
39879         "977"
39880       ],
39881       [
39882         "Netherlands (Nederland)",
39883         "nl",
39884         "31"
39885       ],
39886       [
39887         "New Caledonia (Nouvelle-Calédonie)",
39888         "nc",
39889         "687"
39890       ],
39891       [
39892         "New Zealand",
39893         "nz",
39894         "64"
39895       ],
39896       [
39897         "Nicaragua",
39898         "ni",
39899         "505"
39900       ],
39901       [
39902         "Niger (Nijar)",
39903         "ne",
39904         "227"
39905       ],
39906       [
39907         "Nigeria",
39908         "ng",
39909         "234"
39910       ],
39911       [
39912         "Niue",
39913         "nu",
39914         "683"
39915       ],
39916       [
39917         "Norfolk Island",
39918         "nf",
39919         "672"
39920       ],
39921       [
39922         "North Korea (조선 민주주의 인민 공화국)",
39923         "kp",
39924         "850"
39925       ],
39926       [
39927         "Northern Mariana Islands",
39928         "mp",
39929         "1670"
39930       ],
39931       [
39932         "Norway (Norge)",
39933         "no",
39934         "47",
39935         0
39936       ],
39937       [
39938         "Oman (‫عُمان‬‎)",
39939         "om",
39940         "968"
39941       ],
39942       [
39943         "Pakistan (‫پاکستان‬‎)",
39944         "pk",
39945         "92"
39946       ],
39947       [
39948         "Palau",
39949         "pw",
39950         "680"
39951       ],
39952       [
39953         "Palestine (‫فلسطين‬‎)",
39954         "ps",
39955         "970"
39956       ],
39957       [
39958         "Panama (Panamá)",
39959         "pa",
39960         "507"
39961       ],
39962       [
39963         "Papua New Guinea",
39964         "pg",
39965         "675"
39966       ],
39967       [
39968         "Paraguay",
39969         "py",
39970         "595"
39971       ],
39972       [
39973         "Peru (Perú)",
39974         "pe",
39975         "51"
39976       ],
39977       [
39978         "Philippines",
39979         "ph",
39980         "63"
39981       ],
39982       [
39983         "Poland (Polska)",
39984         "pl",
39985         "48"
39986       ],
39987       [
39988         "Portugal",
39989         "pt",
39990         "351"
39991       ],
39992       [
39993         "Puerto Rico",
39994         "pr",
39995         "1",
39996         3,
39997         ["787", "939"]
39998       ],
39999       [
40000         "Qatar (‫قطر‬‎)",
40001         "qa",
40002         "974"
40003       ],
40004       [
40005         "Réunion (La Réunion)",
40006         "re",
40007         "262",
40008         0
40009       ],
40010       [
40011         "Romania (România)",
40012         "ro",
40013         "40"
40014       ],
40015       [
40016         "Russia (Россия)",
40017         "ru",
40018         "7",
40019         0
40020       ],
40021       [
40022         "Rwanda",
40023         "rw",
40024         "250"
40025       ],
40026       [
40027         "Saint Barthélemy",
40028         "bl",
40029         "590",
40030         1
40031       ],
40032       [
40033         "Saint Helena",
40034         "sh",
40035         "290"
40036       ],
40037       [
40038         "Saint Kitts and Nevis",
40039         "kn",
40040         "1869"
40041       ],
40042       [
40043         "Saint Lucia",
40044         "lc",
40045         "1758"
40046       ],
40047       [
40048         "Saint Martin (Saint-Martin (partie française))",
40049         "mf",
40050         "590",
40051         2
40052       ],
40053       [
40054         "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)",
40055         "pm",
40056         "508"
40057       ],
40058       [
40059         "Saint Vincent and the Grenadines",
40060         "vc",
40061         "1784"
40062       ],
40063       [
40064         "Samoa",
40065         "ws",
40066         "685"
40067       ],
40068       [
40069         "San Marino",
40070         "sm",
40071         "378"
40072       ],
40073       [
40074         "São Tomé and Príncipe (São Tomé e Príncipe)",
40075         "st",
40076         "239"
40077       ],
40078       [
40079         "Saudi Arabia (‫المملكة العربية السعودية‬‎)",
40080         "sa",
40081         "966"
40082       ],
40083       [
40084         "Senegal (Sénégal)",
40085         "sn",
40086         "221"
40087       ],
40088       [
40089         "Serbia (Србија)",
40090         "rs",
40091         "381"
40092       ],
40093       [
40094         "Seychelles",
40095         "sc",
40096         "248"
40097       ],
40098       [
40099         "Sierra Leone",
40100         "sl",
40101         "232"
40102       ],
40103       [
40104         "Singapore",
40105         "sg",
40106         "65"
40107       ],
40108       [
40109         "Sint Maarten",
40110         "sx",
40111         "1721"
40112       ],
40113       [
40114         "Slovakia (Slovensko)",
40115         "sk",
40116         "421"
40117       ],
40118       [
40119         "Slovenia (Slovenija)",
40120         "si",
40121         "386"
40122       ],
40123       [
40124         "Solomon Islands",
40125         "sb",
40126         "677"
40127       ],
40128       [
40129         "Somalia (Soomaaliya)",
40130         "so",
40131         "252"
40132       ],
40133       [
40134         "South Africa",
40135         "za",
40136         "27"
40137       ],
40138       [
40139         "South Korea (대한민국)",
40140         "kr",
40141         "82"
40142       ],
40143       [
40144         "South Sudan (‫جنوب السودان‬‎)",
40145         "ss",
40146         "211"
40147       ],
40148       [
40149         "Spain (España)",
40150         "es",
40151         "34"
40152       ],
40153       [
40154         "Sri Lanka (ශ්‍රී ලංකාව)",
40155         "lk",
40156         "94"
40157       ],
40158       [
40159         "Sudan (‫السودان‬‎)",
40160         "sd",
40161         "249"
40162       ],
40163       [
40164         "Suriname",
40165         "sr",
40166         "597"
40167       ],
40168       [
40169         "Svalbard and Jan Mayen",
40170         "sj",
40171         "47",
40172         1
40173       ],
40174       [
40175         "Swaziland",
40176         "sz",
40177         "268"
40178       ],
40179       [
40180         "Sweden (Sverige)",
40181         "se",
40182         "46"
40183       ],
40184       [
40185         "Switzerland (Schweiz)",
40186         "ch",
40187         "41"
40188       ],
40189       [
40190         "Syria (‫سوريا‬‎)",
40191         "sy",
40192         "963"
40193       ],
40194       [
40195         "Taiwan (台灣)",
40196         "tw",
40197         "886"
40198       ],
40199       [
40200         "Tajikistan",
40201         "tj",
40202         "992"
40203       ],
40204       [
40205         "Tanzania",
40206         "tz",
40207         "255"
40208       ],
40209       [
40210         "Thailand (ไทย)",
40211         "th",
40212         "66"
40213       ],
40214       [
40215         "Timor-Leste",
40216         "tl",
40217         "670"
40218       ],
40219       [
40220         "Togo",
40221         "tg",
40222         "228"
40223       ],
40224       [
40225         "Tokelau",
40226         "tk",
40227         "690"
40228       ],
40229       [
40230         "Tonga",
40231         "to",
40232         "676"
40233       ],
40234       [
40235         "Trinidad and Tobago",
40236         "tt",
40237         "1868"
40238       ],
40239       [
40240         "Tunisia (‫تونس‬‎)",
40241         "tn",
40242         "216"
40243       ],
40244       [
40245         "Turkey (Türkiye)",
40246         "tr",
40247         "90"
40248       ],
40249       [
40250         "Turkmenistan",
40251         "tm",
40252         "993"
40253       ],
40254       [
40255         "Turks and Caicos Islands",
40256         "tc",
40257         "1649"
40258       ],
40259       [
40260         "Tuvalu",
40261         "tv",
40262         "688"
40263       ],
40264       [
40265         "U.S. Virgin Islands",
40266         "vi",
40267         "1340"
40268       ],
40269       [
40270         "Uganda",
40271         "ug",
40272         "256"
40273       ],
40274       [
40275         "Ukraine (Україна)",
40276         "ua",
40277         "380"
40278       ],
40279       [
40280         "United Arab Emirates (‫الإمارات العربية المتحدة‬‎)",
40281         "ae",
40282         "971"
40283       ],
40284       [
40285         "United Kingdom",
40286         "gb",
40287         "44",
40288         0
40289       ],
40290       [
40291         "United States",
40292         "us",
40293         "1",
40294         0
40295       ],
40296       [
40297         "Uruguay",
40298         "uy",
40299         "598"
40300       ],
40301       [
40302         "Uzbekistan (Oʻzbekiston)",
40303         "uz",
40304         "998"
40305       ],
40306       [
40307         "Vanuatu",
40308         "vu",
40309         "678"
40310       ],
40311       [
40312         "Vatican City (Città del Vaticano)",
40313         "va",
40314         "39",
40315         1
40316       ],
40317       [
40318         "Venezuela",
40319         "ve",
40320         "58"
40321       ],
40322       [
40323         "Vietnam (Việt Nam)",
40324         "vn",
40325         "84"
40326       ],
40327       [
40328         "Wallis and Futuna (Wallis-et-Futuna)",
40329         "wf",
40330         "681"
40331       ],
40332       [
40333         "Western Sahara (‫الصحراء الغربية‬‎)",
40334         "eh",
40335         "212",
40336         1
40337       ],
40338       [
40339         "Yemen (‫اليمن‬‎)",
40340         "ye",
40341         "967"
40342       ],
40343       [
40344         "Zambia",
40345         "zm",
40346         "260"
40347       ],
40348       [
40349         "Zimbabwe",
40350         "zw",
40351         "263"
40352       ],
40353       [
40354         "Åland Islands",
40355         "ax",
40356         "358",
40357         1
40358       ]
40359   ];
40360   
40361   return d;
40362 }/**
40363 *    This script refer to:
40364 *    Title: International Telephone Input
40365 *    Author: Jack O'Connor
40366 *    Code version:  v12.1.12
40367 *    Availability: https://github.com/jackocnr/intl-tel-input.git
40368 **/
40369
40370 /**
40371  * @class Roo.bootstrap.PhoneInput
40372  * @extends Roo.bootstrap.TriggerField
40373  * An input with International dial-code selection
40374  
40375  * @cfg {String} defaultDialCode default '+852'
40376  * @cfg {Array} preferedCountries default []
40377   
40378  * @constructor
40379  * Create a new PhoneInput.
40380  * @param {Object} config Configuration options
40381  */
40382
40383 Roo.bootstrap.PhoneInput = function(config) {
40384     Roo.bootstrap.PhoneInput.superclass.constructor.call(this, config);
40385 };
40386
40387 Roo.extend(Roo.bootstrap.PhoneInput, Roo.bootstrap.TriggerField, {
40388         
40389         listWidth: undefined,
40390         
40391         selectedClass: 'active',
40392         
40393         invalidClass : "has-warning",
40394         
40395         validClass: 'has-success',
40396         
40397         allowed: '0123456789',
40398         
40399         max_length: 15,
40400         
40401         /**
40402          * @cfg {String} defaultDialCode The default dial code when initializing the input
40403          */
40404         defaultDialCode: '+852',
40405         
40406         /**
40407          * @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
40408          */
40409         preferedCountries: false,
40410         
40411         getAutoCreate : function()
40412         {
40413             var data = Roo.bootstrap.PhoneInputData();
40414             var align = this.labelAlign || this.parentLabelAlign();
40415             var id = Roo.id();
40416             
40417             this.allCountries = [];
40418             this.dialCodeMapping = [];
40419             
40420             for (var i = 0; i < data.length; i++) {
40421               var c = data[i];
40422               this.allCountries[i] = {
40423                 name: c[0],
40424                 iso2: c[1],
40425                 dialCode: c[2],
40426                 priority: c[3] || 0,
40427                 areaCodes: c[4] || null
40428               };
40429               this.dialCodeMapping[c[2]] = {
40430                   name: c[0],
40431                   iso2: c[1],
40432                   priority: c[3] || 0,
40433                   areaCodes: c[4] || null
40434               };
40435             }
40436             
40437             var cfg = {
40438                 cls: 'form-group',
40439                 cn: []
40440             };
40441             
40442             var input =  {
40443                 tag: 'input',
40444                 id : id,
40445                 // type: 'number', -- do not use number - we get the flaky up/down arrows.
40446                 maxlength: this.max_length,
40447                 cls : 'form-control tel-input',
40448                 autocomplete: 'new-password'
40449             };
40450             
40451             var hiddenInput = {
40452                 tag: 'input',
40453                 type: 'hidden',
40454                 cls: 'hidden-tel-input'
40455             };
40456             
40457             if (this.name) {
40458                 hiddenInput.name = this.name;
40459             }
40460             
40461             if (this.disabled) {
40462                 input.disabled = true;
40463             }
40464             
40465             var flag_container = {
40466                 tag: 'div',
40467                 cls: 'flag-box',
40468                 cn: [
40469                     {
40470                         tag: 'div',
40471                         cls: 'flag'
40472                     },
40473                     {
40474                         tag: 'div',
40475                         cls: 'caret'
40476                     }
40477                 ]
40478             };
40479             
40480             var box = {
40481                 tag: 'div',
40482                 cls: this.hasFeedback ? 'has-feedback' : '',
40483                 cn: [
40484                     hiddenInput,
40485                     input,
40486                     {
40487                         tag: 'input',
40488                         cls: 'dial-code-holder',
40489                         disabled: true
40490                     }
40491                 ]
40492             };
40493             
40494             var container = {
40495                 cls: 'roo-select2-container input-group',
40496                 cn: [
40497                     flag_container,
40498                     box
40499                 ]
40500             };
40501             
40502             if (this.fieldLabel.length) {
40503                 var indicator = {
40504                     tag: 'i',
40505                     tooltip: 'This field is required'
40506                 };
40507                 
40508                 var label = {
40509                     tag: 'label',
40510                     'for':  id,
40511                     cls: 'control-label',
40512                     cn: []
40513                 };
40514                 
40515                 var label_text = {
40516                     tag: 'span',
40517                     html: this.fieldLabel
40518                 };
40519                 
40520                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
40521                 label.cn = [
40522                     indicator,
40523                     label_text
40524                 ];
40525                 
40526                 if(this.indicatorpos == 'right') {
40527                     indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
40528                     label.cn = [
40529                         label_text,
40530                         indicator
40531                     ];
40532                 }
40533                 
40534                 if(align == 'left') {
40535                     container = {
40536                         tag: 'div',
40537                         cn: [
40538                             container
40539                         ]
40540                     };
40541                     
40542                     if(this.labelWidth > 12){
40543                         label.style = "width: " + this.labelWidth + 'px';
40544                     }
40545                     if(this.labelWidth < 13 && this.labelmd == 0){
40546                         this.labelmd = this.labelWidth;
40547                     }
40548                     if(this.labellg > 0){
40549                         label.cls += ' col-lg-' + this.labellg;
40550                         input.cls += ' col-lg-' + (12 - this.labellg);
40551                     }
40552                     if(this.labelmd > 0){
40553                         label.cls += ' col-md-' + this.labelmd;
40554                         container.cls += ' col-md-' + (12 - this.labelmd);
40555                     }
40556                     if(this.labelsm > 0){
40557                         label.cls += ' col-sm-' + this.labelsm;
40558                         container.cls += ' col-sm-' + (12 - this.labelsm);
40559                     }
40560                     if(this.labelxs > 0){
40561                         label.cls += ' col-xs-' + this.labelxs;
40562                         container.cls += ' col-xs-' + (12 - this.labelxs);
40563                     }
40564                 }
40565             }
40566             
40567             cfg.cn = [
40568                 label,
40569                 container
40570             ];
40571             
40572             var settings = this;
40573             
40574             ['xs','sm','md','lg'].map(function(size){
40575                 if (settings[size]) {
40576                     cfg.cls += ' col-' + size + '-' + settings[size];
40577                 }
40578             });
40579             
40580             this.store = new Roo.data.Store({
40581                 proxy : new Roo.data.MemoryProxy({}),
40582                 reader : new Roo.data.JsonReader({
40583                     fields : [
40584                         {
40585                             'name' : 'name',
40586                             'type' : 'string'
40587                         },
40588                         {
40589                             'name' : 'iso2',
40590                             'type' : 'string'
40591                         },
40592                         {
40593                             'name' : 'dialCode',
40594                             'type' : 'string'
40595                         },
40596                         {
40597                             'name' : 'priority',
40598                             'type' : 'string'
40599                         },
40600                         {
40601                             'name' : 'areaCodes',
40602                             'type' : 'string'
40603                         }
40604                     ]
40605                 })
40606             });
40607             
40608             if(!this.preferedCountries) {
40609                 this.preferedCountries = [
40610                     'hk',
40611                     'gb',
40612                     'us'
40613                 ];
40614             }
40615             
40616             var p = this.preferedCountries.reverse();
40617             
40618             if(p) {
40619                 for (var i = 0; i < p.length; i++) {
40620                     for (var j = 0; j < this.allCountries.length; j++) {
40621                         if(this.allCountries[j].iso2 == p[i]) {
40622                             var t = this.allCountries[j];
40623                             this.allCountries.splice(j,1);
40624                             this.allCountries.unshift(t);
40625                         }
40626                     } 
40627                 }
40628             }
40629             
40630             this.store.proxy.data = {
40631                 success: true,
40632                 data: this.allCountries
40633             };
40634             
40635             return cfg;
40636         },
40637         
40638         initEvents : function()
40639         {
40640             this.createList();
40641             Roo.bootstrap.PhoneInput.superclass.initEvents.call(this);
40642             
40643             this.indicator = this.indicatorEl();
40644             this.flag = this.flagEl();
40645             this.dialCodeHolder = this.dialCodeHolderEl();
40646             
40647             this.trigger = this.el.select('div.flag-box',true).first();
40648             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40649             
40650             var _this = this;
40651             
40652             (function(){
40653                 var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
40654                 _this.list.setWidth(lw);
40655             }).defer(100);
40656             
40657             this.list.on('mouseover', this.onViewOver, this);
40658             this.list.on('mousemove', this.onViewMove, this);
40659             this.inputEl().on("keyup", this.onKeyUp, this);
40660             this.inputEl().on("keypress", this.onKeyPress, this);
40661             
40662             this.tpl = '<li><a href="#"><div class="flag {iso2}"></div>{name} <span class="dial-code">+{dialCode}</span></a></li>';
40663
40664             this.view = new Roo.View(this.list, this.tpl, {
40665                 singleSelect:true, store: this.store, selectedClass: this.selectedClass
40666             });
40667             
40668             this.view.on('click', this.onViewClick, this);
40669             this.setValue(this.defaultDialCode);
40670         },
40671         
40672         onTriggerClick : function(e)
40673         {
40674             Roo.log('trigger click');
40675             if(this.disabled){
40676                 return;
40677             }
40678             
40679             if(this.isExpanded()){
40680                 this.collapse();
40681                 this.hasFocus = false;
40682             }else {
40683                 this.store.load({});
40684                 this.hasFocus = true;
40685                 this.expand();
40686             }
40687         },
40688         
40689         isExpanded : function()
40690         {
40691             return this.list.isVisible();
40692         },
40693         
40694         collapse : function()
40695         {
40696             if(!this.isExpanded()){
40697                 return;
40698             }
40699             this.list.hide();
40700             Roo.get(document).un('mousedown', this.collapseIf, this);
40701             Roo.get(document).un('mousewheel', this.collapseIf, this);
40702             this.fireEvent('collapse', this);
40703             this.validate();
40704         },
40705         
40706         expand : function()
40707         {
40708             Roo.log('expand');
40709
40710             if(this.isExpanded() || !this.hasFocus){
40711                 return;
40712             }
40713             
40714             var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
40715             this.list.setWidth(lw);
40716             
40717             this.list.show();
40718             this.restrictHeight();
40719             
40720             Roo.get(document).on('mousedown', this.collapseIf, this);
40721             Roo.get(document).on('mousewheel', this.collapseIf, this);
40722             
40723             this.fireEvent('expand', this);
40724         },
40725         
40726         restrictHeight : function()
40727         {
40728             this.list.alignTo(this.inputEl(), this.listAlign);
40729             this.list.alignTo(this.inputEl(), this.listAlign);
40730         },
40731         
40732         onViewOver : function(e, t)
40733         {
40734             if(this.inKeyMode){
40735                 return;
40736             }
40737             var item = this.view.findItemFromChild(t);
40738             
40739             if(item){
40740                 var index = this.view.indexOf(item);
40741                 this.select(index, false);
40742             }
40743         },
40744
40745         // private
40746         onViewClick : function(view, doFocus, el, e)
40747         {
40748             var index = this.view.getSelectedIndexes()[0];
40749             
40750             var r = this.store.getAt(index);
40751             
40752             if(r){
40753                 this.onSelect(r, index);
40754             }
40755             if(doFocus !== false && !this.blockFocus){
40756                 this.inputEl().focus();
40757             }
40758         },
40759         
40760         onViewMove : function(e, t)
40761         {
40762             this.inKeyMode = false;
40763         },
40764         
40765         select : function(index, scrollIntoView)
40766         {
40767             this.selectedIndex = index;
40768             this.view.select(index);
40769             if(scrollIntoView !== false){
40770                 var el = this.view.getNode(index);
40771                 if(el){
40772                     this.list.scrollChildIntoView(el, false);
40773                 }
40774             }
40775         },
40776         
40777         createList : function()
40778         {
40779             this.list = Roo.get(document.body).createChild({
40780                 tag: 'ul',
40781                 cls: 'typeahead typeahead-long dropdown-menu tel-list',
40782                 style: 'display:none'
40783             });
40784             
40785             this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
40786         },
40787         
40788         collapseIf : function(e)
40789         {
40790             var in_combo  = e.within(this.el);
40791             var in_list =  e.within(this.list);
40792             var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
40793             
40794             if (in_combo || in_list || is_list) {
40795                 return;
40796             }
40797             this.collapse();
40798         },
40799         
40800         onSelect : function(record, index)
40801         {
40802             if(this.fireEvent('beforeselect', this, record, index) !== false){
40803                 
40804                 this.setFlagClass(record.data.iso2);
40805                 this.setDialCode(record.data.dialCode);
40806                 this.hasFocus = false;
40807                 this.collapse();
40808                 this.fireEvent('select', this, record, index);
40809             }
40810         },
40811         
40812         flagEl : function()
40813         {
40814             var flag = this.el.select('div.flag',true).first();
40815             if(!flag){
40816                 return false;
40817             }
40818             return flag;
40819         },
40820         
40821         dialCodeHolderEl : function()
40822         {
40823             var d = this.el.select('input.dial-code-holder',true).first();
40824             if(!d){
40825                 return false;
40826             }
40827             return d;
40828         },
40829         
40830         setDialCode : function(v)
40831         {
40832             this.dialCodeHolder.dom.value = '+'+v;
40833         },
40834         
40835         setFlagClass : function(n)
40836         {
40837             this.flag.dom.className = 'flag '+n;
40838         },
40839         
40840         getValue : function()
40841         {
40842             var v = this.inputEl().getValue();
40843             if(this.dialCodeHolder) {
40844                 v = this.dialCodeHolder.dom.value+this.inputEl().getValue();
40845             }
40846             return v;
40847         },
40848         
40849         setValue : function(v)
40850         {
40851             var d = this.getDialCode(v);
40852             
40853             //invalid dial code
40854             if(v.length == 0 || !d || d.length == 0) {
40855                 if(this.rendered){
40856                     this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
40857                     this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
40858                 }
40859                 return;
40860             }
40861             
40862             //valid dial code
40863             this.setFlagClass(this.dialCodeMapping[d].iso2);
40864             this.setDialCode(d);
40865             this.inputEl().dom.value = v.replace('+'+d,'');
40866             this.hiddenEl().dom.value = this.getValue();
40867             
40868             this.validate();
40869         },
40870         
40871         getDialCode : function(v)
40872         {
40873             v = v ||  '';
40874             
40875             if (v.length == 0) {
40876                 return this.dialCodeHolder.dom.value;
40877             }
40878             
40879             var dialCode = "";
40880             if (v.charAt(0) != "+") {
40881                 return false;
40882             }
40883             var numericChars = "";
40884             for (var i = 1; i < v.length; i++) {
40885               var c = v.charAt(i);
40886               if (!isNaN(c)) {
40887                 numericChars += c;
40888                 if (this.dialCodeMapping[numericChars]) {
40889                   dialCode = v.substr(1, i);
40890                 }
40891                 if (numericChars.length == 4) {
40892                   break;
40893                 }
40894               }
40895             }
40896             return dialCode;
40897         },
40898         
40899         reset : function()
40900         {
40901             this.setValue(this.defaultDialCode);
40902             this.validate();
40903         },
40904         
40905         hiddenEl : function()
40906         {
40907             return this.el.select('input.hidden-tel-input',true).first();
40908         },
40909         
40910         // after setting val
40911         onKeyUp : function(e){
40912             this.setValue(this.getValue());
40913         },
40914         
40915         onKeyPress : function(e){
40916             if(this.allowed.indexOf(String.fromCharCode(e.getCharCode())) === -1){
40917                 e.stopEvent();
40918             }
40919         }
40920         
40921 });
40922 /**
40923  * @class Roo.bootstrap.MoneyField
40924  * @extends Roo.bootstrap.ComboBox
40925  * Bootstrap MoneyField class
40926  * 
40927  * @constructor
40928  * Create a new MoneyField.
40929  * @param {Object} config Configuration options
40930  */
40931
40932 Roo.bootstrap.MoneyField = function(config) {
40933     
40934     Roo.bootstrap.MoneyField.superclass.constructor.call(this, config);
40935     
40936 };
40937
40938 Roo.extend(Roo.bootstrap.MoneyField, Roo.bootstrap.ComboBox, {
40939     
40940     /**
40941      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40942      */
40943     allowDecimals : true,
40944     /**
40945      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40946      */
40947     decimalSeparator : ".",
40948     /**
40949      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40950      */
40951     decimalPrecision : 0,
40952     /**
40953      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40954      */
40955     allowNegative : true,
40956     /**
40957      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
40958      */
40959     allowZero: true,
40960     /**
40961      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40962      */
40963     minValue : Number.NEGATIVE_INFINITY,
40964     /**
40965      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40966      */
40967     maxValue : Number.MAX_VALUE,
40968     /**
40969      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
40970      */
40971     minText : "The minimum value for this field is {0}",
40972     /**
40973      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
40974      */
40975     maxText : "The maximum value for this field is {0}",
40976     /**
40977      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
40978      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
40979      */
40980     nanText : "{0} is not a valid number",
40981     /**
40982      * @cfg {Boolean} castInt (true|false) cast int if true (defalut true)
40983      */
40984     castInt : true,
40985     /**
40986      * @cfg {String} defaults currency of the MoneyField
40987      * value should be in lkey
40988      */
40989     defaultCurrency : false,
40990     /**
40991      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
40992      */
40993     thousandsDelimiter : false,
40994     /**
40995      * @cfg {Number} max_length Maximum input field length allowed (defaults to Number.MAX_VALUE)
40996      */
40997     max_length: false,
40998     
40999     inputlg : 9,
41000     inputmd : 9,
41001     inputsm : 9,
41002     inputxs : 6,
41003     
41004     store : false,
41005     
41006     getAutoCreate : function()
41007     {
41008         var align = this.labelAlign || this.parentLabelAlign();
41009         
41010         var id = Roo.id();
41011
41012         var cfg = {
41013             cls: 'form-group',
41014             cn: []
41015         };
41016
41017         var input =  {
41018             tag: 'input',
41019             id : id,
41020             cls : 'form-control roo-money-amount-input',
41021             autocomplete: 'new-password'
41022         };
41023         
41024         var hiddenInput = {
41025             tag: 'input',
41026             type: 'hidden',
41027             id: Roo.id(),
41028             cls: 'hidden-number-input'
41029         };
41030         
41031         if(this.max_length) {
41032             input.maxlength = this.max_length; 
41033         }
41034         
41035         if (this.name) {
41036             hiddenInput.name = this.name;
41037         }
41038
41039         if (this.disabled) {
41040             input.disabled = true;
41041         }
41042
41043         var clg = 12 - this.inputlg;
41044         var cmd = 12 - this.inputmd;
41045         var csm = 12 - this.inputsm;
41046         var cxs = 12 - this.inputxs;
41047         
41048         var container = {
41049             tag : 'div',
41050             cls : 'row roo-money-field',
41051             cn : [
41052                 {
41053                     tag : 'div',
41054                     cls : 'roo-money-currency column col-lg-' + clg + ' col-md-' + cmd + ' col-sm-' + csm + ' col-xs-' + cxs,
41055                     cn : [
41056                         {
41057                             tag : 'div',
41058                             cls: 'roo-select2-container input-group',
41059                             cn: [
41060                                 {
41061                                     tag : 'input',
41062                                     cls : 'form-control roo-money-currency-input',
41063                                     autocomplete: 'new-password',
41064                                     readOnly : 1,
41065                                     name : this.currencyName
41066                                 },
41067                                 {
41068                                     tag :'span',
41069                                     cls : 'input-group-addon',
41070                                     cn : [
41071                                         {
41072                                             tag: 'span',
41073                                             cls: 'caret'
41074                                         }
41075                                     ]
41076                                 }
41077                             ]
41078                         }
41079                     ]
41080                 },
41081                 {
41082                     tag : 'div',
41083                     cls : 'roo-money-amount column col-lg-' + this.inputlg + ' col-md-' + this.inputmd + ' col-sm-' + this.inputsm + ' col-xs-' + this.inputxs,
41084                     cn : [
41085                         {
41086                             tag: 'div',
41087                             cls: this.hasFeedback ? 'has-feedback' : '',
41088                             cn: [
41089                                 input
41090                             ]
41091                         }
41092                     ]
41093                 }
41094             ]
41095             
41096         };
41097         
41098         if (this.fieldLabel.length) {
41099             var indicator = {
41100                 tag: 'i',
41101                 tooltip: 'This field is required'
41102             };
41103
41104             var label = {
41105                 tag: 'label',
41106                 'for':  id,
41107                 cls: 'control-label',
41108                 cn: []
41109             };
41110
41111             var label_text = {
41112                 tag: 'span',
41113                 html: this.fieldLabel
41114             };
41115
41116             indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
41117             label.cn = [
41118                 indicator,
41119                 label_text
41120             ];
41121
41122             if(this.indicatorpos == 'right') {
41123                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
41124                 label.cn = [
41125                     label_text,
41126                     indicator
41127                 ];
41128             }
41129
41130             if(align == 'left') {
41131                 container = {
41132                     tag: 'div',
41133                     cn: [
41134                         container
41135                     ]
41136                 };
41137
41138                 if(this.labelWidth > 12){
41139                     label.style = "width: " + this.labelWidth + 'px';
41140                 }
41141                 if(this.labelWidth < 13 && this.labelmd == 0){
41142                     this.labelmd = this.labelWidth;
41143                 }
41144                 if(this.labellg > 0){
41145                     label.cls += ' col-lg-' + this.labellg;
41146                     input.cls += ' col-lg-' + (12 - this.labellg);
41147                 }
41148                 if(this.labelmd > 0){
41149                     label.cls += ' col-md-' + this.labelmd;
41150                     container.cls += ' col-md-' + (12 - this.labelmd);
41151                 }
41152                 if(this.labelsm > 0){
41153                     label.cls += ' col-sm-' + this.labelsm;
41154                     container.cls += ' col-sm-' + (12 - this.labelsm);
41155                 }
41156                 if(this.labelxs > 0){
41157                     label.cls += ' col-xs-' + this.labelxs;
41158                     container.cls += ' col-xs-' + (12 - this.labelxs);
41159                 }
41160             }
41161         }
41162
41163         cfg.cn = [
41164             label,
41165             container,
41166             hiddenInput
41167         ];
41168         
41169         var settings = this;
41170
41171         ['xs','sm','md','lg'].map(function(size){
41172             if (settings[size]) {
41173                 cfg.cls += ' col-' + size + '-' + settings[size];
41174             }
41175         });
41176         
41177         return cfg;
41178     },
41179     
41180     initEvents : function()
41181     {
41182         this.indicator = this.indicatorEl();
41183         
41184         this.initCurrencyEvent();
41185         
41186         this.initNumberEvent();
41187     },
41188     
41189     initCurrencyEvent : function()
41190     {
41191         if (!this.store) {
41192             throw "can not find store for combo";
41193         }
41194         
41195         this.store = Roo.factory(this.store, Roo.data);
41196         this.store.parent = this;
41197         
41198         this.createList();
41199         
41200         this.triggerEl = this.el.select('.input-group-addon', true).first();
41201         
41202         this.triggerEl.on("click", this.onTriggerClick, this, { preventDefault : true });
41203         
41204         var _this = this;
41205         
41206         (function(){
41207             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
41208             _this.list.setWidth(lw);
41209         }).defer(100);
41210         
41211         this.list.on('mouseover', this.onViewOver, this);
41212         this.list.on('mousemove', this.onViewMove, this);
41213         this.list.on('scroll', this.onViewScroll, this);
41214         
41215         if(!this.tpl){
41216             this.tpl = '<li><a href="#">{' + this.currencyField + '}</a></li>';
41217         }
41218         
41219         this.view = new Roo.View(this.list, this.tpl, {
41220             singleSelect:true, store: this.store, selectedClass: this.selectedClass
41221         });
41222         
41223         this.view.on('click', this.onViewClick, this);
41224         
41225         this.store.on('beforeload', this.onBeforeLoad, this);
41226         this.store.on('load', this.onLoad, this);
41227         this.store.on('loadexception', this.onLoadException, this);
41228         
41229         this.keyNav = new Roo.KeyNav(this.currencyEl(), {
41230             "up" : function(e){
41231                 this.inKeyMode = true;
41232                 this.selectPrev();
41233             },
41234
41235             "down" : function(e){
41236                 if(!this.isExpanded()){
41237                     this.onTriggerClick();
41238                 }else{
41239                     this.inKeyMode = true;
41240                     this.selectNext();
41241                 }
41242             },
41243
41244             "enter" : function(e){
41245                 this.collapse();
41246                 
41247                 if(this.fireEvent("specialkey", this, e)){
41248                     this.onViewClick(false);
41249                 }
41250                 
41251                 return true;
41252             },
41253
41254             "esc" : function(e){
41255                 this.collapse();
41256             },
41257
41258             "tab" : function(e){
41259                 this.collapse();
41260                 
41261                 if(this.fireEvent("specialkey", this, e)){
41262                     this.onViewClick(false);
41263                 }
41264                 
41265                 return true;
41266             },
41267
41268             scope : this,
41269
41270             doRelay : function(foo, bar, hname){
41271                 if(hname == 'down' || this.scope.isExpanded()){
41272                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41273                 }
41274                 return true;
41275             },
41276
41277             forceKeyDown: true
41278         });
41279         
41280         this.currencyEl().on("click", this.onTriggerClick, this, { preventDefault : true });
41281         
41282     },
41283     
41284     initNumberEvent : function(e)
41285     {
41286         this.inputEl().on("keydown" , this.fireKey,  this);
41287         this.inputEl().on("focus", this.onFocus,  this);
41288         this.inputEl().on("blur", this.onBlur,  this);
41289         
41290         this.inputEl().relayEvent('keyup', this);
41291         
41292         if(this.indicator){
41293             this.indicator.addClass('invisible');
41294         }
41295  
41296         this.originalValue = this.getValue();
41297         
41298         if(this.validationEvent == 'keyup'){
41299             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
41300             this.inputEl().on('keyup', this.filterValidation, this);
41301         }
41302         else if(this.validationEvent !== false){
41303             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
41304         }
41305         
41306         if(this.selectOnFocus){
41307             this.on("focus", this.preFocus, this);
41308             
41309         }
41310         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
41311             this.inputEl().on("keypress", this.filterKeys, this);
41312         } else {
41313             this.inputEl().relayEvent('keypress', this);
41314         }
41315         
41316         var allowed = "0123456789";
41317         
41318         if(this.allowDecimals){
41319             allowed += this.decimalSeparator;
41320         }
41321         
41322         if(this.allowNegative){
41323             allowed += "-";
41324         }
41325         
41326         if(this.thousandsDelimiter) {
41327             allowed += ",";
41328         }
41329         
41330         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
41331         
41332         var keyPress = function(e){
41333             
41334             var k = e.getKey();
41335             
41336             var c = e.getCharCode();
41337             
41338             if(
41339                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
41340                     allowed.indexOf(String.fromCharCode(c)) === -1
41341             ){
41342                 e.stopEvent();
41343                 return;
41344             }
41345             
41346             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
41347                 return;
41348             }
41349             
41350             if(allowed.indexOf(String.fromCharCode(c)) === -1){
41351                 e.stopEvent();
41352             }
41353         };
41354         
41355         this.inputEl().on("keypress", keyPress, this);
41356         
41357     },
41358     
41359     onTriggerClick : function(e)
41360     {   
41361         if(this.disabled){
41362             return;
41363         }
41364         
41365         this.page = 0;
41366         this.loadNext = false;
41367         
41368         if(this.isExpanded()){
41369             this.collapse();
41370             return;
41371         }
41372         
41373         this.hasFocus = true;
41374         
41375         if(this.triggerAction == 'all') {
41376             this.doQuery(this.allQuery, true);
41377             return;
41378         }
41379         
41380         this.doQuery(this.getRawValue());
41381     },
41382     
41383     getCurrency : function()
41384     {   
41385         var v = this.currencyEl().getValue();
41386         
41387         return v;
41388     },
41389     
41390     restrictHeight : function()
41391     {
41392         this.list.alignTo(this.currencyEl(), this.listAlign);
41393         this.list.alignTo(this.currencyEl(), this.listAlign);
41394     },
41395     
41396     onViewClick : function(view, doFocus, el, e)
41397     {
41398         var index = this.view.getSelectedIndexes()[0];
41399         
41400         var r = this.store.getAt(index);
41401         
41402         if(r){
41403             this.onSelect(r, index);
41404         }
41405     },
41406     
41407     onSelect : function(record, index){
41408         
41409         if(this.fireEvent('beforeselect', this, record, index) !== false){
41410         
41411             this.setFromCurrencyData(index > -1 ? record.data : false);
41412             
41413             this.collapse();
41414             
41415             this.fireEvent('select', this, record, index);
41416         }
41417     },
41418     
41419     setFromCurrencyData : function(o)
41420     {
41421         var currency = '';
41422         
41423         this.lastCurrency = o;
41424         
41425         if (this.currencyField) {
41426             currency = !o || typeof(o[this.currencyField]) == 'undefined' ? '' : o[this.currencyField];
41427         } else {
41428             Roo.log('no  currencyField value set for '+ (this.name ? this.name : this.id));
41429         }
41430         
41431         this.lastSelectionText = currency;
41432         
41433         //setting default currency
41434         if(o[this.currencyField] * 1 == 0 && this.defaultCurrency) {
41435             this.setCurrency(this.defaultCurrency);
41436             return;
41437         }
41438         
41439         this.setCurrency(currency);
41440     },
41441     
41442     setFromData : function(o)
41443     {
41444         var c = {};
41445         
41446         c[this.currencyField] = !o || typeof(o[this.currencyName]) == 'undefined' ? '' : o[this.currencyName];
41447         
41448         this.setFromCurrencyData(c);
41449         
41450         var value = '';
41451         
41452         if (this.name) {
41453             value = !o || typeof(o[this.name]) == 'undefined' ? '' : o[this.name];
41454         } else {
41455             Roo.log('no value set for '+ (this.name ? this.name : this.id));
41456         }
41457         
41458         this.setValue(value);
41459         
41460     },
41461     
41462     setCurrency : function(v)
41463     {   
41464         this.currencyValue = v;
41465         
41466         if(this.rendered){
41467             this.currencyEl().dom.value = (v === null || v === undefined ? '' : v);
41468             this.validate();
41469         }
41470     },
41471     
41472     setValue : function(v)
41473     {
41474         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
41475         
41476         this.value = v;
41477         
41478         if(this.rendered){
41479             
41480             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
41481             
41482             this.inputEl().dom.value = (v == '') ? '' :
41483                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
41484             
41485             if(!this.allowZero && v === '0') {
41486                 this.hiddenEl().dom.value = '';
41487                 this.inputEl().dom.value = '';
41488             }
41489             
41490             this.validate();
41491         }
41492     },
41493     
41494     getRawValue : function()
41495     {
41496         var v = this.inputEl().getValue();
41497         
41498         return v;
41499     },
41500     
41501     getValue : function()
41502     {
41503         return this.fixPrecision(this.parseValue(this.getRawValue()));
41504     },
41505     
41506     parseValue : function(value)
41507     {
41508         if(this.thousandsDelimiter) {
41509             value += "";
41510             r = new RegExp(",", "g");
41511             value = value.replace(r, "");
41512         }
41513         
41514         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
41515         return isNaN(value) ? '' : value;
41516         
41517     },
41518     
41519     fixPrecision : function(value)
41520     {
41521         if(this.thousandsDelimiter) {
41522             value += "";
41523             r = new RegExp(",", "g");
41524             value = value.replace(r, "");
41525         }
41526         
41527         var nan = isNaN(value);
41528         
41529         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
41530             return nan ? '' : value;
41531         }
41532         return parseFloat(value).toFixed(this.decimalPrecision);
41533     },
41534     
41535     decimalPrecisionFcn : function(v)
41536     {
41537         return Math.floor(v);
41538     },
41539     
41540     validateValue : function(value)
41541     {
41542         if(!Roo.bootstrap.MoneyField.superclass.validateValue.call(this, value)){
41543             return false;
41544         }
41545         
41546         var num = this.parseValue(value);
41547         
41548         if(isNaN(num)){
41549             this.markInvalid(String.format(this.nanText, value));
41550             return false;
41551         }
41552         
41553         if(num < this.minValue){
41554             this.markInvalid(String.format(this.minText, this.minValue));
41555             return false;
41556         }
41557         
41558         if(num > this.maxValue){
41559             this.markInvalid(String.format(this.maxText, this.maxValue));
41560             return false;
41561         }
41562         
41563         return true;
41564     },
41565     
41566     validate : function()
41567     {
41568         if(this.disabled || this.allowBlank){
41569             this.markValid();
41570             return true;
41571         }
41572         
41573         var currency = this.getCurrency();
41574         
41575         if(this.validateValue(this.getRawValue()) && currency.length){
41576             this.markValid();
41577             return true;
41578         }
41579         
41580         this.markInvalid();
41581         return false;
41582     },
41583     
41584     getName: function()
41585     {
41586         return this.name;
41587     },
41588     
41589     beforeBlur : function()
41590     {
41591         if(!this.castInt){
41592             return;
41593         }
41594         
41595         var v = this.parseValue(this.getRawValue());
41596         
41597         if(v || v == 0){
41598             this.setValue(v);
41599         }
41600     },
41601     
41602     onBlur : function()
41603     {
41604         this.beforeBlur();
41605         
41606         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
41607             //this.el.removeClass(this.focusClass);
41608         }
41609         
41610         this.hasFocus = false;
41611         
41612         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
41613             this.validate();
41614         }
41615         
41616         var v = this.getValue();
41617         
41618         if(String(v) !== String(this.startValue)){
41619             this.fireEvent('change', this, v, this.startValue);
41620         }
41621         
41622         this.fireEvent("blur", this);
41623     },
41624     
41625     inputEl : function()
41626     {
41627         return this.el.select('.roo-money-amount-input', true).first();
41628     },
41629     
41630     currencyEl : function()
41631     {
41632         return this.el.select('.roo-money-currency-input', true).first();
41633     },
41634     
41635     hiddenEl : function()
41636     {
41637         return this.el.select('input.hidden-number-input',true).first();
41638     }
41639     
41640 });/**
41641  * @class Roo.bootstrap.BezierSignature
41642  * @extends Roo.bootstrap.Component
41643  * Bootstrap BezierSignature class
41644  * This script refer to:
41645  *    Title: Signature Pad
41646  *    Author: szimek
41647  *    Availability: https://github.com/szimek/signature_pad
41648  *
41649  * @constructor
41650  * Create a new BezierSignature
41651  * @param {Object} config The config object
41652  */
41653
41654 Roo.bootstrap.BezierSignature = function(config){
41655     Roo.bootstrap.BezierSignature.superclass.constructor.call(this, config);
41656     this.addEvents({
41657         "resize" : true
41658     });
41659 };
41660
41661 Roo.extend(Roo.bootstrap.BezierSignature, Roo.bootstrap.Component,
41662 {
41663      
41664     curve_data: [],
41665     
41666     is_empty: true,
41667     
41668     mouse_btn_down: true,
41669     
41670     /**
41671      * @cfg {int} canvas height
41672      */
41673     canvas_height: '200px',
41674     
41675     /**
41676      * @cfg {float|function} Radius of a single dot.
41677      */ 
41678     dot_size: false,
41679     
41680     /**
41681      * @cfg {float} Minimum width of a line. Defaults to 0.5.
41682      */
41683     min_width: 0.5,
41684     
41685     /**
41686      * @cfg {float} Maximum width of a line. Defaults to 2.5.
41687      */
41688     max_width: 2.5,
41689     
41690     /**
41691      * @cfg {integer} Draw the next point at most once per every x milliseconds. Set it to 0 to turn off throttling. Defaults to 16.
41692      */
41693     throttle: 16,
41694     
41695     /**
41696      * @cfg {integer} Add the next point only if the previous one is farther than x pixels. Defaults to 5.
41697      */
41698     min_distance: 5,
41699     
41700     /**
41701      * @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.
41702      */
41703     bg_color: 'rgba(0, 0, 0, 0)',
41704     
41705     /**
41706      * @cfg {string} Color used to draw the lines. Can be any color format accepted by context.fillStyle. Defaults to "black".
41707      */
41708     dot_color: 'black',
41709     
41710     /**
41711      * @cfg {float} Weight used to modify new velocity based on the previous velocity. Defaults to 0.7.
41712      */ 
41713     velocity_filter_weight: 0.7,
41714     
41715     /**
41716      * @cfg {function} Callback when stroke begin. 
41717      */
41718     onBegin: false,
41719     
41720     /**
41721      * @cfg {function} Callback when stroke end.
41722      */
41723     onEnd: false,
41724     
41725     getAutoCreate : function()
41726     {
41727         var cls = 'roo-signature column';
41728         
41729         if(this.cls){
41730             cls += ' ' + this.cls;
41731         }
41732         
41733         var col_sizes = [
41734             'lg',
41735             'md',
41736             'sm',
41737             'xs'
41738         ];
41739         
41740         for(var i = 0; i < col_sizes.length; i++) {
41741             if(this[col_sizes[i]]) {
41742                 cls += " col-"+col_sizes[i]+"-"+this[col_sizes[i]];
41743             }
41744         }
41745         
41746         var cfg = {
41747             tag: 'div',
41748             cls: cls,
41749             cn: [
41750                 {
41751                     tag: 'div',
41752                     cls: 'roo-signature-body',
41753                     cn: [
41754                         {
41755                             tag: 'canvas',
41756                             cls: 'roo-signature-body-canvas',
41757                             height: this.canvas_height,
41758                             width: this.canvas_width
41759                         }
41760                     ]
41761                 },
41762                 {
41763                     tag: 'input',
41764                     type: 'file',
41765                     style: 'display: none'
41766                 }
41767             ]
41768         };
41769         
41770         return cfg;
41771     },
41772     
41773     initEvents: function() 
41774     {
41775         Roo.bootstrap.BezierSignature.superclass.initEvents.call(this);
41776         
41777         var canvas = this.canvasEl();
41778         
41779         // mouse && touch event swapping...
41780         canvas.dom.style.touchAction = 'none';
41781         canvas.dom.style.msTouchAction = 'none';
41782         
41783         this.mouse_btn_down = false;
41784         canvas.on('mousedown', this._handleMouseDown, this);
41785         canvas.on('mousemove', this._handleMouseMove, this);
41786         Roo.select('html').first().on('mouseup', this._handleMouseUp, this);
41787         
41788         if (window.PointerEvent) {
41789             canvas.on('pointerdown', this._handleMouseDown, this);
41790             canvas.on('pointermove', this._handleMouseMove, this);
41791             Roo.select('html').first().on('pointerup', this._handleMouseUp, this);
41792         }
41793         
41794         if ('ontouchstart' in window) {
41795             canvas.on('touchstart', this._handleTouchStart, this);
41796             canvas.on('touchmove', this._handleTouchMove, this);
41797             canvas.on('touchend', this._handleTouchEnd, this);
41798         }
41799         
41800         Roo.EventManager.onWindowResize(this.resize, this, true);
41801         
41802         // file input event
41803         this.fileEl().on('change', this.uploadImage, this);
41804         
41805         this.clear();
41806         
41807         this.resize();
41808     },
41809     
41810     resize: function(){
41811         
41812         var canvas = this.canvasEl().dom;
41813         var ctx = this.canvasElCtx();
41814         var img_data = false;
41815         
41816         if(canvas.width > 0) {
41817             var img_data = ctx.getImageData(0, 0, canvas.width, canvas.height);
41818         }
41819         // setting canvas width will clean img data
41820         canvas.width = 0;
41821         
41822         var style = window.getComputedStyle ? 
41823             getComputedStyle(this.el.dom, null) : this.el.dom.currentStyle;
41824             
41825         var padding_left = parseInt(style.paddingLeft) || 0;
41826         var padding_right = parseInt(style.paddingRight) || 0;
41827         
41828         canvas.width = this.el.dom.clientWidth - padding_left - padding_right;
41829         
41830         if(img_data) {
41831             ctx.putImageData(img_data, 0, 0);
41832         }
41833     },
41834     
41835     _handleMouseDown: function(e)
41836     {
41837         if (e.browserEvent.which === 1) {
41838             this.mouse_btn_down = true;
41839             this.strokeBegin(e);
41840         }
41841     },
41842     
41843     _handleMouseMove: function (e)
41844     {
41845         if (this.mouse_btn_down) {
41846             this.strokeMoveUpdate(e);
41847         }
41848     },
41849     
41850     _handleMouseUp: function (e)
41851     {
41852         if (e.browserEvent.which === 1 && this.mouse_btn_down) {
41853             this.mouse_btn_down = false;
41854             this.strokeEnd(e);
41855         }
41856     },
41857     
41858     _handleTouchStart: function (e) {
41859         
41860         e.preventDefault();
41861         if (e.browserEvent.targetTouches.length === 1) {
41862             // var touch = e.browserEvent.changedTouches[0];
41863             // this.strokeBegin(touch);
41864             
41865              this.strokeBegin(e); // assume e catching the correct xy...
41866         }
41867     },
41868     
41869     _handleTouchMove: function (e) {
41870         e.preventDefault();
41871         // var touch = event.targetTouches[0];
41872         // _this._strokeMoveUpdate(touch);
41873         this.strokeMoveUpdate(e);
41874     },
41875     
41876     _handleTouchEnd: function (e) {
41877         var wasCanvasTouched = e.target === this.canvasEl().dom;
41878         if (wasCanvasTouched) {
41879             e.preventDefault();
41880             // var touch = event.changedTouches[0];
41881             // _this._strokeEnd(touch);
41882             this.strokeEnd(e);
41883         }
41884     },
41885     
41886     reset: function () {
41887         this._lastPoints = [];
41888         this._lastVelocity = 0;
41889         this._lastWidth = (this.min_width + this.max_width) / 2;
41890         this.canvasElCtx().fillStyle = this.dot_color;
41891     },
41892     
41893     strokeMoveUpdate: function(e)
41894     {
41895         this.strokeUpdate(e);
41896         
41897         if (this.throttle) {
41898             this.throttleStroke(this.strokeUpdate, this.throttle);
41899         }
41900         else {
41901             this.strokeUpdate(e);
41902         }
41903     },
41904     
41905     strokeBegin: function(e)
41906     {
41907         var newPointGroup = {
41908             color: this.dot_color,
41909             points: []
41910         };
41911         
41912         if (typeof this.onBegin === 'function') {
41913             this.onBegin(e);
41914         }
41915         
41916         this.curve_data.push(newPointGroup);
41917         this.reset();
41918         this.strokeUpdate(e);
41919     },
41920     
41921     strokeUpdate: function(e)
41922     {
41923         var rect = this.canvasEl().dom.getBoundingClientRect();
41924         var point = new this.Point(e.xy[0] - rect.left, e.xy[1] - rect.top, new Date().getTime());
41925         var lastPointGroup = this.curve_data[this.curve_data.length - 1];
41926         var lastPoints = lastPointGroup.points;
41927         var lastPoint = lastPoints.length > 0 && lastPoints[lastPoints.length - 1];
41928         var isLastPointTooClose = lastPoint
41929             ? point.distanceTo(lastPoint) <= this.min_distance
41930             : false;
41931         var color = lastPointGroup.color;
41932         if (!lastPoint || !(lastPoint && isLastPointTooClose)) {
41933             var curve = this.addPoint(point);
41934             if (!lastPoint) {
41935                 this.drawDot({color: color, point: point});
41936             }
41937             else if (curve) {
41938                 this.drawCurve({color: color, curve: curve});
41939             }
41940             lastPoints.push({
41941                 time: point.time,
41942                 x: point.x,
41943                 y: point.y
41944             });
41945         }
41946     },
41947     
41948     strokeEnd: function(e)
41949     {
41950         this.strokeUpdate(e);
41951         if (typeof this.onEnd === 'function') {
41952             this.onEnd(e);
41953         }
41954     },
41955     
41956     addPoint:  function (point) {
41957         var _lastPoints = this._lastPoints;
41958         _lastPoints.push(point);
41959         if (_lastPoints.length > 2) {
41960             if (_lastPoints.length === 3) {
41961                 _lastPoints.unshift(_lastPoints[0]);
41962             }
41963             var widths = this.calculateCurveWidths(_lastPoints[1], _lastPoints[2]);
41964             var curve = this.Bezier.fromPoints(_lastPoints, widths, this);
41965             _lastPoints.shift();
41966             return curve;
41967         }
41968         return null;
41969     },
41970     
41971     calculateCurveWidths: function (startPoint, endPoint) {
41972         var velocity = this.velocity_filter_weight * endPoint.velocityFrom(startPoint) +
41973             (1 - this.velocity_filter_weight) * this._lastVelocity;
41974
41975         var newWidth = Math.max(this.max_width / (velocity + 1), this.min_width);
41976         var widths = {
41977             end: newWidth,
41978             start: this._lastWidth
41979         };
41980         
41981         this._lastVelocity = velocity;
41982         this._lastWidth = newWidth;
41983         return widths;
41984     },
41985     
41986     drawDot: function (_a) {
41987         var color = _a.color, point = _a.point;
41988         var ctx = this.canvasElCtx();
41989         var width = typeof this.dot_size === 'function' ? this.dot_size() : this.dot_size;
41990         ctx.beginPath();
41991         this.drawCurveSegment(point.x, point.y, width);
41992         ctx.closePath();
41993         ctx.fillStyle = color;
41994         ctx.fill();
41995     },
41996     
41997     drawCurve: function (_a) {
41998         var color = _a.color, curve = _a.curve;
41999         var ctx = this.canvasElCtx();
42000         var widthDelta = curve.endWidth - curve.startWidth;
42001         var drawSteps = Math.floor(curve.length()) * 2;
42002         ctx.beginPath();
42003         ctx.fillStyle = color;
42004         for (var i = 0; i < drawSteps; i += 1) {
42005         var t = i / drawSteps;
42006         var tt = t * t;
42007         var ttt = tt * t;
42008         var u = 1 - t;
42009         var uu = u * u;
42010         var uuu = uu * u;
42011         var x = uuu * curve.startPoint.x;
42012         x += 3 * uu * t * curve.control1.x;
42013         x += 3 * u * tt * curve.control2.x;
42014         x += ttt * curve.endPoint.x;
42015         var y = uuu * curve.startPoint.y;
42016         y += 3 * uu * t * curve.control1.y;
42017         y += 3 * u * tt * curve.control2.y;
42018         y += ttt * curve.endPoint.y;
42019         var width = curve.startWidth + ttt * widthDelta;
42020         this.drawCurveSegment(x, y, width);
42021         }
42022         ctx.closePath();
42023         ctx.fill();
42024     },
42025     
42026     drawCurveSegment: function (x, y, width) {
42027         var ctx = this.canvasElCtx();
42028         ctx.moveTo(x, y);
42029         ctx.arc(x, y, width, 0, 2 * Math.PI, false);
42030         this.is_empty = false;
42031     },
42032     
42033     clear: function()
42034     {
42035         var ctx = this.canvasElCtx();
42036         var canvas = this.canvasEl().dom;
42037         ctx.fillStyle = this.bg_color;
42038         ctx.clearRect(0, 0, canvas.width, canvas.height);
42039         ctx.fillRect(0, 0, canvas.width, canvas.height);
42040         this.curve_data = [];
42041         this.reset();
42042         this.is_empty = true;
42043     },
42044     
42045     fileEl: function()
42046     {
42047         return  this.el.select('input',true).first();
42048     },
42049     
42050     canvasEl: function()
42051     {
42052         return this.el.select('canvas',true).first();
42053     },
42054     
42055     canvasElCtx: function()
42056     {
42057         return this.el.select('canvas',true).first().dom.getContext('2d');
42058     },
42059     
42060     getImage: function(type)
42061     {
42062         if(this.is_empty) {
42063             return false;
42064         }
42065         
42066         // encryption ?
42067         return this.canvasEl().dom.toDataURL('image/'+type, 1);
42068     },
42069     
42070     drawFromImage: function(img_src)
42071     {
42072         var img = new Image();
42073         
42074         img.onload = function(){
42075             this.canvasElCtx().drawImage(img, 0, 0);
42076         }.bind(this);
42077         
42078         img.src = img_src;
42079         
42080         this.is_empty = false;
42081     },
42082     
42083     selectImage: function()
42084     {
42085         this.fileEl().dom.click();
42086     },
42087     
42088     uploadImage: function(e)
42089     {
42090         var reader = new FileReader();
42091         
42092         reader.onload = function(e){
42093             var img = new Image();
42094             img.onload = function(){
42095                 this.reset();
42096                 this.canvasElCtx().drawImage(img, 0, 0);
42097             }.bind(this);
42098             img.src = e.target.result;
42099         }.bind(this);
42100         
42101         reader.readAsDataURL(e.target.files[0]);
42102     },
42103     
42104     // Bezier Point Constructor
42105     Point: (function () {
42106         function Point(x, y, time) {
42107             this.x = x;
42108             this.y = y;
42109             this.time = time || Date.now();
42110         }
42111         Point.prototype.distanceTo = function (start) {
42112             return Math.sqrt(Math.pow(this.x - start.x, 2) + Math.pow(this.y - start.y, 2));
42113         };
42114         Point.prototype.equals = function (other) {
42115             return this.x === other.x && this.y === other.y && this.time === other.time;
42116         };
42117         Point.prototype.velocityFrom = function (start) {
42118             return this.time !== start.time
42119             ? this.distanceTo(start) / (this.time - start.time)
42120             : 0;
42121         };
42122         return Point;
42123     }()),
42124     
42125     
42126     // Bezier Constructor
42127     Bezier: (function () {
42128         function Bezier(startPoint, control2, control1, endPoint, startWidth, endWidth) {
42129             this.startPoint = startPoint;
42130             this.control2 = control2;
42131             this.control1 = control1;
42132             this.endPoint = endPoint;
42133             this.startWidth = startWidth;
42134             this.endWidth = endWidth;
42135         }
42136         Bezier.fromPoints = function (points, widths, scope) {
42137             var c2 = this.calculateControlPoints(points[0], points[1], points[2], scope).c2;
42138             var c3 = this.calculateControlPoints(points[1], points[2], points[3], scope).c1;
42139             return new Bezier(points[1], c2, c3, points[2], widths.start, widths.end);
42140         };
42141         Bezier.calculateControlPoints = function (s1, s2, s3, scope) {
42142             var dx1 = s1.x - s2.x;
42143             var dy1 = s1.y - s2.y;
42144             var dx2 = s2.x - s3.x;
42145             var dy2 = s2.y - s3.y;
42146             var m1 = { x: (s1.x + s2.x) / 2.0, y: (s1.y + s2.y) / 2.0 };
42147             var m2 = { x: (s2.x + s3.x) / 2.0, y: (s2.y + s3.y) / 2.0 };
42148             var l1 = Math.sqrt(dx1 * dx1 + dy1 * dy1);
42149             var l2 = Math.sqrt(dx2 * dx2 + dy2 * dy2);
42150             var dxm = m1.x - m2.x;
42151             var dym = m1.y - m2.y;
42152             var k = l2 / (l1 + l2);
42153             var cm = { x: m2.x + dxm * k, y: m2.y + dym * k };
42154             var tx = s2.x - cm.x;
42155             var ty = s2.y - cm.y;
42156             return {
42157                 c1: new scope.Point(m1.x + tx, m1.y + ty),
42158                 c2: new scope.Point(m2.x + tx, m2.y + ty)
42159             };
42160         };
42161         Bezier.prototype.length = function () {
42162             var steps = 10;
42163             var length = 0;
42164             var px;
42165             var py;
42166             for (var i = 0; i <= steps; i += 1) {
42167                 var t = i / steps;
42168                 var cx = this.point(t, this.startPoint.x, this.control1.x, this.control2.x, this.endPoint.x);
42169                 var cy = this.point(t, this.startPoint.y, this.control1.y, this.control2.y, this.endPoint.y);
42170                 if (i > 0) {
42171                     var xdiff = cx - px;
42172                     var ydiff = cy - py;
42173                     length += Math.sqrt(xdiff * xdiff + ydiff * ydiff);
42174                 }
42175                 px = cx;
42176                 py = cy;
42177             }
42178             return length;
42179         };
42180         Bezier.prototype.point = function (t, start, c1, c2, end) {
42181             return (start * (1.0 - t) * (1.0 - t) * (1.0 - t))
42182             + (3.0 * c1 * (1.0 - t) * (1.0 - t) * t)
42183             + (3.0 * c2 * (1.0 - t) * t * t)
42184             + (end * t * t * t);
42185         };
42186         return Bezier;
42187     }()),
42188     
42189     throttleStroke: function(fn, wait) {
42190       if (wait === void 0) { wait = 250; }
42191       var previous = 0;
42192       var timeout = null;
42193       var result;
42194       var storedContext;
42195       var storedArgs;
42196       var later = function () {
42197           previous = Date.now();
42198           timeout = null;
42199           result = fn.apply(storedContext, storedArgs);
42200           if (!timeout) {
42201               storedContext = null;
42202               storedArgs = [];
42203           }
42204       };
42205       return function wrapper() {
42206           var args = [];
42207           for (var _i = 0; _i < arguments.length; _i++) {
42208               args[_i] = arguments[_i];
42209           }
42210           var now = Date.now();
42211           var remaining = wait - (now - previous);
42212           storedContext = this;
42213           storedArgs = args;
42214           if (remaining <= 0 || remaining > wait) {
42215               if (timeout) {
42216                   clearTimeout(timeout);
42217                   timeout = null;
42218               }
42219               previous = now;
42220               result = fn.apply(storedContext, storedArgs);
42221               if (!timeout) {
42222                   storedContext = null;
42223                   storedArgs = [];
42224               }
42225           }
42226           else if (!timeout) {
42227               timeout = window.setTimeout(later, remaining);
42228           }
42229           return result;
42230       };
42231   }
42232   
42233 });
42234
42235  
42236
42237