sync
[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      * using 'cn' the nested child reader read the child array into it's child stores.
11831      * @param {Object} rec The record with a 'children array
11832      */
11833     loadDataFromChildren : function(rec)
11834     {
11835         this.loadData(this.reader.toLoadData(rec));
11836     },
11837     
11838
11839     /**
11840      * Gets the number of cached records.
11841      * <p>
11842      * <em>If using paging, this may not be the total size of the dataset. If the data object
11843      * used by the Reader contains the dataset size, then the getTotalCount() function returns
11844      * the data set size</em>
11845      */
11846     getCount : function(){
11847         return this.data.length || 0;
11848     },
11849
11850     /**
11851      * Gets the total number of records in the dataset as returned by the server.
11852      * <p>
11853      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
11854      * the dataset size</em>
11855      */
11856     getTotalCount : function(){
11857         return this.totalLength || 0;
11858     },
11859
11860     /**
11861      * Returns the sort state of the Store as an object with two properties:
11862      * <pre><code>
11863  field {String} The name of the field by which the Records are sorted
11864  direction {String} The sort order, "ASC" or "DESC"
11865      * </code></pre>
11866      */
11867     getSortState : function(){
11868         return this.sortInfo;
11869     },
11870
11871     // private
11872     applySort : function(){
11873         if(this.sortInfo && !this.remoteSort){
11874             var s = this.sortInfo, f = s.field;
11875             var st = this.fields.get(f).sortType;
11876             var fn = function(r1, r2){
11877                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
11878                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
11879             };
11880             this.data.sort(s.direction, fn);
11881             if(this.snapshot && this.snapshot != this.data){
11882                 this.snapshot.sort(s.direction, fn);
11883             }
11884         }
11885     },
11886
11887     /**
11888      * Sets the default sort column and order to be used by the next load operation.
11889      * @param {String} fieldName The name of the field to sort by.
11890      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
11891      */
11892     setDefaultSort : function(field, dir){
11893         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
11894     },
11895
11896     /**
11897      * Sort the Records.
11898      * If remote sorting is used, the sort is performed on the server, and the cache is
11899      * reloaded. If local sorting is used, the cache is sorted internally.
11900      * @param {String} fieldName The name of the field to sort by.
11901      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
11902      */
11903     sort : function(fieldName, dir){
11904         var f = this.fields.get(fieldName);
11905         if(!dir){
11906             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
11907             
11908             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
11909                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
11910             }else{
11911                 dir = f.sortDir;
11912             }
11913         }
11914         this.sortToggle[f.name] = dir;
11915         this.sortInfo = {field: f.name, direction: dir};
11916         if(!this.remoteSort){
11917             this.applySort();
11918             this.fireEvent("datachanged", this);
11919         }else{
11920             this.load(this.lastOptions);
11921         }
11922     },
11923
11924     /**
11925      * Calls the specified function for each of the Records in the cache.
11926      * @param {Function} fn The function to call. The Record is passed as the first parameter.
11927      * Returning <em>false</em> aborts and exits the iteration.
11928      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
11929      */
11930     each : function(fn, scope){
11931         this.data.each(fn, scope);
11932     },
11933
11934     /**
11935      * Gets all records modified since the last commit.  Modified records are persisted across load operations
11936      * (e.g., during paging).
11937      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
11938      */
11939     getModifiedRecords : function(){
11940         return this.modified;
11941     },
11942
11943     // private
11944     createFilterFn : function(property, value, anyMatch){
11945         if(!value.exec){ // not a regex
11946             value = String(value);
11947             if(value.length == 0){
11948                 return false;
11949             }
11950             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
11951         }
11952         return function(r){
11953             return value.test(r.data[property]);
11954         };
11955     },
11956
11957     /**
11958      * Sums the value of <i>property</i> for each record between start and end and returns the result.
11959      * @param {String} property A field on your records
11960      * @param {Number} start The record index to start at (defaults to 0)
11961      * @param {Number} end The last record index to include (defaults to length - 1)
11962      * @return {Number} The sum
11963      */
11964     sum : function(property, start, end){
11965         var rs = this.data.items, v = 0;
11966         start = start || 0;
11967         end = (end || end === 0) ? end : rs.length-1;
11968
11969         for(var i = start; i <= end; i++){
11970             v += (rs[i].data[property] || 0);
11971         }
11972         return v;
11973     },
11974
11975     /**
11976      * Filter the records by a specified property.
11977      * @param {String} field A field on your records
11978      * @param {String/RegExp} value Either a string that the field
11979      * should start with or a RegExp to test against the field
11980      * @param {Boolean} anyMatch True to match any part not just the beginning
11981      */
11982     filter : function(property, value, anyMatch){
11983         var fn = this.createFilterFn(property, value, anyMatch);
11984         return fn ? this.filterBy(fn) : this.clearFilter();
11985     },
11986
11987     /**
11988      * Filter by a function. The specified function will be called with each
11989      * record in this data source. If the function returns true the record is included,
11990      * otherwise it is filtered.
11991      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
11992      * @param {Object} scope (optional) The scope of the function (defaults to this)
11993      */
11994     filterBy : function(fn, scope){
11995         this.snapshot = this.snapshot || this.data;
11996         this.data = this.queryBy(fn, scope||this);
11997         this.fireEvent("datachanged", this);
11998     },
11999
12000     /**
12001      * Query the records by a specified property.
12002      * @param {String} field A field on your records
12003      * @param {String/RegExp} value Either a string that the field
12004      * should start with or a RegExp to test against the field
12005      * @param {Boolean} anyMatch True to match any part not just the beginning
12006      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
12007      */
12008     query : function(property, value, anyMatch){
12009         var fn = this.createFilterFn(property, value, anyMatch);
12010         return fn ? this.queryBy(fn) : this.data.clone();
12011     },
12012
12013     /**
12014      * Query by a function. The specified function will be called with each
12015      * record in this data source. If the function returns true the record is included
12016      * in the results.
12017      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
12018      * @param {Object} scope (optional) The scope of the function (defaults to this)
12019       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
12020      **/
12021     queryBy : function(fn, scope){
12022         var data = this.snapshot || this.data;
12023         return data.filterBy(fn, scope||this);
12024     },
12025
12026     /**
12027      * Collects unique values for a particular dataIndex from this store.
12028      * @param {String} dataIndex The property to collect
12029      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
12030      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
12031      * @return {Array} An array of the unique values
12032      **/
12033     collect : function(dataIndex, allowNull, bypassFilter){
12034         var d = (bypassFilter === true && this.snapshot) ?
12035                 this.snapshot.items : this.data.items;
12036         var v, sv, r = [], l = {};
12037         for(var i = 0, len = d.length; i < len; i++){
12038             v = d[i].data[dataIndex];
12039             sv = String(v);
12040             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
12041                 l[sv] = true;
12042                 r[r.length] = v;
12043             }
12044         }
12045         return r;
12046     },
12047
12048     /**
12049      * Revert to a view of the Record cache with no filtering applied.
12050      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
12051      */
12052     clearFilter : function(suppressEvent){
12053         if(this.snapshot && this.snapshot != this.data){
12054             this.data = this.snapshot;
12055             delete this.snapshot;
12056             if(suppressEvent !== true){
12057                 this.fireEvent("datachanged", this);
12058             }
12059         }
12060     },
12061
12062     // private
12063     afterEdit : function(record){
12064         if(this.modified.indexOf(record) == -1){
12065             this.modified.push(record);
12066         }
12067         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
12068     },
12069     
12070     // private
12071     afterReject : function(record){
12072         this.modified.remove(record);
12073         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
12074     },
12075
12076     // private
12077     afterCommit : function(record){
12078         this.modified.remove(record);
12079         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
12080     },
12081
12082     /**
12083      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
12084      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
12085      */
12086     commitChanges : function(){
12087         var m = this.modified.slice(0);
12088         this.modified = [];
12089         for(var i = 0, len = m.length; i < len; i++){
12090             m[i].commit();
12091         }
12092     },
12093
12094     /**
12095      * Cancel outstanding changes on all changed records.
12096      */
12097     rejectChanges : function(){
12098         var m = this.modified.slice(0);
12099         this.modified = [];
12100         for(var i = 0, len = m.length; i < len; i++){
12101             m[i].reject();
12102         }
12103     },
12104
12105     onMetaChange : function(meta, rtype, o){
12106         this.recordType = rtype;
12107         this.fields = rtype.prototype.fields;
12108         delete this.snapshot;
12109         this.sortInfo = meta.sortInfo || this.sortInfo;
12110         this.modified = [];
12111         this.fireEvent('metachange', this, this.reader.meta);
12112     },
12113     
12114     moveIndex : function(data, type)
12115     {
12116         var index = this.indexOf(data);
12117         
12118         var newIndex = index + type;
12119         
12120         this.remove(data);
12121         
12122         this.insert(newIndex, data);
12123         
12124     }
12125 });/*
12126  * Based on:
12127  * Ext JS Library 1.1.1
12128  * Copyright(c) 2006-2007, Ext JS, LLC.
12129  *
12130  * Originally Released Under LGPL - original licence link has changed is not relivant.
12131  *
12132  * Fork - LGPL
12133  * <script type="text/javascript">
12134  */
12135
12136 /**
12137  * @class Roo.data.SimpleStore
12138  * @extends Roo.data.Store
12139  * Small helper class to make creating Stores from Array data easier.
12140  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
12141  * @cfg {Array} fields An array of field definition objects, or field name strings.
12142  * @cfg {Object} an existing reader (eg. copied from another store)
12143  * @cfg {Array} data The multi-dimensional array of data
12144  * @constructor
12145  * @param {Object} config
12146  */
12147 Roo.data.SimpleStore = function(config)
12148 {
12149     Roo.data.SimpleStore.superclass.constructor.call(this, {
12150         isLocal : true,
12151         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
12152                 id: config.id
12153             },
12154             Roo.data.Record.create(config.fields)
12155         ),
12156         proxy : new Roo.data.MemoryProxy(config.data)
12157     });
12158     this.load();
12159 };
12160 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
12161  * Based on:
12162  * Ext JS Library 1.1.1
12163  * Copyright(c) 2006-2007, Ext JS, LLC.
12164  *
12165  * Originally Released Under LGPL - original licence link has changed is not relivant.
12166  *
12167  * Fork - LGPL
12168  * <script type="text/javascript">
12169  */
12170
12171 /**
12172 /**
12173  * @extends Roo.data.Store
12174  * @class Roo.data.JsonStore
12175  * Small helper class to make creating Stores for JSON data easier. <br/>
12176 <pre><code>
12177 var store = new Roo.data.JsonStore({
12178     url: 'get-images.php',
12179     root: 'images',
12180     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
12181 });
12182 </code></pre>
12183  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
12184  * JsonReader and HttpProxy (unless inline data is provided).</b>
12185  * @cfg {Array} fields An array of field definition objects, or field name strings.
12186  * @constructor
12187  * @param {Object} config
12188  */
12189 Roo.data.JsonStore = function(c){
12190     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
12191         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
12192         reader: new Roo.data.JsonReader(c, c.fields)
12193     }));
12194 };
12195 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
12196  * Based on:
12197  * Ext JS Library 1.1.1
12198  * Copyright(c) 2006-2007, Ext JS, LLC.
12199  *
12200  * Originally Released Under LGPL - original licence link has changed is not relivant.
12201  *
12202  * Fork - LGPL
12203  * <script type="text/javascript">
12204  */
12205
12206  
12207 Roo.data.Field = function(config){
12208     if(typeof config == "string"){
12209         config = {name: config};
12210     }
12211     Roo.apply(this, config);
12212     
12213     if(!this.type){
12214         this.type = "auto";
12215     }
12216     
12217     var st = Roo.data.SortTypes;
12218     // named sortTypes are supported, here we look them up
12219     if(typeof this.sortType == "string"){
12220         this.sortType = st[this.sortType];
12221     }
12222     
12223     // set default sortType for strings and dates
12224     if(!this.sortType){
12225         switch(this.type){
12226             case "string":
12227                 this.sortType = st.asUCString;
12228                 break;
12229             case "date":
12230                 this.sortType = st.asDate;
12231                 break;
12232             default:
12233                 this.sortType = st.none;
12234         }
12235     }
12236
12237     // define once
12238     var stripRe = /[\$,%]/g;
12239
12240     // prebuilt conversion function for this field, instead of
12241     // switching every time we're reading a value
12242     if(!this.convert){
12243         var cv, dateFormat = this.dateFormat;
12244         switch(this.type){
12245             case "":
12246             case "auto":
12247             case undefined:
12248                 cv = function(v){ return v; };
12249                 break;
12250             case "string":
12251                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
12252                 break;
12253             case "int":
12254                 cv = function(v){
12255                     return v !== undefined && v !== null && v !== '' ?
12256                            parseInt(String(v).replace(stripRe, ""), 10) : '';
12257                     };
12258                 break;
12259             case "float":
12260                 cv = function(v){
12261                     return v !== undefined && v !== null && v !== '' ?
12262                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
12263                     };
12264                 break;
12265             case "bool":
12266             case "boolean":
12267                 cv = function(v){ return v === true || v === "true" || v == 1; };
12268                 break;
12269             case "date":
12270                 cv = function(v){
12271                     if(!v){
12272                         return '';
12273                     }
12274                     if(v instanceof Date){
12275                         return v;
12276                     }
12277                     if(dateFormat){
12278                         if(dateFormat == "timestamp"){
12279                             return new Date(v*1000);
12280                         }
12281                         return Date.parseDate(v, dateFormat);
12282                     }
12283                     var parsed = Date.parse(v);
12284                     return parsed ? new Date(parsed) : null;
12285                 };
12286              break;
12287             
12288         }
12289         this.convert = cv;
12290     }
12291 };
12292
12293 Roo.data.Field.prototype = {
12294     dateFormat: null,
12295     defaultValue: "",
12296     mapping: null,
12297     sortType : null,
12298     sortDir : "ASC"
12299 };/*
12300  * Based on:
12301  * Ext JS Library 1.1.1
12302  * Copyright(c) 2006-2007, Ext JS, LLC.
12303  *
12304  * Originally Released Under LGPL - original licence link has changed is not relivant.
12305  *
12306  * Fork - LGPL
12307  * <script type="text/javascript">
12308  */
12309  
12310 // Base class for reading structured data from a data source.  This class is intended to be
12311 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
12312
12313 /**
12314  * @class Roo.data.DataReader
12315  * Base class for reading structured data from a data source.  This class is intended to be
12316  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
12317  */
12318
12319 Roo.data.DataReader = function(meta, recordType){
12320     
12321     this.meta = meta;
12322     
12323     this.recordType = recordType instanceof Array ? 
12324         Roo.data.Record.create(recordType) : recordType;
12325 };
12326
12327 Roo.data.DataReader.prototype = {
12328     
12329     
12330     readerType : 'Data',
12331      /**
12332      * Create an empty record
12333      * @param {Object} data (optional) - overlay some values
12334      * @return {Roo.data.Record} record created.
12335      */
12336     newRow :  function(d) {
12337         var da =  {};
12338         this.recordType.prototype.fields.each(function(c) {
12339             switch( c.type) {
12340                 case 'int' : da[c.name] = 0; break;
12341                 case 'date' : da[c.name] = new Date(); break;
12342                 case 'float' : da[c.name] = 0.0; break;
12343                 case 'boolean' : da[c.name] = false; break;
12344                 default : da[c.name] = ""; break;
12345             }
12346             
12347         });
12348         return new this.recordType(Roo.apply(da, d));
12349     }
12350     
12351     
12352 };/*
12353  * Based on:
12354  * Ext JS Library 1.1.1
12355  * Copyright(c) 2006-2007, Ext JS, LLC.
12356  *
12357  * Originally Released Under LGPL - original licence link has changed is not relivant.
12358  *
12359  * Fork - LGPL
12360  * <script type="text/javascript">
12361  */
12362
12363 /**
12364  * @class Roo.data.DataProxy
12365  * @extends Roo.data.Observable
12366  * This class is an abstract base class for implementations which provide retrieval of
12367  * unformatted data objects.<br>
12368  * <p>
12369  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
12370  * (of the appropriate type which knows how to parse the data object) to provide a block of
12371  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
12372  * <p>
12373  * Custom implementations must implement the load method as described in
12374  * {@link Roo.data.HttpProxy#load}.
12375  */
12376 Roo.data.DataProxy = function(){
12377     this.addEvents({
12378         /**
12379          * @event beforeload
12380          * Fires before a network request is made to retrieve a data object.
12381          * @param {Object} This DataProxy object.
12382          * @param {Object} params The params parameter to the load function.
12383          */
12384         beforeload : true,
12385         /**
12386          * @event load
12387          * Fires before the load method's callback is called.
12388          * @param {Object} This DataProxy object.
12389          * @param {Object} o The data object.
12390          * @param {Object} arg The callback argument object passed to the load function.
12391          */
12392         load : true,
12393         /**
12394          * @event loadexception
12395          * Fires if an Exception occurs during data retrieval.
12396          * @param {Object} This DataProxy object.
12397          * @param {Object} o The data object.
12398          * @param {Object} arg The callback argument object passed to the load function.
12399          * @param {Object} e The Exception.
12400          */
12401         loadexception : true
12402     });
12403     Roo.data.DataProxy.superclass.constructor.call(this);
12404 };
12405
12406 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
12407
12408     /**
12409      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
12410      */
12411 /*
12412  * Based on:
12413  * Ext JS Library 1.1.1
12414  * Copyright(c) 2006-2007, Ext JS, LLC.
12415  *
12416  * Originally Released Under LGPL - original licence link has changed is not relivant.
12417  *
12418  * Fork - LGPL
12419  * <script type="text/javascript">
12420  */
12421 /**
12422  * @class Roo.data.MemoryProxy
12423  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
12424  * to the Reader when its load method is called.
12425  * @constructor
12426  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
12427  */
12428 Roo.data.MemoryProxy = function(data){
12429     if (data.data) {
12430         data = data.data;
12431     }
12432     Roo.data.MemoryProxy.superclass.constructor.call(this);
12433     this.data = data;
12434 };
12435
12436 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
12437     
12438     /**
12439      * Load data from the requested source (in this case an in-memory
12440      * data object passed to the constructor), read the data object into
12441      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12442      * process that block using the passed callback.
12443      * @param {Object} params This parameter is not used by the MemoryProxy class.
12444      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12445      * object into a block of Roo.data.Records.
12446      * @param {Function} callback The function into which to pass the block of Roo.data.records.
12447      * The function must be passed <ul>
12448      * <li>The Record block object</li>
12449      * <li>The "arg" argument from the load function</li>
12450      * <li>A boolean success indicator</li>
12451      * </ul>
12452      * @param {Object} scope The scope in which to call the callback
12453      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12454      */
12455     load : function(params, reader, callback, scope, arg){
12456         params = params || {};
12457         var result;
12458         try {
12459             result = reader.readRecords(params.data ? params.data :this.data);
12460         }catch(e){
12461             this.fireEvent("loadexception", this, arg, null, e);
12462             callback.call(scope, null, arg, false);
12463             return;
12464         }
12465         callback.call(scope, result, arg, true);
12466     },
12467     
12468     // private
12469     update : function(params, records){
12470         
12471     }
12472 });/*
12473  * Based on:
12474  * Ext JS Library 1.1.1
12475  * Copyright(c) 2006-2007, Ext JS, LLC.
12476  *
12477  * Originally Released Under LGPL - original licence link has changed is not relivant.
12478  *
12479  * Fork - LGPL
12480  * <script type="text/javascript">
12481  */
12482 /**
12483  * @class Roo.data.HttpProxy
12484  * @extends Roo.data.DataProxy
12485  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
12486  * configured to reference a certain URL.<br><br>
12487  * <p>
12488  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
12489  * from which the running page was served.<br><br>
12490  * <p>
12491  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
12492  * <p>
12493  * Be aware that to enable the browser to parse an XML document, the server must set
12494  * the Content-Type header in the HTTP response to "text/xml".
12495  * @constructor
12496  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
12497  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
12498  * will be used to make the request.
12499  */
12500 Roo.data.HttpProxy = function(conn){
12501     Roo.data.HttpProxy.superclass.constructor.call(this);
12502     // is conn a conn config or a real conn?
12503     this.conn = conn;
12504     this.useAjax = !conn || !conn.events;
12505   
12506 };
12507
12508 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
12509     // thse are take from connection...
12510     
12511     /**
12512      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
12513      */
12514     /**
12515      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
12516      * extra parameters to each request made by this object. (defaults to undefined)
12517      */
12518     /**
12519      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
12520      *  to each request made by this object. (defaults to undefined)
12521      */
12522     /**
12523      * @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)
12524      */
12525     /**
12526      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
12527      */
12528      /**
12529      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
12530      * @type Boolean
12531      */
12532   
12533
12534     /**
12535      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
12536      * @type Boolean
12537      */
12538     /**
12539      * Return the {@link Roo.data.Connection} object being used by this Proxy.
12540      * @return {Connection} The Connection object. This object may be used to subscribe to events on
12541      * a finer-grained basis than the DataProxy events.
12542      */
12543     getConnection : function(){
12544         return this.useAjax ? Roo.Ajax : this.conn;
12545     },
12546
12547     /**
12548      * Load data from the configured {@link Roo.data.Connection}, read the data object into
12549      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
12550      * process that block using the passed callback.
12551      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12552      * for the request to the remote server.
12553      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12554      * object into a block of Roo.data.Records.
12555      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12556      * The function must be passed <ul>
12557      * <li>The Record block object</li>
12558      * <li>The "arg" argument from the load function</li>
12559      * <li>A boolean success indicator</li>
12560      * </ul>
12561      * @param {Object} scope The scope in which to call the callback
12562      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12563      */
12564     load : function(params, reader, callback, scope, arg){
12565         if(this.fireEvent("beforeload", this, params) !== false){
12566             var  o = {
12567                 params : params || {},
12568                 request: {
12569                     callback : callback,
12570                     scope : scope,
12571                     arg : arg
12572                 },
12573                 reader: reader,
12574                 callback : this.loadResponse,
12575                 scope: this
12576             };
12577             if(this.useAjax){
12578                 Roo.applyIf(o, this.conn);
12579                 if(this.activeRequest){
12580                     Roo.Ajax.abort(this.activeRequest);
12581                 }
12582                 this.activeRequest = Roo.Ajax.request(o);
12583             }else{
12584                 this.conn.request(o);
12585             }
12586         }else{
12587             callback.call(scope||this, null, arg, false);
12588         }
12589     },
12590
12591     // private
12592     loadResponse : function(o, success, response){
12593         delete this.activeRequest;
12594         if(!success){
12595             this.fireEvent("loadexception", this, o, response);
12596             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12597             return;
12598         }
12599         var result;
12600         try {
12601             result = o.reader.read(response);
12602         }catch(e){
12603             this.fireEvent("loadexception", this, o, response, e);
12604             o.request.callback.call(o.request.scope, null, o.request.arg, false);
12605             return;
12606         }
12607         
12608         this.fireEvent("load", this, o, o.request.arg);
12609         o.request.callback.call(o.request.scope, result, o.request.arg, true);
12610     },
12611
12612     // private
12613     update : function(dataSet){
12614
12615     },
12616
12617     // private
12618     updateResponse : function(dataSet){
12619
12620     }
12621 });/*
12622  * Based on:
12623  * Ext JS Library 1.1.1
12624  * Copyright(c) 2006-2007, Ext JS, LLC.
12625  *
12626  * Originally Released Under LGPL - original licence link has changed is not relivant.
12627  *
12628  * Fork - LGPL
12629  * <script type="text/javascript">
12630  */
12631
12632 /**
12633  * @class Roo.data.ScriptTagProxy
12634  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
12635  * other than the originating domain of the running page.<br><br>
12636  * <p>
12637  * <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
12638  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
12639  * <p>
12640  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
12641  * source code that is used as the source inside a &lt;script> tag.<br><br>
12642  * <p>
12643  * In order for the browser to process the returned data, the server must wrap the data object
12644  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
12645  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
12646  * depending on whether the callback name was passed:
12647  * <p>
12648  * <pre><code>
12649 boolean scriptTag = false;
12650 String cb = request.getParameter("callback");
12651 if (cb != null) {
12652     scriptTag = true;
12653     response.setContentType("text/javascript");
12654 } else {
12655     response.setContentType("application/x-json");
12656 }
12657 Writer out = response.getWriter();
12658 if (scriptTag) {
12659     out.write(cb + "(");
12660 }
12661 out.print(dataBlock.toJsonString());
12662 if (scriptTag) {
12663     out.write(");");
12664 }
12665 </pre></code>
12666  *
12667  * @constructor
12668  * @param {Object} config A configuration object.
12669  */
12670 Roo.data.ScriptTagProxy = function(config){
12671     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
12672     Roo.apply(this, config);
12673     this.head = document.getElementsByTagName("head")[0];
12674 };
12675
12676 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
12677
12678 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
12679     /**
12680      * @cfg {String} url The URL from which to request the data object.
12681      */
12682     /**
12683      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
12684      */
12685     timeout : 30000,
12686     /**
12687      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
12688      * the server the name of the callback function set up by the load call to process the returned data object.
12689      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
12690      * javascript output which calls this named function passing the data object as its only parameter.
12691      */
12692     callbackParam : "callback",
12693     /**
12694      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
12695      * name to the request.
12696      */
12697     nocache : true,
12698
12699     /**
12700      * Load data from the configured URL, read the data object into
12701      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
12702      * process that block using the passed callback.
12703      * @param {Object} params An object containing properties which are to be used as HTTP parameters
12704      * for the request to the remote server.
12705      * @param {Roo.data.DataReader} reader The Reader object which converts the data
12706      * object into a block of Roo.data.Records.
12707      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
12708      * The function must be passed <ul>
12709      * <li>The Record block object</li>
12710      * <li>The "arg" argument from the load function</li>
12711      * <li>A boolean success indicator</li>
12712      * </ul>
12713      * @param {Object} scope The scope in which to call the callback
12714      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
12715      */
12716     load : function(params, reader, callback, scope, arg){
12717         if(this.fireEvent("beforeload", this, params) !== false){
12718
12719             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
12720
12721             var url = this.url;
12722             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
12723             if(this.nocache){
12724                 url += "&_dc=" + (new Date().getTime());
12725             }
12726             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
12727             var trans = {
12728                 id : transId,
12729                 cb : "stcCallback"+transId,
12730                 scriptId : "stcScript"+transId,
12731                 params : params,
12732                 arg : arg,
12733                 url : url,
12734                 callback : callback,
12735                 scope : scope,
12736                 reader : reader
12737             };
12738             var conn = this;
12739
12740             window[trans.cb] = function(o){
12741                 conn.handleResponse(o, trans);
12742             };
12743
12744             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
12745
12746             if(this.autoAbort !== false){
12747                 this.abort();
12748             }
12749
12750             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
12751
12752             var script = document.createElement("script");
12753             script.setAttribute("src", url);
12754             script.setAttribute("type", "text/javascript");
12755             script.setAttribute("id", trans.scriptId);
12756             this.head.appendChild(script);
12757
12758             this.trans = trans;
12759         }else{
12760             callback.call(scope||this, null, arg, false);
12761         }
12762     },
12763
12764     // private
12765     isLoading : function(){
12766         return this.trans ? true : false;
12767     },
12768
12769     /**
12770      * Abort the current server request.
12771      */
12772     abort : function(){
12773         if(this.isLoading()){
12774             this.destroyTrans(this.trans);
12775         }
12776     },
12777
12778     // private
12779     destroyTrans : function(trans, isLoaded){
12780         this.head.removeChild(document.getElementById(trans.scriptId));
12781         clearTimeout(trans.timeoutId);
12782         if(isLoaded){
12783             window[trans.cb] = undefined;
12784             try{
12785                 delete window[trans.cb];
12786             }catch(e){}
12787         }else{
12788             // if hasn't been loaded, wait for load to remove it to prevent script error
12789             window[trans.cb] = function(){
12790                 window[trans.cb] = undefined;
12791                 try{
12792                     delete window[trans.cb];
12793                 }catch(e){}
12794             };
12795         }
12796     },
12797
12798     // private
12799     handleResponse : function(o, trans){
12800         this.trans = false;
12801         this.destroyTrans(trans, true);
12802         var result;
12803         try {
12804             result = trans.reader.readRecords(o);
12805         }catch(e){
12806             this.fireEvent("loadexception", this, o, trans.arg, e);
12807             trans.callback.call(trans.scope||window, null, trans.arg, false);
12808             return;
12809         }
12810         this.fireEvent("load", this, o, trans.arg);
12811         trans.callback.call(trans.scope||window, result, trans.arg, true);
12812     },
12813
12814     // private
12815     handleFailure : function(trans){
12816         this.trans = false;
12817         this.destroyTrans(trans, false);
12818         this.fireEvent("loadexception", this, null, trans.arg);
12819         trans.callback.call(trans.scope||window, null, trans.arg, false);
12820     }
12821 });/*
12822  * Based on:
12823  * Ext JS Library 1.1.1
12824  * Copyright(c) 2006-2007, Ext JS, LLC.
12825  *
12826  * Originally Released Under LGPL - original licence link has changed is not relivant.
12827  *
12828  * Fork - LGPL
12829  * <script type="text/javascript">
12830  */
12831
12832 /**
12833  * @class Roo.data.JsonReader
12834  * @extends Roo.data.DataReader
12835  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
12836  * based on mappings in a provided Roo.data.Record constructor.
12837  * 
12838  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
12839  * in the reply previously. 
12840  * 
12841  * <p>
12842  * Example code:
12843  * <pre><code>
12844 var RecordDef = Roo.data.Record.create([
12845     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
12846     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
12847 ]);
12848 var myReader = new Roo.data.JsonReader({
12849     totalProperty: "results",    // The property which contains the total dataset size (optional)
12850     root: "rows",                // The property which contains an Array of row objects
12851     id: "id"                     // The property within each row object that provides an ID for the record (optional)
12852 }, RecordDef);
12853 </code></pre>
12854  * <p>
12855  * This would consume a JSON file like this:
12856  * <pre><code>
12857 { 'results': 2, 'rows': [
12858     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
12859     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
12860 }
12861 </code></pre>
12862  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
12863  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
12864  * paged from the remote server.
12865  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
12866  * @cfg {String} root name of the property which contains the Array of row objects.
12867  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
12868  * @cfg {Array} fields Array of field definition objects
12869  * @constructor
12870  * Create a new JsonReader
12871  * @param {Object} meta Metadata configuration options
12872  * @param {Object} recordType Either an Array of field definition objects,
12873  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
12874  */
12875 Roo.data.JsonReader = function(meta, recordType){
12876     
12877     meta = meta || {};
12878     // set some defaults:
12879     Roo.applyIf(meta, {
12880         totalProperty: 'total',
12881         successProperty : 'success',
12882         root : 'data',
12883         id : 'id'
12884     });
12885     
12886     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
12887 };
12888 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
12889     
12890     readerType : 'Json',
12891     
12892     /**
12893      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
12894      * Used by Store query builder to append _requestMeta to params.
12895      * 
12896      */
12897     metaFromRemote : false,
12898     /**
12899      * This method is only used by a DataProxy which has retrieved data from a remote server.
12900      * @param {Object} response The XHR object which contains the JSON data in its responseText.
12901      * @return {Object} data A data block which is used by an Roo.data.Store object as
12902      * a cache of Roo.data.Records.
12903      */
12904     read : function(response){
12905         var json = response.responseText;
12906        
12907         var o = /* eval:var:o */ eval("("+json+")");
12908         if(!o) {
12909             throw {message: "JsonReader.read: Json object not found"};
12910         }
12911         
12912         if(o.metaData){
12913             
12914             delete this.ef;
12915             this.metaFromRemote = true;
12916             this.meta = o.metaData;
12917             this.recordType = Roo.data.Record.create(o.metaData.fields);
12918             this.onMetaChange(this.meta, this.recordType, o);
12919         }
12920         return this.readRecords(o);
12921     },
12922
12923     // private function a store will implement
12924     onMetaChange : function(meta, recordType, o){
12925
12926     },
12927
12928     /**
12929          * @ignore
12930          */
12931     simpleAccess: function(obj, subsc) {
12932         return obj[subsc];
12933     },
12934
12935         /**
12936          * @ignore
12937          */
12938     getJsonAccessor: function(){
12939         var re = /[\[\.]/;
12940         return function(expr) {
12941             try {
12942                 return(re.test(expr))
12943                     ? new Function("obj", "return obj." + expr)
12944                     : function(obj){
12945                         return obj[expr];
12946                     };
12947             } catch(e){}
12948             return Roo.emptyFn;
12949         };
12950     }(),
12951
12952     /**
12953      * Create a data block containing Roo.data.Records from an XML document.
12954      * @param {Object} o An object which contains an Array of row objects in the property specified
12955      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
12956      * which contains the total size of the dataset.
12957      * @return {Object} data A data block which is used by an Roo.data.Store object as
12958      * a cache of Roo.data.Records.
12959      */
12960     readRecords : function(o){
12961         /**
12962          * After any data loads, the raw JSON data is available for further custom processing.
12963          * @type Object
12964          */
12965         this.o = o;
12966         var s = this.meta, Record = this.recordType,
12967             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
12968
12969 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
12970         if (!this.ef) {
12971             if(s.totalProperty) {
12972                     this.getTotal = this.getJsonAccessor(s.totalProperty);
12973                 }
12974                 if(s.successProperty) {
12975                     this.getSuccess = this.getJsonAccessor(s.successProperty);
12976                 }
12977                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
12978                 if (s.id) {
12979                         var g = this.getJsonAccessor(s.id);
12980                         this.getId = function(rec) {
12981                                 var r = g(rec);  
12982                                 return (r === undefined || r === "") ? null : r;
12983                         };
12984                 } else {
12985                         this.getId = function(){return null;};
12986                 }
12987             this.ef = [];
12988             for(var jj = 0; jj < fl; jj++){
12989                 f = fi[jj];
12990                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
12991                 this.ef[jj] = this.getJsonAccessor(map);
12992             }
12993         }
12994
12995         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
12996         if(s.totalProperty){
12997             var vt = parseInt(this.getTotal(o), 10);
12998             if(!isNaN(vt)){
12999                 totalRecords = vt;
13000             }
13001         }
13002         if(s.successProperty){
13003             var vs = this.getSuccess(o);
13004             if(vs === false || vs === 'false'){
13005                 success = false;
13006             }
13007         }
13008         var records = [];
13009         for(var i = 0; i < c; i++){
13010                 var n = root[i];
13011             var values = {};
13012             var id = this.getId(n);
13013             for(var j = 0; j < fl; j++){
13014                 f = fi[j];
13015             var v = this.ef[j](n);
13016             if (!f.convert) {
13017                 Roo.log('missing convert for ' + f.name);
13018                 Roo.log(f);
13019                 continue;
13020             }
13021             values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
13022             }
13023             var record = new Record(values, id);
13024             record.json = n;
13025             records[i] = record;
13026         }
13027         return {
13028             raw : o,
13029             success : success,
13030             records : records,
13031             totalRecords : totalRecords
13032         };
13033     },
13034     // used when loading children.. @see loadDataFromChildren
13035     toLoadData: function(rec)
13036     {
13037         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
13038         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
13039         return { data : data, total : data.length };
13040         
13041     }
13042 });/*
13043  * Based on:
13044  * Ext JS Library 1.1.1
13045  * Copyright(c) 2006-2007, Ext JS, LLC.
13046  *
13047  * Originally Released Under LGPL - original licence link has changed is not relivant.
13048  *
13049  * Fork - LGPL
13050  * <script type="text/javascript">
13051  */
13052
13053 /**
13054  * @class Roo.data.ArrayReader
13055  * @extends Roo.data.DataReader
13056  * Data reader class to create an Array of Roo.data.Record objects from an Array.
13057  * Each element of that Array represents a row of data fields. The
13058  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
13059  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
13060  * <p>
13061  * Example code:.
13062  * <pre><code>
13063 var RecordDef = Roo.data.Record.create([
13064     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
13065     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
13066 ]);
13067 var myReader = new Roo.data.ArrayReader({
13068     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
13069 }, RecordDef);
13070 </code></pre>
13071  * <p>
13072  * This would consume an Array like this:
13073  * <pre><code>
13074 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
13075   </code></pre>
13076  
13077  * @constructor
13078  * Create a new JsonReader
13079  * @param {Object} meta Metadata configuration options.
13080  * @param {Object|Array} recordType Either an Array of field definition objects
13081  * 
13082  * @cfg {Array} fields Array of field definition objects
13083  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
13084  * as specified to {@link Roo.data.Record#create},
13085  * or an {@link Roo.data.Record} object
13086  *
13087  * 
13088  * created using {@link Roo.data.Record#create}.
13089  */
13090 Roo.data.ArrayReader = function(meta, recordType)
13091 {    
13092     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
13093 };
13094
13095 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
13096     
13097       /**
13098      * Create a data block containing Roo.data.Records from an XML document.
13099      * @param {Object} o An Array of row objects which represents the dataset.
13100      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
13101      * a cache of Roo.data.Records.
13102      */
13103     readRecords : function(o)
13104     {
13105         var sid = this.meta ? this.meta.id : null;
13106         var recordType = this.recordType, fields = recordType.prototype.fields;
13107         var records = [];
13108         var root = o;
13109         for(var i = 0; i < root.length; i++){
13110                 var n = root[i];
13111             var values = {};
13112             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
13113             for(var j = 0, jlen = fields.length; j < jlen; j++){
13114                 var f = fields.items[j];
13115                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
13116                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
13117                 v = f.convert(v);
13118                 values[f.name] = v;
13119             }
13120             var record = new recordType(values, id);
13121             record.json = n;
13122             records[records.length] = record;
13123         }
13124         return {
13125             records : records,
13126             totalRecords : records.length
13127         };
13128     },
13129     // used when loading children.. @see loadDataFromChildren
13130     toLoadData: function(rec)
13131     {
13132         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
13133         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
13134         
13135     }
13136     
13137     
13138 });/*
13139  * - LGPL
13140  * * 
13141  */
13142
13143 /**
13144  * @class Roo.bootstrap.ComboBox
13145  * @extends Roo.bootstrap.TriggerField
13146  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
13147  * @cfg {Boolean} append (true|false) default false
13148  * @cfg {Boolean} autoFocus (true|false) auto focus the first item, default true
13149  * @cfg {Boolean} tickable ComboBox with tickable selections (true|false), default false
13150  * @cfg {Boolean} triggerList trigger show the list or not (true|false) default true
13151  * @cfg {Boolean} showToggleBtn show toggle button or not (true|false) default true
13152  * @cfg {String} btnPosition set the position of the trigger button (left | right) default right
13153  * @cfg {Boolean} animate default true
13154  * @cfg {Boolean} emptyResultText only for touch device
13155  * @cfg {String} triggerText multiple combobox trigger button text default 'Select'
13156  * @cfg {String} emptyTitle default ''
13157  * @constructor
13158  * Create a new ComboBox.
13159  * @param {Object} config Configuration options
13160  */
13161 Roo.bootstrap.ComboBox = function(config){
13162     Roo.bootstrap.ComboBox.superclass.constructor.call(this, config);
13163     this.addEvents({
13164         /**
13165          * @event expand
13166          * Fires when the dropdown list is expanded
13167         * @param {Roo.bootstrap.ComboBox} combo This combo box
13168         */
13169         'expand' : true,
13170         /**
13171          * @event collapse
13172          * Fires when the dropdown list is collapsed
13173         * @param {Roo.bootstrap.ComboBox} combo This combo box
13174         */
13175         'collapse' : true,
13176         /**
13177          * @event beforeselect
13178          * Fires before a list item is selected. Return false to cancel the selection.
13179         * @param {Roo.bootstrap.ComboBox} combo This combo box
13180         * @param {Roo.data.Record} record The data record returned from the underlying store
13181         * @param {Number} index The index of the selected item in the dropdown list
13182         */
13183         'beforeselect' : true,
13184         /**
13185          * @event select
13186          * Fires when a list item is selected
13187         * @param {Roo.bootstrap.ComboBox} combo This combo box
13188         * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
13189         * @param {Number} index The index of the selected item in the dropdown list
13190         */
13191         'select' : true,
13192         /**
13193          * @event beforequery
13194          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
13195          * The event object passed has these properties:
13196         * @param {Roo.bootstrap.ComboBox} combo This combo box
13197         * @param {String} query The query
13198         * @param {Boolean} forceAll true to force "all" query
13199         * @param {Boolean} cancel true to cancel the query
13200         * @param {Object} e The query event object
13201         */
13202         'beforequery': true,
13203          /**
13204          * @event add
13205          * Fires when the 'add' icon is pressed (add a listener to enable add button)
13206         * @param {Roo.bootstrap.ComboBox} combo This combo box
13207         */
13208         'add' : true,
13209         /**
13210          * @event edit
13211          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
13212         * @param {Roo.bootstrap.ComboBox} combo This combo box
13213         * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
13214         */
13215         'edit' : true,
13216         /**
13217          * @event remove
13218          * Fires when the remove value from the combobox array
13219         * @param {Roo.bootstrap.ComboBox} combo This combo box
13220         */
13221         'remove' : true,
13222         /**
13223          * @event afterremove
13224          * Fires when the remove value from the combobox array
13225         * @param {Roo.bootstrap.ComboBox} combo This combo box
13226         */
13227         'afterremove' : true,
13228         /**
13229          * @event specialfilter
13230          * Fires when specialfilter
13231             * @param {Roo.bootstrap.ComboBox} combo This combo box
13232             */
13233         'specialfilter' : true,
13234         /**
13235          * @event tick
13236          * Fires when tick the element
13237             * @param {Roo.bootstrap.ComboBox} combo This combo box
13238             */
13239         'tick' : true,
13240         /**
13241          * @event touchviewdisplay
13242          * Fires when touch view require special display (default is using displayField)
13243             * @param {Roo.bootstrap.ComboBox} combo This combo box
13244             * @param {Object} cfg set html .
13245             */
13246         'touchviewdisplay' : true
13247         
13248     });
13249     
13250     this.item = [];
13251     this.tickItems = [];
13252     
13253     this.selectedIndex = -1;
13254     if(this.mode == 'local'){
13255         if(config.queryDelay === undefined){
13256             this.queryDelay = 10;
13257         }
13258         if(config.minChars === undefined){
13259             this.minChars = 0;
13260         }
13261     }
13262 };
13263
13264 Roo.extend(Roo.bootstrap.ComboBox, Roo.bootstrap.TriggerField, {
13265      
13266     /**
13267      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
13268      * rendering into an Roo.Editor, defaults to false)
13269      */
13270     /**
13271      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
13272      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
13273      */
13274     /**
13275      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
13276      */
13277     /**
13278      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
13279      * the dropdown list (defaults to undefined, with no header element)
13280      */
13281
13282      /**
13283      * @cfg {String/Roo.Template} tpl The template to use to render the output
13284      */
13285      
13286      /**
13287      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
13288      */
13289     listWidth: undefined,
13290     /**
13291      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
13292      * mode = 'remote' or 'text' if mode = 'local')
13293      */
13294     displayField: undefined,
13295     
13296     /**
13297      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
13298      * mode = 'remote' or 'value' if mode = 'local'). 
13299      * Note: use of a valueField requires the user make a selection
13300      * in order for a value to be mapped.
13301      */
13302     valueField: undefined,
13303     /**
13304      * @cfg {String} modalTitle The title of the dialog that pops up on mobile views.
13305      */
13306     modalTitle : '',
13307     
13308     /**
13309      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
13310      * field's data value (defaults to the underlying DOM element's name)
13311      */
13312     hiddenName: undefined,
13313     /**
13314      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
13315      */
13316     listClass: '',
13317     /**
13318      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
13319      */
13320     selectedClass: 'active',
13321     
13322     /**
13323      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
13324      */
13325     shadow:'sides',
13326     /**
13327      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
13328      * anchor positions (defaults to 'tl-bl')
13329      */
13330     listAlign: 'tl-bl?',
13331     /**
13332      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
13333      */
13334     maxHeight: 300,
13335     /**
13336      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
13337      * query specified by the allQuery config option (defaults to 'query')
13338      */
13339     triggerAction: 'query',
13340     /**
13341      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
13342      * (defaults to 4, does not apply if editable = false)
13343      */
13344     minChars : 4,
13345     /**
13346      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
13347      * delay (typeAheadDelay) if it matches a known value (defaults to false)
13348      */
13349     typeAhead: false,
13350     /**
13351      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
13352      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
13353      */
13354     queryDelay: 500,
13355     /**
13356      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
13357      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
13358      */
13359     pageSize: 0,
13360     /**
13361      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
13362      * when editable = true (defaults to false)
13363      */
13364     selectOnFocus:false,
13365     /**
13366      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
13367      */
13368     queryParam: 'query',
13369     /**
13370      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
13371      * when mode = 'remote' (defaults to 'Loading...')
13372      */
13373     loadingText: 'Loading...',
13374     /**
13375      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
13376      */
13377     resizable: false,
13378     /**
13379      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
13380      */
13381     handleHeight : 8,
13382     /**
13383      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
13384      * traditional select (defaults to true)
13385      */
13386     editable: true,
13387     /**
13388      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
13389      */
13390     allQuery: '',
13391     /**
13392      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
13393      */
13394     mode: 'remote',
13395     /**
13396      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
13397      * listWidth has a higher value)
13398      */
13399     minListWidth : 70,
13400     /**
13401      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
13402      * allow the user to set arbitrary text into the field (defaults to false)
13403      */
13404     forceSelection:false,
13405     /**
13406      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
13407      * if typeAhead = true (defaults to 250)
13408      */
13409     typeAheadDelay : 250,
13410     /**
13411      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
13412      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
13413      */
13414     valueNotFoundText : undefined,
13415     /**
13416      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
13417      */
13418     blockFocus : false,
13419     
13420     /**
13421      * @cfg {Boolean} disableClear Disable showing of clear button.
13422      */
13423     disableClear : false,
13424     /**
13425      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
13426      */
13427     alwaysQuery : false,
13428     
13429     /**
13430      * @cfg {Boolean} multiple  (true|false) ComboBobArray, default false
13431      */
13432     multiple : false,
13433     
13434     /**
13435      * @cfg {String} invalidClass DEPRICATED - uses BS4 is-valid now
13436      */
13437     invalidClass : "has-warning",
13438     
13439     /**
13440      * @cfg {String} validClass DEPRICATED - uses BS4 is-valid now
13441      */
13442     validClass : "has-success",
13443     
13444     /**
13445      * @cfg {Boolean} specialFilter (true|false) special filter default false
13446      */
13447     specialFilter : false,
13448     
13449     /**
13450      * @cfg {Boolean} mobileTouchView (true|false) show mobile touch view when using a mobile default true
13451      */
13452     mobileTouchView : true,
13453     
13454     /**
13455      * @cfg {Boolean} useNativeIOS (true|false) render it as classic select for ios, not support dynamic load data (default false)
13456      */
13457     useNativeIOS : false,
13458     
13459     /**
13460      * @cfg {Boolean} mobile_restrict_height (true|false) restrict height for touch view
13461      */
13462     mobile_restrict_height : false,
13463     
13464     ios_options : false,
13465     
13466     //private
13467     addicon : false,
13468     editicon: false,
13469     
13470     page: 0,
13471     hasQuery: false,
13472     append: false,
13473     loadNext: false,
13474     autoFocus : true,
13475     tickable : false,
13476     btnPosition : 'right',
13477     triggerList : true,
13478     showToggleBtn : true,
13479     animate : true,
13480     emptyResultText: 'Empty',
13481     triggerText : 'Select',
13482     emptyTitle : '',
13483     
13484     // element that contains real text value.. (when hidden is used..)
13485     
13486     getAutoCreate : function()
13487     {   
13488         var cfg = false;
13489         //render
13490         /*
13491          * Render classic select for iso
13492          */
13493         
13494         if(Roo.isIOS && this.useNativeIOS){
13495             cfg = this.getAutoCreateNativeIOS();
13496             return cfg;
13497         }
13498         
13499         /*
13500          * Touch Devices
13501          */
13502         
13503         if(Roo.isTouch && this.mobileTouchView){
13504             cfg = this.getAutoCreateTouchView();
13505             return cfg;;
13506         }
13507         
13508         /*
13509          *  Normal ComboBox
13510          */
13511         if(!this.tickable){
13512             cfg = Roo.bootstrap.ComboBox.superclass.getAutoCreate.call(this);
13513             return cfg;
13514         }
13515         
13516         /*
13517          *  ComboBox with tickable selections
13518          */
13519              
13520         var align = this.labelAlign || this.parentLabelAlign();
13521         
13522         cfg = {
13523             cls : 'form-group roo-combobox-tickable' //input-group
13524         };
13525         
13526         var btn_text_select = '';
13527         var btn_text_done = '';
13528         var btn_text_cancel = '';
13529         
13530         if (this.btn_text_show) {
13531             btn_text_select = 'Select';
13532             btn_text_done = 'Done';
13533             btn_text_cancel = 'Cancel'; 
13534         }
13535         
13536         var buttons = {
13537             tag : 'div',
13538             cls : 'tickable-buttons',
13539             cn : [
13540                 {
13541                     tag : 'button',
13542                     type : 'button',
13543                     cls : 'btn btn-link btn-edit pull-' + this.btnPosition,
13544                     //html : this.triggerText
13545                     html: btn_text_select
13546                 },
13547                 {
13548                     tag : 'button',
13549                     type : 'button',
13550                     name : 'ok',
13551                     cls : 'btn btn-link btn-ok pull-' + this.btnPosition,
13552                     //html : 'Done'
13553                     html: btn_text_done
13554                 },
13555                 {
13556                     tag : 'button',
13557                     type : 'button',
13558                     name : 'cancel',
13559                     cls : 'btn btn-link btn-cancel pull-' + this.btnPosition,
13560                     //html : 'Cancel'
13561                     html: btn_text_cancel
13562                 }
13563             ]
13564         };
13565         
13566         if(this.editable){
13567             buttons.cn.unshift({
13568                 tag: 'input',
13569                 cls: 'roo-select2-search-field-input'
13570             });
13571         }
13572         
13573         var _this = this;
13574         
13575         Roo.each(buttons.cn, function(c){
13576             if (_this.size) {
13577                 c.cls += ' btn-' + _this.size;
13578             }
13579
13580             if (_this.disabled) {
13581                 c.disabled = true;
13582             }
13583         });
13584         
13585         var box = {
13586             tag: 'div',
13587             style : 'display: contents',
13588             cn: [
13589                 {
13590                     tag: 'input',
13591                     type : 'hidden',
13592                     cls: 'form-hidden-field'
13593                 },
13594                 {
13595                     tag: 'ul',
13596                     cls: 'roo-select2-choices',
13597                     cn:[
13598                         {
13599                             tag: 'li',
13600                             cls: 'roo-select2-search-field',
13601                             cn: [
13602                                 buttons
13603                             ]
13604                         }
13605                     ]
13606                 }
13607             ]
13608         };
13609         
13610         var combobox = {
13611             cls: 'roo-select2-container input-group roo-select2-container-multi',
13612             cn: [
13613                 
13614                 box
13615 //                {
13616 //                    tag: 'ul',
13617 //                    cls: 'typeahead typeahead-long dropdown-menu',
13618 //                    style: 'display:none; max-height:' + this.maxHeight + 'px;'
13619 //                }
13620             ]
13621         };
13622         
13623         if(this.hasFeedback && !this.allowBlank){
13624             
13625             var feedback = {
13626                 tag: 'span',
13627                 cls: 'glyphicon form-control-feedback'
13628             };
13629
13630             combobox.cn.push(feedback);
13631         }
13632         
13633         var indicator = {
13634             tag : 'i',
13635             cls : 'roo-required-indicator ' + (this.indicatorpos == 'right'  ? 'right' : 'left') +'-indicator text-danger fa fa-lg fa-star',
13636             tooltip : 'This field is required'
13637         };
13638         if (Roo.bootstrap.version == 4) {
13639             indicator = {
13640                 tag : 'i',
13641                 style : 'display:none'
13642             };
13643         }
13644         if (align ==='left' && this.fieldLabel.length) {
13645             
13646             cfg.cls += ' roo-form-group-label-left'  + (Roo.bootstrap.version == 4 ? ' row' : '');
13647             
13648             cfg.cn = [
13649                 indicator,
13650                 {
13651                     tag: 'label',
13652                     'for' :  id,
13653                     cls : 'control-label col-form-label',
13654                     html : this.fieldLabel
13655
13656                 },
13657                 {
13658                     cls : "", 
13659                     cn: [
13660                         combobox
13661                     ]
13662                 }
13663
13664             ];
13665             
13666             var labelCfg = cfg.cn[1];
13667             var contentCfg = cfg.cn[2];
13668             
13669
13670             if(this.indicatorpos == 'right'){
13671                 
13672                 cfg.cn = [
13673                     {
13674                         tag: 'label',
13675                         'for' :  id,
13676                         cls : 'control-label col-form-label',
13677                         cn : [
13678                             {
13679                                 tag : 'span',
13680                                 html : this.fieldLabel
13681                             },
13682                             indicator
13683                         ]
13684                     },
13685                     {
13686                         cls : "",
13687                         cn: [
13688                             combobox
13689                         ]
13690                     }
13691
13692                 ];
13693                 
13694                 
13695                 
13696                 labelCfg = cfg.cn[0];
13697                 contentCfg = cfg.cn[1];
13698             
13699             }
13700             
13701             if(this.labelWidth > 12){
13702                 labelCfg.style = "width: " + this.labelWidth + 'px';
13703             }
13704             
13705             if(this.labelWidth < 13 && this.labelmd == 0){
13706                 this.labelmd = this.labelWidth;
13707             }
13708             
13709             if(this.labellg > 0){
13710                 labelCfg.cls += ' col-lg-' + this.labellg;
13711                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
13712             }
13713             
13714             if(this.labelmd > 0){
13715                 labelCfg.cls += ' col-md-' + this.labelmd;
13716                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
13717             }
13718             
13719             if(this.labelsm > 0){
13720                 labelCfg.cls += ' col-sm-' + this.labelsm;
13721                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
13722             }
13723             
13724             if(this.labelxs > 0){
13725                 labelCfg.cls += ' col-xs-' + this.labelxs;
13726                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
13727             }
13728                 
13729                 
13730         } else if ( this.fieldLabel.length) {
13731 //                Roo.log(" label");
13732                  cfg.cn = [
13733                    indicator,
13734                     {
13735                         tag: 'label',
13736                         //cls : 'input-group-addon',
13737                         html : this.fieldLabel
13738                     },
13739                     combobox
13740                 ];
13741                 
13742                 if(this.indicatorpos == 'right'){
13743                     cfg.cn = [
13744                         {
13745                             tag: 'label',
13746                             //cls : 'input-group-addon',
13747                             html : this.fieldLabel
13748                         },
13749                         indicator,
13750                         combobox
13751                     ];
13752                     
13753                 }
13754
13755         } else {
13756             
13757 //                Roo.log(" no label && no align");
13758                 cfg = combobox
13759                      
13760                 
13761         }
13762          
13763         var settings=this;
13764         ['xs','sm','md','lg'].map(function(size){
13765             if (settings[size]) {
13766                 cfg.cls += ' col-' + size + '-' + settings[size];
13767             }
13768         });
13769         
13770         return cfg;
13771         
13772     },
13773     
13774     _initEventsCalled : false,
13775     
13776     // private
13777     initEvents: function()
13778     {   
13779         if (this._initEventsCalled) { // as we call render... prevent looping...
13780             return;
13781         }
13782         this._initEventsCalled = true;
13783         
13784         if (!this.store) {
13785             throw "can not find store for combo";
13786         }
13787         
13788         this.indicator = this.indicatorEl();
13789         
13790         this.store = Roo.factory(this.store, Roo.data);
13791         this.store.parent = this;
13792         
13793         // if we are building from html. then this element is so complex, that we can not really
13794         // use the rendered HTML.
13795         // so we have to trash and replace the previous code.
13796         if (Roo.XComponent.build_from_html) {
13797             // remove this element....
13798             var e = this.el.dom, k=0;
13799             while (e ) { e = e.previousSibling;  ++k;}
13800
13801             this.el.remove();
13802             
13803             this.el=false;
13804             this.rendered = false;
13805             
13806             this.render(this.parent().getChildContainer(true), k);
13807         }
13808         
13809         if(Roo.isIOS && this.useNativeIOS){
13810             this.initIOSView();
13811             return;
13812         }
13813         
13814         /*
13815          * Touch Devices
13816          */
13817         
13818         if(Roo.isTouch && this.mobileTouchView){
13819             this.initTouchView();
13820             return;
13821         }
13822         
13823         if(this.tickable){
13824             this.initTickableEvents();
13825             return;
13826         }
13827         
13828         Roo.bootstrap.ComboBox.superclass.initEvents.call(this);
13829         
13830         if(this.hiddenName){
13831             
13832             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
13833             
13834             this.hiddenField.dom.value =
13835                 this.hiddenValue !== undefined ? this.hiddenValue :
13836                 this.value !== undefined ? this.value : '';
13837
13838             // prevent input submission
13839             this.el.dom.removeAttribute('name');
13840             this.hiddenField.dom.setAttribute('name', this.hiddenName);
13841              
13842              
13843         }
13844         //if(Roo.isGecko){
13845         //    this.el.dom.setAttribute('autocomplete', 'off');
13846         //}
13847         
13848         var cls = 'x-combo-list';
13849         
13850         //this.list = new Roo.Layer({
13851         //    shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
13852         //});
13853         
13854         var _this = this;
13855         
13856         (function(){
13857             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
13858             _this.list.setWidth(lw);
13859         }).defer(100);
13860         
13861         this.list.on('mouseover', this.onViewOver, this);
13862         this.list.on('mousemove', this.onViewMove, this);
13863         this.list.on('scroll', this.onViewScroll, this);
13864         
13865         /*
13866         this.list.swallowEvent('mousewheel');
13867         this.assetHeight = 0;
13868
13869         if(this.title){
13870             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
13871             this.assetHeight += this.header.getHeight();
13872         }
13873
13874         this.innerList = this.list.createChild({cls:cls+'-inner'});
13875         this.innerList.on('mouseover', this.onViewOver, this);
13876         this.innerList.on('mousemove', this.onViewMove, this);
13877         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
13878         
13879         if(this.allowBlank && !this.pageSize && !this.disableClear){
13880             this.footer = this.list.createChild({cls:cls+'-ft'});
13881             this.pageTb = new Roo.Toolbar(this.footer);
13882            
13883         }
13884         if(this.pageSize){
13885             this.footer = this.list.createChild({cls:cls+'-ft'});
13886             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
13887                     {pageSize: this.pageSize});
13888             
13889         }
13890         
13891         if (this.pageTb && this.allowBlank && !this.disableClear) {
13892             var _this = this;
13893             this.pageTb.add(new Roo.Toolbar.Fill(), {
13894                 cls: 'x-btn-icon x-btn-clear',
13895                 text: '&#160;',
13896                 handler: function()
13897                 {
13898                     _this.collapse();
13899                     _this.clearValue();
13900                     _this.onSelect(false, -1);
13901                 }
13902             });
13903         }
13904         if (this.footer) {
13905             this.assetHeight += this.footer.getHeight();
13906         }
13907         */
13908             
13909         if(!this.tpl){
13910             this.tpl = Roo.bootstrap.version == 4 ?
13911                 '<a class="dropdown-item" href="#">{' + this.displayField + '}</a>' :  // 4 does not need <li> and it get's really confisued.
13912                 '<li><a class="dropdown-item" href="#">{' + this.displayField + '}</a></li>';
13913         }
13914
13915         this.view = new Roo.View(this.list, this.tpl, {
13916             singleSelect:true, store: this.store, selectedClass: this.selectedClass
13917         });
13918         //this.view.wrapEl.setDisplayed(false);
13919         this.view.on('click', this.onViewClick, this);
13920         
13921         
13922         this.store.on('beforeload', this.onBeforeLoad, this);
13923         this.store.on('load', this.onLoad, this);
13924         this.store.on('loadexception', this.onLoadException, this);
13925         /*
13926         if(this.resizable){
13927             this.resizer = new Roo.Resizable(this.list,  {
13928                pinned:true, handles:'se'
13929             });
13930             this.resizer.on('resize', function(r, w, h){
13931                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
13932                 this.listWidth = w;
13933                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
13934                 this.restrictHeight();
13935             }, this);
13936             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
13937         }
13938         */
13939         if(!this.editable){
13940             this.editable = true;
13941             this.setEditable(false);
13942         }
13943         
13944         /*
13945         
13946         if (typeof(this.events.add.listeners) != 'undefined') {
13947             
13948             this.addicon = this.wrap.createChild(
13949                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
13950        
13951             this.addicon.on('click', function(e) {
13952                 this.fireEvent('add', this);
13953             }, this);
13954         }
13955         if (typeof(this.events.edit.listeners) != 'undefined') {
13956             
13957             this.editicon = this.wrap.createChild(
13958                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
13959             if (this.addicon) {
13960                 this.editicon.setStyle('margin-left', '40px');
13961             }
13962             this.editicon.on('click', function(e) {
13963                 
13964                 // we fire even  if inothing is selected..
13965                 this.fireEvent('edit', this, this.lastData );
13966                 
13967             }, this);
13968         }
13969         */
13970         
13971         this.keyNav = new Roo.KeyNav(this.inputEl(), {
13972             "up" : function(e){
13973                 this.inKeyMode = true;
13974                 this.selectPrev();
13975             },
13976
13977             "down" : function(e){
13978                 if(!this.isExpanded()){
13979                     this.onTriggerClick();
13980                 }else{
13981                     this.inKeyMode = true;
13982                     this.selectNext();
13983                 }
13984             },
13985
13986             "enter" : function(e){
13987 //                this.onViewClick();
13988                 //return true;
13989                 this.collapse();
13990                 
13991                 if(this.fireEvent("specialkey", this, e)){
13992                     this.onViewClick(false);
13993                 }
13994                 
13995                 return true;
13996             },
13997
13998             "esc" : function(e){
13999                 this.collapse();
14000             },
14001
14002             "tab" : function(e){
14003                 this.collapse();
14004                 
14005                 if(this.fireEvent("specialkey", this, e)){
14006                     this.onViewClick(false);
14007                 }
14008                 
14009                 return true;
14010             },
14011
14012             scope : this,
14013
14014             doRelay : function(foo, bar, hname){
14015                 if(hname == 'down' || this.scope.isExpanded()){
14016                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
14017                 }
14018                 return true;
14019             },
14020
14021             forceKeyDown: true
14022         });
14023         
14024         
14025         this.queryDelay = Math.max(this.queryDelay || 10,
14026                 this.mode == 'local' ? 10 : 250);
14027         
14028         
14029         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
14030         
14031         if(this.typeAhead){
14032             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
14033         }
14034         if(this.editable !== false){
14035             this.inputEl().on("keyup", this.onKeyUp, this);
14036         }
14037         if(this.forceSelection){
14038             this.inputEl().on('blur', this.doForce, this);
14039         }
14040         
14041         if(this.multiple){
14042             this.choices = this.el.select('ul.roo-select2-choices', true).first();
14043             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14044         }
14045     },
14046     
14047     initTickableEvents: function()
14048     {   
14049         this.createList();
14050         
14051         if(this.hiddenName){
14052             
14053             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
14054             
14055             this.hiddenField.dom.value =
14056                 this.hiddenValue !== undefined ? this.hiddenValue :
14057                 this.value !== undefined ? this.value : '';
14058
14059             // prevent input submission
14060             this.el.dom.removeAttribute('name');
14061             this.hiddenField.dom.setAttribute('name', this.hiddenName);
14062              
14063              
14064         }
14065         
14066 //        this.list = this.el.select('ul.dropdown-menu',true).first();
14067         
14068         this.choices = this.el.select('ul.roo-select2-choices', true).first();
14069         this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
14070         if(this.triggerList){
14071             this.searchField.on("click", this.onSearchFieldClick, this, {preventDefault:true});
14072         }
14073          
14074         this.trigger = this.el.select('.tickable-buttons > .btn-edit', true).first();
14075         this.trigger.on("click", this.onTickableTriggerClick, this, {preventDefault:true});
14076         
14077         this.okBtn = this.el.select('.tickable-buttons > .btn-ok', true).first();
14078         this.cancelBtn = this.el.select('.tickable-buttons > .btn-cancel', true).first();
14079         
14080         this.okBtn.on('click', this.onTickableFooterButtonClick, this, this.okBtn);
14081         this.cancelBtn.on('click', this.onTickableFooterButtonClick, this, this.cancelBtn);
14082         
14083         this.trigger.setVisibilityMode(Roo.Element.DISPLAY);
14084         this.okBtn.setVisibilityMode(Roo.Element.DISPLAY);
14085         this.cancelBtn.setVisibilityMode(Roo.Element.DISPLAY);
14086         
14087         this.okBtn.hide();
14088         this.cancelBtn.hide();
14089         
14090         var _this = this;
14091         
14092         (function(){
14093             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
14094             _this.list.setWidth(lw);
14095         }).defer(100);
14096         
14097         this.list.on('mouseover', this.onViewOver, this);
14098         this.list.on('mousemove', this.onViewMove, this);
14099         
14100         this.list.on('scroll', this.onViewScroll, this);
14101         
14102         if(!this.tpl){
14103             this.tpl = '<li class="roo-select2-result"><div class="checkbox"><input id="{roo-id}"' + 
14104                 'type="checkbox" {roo-data-checked}><label for="{roo-id}"><b>{' + this.displayField + '}</b></label></div></li>';
14105         }
14106
14107         this.view = new Roo.View(this.list, this.tpl, {
14108             singleSelect:true,
14109             tickable:true,
14110             parent:this,
14111             store: this.store,
14112             selectedClass: this.selectedClass
14113         });
14114         
14115         //this.view.wrapEl.setDisplayed(false);
14116         this.view.on('click', this.onViewClick, this);
14117         
14118         
14119         
14120         this.store.on('beforeload', this.onBeforeLoad, this);
14121         this.store.on('load', this.onLoad, this);
14122         this.store.on('loadexception', this.onLoadException, this);
14123         
14124         if(this.editable){
14125             this.keyNav = new Roo.KeyNav(this.tickableInputEl(), {
14126                 "up" : function(e){
14127                     this.inKeyMode = true;
14128                     this.selectPrev();
14129                 },
14130
14131                 "down" : function(e){
14132                     this.inKeyMode = true;
14133                     this.selectNext();
14134                 },
14135
14136                 "enter" : function(e){
14137                     if(this.fireEvent("specialkey", this, e)){
14138                         this.onViewClick(false);
14139                     }
14140                     
14141                     return true;
14142                 },
14143
14144                 "esc" : function(e){
14145                     this.onTickableFooterButtonClick(e, false, false);
14146                 },
14147
14148                 "tab" : function(e){
14149                     this.fireEvent("specialkey", this, e);
14150                     
14151                     this.onTickableFooterButtonClick(e, false, false);
14152                     
14153                     return true;
14154                 },
14155
14156                 scope : this,
14157
14158                 doRelay : function(e, fn, key){
14159                     if(this.scope.isExpanded()){
14160                        return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
14161                     }
14162                     return true;
14163                 },
14164
14165                 forceKeyDown: true
14166             });
14167         }
14168         
14169         this.queryDelay = Math.max(this.queryDelay || 10,
14170                 this.mode == 'local' ? 10 : 250);
14171         
14172         
14173         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
14174         
14175         if(this.typeAhead){
14176             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
14177         }
14178         
14179         if(this.editable !== false){
14180             this.tickableInputEl().on("keyup", this.onKeyUp, this);
14181         }
14182         
14183         this.indicator = this.indicatorEl();
14184         
14185         if(this.indicator){
14186             this.indicator.setVisibilityMode(Roo.Element.DISPLAY);
14187             this.indicator.hide();
14188         }
14189         
14190     },
14191
14192     onDestroy : function(){
14193         if(this.view){
14194             this.view.setStore(null);
14195             this.view.el.removeAllListeners();
14196             this.view.el.remove();
14197             this.view.purgeListeners();
14198         }
14199         if(this.list){
14200             this.list.dom.innerHTML  = '';
14201         }
14202         
14203         if(this.store){
14204             this.store.un('beforeload', this.onBeforeLoad, this);
14205             this.store.un('load', this.onLoad, this);
14206             this.store.un('loadexception', this.onLoadException, this);
14207         }
14208         Roo.bootstrap.ComboBox.superclass.onDestroy.call(this);
14209     },
14210
14211     // private
14212     fireKey : function(e){
14213         if(e.isNavKeyPress() && !this.list.isVisible()){
14214             this.fireEvent("specialkey", this, e);
14215         }
14216     },
14217
14218     // private
14219     onResize: function(w, h){
14220 //        Roo.bootstrap.ComboBox.superclass.onResize.apply(this, arguments);
14221 //        
14222 //        if(typeof w != 'number'){
14223 //            // we do not handle it!?!?
14224 //            return;
14225 //        }
14226 //        var tw = this.trigger.getWidth();
14227 //       // tw += this.addicon ? this.addicon.getWidth() : 0;
14228 //       // tw += this.editicon ? this.editicon.getWidth() : 0;
14229 //        var x = w - tw;
14230 //        this.inputEl().setWidth( this.adjustWidth('input', x));
14231 //            
14232 //        //this.trigger.setStyle('left', x+'px');
14233 //        
14234 //        if(this.list && this.listWidth === undefined){
14235 //            var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
14236 //            this.list.setWidth(lw);
14237 //            this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
14238 //        }
14239         
14240     
14241         
14242     },
14243
14244     /**
14245      * Allow or prevent the user from directly editing the field text.  If false is passed,
14246      * the user will only be able to select from the items defined in the dropdown list.  This method
14247      * is the runtime equivalent of setting the 'editable' config option at config time.
14248      * @param {Boolean} value True to allow the user to directly edit the field text
14249      */
14250     setEditable : function(value){
14251         if(value == this.editable){
14252             return;
14253         }
14254         this.editable = value;
14255         if(!value){
14256             this.inputEl().dom.setAttribute('readOnly', true);
14257             this.inputEl().on('mousedown', this.onTriggerClick,  this);
14258             this.inputEl().addClass('x-combo-noedit');
14259         }else{
14260             this.inputEl().dom.setAttribute('readOnly', false);
14261             this.inputEl().un('mousedown', this.onTriggerClick,  this);
14262             this.inputEl().removeClass('x-combo-noedit');
14263         }
14264     },
14265
14266     // private
14267     
14268     onBeforeLoad : function(combo,opts){
14269         if(!this.hasFocus){
14270             return;
14271         }
14272          if (!opts.add) {
14273             this.list.dom.innerHTML = '<li class="loading-indicator">'+(this.loadingText||'loading')+'</li>' ;
14274          }
14275         this.restrictHeight();
14276         this.selectedIndex = -1;
14277     },
14278
14279     // private
14280     onLoad : function(){
14281         
14282         this.hasQuery = false;
14283         
14284         if(!this.hasFocus){
14285             return;
14286         }
14287         
14288         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14289             this.loading.hide();
14290         }
14291         
14292         if(this.store.getCount() > 0){
14293             
14294             this.expand();
14295             this.restrictHeight();
14296             if(this.lastQuery == this.allQuery){
14297                 if(this.editable && !this.tickable){
14298                     this.inputEl().dom.select();
14299                 }
14300                 
14301                 if(
14302                     !this.selectByValue(this.value, true) &&
14303                     this.autoFocus && 
14304                     (
14305                         !this.store.lastOptions ||
14306                         typeof(this.store.lastOptions.add) == 'undefined' || 
14307                         this.store.lastOptions.add != true
14308                     )
14309                 ){
14310                     this.select(0, true);
14311                 }
14312             }else{
14313                 if(this.autoFocus){
14314                     this.selectNext();
14315                 }
14316                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
14317                     this.taTask.delay(this.typeAheadDelay);
14318                 }
14319             }
14320         }else{
14321             this.onEmptyResults();
14322         }
14323         
14324         //this.el.focus();
14325     },
14326     // private
14327     onLoadException : function()
14328     {
14329         this.hasQuery = false;
14330         
14331         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
14332             this.loading.hide();
14333         }
14334         
14335         if(this.tickable && this.editable){
14336             return;
14337         }
14338         
14339         this.collapse();
14340         // only causes errors at present
14341         //Roo.log(this.store.reader.jsonData);
14342         //if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
14343             // fixme
14344             //Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
14345         //}
14346         
14347         
14348     },
14349     // private
14350     onTypeAhead : function(){
14351         if(this.store.getCount() > 0){
14352             var r = this.store.getAt(0);
14353             var newValue = r.data[this.displayField];
14354             var len = newValue.length;
14355             var selStart = this.getRawValue().length;
14356             
14357             if(selStart != len){
14358                 this.setRawValue(newValue);
14359                 this.selectText(selStart, newValue.length);
14360             }
14361         }
14362     },
14363
14364     // private
14365     onSelect : function(record, index){
14366         
14367         if(this.fireEvent('beforeselect', this, record, index) !== false){
14368         
14369             this.setFromData(index > -1 ? record.data : false);
14370             
14371             this.collapse();
14372             this.fireEvent('select', this, record, index);
14373         }
14374     },
14375
14376     /**
14377      * Returns the currently selected field value or empty string if no value is set.
14378      * @return {String} value The selected value
14379      */
14380     getValue : function()
14381     {
14382         if(Roo.isIOS && this.useNativeIOS){
14383             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.valueField];
14384         }
14385         
14386         if(this.multiple){
14387             return (this.hiddenField) ? this.hiddenField.dom.value : this.value;
14388         }
14389         
14390         if(this.valueField){
14391             return typeof this.value != 'undefined' ? this.value : '';
14392         }else{
14393             return Roo.bootstrap.ComboBox.superclass.getValue.call(this);
14394         }
14395     },
14396     
14397     getRawValue : function()
14398     {
14399         if(Roo.isIOS && this.useNativeIOS){
14400             return this.ios_options[this.inputEl().dom.selectedIndex].data[this.displayField];
14401         }
14402         
14403         var v = this.inputEl().getValue();
14404         
14405         return v;
14406     },
14407
14408     /**
14409      * Clears any text/value currently set in the field
14410      */
14411     clearValue : function(){
14412         
14413         if(this.hiddenField){
14414             this.hiddenField.dom.value = '';
14415         }
14416         this.value = '';
14417         this.setRawValue('');
14418         this.lastSelectionText = '';
14419         this.lastData = false;
14420         
14421         var close = this.closeTriggerEl();
14422         
14423         if(close){
14424             close.hide();
14425         }
14426         
14427         this.validate();
14428         
14429     },
14430
14431     /**
14432      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
14433      * will be displayed in the field.  If the value does not match the data value of an existing item,
14434      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
14435      * Otherwise the field will be blank (although the value will still be set).
14436      * @param {String} value The value to match
14437      */
14438     setValue : function(v)
14439     {
14440         if(Roo.isIOS && this.useNativeIOS){
14441             this.setIOSValue(v);
14442             return;
14443         }
14444         
14445         if(this.multiple){
14446             this.syncValue();
14447             return;
14448         }
14449         
14450         var text = v;
14451         if(this.valueField){
14452             var r = this.findRecord(this.valueField, v);
14453             if(r){
14454                 text = r.data[this.displayField];
14455             }else if(this.valueNotFoundText !== undefined){
14456                 text = this.valueNotFoundText;
14457             }
14458         }
14459         this.lastSelectionText = text;
14460         if(this.hiddenField){
14461             this.hiddenField.dom.value = v;
14462         }
14463         Roo.bootstrap.ComboBox.superclass.setValue.call(this, text);
14464         this.value = v;
14465         
14466         var close = this.closeTriggerEl();
14467         
14468         if(close){
14469             (v && (v.length || v * 1 > 0)) ? close.show() : close.hide();
14470         }
14471         
14472         this.validate();
14473     },
14474     /**
14475      * @property {Object} the last set data for the element
14476      */
14477     
14478     lastData : false,
14479     /**
14480      * Sets the value of the field based on a object which is related to the record format for the store.
14481      * @param {Object} value the value to set as. or false on reset?
14482      */
14483     setFromData : function(o){
14484         
14485         if(this.multiple){
14486             this.addItem(o);
14487             return;
14488         }
14489             
14490         var dv = ''; // display value
14491         var vv = ''; // value value..
14492         this.lastData = o;
14493         if (this.displayField) {
14494             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
14495         } else {
14496             // this is an error condition!!!
14497             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
14498         }
14499         
14500         if(this.valueField){
14501             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
14502         }
14503         
14504         var close = this.closeTriggerEl();
14505         
14506         if(close){
14507             if(dv.length || vv * 1 > 0){
14508                 close.show() ;
14509                 this.blockFocus=true;
14510             } else {
14511                 close.hide();
14512             }             
14513         }
14514         
14515         if(this.hiddenField){
14516             this.hiddenField.dom.value = vv;
14517             
14518             this.lastSelectionText = dv;
14519             Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14520             this.value = vv;
14521             return;
14522         }
14523         // no hidden field.. - we store the value in 'value', but still display
14524         // display field!!!!
14525         this.lastSelectionText = dv;
14526         Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
14527         this.value = vv;
14528         
14529         
14530         
14531     },
14532     // private
14533     reset : function(){
14534         // overridden so that last data is reset..
14535         
14536         if(this.multiple){
14537             this.clearItem();
14538             return;
14539         }
14540         
14541         this.setValue(this.originalValue);
14542         //this.clearInvalid();
14543         this.lastData = false;
14544         if (this.view) {
14545             this.view.clearSelections();
14546         }
14547         
14548         this.validate();
14549     },
14550     // private
14551     findRecord : function(prop, value){
14552         var record;
14553         if(this.store.getCount() > 0){
14554             this.store.each(function(r){
14555                 if(r.data[prop] == value){
14556                     record = r;
14557                     return false;
14558                 }
14559                 return true;
14560             });
14561         }
14562         return record;
14563     },
14564     
14565     getName: function()
14566     {
14567         // returns hidden if it's set..
14568         if (!this.rendered) {return ''};
14569         return !this.hiddenName && this.inputEl().dom.name  ? this.inputEl().dom.name : (this.hiddenName || '');
14570         
14571     },
14572     // private
14573     onViewMove : function(e, t){
14574         this.inKeyMode = false;
14575     },
14576
14577     // private
14578     onViewOver : function(e, t){
14579         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
14580             return;
14581         }
14582         var item = this.view.findItemFromChild(t);
14583         
14584         if(item){
14585             var index = this.view.indexOf(item);
14586             this.select(index, false);
14587         }
14588     },
14589
14590     // private
14591     onViewClick : function(view, doFocus, el, e)
14592     {
14593         var index = this.view.getSelectedIndexes()[0];
14594         
14595         var r = this.store.getAt(index);
14596         
14597         if(this.tickable){
14598             
14599             if(typeof(e) != 'undefined' && e.getTarget().nodeName.toLowerCase() != 'input'){
14600                 return;
14601             }
14602             
14603             var rm = false;
14604             var _this = this;
14605             
14606             Roo.each(this.tickItems, function(v,k){
14607                 
14608                 if(typeof(v) != 'undefined' && v[_this.valueField] == r.data[_this.valueField]){
14609                     Roo.log(v);
14610                     _this.tickItems.splice(k, 1);
14611                     
14612                     if(typeof(e) == 'undefined' && view == false){
14613                         Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = false;
14614                     }
14615                     
14616                     rm = true;
14617                     return;
14618                 }
14619             });
14620             
14621             if(rm){
14622                 return;
14623             }
14624             
14625             if(this.fireEvent('tick', this, r, index, Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked) !== false){
14626                 this.tickItems.push(r.data);
14627             }
14628             
14629             if(typeof(e) == 'undefined' && view == false){
14630                 Roo.get(_this.view.getNodes(index, index)[0]).select('input', true).first().dom.checked = true;
14631             }
14632                     
14633             return;
14634         }
14635         
14636         if(r){
14637             this.onSelect(r, index);
14638         }
14639         if(doFocus !== false && !this.blockFocus){
14640             this.inputEl().focus();
14641         }
14642     },
14643
14644     // private
14645     restrictHeight : function(){
14646         //this.innerList.dom.style.height = '';
14647         //var inner = this.innerList.dom;
14648         //var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
14649         //this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
14650         //this.list.beginUpdate();
14651         //this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
14652         this.list.alignTo(this.inputEl(), this.listAlign);
14653         this.list.alignTo(this.inputEl(), this.listAlign);
14654         //this.list.endUpdate();
14655     },
14656
14657     // private
14658     onEmptyResults : function(){
14659         
14660         if(this.tickable && this.editable){
14661             this.hasFocus = false;
14662             this.restrictHeight();
14663             return;
14664         }
14665         
14666         this.collapse();
14667     },
14668
14669     /**
14670      * Returns true if the dropdown list is expanded, else false.
14671      */
14672     isExpanded : function(){
14673         return this.list.isVisible();
14674     },
14675
14676     /**
14677      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
14678      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14679      * @param {String} value The data value of the item to select
14680      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14681      * selected item if it is not currently in view (defaults to true)
14682      * @return {Boolean} True if the value matched an item in the list, else false
14683      */
14684     selectByValue : function(v, scrollIntoView){
14685         if(v !== undefined && v !== null){
14686             var r = this.findRecord(this.valueField || this.displayField, v);
14687             if(r){
14688                 this.select(this.store.indexOf(r), scrollIntoView);
14689                 return true;
14690             }
14691         }
14692         return false;
14693     },
14694
14695     /**
14696      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
14697      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
14698      * @param {Number} index The zero-based index of the list item to select
14699      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
14700      * selected item if it is not currently in view (defaults to true)
14701      */
14702     select : function(index, scrollIntoView){
14703         this.selectedIndex = index;
14704         this.view.select(index);
14705         if(scrollIntoView !== false){
14706             var el = this.view.getNode(index);
14707             /*
14708              * el && !this.multiple && !this.tickable // not sure why we disable multiple before..
14709              */
14710             if(el){
14711                 this.list.scrollChildIntoView(el, false);
14712             }
14713         }
14714     },
14715
14716     // private
14717     selectNext : function(){
14718         var ct = this.store.getCount();
14719         if(ct > 0){
14720             if(this.selectedIndex == -1){
14721                 this.select(0);
14722             }else if(this.selectedIndex < ct-1){
14723                 this.select(this.selectedIndex+1);
14724             }
14725         }
14726     },
14727
14728     // private
14729     selectPrev : function(){
14730         var ct = this.store.getCount();
14731         if(ct > 0){
14732             if(this.selectedIndex == -1){
14733                 this.select(0);
14734             }else if(this.selectedIndex != 0){
14735                 this.select(this.selectedIndex-1);
14736             }
14737         }
14738     },
14739
14740     // private
14741     onKeyUp : function(e){
14742         if(this.editable !== false && !e.isSpecialKey()){
14743             this.lastKey = e.getKey();
14744             this.dqTask.delay(this.queryDelay);
14745         }
14746     },
14747
14748     // private
14749     validateBlur : function(){
14750         return !this.list || !this.list.isVisible();   
14751     },
14752
14753     // private
14754     initQuery : function(){
14755         
14756         var v = this.getRawValue();
14757         
14758         if(this.tickable && this.editable){
14759             v = this.tickableInputEl().getValue();
14760         }
14761         
14762         this.doQuery(v);
14763     },
14764
14765     // private
14766     doForce : function(){
14767         if(this.inputEl().dom.value.length > 0){
14768             this.inputEl().dom.value =
14769                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
14770              
14771         }
14772     },
14773
14774     /**
14775      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
14776      * query allowing the query action to be canceled if needed.
14777      * @param {String} query The SQL query to execute
14778      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
14779      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
14780      * saved in the current store (defaults to false)
14781      */
14782     doQuery : function(q, forceAll){
14783         
14784         if(q === undefined || q === null){
14785             q = '';
14786         }
14787         var qe = {
14788             query: q,
14789             forceAll: forceAll,
14790             combo: this,
14791             cancel:false
14792         };
14793         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
14794             return false;
14795         }
14796         q = qe.query;
14797         
14798         forceAll = qe.forceAll;
14799         if(forceAll === true || (q.length >= this.minChars)){
14800             
14801             this.hasQuery = true;
14802             
14803             if(this.lastQuery != q || this.alwaysQuery){
14804                 this.lastQuery = q;
14805                 if(this.mode == 'local'){
14806                     this.selectedIndex = -1;
14807                     if(forceAll){
14808                         this.store.clearFilter();
14809                     }else{
14810                         
14811                         if(this.specialFilter){
14812                             this.fireEvent('specialfilter', this);
14813                             this.onLoad();
14814                             return;
14815                         }
14816                         
14817                         this.store.filter(this.displayField, q);
14818                     }
14819                     
14820                     this.store.fireEvent("datachanged", this.store);
14821                     
14822                     this.onLoad();
14823                     
14824                     
14825                 }else{
14826                     
14827                     this.store.baseParams[this.queryParam] = q;
14828                     
14829                     var options = {params : this.getParams(q)};
14830                     
14831                     if(this.loadNext){
14832                         options.add = true;
14833                         options.params.start = this.page * this.pageSize;
14834                     }
14835                     
14836                     this.store.load(options);
14837                     
14838                     /*
14839                      *  this code will make the page width larger, at the beginning, the list not align correctly, 
14840                      *  we should expand the list on onLoad
14841                      *  so command out it
14842                      */
14843 //                    this.expand();
14844                 }
14845             }else{
14846                 this.selectedIndex = -1;
14847                 this.onLoad();   
14848             }
14849         }
14850         
14851         this.loadNext = false;
14852     },
14853     
14854     // private
14855     getParams : function(q){
14856         var p = {};
14857         //p[this.queryParam] = q;
14858         
14859         if(this.pageSize){
14860             p.start = 0;
14861             p.limit = this.pageSize;
14862         }
14863         return p;
14864     },
14865
14866     /**
14867      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
14868      */
14869     collapse : function(){
14870         if(!this.isExpanded()){
14871             return;
14872         }
14873         
14874         this.list.hide();
14875         
14876         this.hasFocus = false;
14877         
14878         if(this.tickable){
14879             this.okBtn.hide();
14880             this.cancelBtn.hide();
14881             this.trigger.show();
14882             
14883             if(this.editable){
14884                 this.tickableInputEl().dom.value = '';
14885                 this.tickableInputEl().blur();
14886             }
14887             
14888         }
14889         
14890         Roo.get(document).un('mousedown', this.collapseIf, this);
14891         Roo.get(document).un('mousewheel', this.collapseIf, this);
14892         if (!this.editable) {
14893             Roo.get(document).un('keydown', this.listKeyPress, this);
14894         }
14895         this.fireEvent('collapse', this);
14896         
14897         this.validate();
14898     },
14899
14900     // private
14901     collapseIf : function(e){
14902         var in_combo  = e.within(this.el);
14903         var in_list =  e.within(this.list);
14904         var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
14905         
14906         if (in_combo || in_list || is_list) {
14907             //e.stopPropagation();
14908             return;
14909         }
14910         
14911         if(this.tickable){
14912             this.onTickableFooterButtonClick(e, false, false);
14913         }
14914
14915         this.collapse();
14916         
14917     },
14918
14919     /**
14920      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
14921      */
14922     expand : function(){
14923        
14924         if(this.isExpanded() || !this.hasFocus){
14925             return;
14926         }
14927         
14928         var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
14929         this.list.setWidth(lw);
14930         
14931         Roo.log('expand');
14932         
14933         this.list.show();
14934         
14935         this.restrictHeight();
14936         
14937         if(this.tickable){
14938             
14939             this.tickItems = Roo.apply([], this.item);
14940             
14941             this.okBtn.show();
14942             this.cancelBtn.show();
14943             this.trigger.hide();
14944             
14945             if(this.editable){
14946                 this.tickableInputEl().focus();
14947             }
14948             
14949         }
14950         
14951         Roo.get(document).on('mousedown', this.collapseIf, this);
14952         Roo.get(document).on('mousewheel', this.collapseIf, this);
14953         if (!this.editable) {
14954             Roo.get(document).on('keydown', this.listKeyPress, this);
14955         }
14956         
14957         this.fireEvent('expand', this);
14958     },
14959
14960     // private
14961     // Implements the default empty TriggerField.onTriggerClick function
14962     onTriggerClick : function(e)
14963     {
14964         Roo.log('trigger click');
14965         
14966         if(this.disabled || !this.triggerList){
14967             return;
14968         }
14969         
14970         this.page = 0;
14971         this.loadNext = false;
14972         
14973         if(this.isExpanded()){
14974             this.collapse();
14975             if (!this.blockFocus) {
14976                 this.inputEl().focus();
14977             }
14978             
14979         }else {
14980             this.hasFocus = true;
14981             if(this.triggerAction == 'all') {
14982                 this.doQuery(this.allQuery, true);
14983             } else {
14984                 this.doQuery(this.getRawValue());
14985             }
14986             if (!this.blockFocus) {
14987                 this.inputEl().focus();
14988             }
14989         }
14990     },
14991     
14992     onTickableTriggerClick : function(e)
14993     {
14994         if(this.disabled){
14995             return;
14996         }
14997         
14998         this.page = 0;
14999         this.loadNext = false;
15000         this.hasFocus = true;
15001         
15002         if(this.triggerAction == 'all') {
15003             this.doQuery(this.allQuery, true);
15004         } else {
15005             this.doQuery(this.getRawValue());
15006         }
15007     },
15008     
15009     onSearchFieldClick : function(e)
15010     {
15011         if(this.hasFocus && !this.disabled && e.getTarget().nodeName.toLowerCase() != 'button'){
15012             this.onTickableFooterButtonClick(e, false, false);
15013             return;
15014         }
15015         
15016         if(this.hasFocus || this.disabled || e.getTarget().nodeName.toLowerCase() == 'button'){
15017             return;
15018         }
15019         
15020         this.page = 0;
15021         this.loadNext = false;
15022         this.hasFocus = true;
15023         
15024         if(this.triggerAction == 'all') {
15025             this.doQuery(this.allQuery, true);
15026         } else {
15027             this.doQuery(this.getRawValue());
15028         }
15029     },
15030     
15031     listKeyPress : function(e)
15032     {
15033         //Roo.log('listkeypress');
15034         // scroll to first matching element based on key pres..
15035         if (e.isSpecialKey()) {
15036             return false;
15037         }
15038         var k = String.fromCharCode(e.getKey()).toUpperCase();
15039         //Roo.log(k);
15040         var match  = false;
15041         var csel = this.view.getSelectedNodes();
15042         var cselitem = false;
15043         if (csel.length) {
15044             var ix = this.view.indexOf(csel[0]);
15045             cselitem  = this.store.getAt(ix);
15046             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
15047                 cselitem = false;
15048             }
15049             
15050         }
15051         
15052         this.store.each(function(v) { 
15053             if (cselitem) {
15054                 // start at existing selection.
15055                 if (cselitem.id == v.id) {
15056                     cselitem = false;
15057                 }
15058                 return true;
15059             }
15060                 
15061             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
15062                 match = this.store.indexOf(v);
15063                 return false;
15064             }
15065             return true;
15066         }, this);
15067         
15068         if (match === false) {
15069             return true; // no more action?
15070         }
15071         // scroll to?
15072         this.view.select(match);
15073         var sn = Roo.get(this.view.getSelectedNodes()[0]);
15074         sn.scrollIntoView(sn.dom.parentNode, false);
15075     },
15076     
15077     onViewScroll : function(e, t){
15078         
15079         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){
15080             return;
15081         }
15082         
15083         this.hasQuery = true;
15084         
15085         this.loading = this.list.select('.loading', true).first();
15086         
15087         if(this.loading === null){
15088             this.list.createChild({
15089                 tag: 'div',
15090                 cls: 'loading roo-select2-more-results roo-select2-active',
15091                 html: 'Loading more results...'
15092             });
15093             
15094             this.loading = this.list.select('.loading', true).first();
15095             
15096             this.loading.setVisibilityMode(Roo.Element.DISPLAY);
15097             
15098             this.loading.hide();
15099         }
15100         
15101         this.loading.show();
15102         
15103         var _combo = this;
15104         
15105         this.page++;
15106         this.loadNext = true;
15107         
15108         (function() { _combo.doQuery(_combo.allQuery, true); }).defer(500);
15109         
15110         return;
15111     },
15112     
15113     addItem : function(o)
15114     {   
15115         var dv = ''; // display value
15116         
15117         if (this.displayField) {
15118             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
15119         } else {
15120             // this is an error condition!!!
15121             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
15122         }
15123         
15124         if(!dv.length){
15125             return;
15126         }
15127         
15128         var choice = this.choices.createChild({
15129             tag: 'li',
15130             cls: 'roo-select2-search-choice',
15131             cn: [
15132                 {
15133                     tag: 'div',
15134                     html: dv
15135                 },
15136                 {
15137                     tag: 'a',
15138                     href: '#',
15139                     cls: 'roo-select2-search-choice-close fa fa-times',
15140                     tabindex: '-1'
15141                 }
15142             ]
15143             
15144         }, this.searchField);
15145         
15146         var close = choice.select('a.roo-select2-search-choice-close', true).first();
15147         
15148         close.on('click', this.onRemoveItem, this, { item : choice, data : o} );
15149         
15150         this.item.push(o);
15151         
15152         this.lastData = o;
15153         
15154         this.syncValue();
15155         
15156         this.inputEl().dom.value = '';
15157         
15158         this.validate();
15159     },
15160     
15161     onRemoveItem : function(e, _self, o)
15162     {
15163         e.preventDefault();
15164         
15165         this.lastItem = Roo.apply([], this.item);
15166         
15167         var index = this.item.indexOf(o.data) * 1;
15168         
15169         if( index < 0){
15170             Roo.log('not this item?!');
15171             return;
15172         }
15173         
15174         this.item.splice(index, 1);
15175         o.item.remove();
15176         
15177         this.syncValue();
15178         
15179         this.fireEvent('remove', this, e);
15180         
15181         this.validate();
15182         
15183     },
15184     
15185     syncValue : function()
15186     {
15187         if(!this.item.length){
15188             this.clearValue();
15189             return;
15190         }
15191             
15192         var value = [];
15193         var _this = this;
15194         Roo.each(this.item, function(i){
15195             if(_this.valueField){
15196                 value.push(i[_this.valueField]);
15197                 return;
15198             }
15199
15200             value.push(i);
15201         });
15202
15203         this.value = value.join(',');
15204
15205         if(this.hiddenField){
15206             this.hiddenField.dom.value = this.value;
15207         }
15208         
15209         this.store.fireEvent("datachanged", this.store);
15210         
15211         this.validate();
15212     },
15213     
15214     clearItem : function()
15215     {
15216         if(!this.multiple){
15217             return;
15218         }
15219         
15220         this.item = [];
15221         
15222         Roo.each(this.choices.select('>li.roo-select2-search-choice', true).elements, function(c){
15223            c.remove();
15224         });
15225         
15226         this.syncValue();
15227         
15228         this.validate();
15229         
15230         if(this.tickable && !Roo.isTouch){
15231             this.view.refresh();
15232         }
15233     },
15234     
15235     inputEl: function ()
15236     {
15237         if(Roo.isIOS && this.useNativeIOS){
15238             return this.el.select('select.roo-ios-select', true).first();
15239         }
15240         
15241         if(Roo.isTouch && this.mobileTouchView){
15242             return this.el.select('input.form-control',true).first();
15243         }
15244         
15245         if(this.tickable){
15246             return this.searchField;
15247         }
15248         
15249         return this.el.select('input.form-control',true).first();
15250     },
15251     
15252     onTickableFooterButtonClick : function(e, btn, el)
15253     {
15254         e.preventDefault();
15255         
15256         this.lastItem = Roo.apply([], this.item);
15257         
15258         if(btn && btn.name == 'cancel'){
15259             this.tickItems = Roo.apply([], this.item);
15260             this.collapse();
15261             return;
15262         }
15263         
15264         this.clearItem();
15265         
15266         var _this = this;
15267         
15268         Roo.each(this.tickItems, function(o){
15269             _this.addItem(o);
15270         });
15271         
15272         this.collapse();
15273         
15274     },
15275     
15276     validate : function()
15277     {
15278         if(this.getVisibilityEl().hasClass('hidden')){
15279             return true;
15280         }
15281         
15282         var v = this.getRawValue();
15283         
15284         if(this.multiple){
15285             v = this.getValue();
15286         }
15287         
15288         if(this.disabled || this.allowBlank || v.length){
15289             this.markValid();
15290             return true;
15291         }
15292         
15293         this.markInvalid();
15294         return false;
15295     },
15296     
15297     tickableInputEl : function()
15298     {
15299         if(!this.tickable || !this.editable){
15300             return this.inputEl();
15301         }
15302         
15303         return this.inputEl().select('.roo-select2-search-field-input', true).first();
15304     },
15305     
15306     
15307     getAutoCreateTouchView : function()
15308     {
15309         var id = Roo.id();
15310         
15311         var cfg = {
15312             cls: 'form-group' //input-group
15313         };
15314         
15315         var input =  {
15316             tag: 'input',
15317             id : id,
15318             type : this.inputType,
15319             cls : 'form-control x-combo-noedit',
15320             autocomplete: 'new-password',
15321             placeholder : this.placeholder || '',
15322             readonly : true
15323         };
15324         
15325         if (this.name) {
15326             input.name = this.name;
15327         }
15328         
15329         if (this.size) {
15330             input.cls += ' input-' + this.size;
15331         }
15332         
15333         if (this.disabled) {
15334             input.disabled = true;
15335         }
15336         
15337         var inputblock = {
15338             cls : '',
15339             cn : [
15340                 input
15341             ]
15342         };
15343         
15344         if(this.before){
15345             inputblock.cls += ' input-group';
15346             
15347             inputblock.cn.unshift({
15348                 tag :'span',
15349                 cls : 'input-group-addon input-group-prepend input-group-text',
15350                 html : this.before
15351             });
15352         }
15353         
15354         if(this.removable && !this.multiple){
15355             inputblock.cls += ' roo-removable';
15356             
15357             inputblock.cn.push({
15358                 tag: 'button',
15359                 html : 'x',
15360                 cls : 'roo-combo-removable-btn close'
15361             });
15362         }
15363
15364         if(this.hasFeedback && !this.allowBlank){
15365             
15366             inputblock.cls += ' has-feedback';
15367             
15368             inputblock.cn.push({
15369                 tag: 'span',
15370                 cls: 'glyphicon form-control-feedback'
15371             });
15372             
15373         }
15374         
15375         if (this.after) {
15376             
15377             inputblock.cls += (this.before) ? '' : ' input-group';
15378             
15379             inputblock.cn.push({
15380                 tag :'span',
15381                 cls : 'input-group-addon input-group-append input-group-text',
15382                 html : this.after
15383             });
15384         }
15385
15386         
15387         var ibwrap = inputblock;
15388         
15389         if(this.multiple){
15390             ibwrap = {
15391                 tag: 'ul',
15392                 cls: 'roo-select2-choices',
15393                 cn:[
15394                     {
15395                         tag: 'li',
15396                         cls: 'roo-select2-search-field',
15397                         cn: [
15398
15399                             inputblock
15400                         ]
15401                     }
15402                 ]
15403             };
15404         
15405             
15406         }
15407         
15408         var combobox = {
15409             cls: 'roo-select2-container input-group roo-touchview-combobox ',
15410             cn: [
15411                 {
15412                     tag: 'input',
15413                     type : 'hidden',
15414                     cls: 'form-hidden-field'
15415                 },
15416                 ibwrap
15417             ]
15418         };
15419         
15420         if(!this.multiple && this.showToggleBtn){
15421             
15422             var caret = {
15423                 cls: 'caret'
15424             };
15425             
15426             if (this.caret != false) {
15427                 caret = {
15428                      tag: 'i',
15429                      cls: 'fa fa-' + this.caret
15430                 };
15431                 
15432             }
15433             
15434             combobox.cn.push({
15435                 tag :'span',
15436                 cls : 'input-group-addon input-group-append input-group-text btn dropdown-toggle',
15437                 cn : [
15438                     Roo.bootstrap.version == 3 ? caret : '',
15439                     {
15440                         tag: 'span',
15441                         cls: 'combobox-clear',
15442                         cn  : [
15443                             {
15444                                 tag : 'i',
15445                                 cls: 'icon-remove'
15446                             }
15447                         ]
15448                     }
15449                 ]
15450
15451             })
15452         }
15453         
15454         if(this.multiple){
15455             combobox.cls += ' roo-select2-container-multi';
15456         }
15457         
15458         var align = this.labelAlign || this.parentLabelAlign();
15459         
15460         if (align ==='left' && this.fieldLabel.length) {
15461
15462             cfg.cn = [
15463                 {
15464                    tag : 'i',
15465                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15466                    tooltip : 'This field is required'
15467                 },
15468                 {
15469                     tag: 'label',
15470                     cls : 'control-label col-form-label',
15471                     html : this.fieldLabel
15472
15473                 },
15474                 {
15475                     cls : '', 
15476                     cn: [
15477                         combobox
15478                     ]
15479                 }
15480             ];
15481             
15482             var labelCfg = cfg.cn[1];
15483             var contentCfg = cfg.cn[2];
15484             
15485
15486             if(this.indicatorpos == 'right'){
15487                 cfg.cn = [
15488                     {
15489                         tag: 'label',
15490                         'for' :  id,
15491                         cls : 'control-label col-form-label',
15492                         cn : [
15493                             {
15494                                 tag : 'span',
15495                                 html : this.fieldLabel
15496                             },
15497                             {
15498                                 tag : 'i',
15499                                 cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15500                                 tooltip : 'This field is required'
15501                             }
15502                         ]
15503                     },
15504                     {
15505                         cls : "",
15506                         cn: [
15507                             combobox
15508                         ]
15509                     }
15510
15511                 ];
15512                 
15513                 labelCfg = cfg.cn[0];
15514                 contentCfg = cfg.cn[1];
15515             }
15516             
15517            
15518             
15519             if(this.labelWidth > 12){
15520                 labelCfg.style = "width: " + this.labelWidth + 'px';
15521             }
15522             
15523             if(this.labelWidth < 13 && this.labelmd == 0){
15524                 this.labelmd = this.labelWidth;
15525             }
15526             
15527             if(this.labellg > 0){
15528                 labelCfg.cls += ' col-lg-' + this.labellg;
15529                 contentCfg.cls += ' col-lg-' + (12 - this.labellg);
15530             }
15531             
15532             if(this.labelmd > 0){
15533                 labelCfg.cls += ' col-md-' + this.labelmd;
15534                 contentCfg.cls += ' col-md-' + (12 - this.labelmd);
15535             }
15536             
15537             if(this.labelsm > 0){
15538                 labelCfg.cls += ' col-sm-' + this.labelsm;
15539                 contentCfg.cls += ' col-sm-' + (12 - this.labelsm);
15540             }
15541             
15542             if(this.labelxs > 0){
15543                 labelCfg.cls += ' col-xs-' + this.labelxs;
15544                 contentCfg.cls += ' col-xs-' + (12 - this.labelxs);
15545             }
15546                 
15547                 
15548         } else if ( this.fieldLabel.length) {
15549             cfg.cn = [
15550                 {
15551                    tag : 'i',
15552                    cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
15553                    tooltip : 'This field is required'
15554                 },
15555                 {
15556                     tag: 'label',
15557                     cls : 'control-label',
15558                     html : this.fieldLabel
15559
15560                 },
15561                 {
15562                     cls : '', 
15563                     cn: [
15564                         combobox
15565                     ]
15566                 }
15567             ];
15568             
15569             if(this.indicatorpos == 'right'){
15570                 cfg.cn = [
15571                     {
15572                         tag: 'label',
15573                         cls : 'control-label',
15574                         html : this.fieldLabel,
15575                         cn : [
15576                             {
15577                                tag : 'i',
15578                                cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
15579                                tooltip : 'This field is required'
15580                             }
15581                         ]
15582                     },
15583                     {
15584                         cls : '', 
15585                         cn: [
15586                             combobox
15587                         ]
15588                     }
15589                 ];
15590             }
15591         } else {
15592             cfg.cn = combobox;    
15593         }
15594         
15595         
15596         var settings = this;
15597         
15598         ['xs','sm','md','lg'].map(function(size){
15599             if (settings[size]) {
15600                 cfg.cls += ' col-' + size + '-' + settings[size];
15601             }
15602         });
15603         
15604         return cfg;
15605     },
15606     
15607     initTouchView : function()
15608     {
15609         this.renderTouchView();
15610         
15611         this.touchViewEl.on('scroll', function(){
15612             this.el.dom.scrollTop = 0;
15613         }, this);
15614         
15615         this.originalValue = this.getValue();
15616         
15617         this.triggerEl = this.el.select('span.dropdown-toggle',true).first();
15618         
15619         this.inputEl().on("click", this.showTouchView, this);
15620         if (this.triggerEl) {
15621             this.triggerEl.on("click", this.showTouchView, this);
15622         }
15623         
15624         
15625         this.touchViewFooterEl.select('.roo-touch-view-cancel', true).first().on('click', this.hideTouchView, this);
15626         this.touchViewFooterEl.select('.roo-touch-view-ok', true).first().on('click', this.setTouchViewValue, this);
15627         
15628         this.maskEl = new Roo.LoadMask(this.touchViewEl, { store : this.store, msgCls: 'roo-el-mask-msg' });
15629         
15630         this.store.on('beforeload', this.onTouchViewBeforeLoad, this);
15631         this.store.on('load', this.onTouchViewLoad, this);
15632         this.store.on('loadexception', this.onTouchViewLoadException, this);
15633         
15634         if(this.hiddenName){
15635             
15636             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
15637             
15638             this.hiddenField.dom.value =
15639                 this.hiddenValue !== undefined ? this.hiddenValue :
15640                 this.value !== undefined ? this.value : '';
15641         
15642             this.el.dom.removeAttribute('name');
15643             this.hiddenField.dom.setAttribute('name', this.hiddenName);
15644         }
15645         
15646         if(this.multiple){
15647             this.choices = this.el.select('ul.roo-select2-choices', true).first();
15648             this.searchField = this.el.select('ul li.roo-select2-search-field', true).first();
15649         }
15650         
15651         if(this.removable && !this.multiple){
15652             var close = this.closeTriggerEl();
15653             if(close){
15654                 close.setVisibilityMode(Roo.Element.DISPLAY).hide();
15655                 close.on('click', this.removeBtnClick, this, close);
15656             }
15657         }
15658         /*
15659          * fix the bug in Safari iOS8
15660          */
15661         this.inputEl().on("focus", function(e){
15662             document.activeElement.blur();
15663         }, this);
15664         
15665         this._touchViewMask = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
15666         
15667         return;
15668         
15669         
15670     },
15671     
15672     renderTouchView : function()
15673     {
15674         this.touchViewEl = Roo.get(document.body).createChild(Roo.bootstrap.ComboBox.touchViewTemplate);
15675         this.touchViewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15676         
15677         this.touchViewHeaderEl = this.touchViewEl.select('.modal-header', true).first();
15678         this.touchViewHeaderEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15679         
15680         this.touchViewBodyEl = this.touchViewEl.select('.modal-body', true).first();
15681         this.touchViewBodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15682         this.touchViewBodyEl.setStyle('overflow', 'auto');
15683         
15684         this.touchViewListGroup = this.touchViewBodyEl.select('.list-group', true).first();
15685         this.touchViewListGroup.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15686         
15687         this.touchViewFooterEl = this.touchViewEl.select('.modal-footer', true).first();
15688         this.touchViewFooterEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15689         
15690     },
15691     
15692     showTouchView : function()
15693     {
15694         if(this.disabled){
15695             return;
15696         }
15697         
15698         this.touchViewHeaderEl.hide();
15699
15700         if(this.modalTitle.length){
15701             this.touchViewHeaderEl.dom.innerHTML = this.modalTitle;
15702             this.touchViewHeaderEl.show();
15703         }
15704
15705         this.touchViewEl.setStyle('z-index', Roo.bootstrap.Modal.zIndex++);
15706         this.touchViewEl.show();
15707
15708         this.touchViewEl.select('.modal-dialog', true).first().setStyle({ margin : '0px', width : '100%'});
15709         
15710         //this.touchViewEl.select('.modal-dialog > .modal-content', true).first().setSize(
15711         //        Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
15712
15713         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15714
15715         if(this.modalTitle.length){
15716             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15717         }
15718         
15719         this.touchViewBodyEl.setHeight(bodyHeight);
15720
15721         if(this.animate){
15722             var _this = this;
15723             (function(){ _this.touchViewEl.addClass('in'); }).defer(50);
15724         }else{
15725             this.touchViewEl.addClass('in');
15726         }
15727         
15728         if(this._touchViewMask){
15729             Roo.get(document.body).addClass("x-body-masked");
15730             this._touchViewMask.setSize(Roo.lib.Dom.getViewWidth(true),   Roo.lib.Dom.getViewHeight(true));
15731             this._touchViewMask.setStyle('z-index', 10000);
15732             this._touchViewMask.addClass('show');
15733         }
15734         
15735         this.doTouchViewQuery();
15736         
15737     },
15738     
15739     hideTouchView : function()
15740     {
15741         this.touchViewEl.removeClass('in');
15742
15743         if(this.animate){
15744             var _this = this;
15745             (function(){ _this.touchViewEl.setStyle('display', 'none'); }).defer(150);
15746         }else{
15747             this.touchViewEl.setStyle('display', 'none');
15748         }
15749         
15750         if(this._touchViewMask){
15751             this._touchViewMask.removeClass('show');
15752             Roo.get(document.body).removeClass("x-body-masked");
15753         }
15754     },
15755     
15756     setTouchViewValue : function()
15757     {
15758         if(this.multiple){
15759             this.clearItem();
15760         
15761             var _this = this;
15762
15763             Roo.each(this.tickItems, function(o){
15764                 this.addItem(o);
15765             }, this);
15766         }
15767         
15768         this.hideTouchView();
15769     },
15770     
15771     doTouchViewQuery : function()
15772     {
15773         var qe = {
15774             query: '',
15775             forceAll: true,
15776             combo: this,
15777             cancel:false
15778         };
15779         
15780         if(this.fireEvent('beforequery', qe) ===false || qe.cancel){
15781             return false;
15782         }
15783         
15784         if(!this.alwaysQuery || this.mode == 'local'){
15785             this.onTouchViewLoad();
15786             return;
15787         }
15788         
15789         this.store.load();
15790     },
15791     
15792     onTouchViewBeforeLoad : function(combo,opts)
15793     {
15794         return;
15795     },
15796
15797     // private
15798     onTouchViewLoad : function()
15799     {
15800         if(this.store.getCount() < 1){
15801             this.onTouchViewEmptyResults();
15802             return;
15803         }
15804         
15805         this.clearTouchView();
15806         
15807         var rawValue = this.getRawValue();
15808         
15809         var template = (this.multiple) ? Roo.bootstrap.ComboBox.listItemCheckbox : Roo.bootstrap.ComboBox.listItemRadio;
15810         
15811         this.tickItems = [];
15812         
15813         this.store.data.each(function(d, rowIndex){
15814             var row = this.touchViewListGroup.createChild(template);
15815             
15816             if(typeof(d.data.cls) != 'undefined' && d.data.cls.length){
15817                 row.addClass(d.data.cls);
15818             }
15819             
15820             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
15821                 var cfg = {
15822                     data : d.data,
15823                     html : d.data[this.displayField]
15824                 };
15825                 
15826                 if(this.fireEvent('touchviewdisplay', this, cfg) !== false){
15827                     row.select('.roo-combobox-list-group-item-value', true).first().dom.innerHTML = cfg.html;
15828                 }
15829             }
15830             row.removeClass('selected');
15831             if(!this.multiple && this.valueField &&
15832                     typeof(d.data[this.valueField]) != 'undefined' && d.data[this.valueField] == this.getValue())
15833             {
15834                 // radio buttons..
15835                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15836                 row.addClass('selected');
15837             }
15838             
15839             if(this.multiple && this.valueField &&
15840                     typeof(d.data[this.valueField]) != 'undefined' && this.getValue().indexOf(d.data[this.valueField]) != -1)
15841             {
15842                 
15843                 // checkboxes...
15844                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15845                 this.tickItems.push(d.data);
15846             }
15847             
15848             row.on('click', this.onTouchViewClick, this, {row : row, rowIndex : rowIndex});
15849             
15850         }, this);
15851         
15852         var firstChecked = this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).first();
15853         
15854         var bodyHeight = Roo.lib.Dom.getViewHeight() - this.touchViewFooterEl.getHeight() + this.touchViewBodyEl.getPadding('tb');
15855
15856         if(this.modalTitle.length){
15857             bodyHeight = bodyHeight - this.touchViewHeaderEl.getHeight();
15858         }
15859
15860         var listHeight = this.touchViewListGroup.getHeight() + this.touchViewBodyEl.getPadding('tb') * 2;
15861         
15862         if(this.mobile_restrict_height && listHeight < bodyHeight){
15863             this.touchViewBodyEl.setHeight(listHeight);
15864         }
15865         
15866         var _this = this;
15867         
15868         if(firstChecked && listHeight > bodyHeight){
15869             (function() { firstChecked.findParent('li').scrollIntoView(_this.touchViewListGroup.dom); }).defer(500);
15870         }
15871         
15872     },
15873     
15874     onTouchViewLoadException : function()
15875     {
15876         this.hideTouchView();
15877     },
15878     
15879     onTouchViewEmptyResults : function()
15880     {
15881         this.clearTouchView();
15882         
15883         this.touchViewListGroup.createChild(Roo.bootstrap.ComboBox.emptyResult);
15884         
15885         this.touchViewListGroup.select('.roo-combobox-touch-view-empty-result', true).first().dom.innerHTML = this.emptyResultText;
15886         
15887     },
15888     
15889     clearTouchView : function()
15890     {
15891         this.touchViewListGroup.dom.innerHTML = '';
15892     },
15893     
15894     onTouchViewClick : function(e, el, o)
15895     {
15896         e.preventDefault();
15897         
15898         var row = o.row;
15899         var rowIndex = o.rowIndex;
15900         
15901         var r = this.store.getAt(rowIndex);
15902         
15903         if(this.fireEvent('beforeselect', this, r, rowIndex) !== false){
15904             
15905             if(!this.multiple){
15906                 Roo.each(this.touchViewListGroup.select('.list-group-item > .roo-combobox-list-group-item-box > input:checked', true).elements, function(c){
15907                     c.dom.removeAttribute('checked');
15908                 }, this);
15909
15910                 row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15911
15912                 this.setFromData(r.data);
15913
15914                 var close = this.closeTriggerEl();
15915
15916                 if(close){
15917                     close.show();
15918                 }
15919
15920                 this.hideTouchView();
15921
15922                 this.fireEvent('select', this, r, rowIndex);
15923
15924                 return;
15925             }
15926
15927             if(this.valueField && typeof(r.data[this.valueField]) != 'undefined' && this.getValue().indexOf(r.data[this.valueField]) != -1){
15928                 row.select('.roo-combobox-list-group-item-box > input', true).first().dom.removeAttribute('checked');
15929                 this.tickItems.splice(this.tickItems.indexOf(r.data), 1);
15930                 return;
15931             }
15932
15933             row.select('.roo-combobox-list-group-item-box > input', true).first().attr('checked', true);
15934             this.addItem(r.data);
15935             this.tickItems.push(r.data);
15936         }
15937     },
15938     
15939     getAutoCreateNativeIOS : function()
15940     {
15941         var cfg = {
15942             cls: 'form-group' //input-group,
15943         };
15944         
15945         var combobox =  {
15946             tag: 'select',
15947             cls : 'roo-ios-select'
15948         };
15949         
15950         if (this.name) {
15951             combobox.name = this.name;
15952         }
15953         
15954         if (this.disabled) {
15955             combobox.disabled = true;
15956         }
15957         
15958         var settings = this;
15959         
15960         ['xs','sm','md','lg'].map(function(size){
15961             if (settings[size]) {
15962                 cfg.cls += ' col-' + size + '-' + settings[size];
15963             }
15964         });
15965         
15966         cfg.cn = combobox;
15967         
15968         return cfg;
15969         
15970     },
15971     
15972     initIOSView : function()
15973     {
15974         this.store.on('load', this.onIOSViewLoad, this);
15975         
15976         return;
15977     },
15978     
15979     onIOSViewLoad : function()
15980     {
15981         if(this.store.getCount() < 1){
15982             return;
15983         }
15984         
15985         this.clearIOSView();
15986         
15987         if(this.allowBlank) {
15988             
15989             var default_text = '-- SELECT --';
15990             
15991             if(this.placeholder.length){
15992                 default_text = this.placeholder;
15993             }
15994             
15995             if(this.emptyTitle.length){
15996                 default_text += ' - ' + this.emptyTitle + ' -';
15997             }
15998             
15999             var opt = this.inputEl().createChild({
16000                 tag: 'option',
16001                 value : 0,
16002                 html : default_text
16003             });
16004             
16005             var o = {};
16006             o[this.valueField] = 0;
16007             o[this.displayField] = default_text;
16008             
16009             this.ios_options.push({
16010                 data : o,
16011                 el : opt
16012             });
16013             
16014         }
16015         
16016         this.store.data.each(function(d, rowIndex){
16017             
16018             var html = '';
16019             
16020             if(this.displayField && typeof(d.data[this.displayField]) != 'undefined'){
16021                 html = d.data[this.displayField];
16022             }
16023             
16024             var value = '';
16025             
16026             if(this.valueField && typeof(d.data[this.valueField]) != 'undefined'){
16027                 value = d.data[this.valueField];
16028             }
16029             
16030             var option = {
16031                 tag: 'option',
16032                 value : value,
16033                 html : html
16034             };
16035             
16036             if(this.value == d.data[this.valueField]){
16037                 option['selected'] = true;
16038             }
16039             
16040             var opt = this.inputEl().createChild(option);
16041             
16042             this.ios_options.push({
16043                 data : d.data,
16044                 el : opt
16045             });
16046             
16047         }, this);
16048         
16049         this.inputEl().on('change', function(){
16050            this.fireEvent('select', this);
16051         }, this);
16052         
16053     },
16054     
16055     clearIOSView: function()
16056     {
16057         this.inputEl().dom.innerHTML = '';
16058         
16059         this.ios_options = [];
16060     },
16061     
16062     setIOSValue: function(v)
16063     {
16064         this.value = v;
16065         
16066         if(!this.ios_options){
16067             return;
16068         }
16069         
16070         Roo.each(this.ios_options, function(opts){
16071            
16072            opts.el.dom.removeAttribute('selected');
16073            
16074            if(opts.data[this.valueField] != v){
16075                return;
16076            }
16077            
16078            opts.el.dom.setAttribute('selected', true);
16079            
16080         }, this);
16081     }
16082
16083     /** 
16084     * @cfg {Boolean} grow 
16085     * @hide 
16086     */
16087     /** 
16088     * @cfg {Number} growMin 
16089     * @hide 
16090     */
16091     /** 
16092     * @cfg {Number} growMax 
16093     * @hide 
16094     */
16095     /**
16096      * @hide
16097      * @method autoSize
16098      */
16099 });
16100
16101 Roo.apply(Roo.bootstrap.ComboBox,  {
16102     
16103     header : {
16104         tag: 'div',
16105         cls: 'modal-header',
16106         cn: [
16107             {
16108                 tag: 'h4',
16109                 cls: 'modal-title'
16110             }
16111         ]
16112     },
16113     
16114     body : {
16115         tag: 'div',
16116         cls: 'modal-body',
16117         cn: [
16118             {
16119                 tag: 'ul',
16120                 cls: 'list-group'
16121             }
16122         ]
16123     },
16124     
16125     listItemRadio : {
16126         tag: 'li',
16127         cls: 'list-group-item',
16128         cn: [
16129             {
16130                 tag: 'span',
16131                 cls: 'roo-combobox-list-group-item-value'
16132             },
16133             {
16134                 tag: 'div',
16135                 cls: 'roo-combobox-list-group-item-box pull-xs-right radio-inline radio radio-info',
16136                 cn: [
16137                     {
16138                         tag: 'input',
16139                         type: 'radio'
16140                     },
16141                     {
16142                         tag: 'label'
16143                     }
16144                 ]
16145             }
16146         ]
16147     },
16148     
16149     listItemCheckbox : {
16150         tag: 'li',
16151         cls: 'list-group-item',
16152         cn: [
16153             {
16154                 tag: 'span',
16155                 cls: 'roo-combobox-list-group-item-value'
16156             },
16157             {
16158                 tag: 'div',
16159                 cls: 'roo-combobox-list-group-item-box pull-xs-right checkbox-inline checkbox checkbox-info',
16160                 cn: [
16161                     {
16162                         tag: 'input',
16163                         type: 'checkbox'
16164                     },
16165                     {
16166                         tag: 'label'
16167                     }
16168                 ]
16169             }
16170         ]
16171     },
16172     
16173     emptyResult : {
16174         tag: 'div',
16175         cls: 'alert alert-danger roo-combobox-touch-view-empty-result'
16176     },
16177     
16178     footer : {
16179         tag: 'div',
16180         cls: 'modal-footer',
16181         cn: [
16182             {
16183                 tag: 'div',
16184                 cls: 'row',
16185                 cn: [
16186                     {
16187                         tag: 'div',
16188                         cls: 'col-xs-6 text-left',
16189                         cn: {
16190                             tag: 'button',
16191                             cls: 'btn btn-danger roo-touch-view-cancel',
16192                             html: 'Cancel'
16193                         }
16194                     },
16195                     {
16196                         tag: 'div',
16197                         cls: 'col-xs-6 text-right',
16198                         cn: {
16199                             tag: 'button',
16200                             cls: 'btn btn-success roo-touch-view-ok',
16201                             html: 'OK'
16202                         }
16203                     }
16204                 ]
16205             }
16206         ]
16207         
16208     }
16209 });
16210
16211 Roo.apply(Roo.bootstrap.ComboBox,  {
16212     
16213     touchViewTemplate : {
16214         tag: 'div',
16215         cls: 'modal fade roo-combobox-touch-view',
16216         cn: [
16217             {
16218                 tag: 'div',
16219                 cls: 'modal-dialog',
16220                 style : 'position:fixed', // we have to fix position....
16221                 cn: [
16222                     {
16223                         tag: 'div',
16224                         cls: 'modal-content',
16225                         cn: [
16226                             Roo.bootstrap.ComboBox.header,
16227                             Roo.bootstrap.ComboBox.body,
16228                             Roo.bootstrap.ComboBox.footer
16229                         ]
16230                     }
16231                 ]
16232             }
16233         ]
16234     }
16235 });/*
16236  * Based on:
16237  * Ext JS Library 1.1.1
16238  * Copyright(c) 2006-2007, Ext JS, LLC.
16239  *
16240  * Originally Released Under LGPL - original licence link has changed is not relivant.
16241  *
16242  * Fork - LGPL
16243  * <script type="text/javascript">
16244  */
16245
16246 /**
16247  * @class Roo.View
16248  * @extends Roo.util.Observable
16249  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
16250  * This class also supports single and multi selection modes. <br>
16251  * Create a data model bound view:
16252  <pre><code>
16253  var store = new Roo.data.Store(...);
16254
16255  var view = new Roo.View({
16256     el : "my-element",
16257     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
16258  
16259     singleSelect: true,
16260     selectedClass: "ydataview-selected",
16261     store: store
16262  });
16263
16264  // listen for node click?
16265  view.on("click", function(vw, index, node, e){
16266  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
16267  });
16268
16269  // load XML data
16270  dataModel.load("foobar.xml");
16271  </code></pre>
16272  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
16273  * <br><br>
16274  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
16275  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
16276  * 
16277  * Note: old style constructor is still suported (container, template, config)
16278  * 
16279  * @constructor
16280  * Create a new View
16281  * @param {Object} config The config object
16282  * 
16283  */
16284 Roo.View = function(config, depreciated_tpl, depreciated_config){
16285     
16286     this.parent = false;
16287     
16288     if (typeof(depreciated_tpl) == 'undefined') {
16289         // new way.. - universal constructor.
16290         Roo.apply(this, config);
16291         this.el  = Roo.get(this.el);
16292     } else {
16293         // old format..
16294         this.el  = Roo.get(config);
16295         this.tpl = depreciated_tpl;
16296         Roo.apply(this, depreciated_config);
16297     }
16298     this.wrapEl  = this.el.wrap().wrap();
16299     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
16300     
16301     
16302     if(typeof(this.tpl) == "string"){
16303         this.tpl = new Roo.Template(this.tpl);
16304     } else {
16305         // support xtype ctors..
16306         this.tpl = new Roo.factory(this.tpl, Roo);
16307     }
16308     
16309     
16310     this.tpl.compile();
16311     
16312     /** @private */
16313     this.addEvents({
16314         /**
16315          * @event beforeclick
16316          * Fires before a click is processed. Returns false to cancel the default action.
16317          * @param {Roo.View} this
16318          * @param {Number} index The index of the target node
16319          * @param {HTMLElement} node The target node
16320          * @param {Roo.EventObject} e The raw event object
16321          */
16322             "beforeclick" : true,
16323         /**
16324          * @event click
16325          * Fires when a template node is clicked.
16326          * @param {Roo.View} this
16327          * @param {Number} index The index of the target node
16328          * @param {HTMLElement} node The target node
16329          * @param {Roo.EventObject} e The raw event object
16330          */
16331             "click" : true,
16332         /**
16333          * @event dblclick
16334          * Fires when a template node is double clicked.
16335          * @param {Roo.View} this
16336          * @param {Number} index The index of the target node
16337          * @param {HTMLElement} node The target node
16338          * @param {Roo.EventObject} e The raw event object
16339          */
16340             "dblclick" : true,
16341         /**
16342          * @event contextmenu
16343          * Fires when a template node is right clicked.
16344          * @param {Roo.View} this
16345          * @param {Number} index The index of the target node
16346          * @param {HTMLElement} node The target node
16347          * @param {Roo.EventObject} e The raw event object
16348          */
16349             "contextmenu" : true,
16350         /**
16351          * @event selectionchange
16352          * Fires when the selected nodes change.
16353          * @param {Roo.View} this
16354          * @param {Array} selections Array of the selected nodes
16355          */
16356             "selectionchange" : true,
16357     
16358         /**
16359          * @event beforeselect
16360          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
16361          * @param {Roo.View} this
16362          * @param {HTMLElement} node The node to be selected
16363          * @param {Array} selections Array of currently selected nodes
16364          */
16365             "beforeselect" : true,
16366         /**
16367          * @event preparedata
16368          * Fires on every row to render, to allow you to change the data.
16369          * @param {Roo.View} this
16370          * @param {Object} data to be rendered (change this)
16371          */
16372           "preparedata" : true
16373           
16374           
16375         });
16376
16377
16378
16379     this.el.on({
16380         "click": this.onClick,
16381         "dblclick": this.onDblClick,
16382         "contextmenu": this.onContextMenu,
16383         scope:this
16384     });
16385
16386     this.selections = [];
16387     this.nodes = [];
16388     this.cmp = new Roo.CompositeElementLite([]);
16389     if(this.store){
16390         this.store = Roo.factory(this.store, Roo.data);
16391         this.setStore(this.store, true);
16392     }
16393     
16394     if ( this.footer && this.footer.xtype) {
16395            
16396          var fctr = this.wrapEl.appendChild(document.createElement("div"));
16397         
16398         this.footer.dataSource = this.store;
16399         this.footer.container = fctr;
16400         this.footer = Roo.factory(this.footer, Roo);
16401         fctr.insertFirst(this.el);
16402         
16403         // this is a bit insane - as the paging toolbar seems to detach the el..
16404 //        dom.parentNode.parentNode.parentNode
16405          // they get detached?
16406     }
16407     
16408     
16409     Roo.View.superclass.constructor.call(this);
16410     
16411     
16412 };
16413
16414 Roo.extend(Roo.View, Roo.util.Observable, {
16415     
16416      /**
16417      * @cfg {Roo.data.Store} store Data store to load data from.
16418      */
16419     store : false,
16420     
16421     /**
16422      * @cfg {String|Roo.Element} el The container element.
16423      */
16424     el : '',
16425     
16426     /**
16427      * @cfg {String|Roo.Template} tpl The template used by this View 
16428      */
16429     tpl : false,
16430     /**
16431      * @cfg {String} dataName the named area of the template to use as the data area
16432      *                          Works with domtemplates roo-name="name"
16433      */
16434     dataName: false,
16435     /**
16436      * @cfg {String} selectedClass The css class to add to selected nodes
16437      */
16438     selectedClass : "x-view-selected",
16439      /**
16440      * @cfg {String} emptyText The empty text to show when nothing is loaded.
16441      */
16442     emptyText : "",
16443     
16444     /**
16445      * @cfg {String} text to display on mask (default Loading)
16446      */
16447     mask : false,
16448     /**
16449      * @cfg {Boolean} multiSelect Allow multiple selection
16450      */
16451     multiSelect : false,
16452     /**
16453      * @cfg {Boolean} singleSelect Allow single selection
16454      */
16455     singleSelect:  false,
16456     
16457     /**
16458      * @cfg {Boolean} toggleSelect - selecting 
16459      */
16460     toggleSelect : false,
16461     
16462     /**
16463      * @cfg {Boolean} tickable - selecting 
16464      */
16465     tickable : false,
16466     
16467     /**
16468      * Returns the element this view is bound to.
16469      * @return {Roo.Element}
16470      */
16471     getEl : function(){
16472         return this.wrapEl;
16473     },
16474     
16475     
16476
16477     /**
16478      * Refreshes the view. - called by datachanged on the store. - do not call directly.
16479      */
16480     refresh : function(){
16481         //Roo.log('refresh');
16482         var t = this.tpl;
16483         
16484         // if we are using something like 'domtemplate', then
16485         // the what gets used is:
16486         // t.applySubtemplate(NAME, data, wrapping data..)
16487         // the outer template then get' applied with
16488         //     the store 'extra data'
16489         // and the body get's added to the
16490         //      roo-name="data" node?
16491         //      <span class='roo-tpl-{name}'></span> ?????
16492         
16493         
16494         
16495         this.clearSelections();
16496         this.el.update("");
16497         var html = [];
16498         var records = this.store.getRange();
16499         if(records.length < 1) {
16500             
16501             // is this valid??  = should it render a template??
16502             
16503             this.el.update(this.emptyText);
16504             return;
16505         }
16506         var el = this.el;
16507         if (this.dataName) {
16508             this.el.update(t.apply(this.store.meta)); //????
16509             el = this.el.child('.roo-tpl-' + this.dataName);
16510         }
16511         
16512         for(var i = 0, len = records.length; i < len; i++){
16513             var data = this.prepareData(records[i].data, i, records[i]);
16514             this.fireEvent("preparedata", this, data, i, records[i]);
16515             
16516             var d = Roo.apply({}, data);
16517             
16518             if(this.tickable){
16519                 Roo.apply(d, {'roo-id' : Roo.id()});
16520                 
16521                 var _this = this;
16522             
16523                 Roo.each(this.parent.item, function(item){
16524                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
16525                         return;
16526                     }
16527                     Roo.apply(d, {'roo-data-checked' : 'checked'});
16528                 });
16529             }
16530             
16531             html[html.length] = Roo.util.Format.trim(
16532                 this.dataName ?
16533                     t.applySubtemplate(this.dataName, d, this.store.meta) :
16534                     t.apply(d)
16535             );
16536         }
16537         
16538         
16539         
16540         el.update(html.join(""));
16541         this.nodes = el.dom.childNodes;
16542         this.updateIndexes(0);
16543     },
16544     
16545
16546     /**
16547      * Function to override to reformat the data that is sent to
16548      * the template for each node.
16549      * DEPRICATED - use the preparedata event handler.
16550      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
16551      * a JSON object for an UpdateManager bound view).
16552      */
16553     prepareData : function(data, index, record)
16554     {
16555         this.fireEvent("preparedata", this, data, index, record);
16556         return data;
16557     },
16558
16559     onUpdate : function(ds, record){
16560         // Roo.log('on update');   
16561         this.clearSelections();
16562         var index = this.store.indexOf(record);
16563         var n = this.nodes[index];
16564         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
16565         n.parentNode.removeChild(n);
16566         this.updateIndexes(index, index);
16567     },
16568
16569     
16570     
16571 // --------- FIXME     
16572     onAdd : function(ds, records, index)
16573     {
16574         //Roo.log(['on Add', ds, records, index] );        
16575         this.clearSelections();
16576         if(this.nodes.length == 0){
16577             this.refresh();
16578             return;
16579         }
16580         var n = this.nodes[index];
16581         for(var i = 0, len = records.length; i < len; i++){
16582             var d = this.prepareData(records[i].data, i, records[i]);
16583             if(n){
16584                 this.tpl.insertBefore(n, d);
16585             }else{
16586                 
16587                 this.tpl.append(this.el, d);
16588             }
16589         }
16590         this.updateIndexes(index);
16591     },
16592
16593     onRemove : function(ds, record, index){
16594        // Roo.log('onRemove');
16595         this.clearSelections();
16596         var el = this.dataName  ?
16597             this.el.child('.roo-tpl-' + this.dataName) :
16598             this.el; 
16599         
16600         el.dom.removeChild(this.nodes[index]);
16601         this.updateIndexes(index);
16602     },
16603
16604     /**
16605      * Refresh an individual node.
16606      * @param {Number} index
16607      */
16608     refreshNode : function(index){
16609         this.onUpdate(this.store, this.store.getAt(index));
16610     },
16611
16612     updateIndexes : function(startIndex, endIndex){
16613         var ns = this.nodes;
16614         startIndex = startIndex || 0;
16615         endIndex = endIndex || ns.length - 1;
16616         for(var i = startIndex; i <= endIndex; i++){
16617             ns[i].nodeIndex = i;
16618         }
16619     },
16620
16621     /**
16622      * Changes the data store this view uses and refresh the view.
16623      * @param {Store} store
16624      */
16625     setStore : function(store, initial){
16626         if(!initial && this.store){
16627             this.store.un("datachanged", this.refresh);
16628             this.store.un("add", this.onAdd);
16629             this.store.un("remove", this.onRemove);
16630             this.store.un("update", this.onUpdate);
16631             this.store.un("clear", this.refresh);
16632             this.store.un("beforeload", this.onBeforeLoad);
16633             this.store.un("load", this.onLoad);
16634             this.store.un("loadexception", this.onLoad);
16635         }
16636         if(store){
16637           
16638             store.on("datachanged", this.refresh, this);
16639             store.on("add", this.onAdd, this);
16640             store.on("remove", this.onRemove, this);
16641             store.on("update", this.onUpdate, this);
16642             store.on("clear", this.refresh, this);
16643             store.on("beforeload", this.onBeforeLoad, this);
16644             store.on("load", this.onLoad, this);
16645             store.on("loadexception", this.onLoad, this);
16646         }
16647         
16648         if(store){
16649             this.refresh();
16650         }
16651     },
16652     /**
16653      * onbeforeLoad - masks the loading area.
16654      *
16655      */
16656     onBeforeLoad : function(store,opts)
16657     {
16658          //Roo.log('onBeforeLoad');   
16659         if (!opts.add) {
16660             this.el.update("");
16661         }
16662         this.el.mask(this.mask ? this.mask : "Loading" ); 
16663     },
16664     onLoad : function ()
16665     {
16666         this.el.unmask();
16667     },
16668     
16669
16670     /**
16671      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
16672      * @param {HTMLElement} node
16673      * @return {HTMLElement} The template node
16674      */
16675     findItemFromChild : function(node){
16676         var el = this.dataName  ?
16677             this.el.child('.roo-tpl-' + this.dataName,true) :
16678             this.el.dom; 
16679         
16680         if(!node || node.parentNode == el){
16681                     return node;
16682             }
16683             var p = node.parentNode;
16684             while(p && p != el){
16685             if(p.parentNode == el){
16686                 return p;
16687             }
16688             p = p.parentNode;
16689         }
16690             return null;
16691     },
16692
16693     /** @ignore */
16694     onClick : function(e){
16695         var item = this.findItemFromChild(e.getTarget());
16696         if(item){
16697             var index = this.indexOf(item);
16698             if(this.onItemClick(item, index, e) !== false){
16699                 this.fireEvent("click", this, index, item, e);
16700             }
16701         }else{
16702             this.clearSelections();
16703         }
16704     },
16705
16706     /** @ignore */
16707     onContextMenu : function(e){
16708         var item = this.findItemFromChild(e.getTarget());
16709         if(item){
16710             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
16711         }
16712     },
16713
16714     /** @ignore */
16715     onDblClick : function(e){
16716         var item = this.findItemFromChild(e.getTarget());
16717         if(item){
16718             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
16719         }
16720     },
16721
16722     onItemClick : function(item, index, e)
16723     {
16724         if(this.fireEvent("beforeclick", this, index, item, e) === false){
16725             return false;
16726         }
16727         if (this.toggleSelect) {
16728             var m = this.isSelected(item) ? 'unselect' : 'select';
16729             //Roo.log(m);
16730             var _t = this;
16731             _t[m](item, true, false);
16732             return true;
16733         }
16734         if(this.multiSelect || this.singleSelect){
16735             if(this.multiSelect && e.shiftKey && this.lastSelection){
16736                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
16737             }else{
16738                 this.select(item, this.multiSelect && e.ctrlKey);
16739                 this.lastSelection = item;
16740             }
16741             
16742             if(!this.tickable){
16743                 e.preventDefault();
16744             }
16745             
16746         }
16747         return true;
16748     },
16749
16750     /**
16751      * Get the number of selected nodes.
16752      * @return {Number}
16753      */
16754     getSelectionCount : function(){
16755         return this.selections.length;
16756     },
16757
16758     /**
16759      * Get the currently selected nodes.
16760      * @return {Array} An array of HTMLElements
16761      */
16762     getSelectedNodes : function(){
16763         return this.selections;
16764     },
16765
16766     /**
16767      * Get the indexes of the selected nodes.
16768      * @return {Array}
16769      */
16770     getSelectedIndexes : function(){
16771         var indexes = [], s = this.selections;
16772         for(var i = 0, len = s.length; i < len; i++){
16773             indexes.push(s[i].nodeIndex);
16774         }
16775         return indexes;
16776     },
16777
16778     /**
16779      * Clear all selections
16780      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
16781      */
16782     clearSelections : function(suppressEvent){
16783         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
16784             this.cmp.elements = this.selections;
16785             this.cmp.removeClass(this.selectedClass);
16786             this.selections = [];
16787             if(!suppressEvent){
16788                 this.fireEvent("selectionchange", this, this.selections);
16789             }
16790         }
16791     },
16792
16793     /**
16794      * Returns true if the passed node is selected
16795      * @param {HTMLElement/Number} node The node or node index
16796      * @return {Boolean}
16797      */
16798     isSelected : function(node){
16799         var s = this.selections;
16800         if(s.length < 1){
16801             return false;
16802         }
16803         node = this.getNode(node);
16804         return s.indexOf(node) !== -1;
16805     },
16806
16807     /**
16808      * Selects nodes.
16809      * @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
16810      * @param {Boolean} keepExisting (optional) true to keep existing selections
16811      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16812      */
16813     select : function(nodeInfo, keepExisting, suppressEvent){
16814         if(nodeInfo instanceof Array){
16815             if(!keepExisting){
16816                 this.clearSelections(true);
16817             }
16818             for(var i = 0, len = nodeInfo.length; i < len; i++){
16819                 this.select(nodeInfo[i], true, true);
16820             }
16821             return;
16822         } 
16823         var node = this.getNode(nodeInfo);
16824         if(!node || this.isSelected(node)){
16825             return; // already selected.
16826         }
16827         if(!keepExisting){
16828             this.clearSelections(true);
16829         }
16830         
16831         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
16832             Roo.fly(node).addClass(this.selectedClass);
16833             this.selections.push(node);
16834             if(!suppressEvent){
16835                 this.fireEvent("selectionchange", this, this.selections);
16836             }
16837         }
16838         
16839         
16840     },
16841       /**
16842      * Unselects nodes.
16843      * @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
16844      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
16845      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
16846      */
16847     unselect : function(nodeInfo, keepExisting, suppressEvent)
16848     {
16849         if(nodeInfo instanceof Array){
16850             Roo.each(this.selections, function(s) {
16851                 this.unselect(s, nodeInfo);
16852             }, this);
16853             return;
16854         }
16855         var node = this.getNode(nodeInfo);
16856         if(!node || !this.isSelected(node)){
16857             //Roo.log("not selected");
16858             return; // not selected.
16859         }
16860         // fireevent???
16861         var ns = [];
16862         Roo.each(this.selections, function(s) {
16863             if (s == node ) {
16864                 Roo.fly(node).removeClass(this.selectedClass);
16865
16866                 return;
16867             }
16868             ns.push(s);
16869         },this);
16870         
16871         this.selections= ns;
16872         this.fireEvent("selectionchange", this, this.selections);
16873     },
16874
16875     /**
16876      * Gets a template node.
16877      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16878      * @return {HTMLElement} The node or null if it wasn't found
16879      */
16880     getNode : function(nodeInfo){
16881         if(typeof nodeInfo == "string"){
16882             return document.getElementById(nodeInfo);
16883         }else if(typeof nodeInfo == "number"){
16884             return this.nodes[nodeInfo];
16885         }
16886         return nodeInfo;
16887     },
16888
16889     /**
16890      * Gets a range template nodes.
16891      * @param {Number} startIndex
16892      * @param {Number} endIndex
16893      * @return {Array} An array of nodes
16894      */
16895     getNodes : function(start, end){
16896         var ns = this.nodes;
16897         start = start || 0;
16898         end = typeof end == "undefined" ? ns.length - 1 : end;
16899         var nodes = [];
16900         if(start <= end){
16901             for(var i = start; i <= end; i++){
16902                 nodes.push(ns[i]);
16903             }
16904         } else{
16905             for(var i = start; i >= end; i--){
16906                 nodes.push(ns[i]);
16907             }
16908         }
16909         return nodes;
16910     },
16911
16912     /**
16913      * Finds the index of the passed node
16914      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
16915      * @return {Number} The index of the node or -1
16916      */
16917     indexOf : function(node){
16918         node = this.getNode(node);
16919         if(typeof node.nodeIndex == "number"){
16920             return node.nodeIndex;
16921         }
16922         var ns = this.nodes;
16923         for(var i = 0, len = ns.length; i < len; i++){
16924             if(ns[i] == node){
16925                 return i;
16926             }
16927         }
16928         return -1;
16929     }
16930 });
16931 /*
16932  * - LGPL
16933  *
16934  * based on jquery fullcalendar
16935  * 
16936  */
16937
16938 Roo.bootstrap = Roo.bootstrap || {};
16939 /**
16940  * @class Roo.bootstrap.Calendar
16941  * @extends Roo.bootstrap.Component
16942  * Bootstrap Calendar class
16943  * @cfg {Boolean} loadMask (true|false) default false
16944  * @cfg {Object} header generate the user specific header of the calendar, default false
16945
16946  * @constructor
16947  * Create a new Container
16948  * @param {Object} config The config object
16949  */
16950
16951
16952
16953 Roo.bootstrap.Calendar = function(config){
16954     Roo.bootstrap.Calendar.superclass.constructor.call(this, config);
16955      this.addEvents({
16956         /**
16957              * @event select
16958              * Fires when a date is selected
16959              * @param {DatePicker} this
16960              * @param {Date} date The selected date
16961              */
16962         'select': true,
16963         /**
16964              * @event monthchange
16965              * Fires when the displayed month changes 
16966              * @param {DatePicker} this
16967              * @param {Date} date The selected month
16968              */
16969         'monthchange': true,
16970         /**
16971              * @event evententer
16972              * Fires when mouse over an event
16973              * @param {Calendar} this
16974              * @param {event} Event
16975              */
16976         'evententer': true,
16977         /**
16978              * @event eventleave
16979              * Fires when the mouse leaves an
16980              * @param {Calendar} this
16981              * @param {event}
16982              */
16983         'eventleave': true,
16984         /**
16985              * @event eventclick
16986              * Fires when the mouse click an
16987              * @param {Calendar} this
16988              * @param {event}
16989              */
16990         'eventclick': true
16991         
16992     });
16993
16994 };
16995
16996 Roo.extend(Roo.bootstrap.Calendar, Roo.bootstrap.Component,  {
16997     
16998      /**
16999      * @cfg {Number} startDay
17000      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
17001      */
17002     startDay : 0,
17003     
17004     loadMask : false,
17005     
17006     header : false,
17007       
17008     getAutoCreate : function(){
17009         
17010         
17011         var fc_button = function(name, corner, style, content ) {
17012             return Roo.apply({},{
17013                 tag : 'span',
17014                 cls : 'fc-button fc-button-'+name+' fc-state-default ' + 
17015                          (corner.length ?
17016                             'fc-corner-' + corner.split(' ').join(' fc-corner-') :
17017                             ''
17018                         ),
17019                 html : '<SPAN class="fc-text-'+style+ '">'+content +'</SPAN>',
17020                 unselectable: 'on'
17021             });
17022         };
17023         
17024         var header = {};
17025         
17026         if(!this.header){
17027             header = {
17028                 tag : 'table',
17029                 cls : 'fc-header',
17030                 style : 'width:100%',
17031                 cn : [
17032                     {
17033                         tag: 'tr',
17034                         cn : [
17035                             {
17036                                 tag : 'td',
17037                                 cls : 'fc-header-left',
17038                                 cn : [
17039                                     fc_button('prev', 'left', 'arrow', '&#8249;' ),
17040                                     fc_button('next', 'right', 'arrow', '&#8250;' ),
17041                                     { tag: 'span', cls: 'fc-header-space' },
17042                                     fc_button('today', 'left right', '', 'today' )  // neds state disabled..
17043
17044
17045                                 ]
17046                             },
17047
17048                             {
17049                                 tag : 'td',
17050                                 cls : 'fc-header-center',
17051                                 cn : [
17052                                     {
17053                                         tag: 'span',
17054                                         cls: 'fc-header-title',
17055                                         cn : {
17056                                             tag: 'H2',
17057                                             html : 'month / year'
17058                                         }
17059                                     }
17060
17061                                 ]
17062                             },
17063                             {
17064                                 tag : 'td',
17065                                 cls : 'fc-header-right',
17066                                 cn : [
17067                               /*      fc_button('month', 'left', '', 'month' ),
17068                                     fc_button('week', '', '', 'week' ),
17069                                     fc_button('day', 'right', '', 'day' )
17070                                 */    
17071
17072                                 ]
17073                             }
17074
17075                         ]
17076                     }
17077                 ]
17078             };
17079         }
17080         
17081         header = this.header;
17082         
17083        
17084         var cal_heads = function() {
17085             var ret = [];
17086             // fixme - handle this.
17087             
17088             for (var i =0; i < Date.dayNames.length; i++) {
17089                 var d = Date.dayNames[i];
17090                 ret.push({
17091                     tag: 'th',
17092                     cls : 'fc-day-header fc-' + d.substring(0,3).toLowerCase() + ' fc-widget-header',
17093                     html : d.substring(0,3)
17094                 });
17095                 
17096             }
17097             ret[0].cls += ' fc-first';
17098             ret[6].cls += ' fc-last';
17099             return ret;
17100         };
17101         var cal_cell = function(n) {
17102             return  {
17103                 tag: 'td',
17104                 cls : 'fc-day fc-'+n + ' fc-widget-content', ///fc-other-month fc-past
17105                 cn : [
17106                     {
17107                         cn : [
17108                             {
17109                                 cls: 'fc-day-number',
17110                                 html: 'D'
17111                             },
17112                             {
17113                                 cls: 'fc-day-content',
17114                              
17115                                 cn : [
17116                                      {
17117                                         style: 'position: relative;' // height: 17px;
17118                                     }
17119                                 ]
17120                             }
17121                             
17122                             
17123                         ]
17124                     }
17125                 ]
17126                 
17127             }
17128         };
17129         var cal_rows = function() {
17130             
17131             var ret = [];
17132             for (var r = 0; r < 6; r++) {
17133                 var row= {
17134                     tag : 'tr',
17135                     cls : 'fc-week',
17136                     cn : []
17137                 };
17138                 
17139                 for (var i =0; i < Date.dayNames.length; i++) {
17140                     var d = Date.dayNames[i];
17141                     row.cn.push(cal_cell(d.substring(0,3).toLowerCase()));
17142
17143                 }
17144                 row.cn[0].cls+=' fc-first';
17145                 row.cn[0].cn[0].style = 'min-height:90px';
17146                 row.cn[6].cls+=' fc-last';
17147                 ret.push(row);
17148                 
17149             }
17150             ret[0].cls += ' fc-first';
17151             ret[4].cls += ' fc-prev-last';
17152             ret[5].cls += ' fc-last';
17153             return ret;
17154             
17155         };
17156         
17157         var cal_table = {
17158             tag: 'table',
17159             cls: 'fc-border-separate',
17160             style : 'width:100%',
17161             cellspacing  : 0,
17162             cn : [
17163                 { 
17164                     tag: 'thead',
17165                     cn : [
17166                         { 
17167                             tag: 'tr',
17168                             cls : 'fc-first fc-last',
17169                             cn : cal_heads()
17170                         }
17171                     ]
17172                 },
17173                 { 
17174                     tag: 'tbody',
17175                     cn : cal_rows()
17176                 }
17177                   
17178             ]
17179         };
17180          
17181          var cfg = {
17182             cls : 'fc fc-ltr',
17183             cn : [
17184                 header,
17185                 {
17186                     cls : 'fc-content',
17187                     style : "position: relative;",
17188                     cn : [
17189                         {
17190                             cls : 'fc-view fc-view-month fc-grid',
17191                             style : 'position: relative',
17192                             unselectable : 'on',
17193                             cn : [
17194                                 {
17195                                     cls : 'fc-event-container',
17196                                     style : 'position:absolute;z-index:8;top:0;left:0;'
17197                                 },
17198                                 cal_table
17199                             ]
17200                         }
17201                     ]
17202     
17203                 }
17204            ] 
17205             
17206         };
17207         
17208          
17209         
17210         return cfg;
17211     },
17212     
17213     
17214     initEvents : function()
17215     {
17216         if(!this.store){
17217             throw "can not find store for calendar";
17218         }
17219         
17220         var mark = {
17221             tag: "div",
17222             cls:"x-dlg-mask",
17223             style: "text-align:center",
17224             cn: [
17225                 {
17226                     tag: "div",
17227                     style: "background-color:white;width:50%;margin:250 auto",
17228                     cn: [
17229                         {
17230                             tag: "img",
17231                             src: Roo.rootURL + '/images/ux/lightbox/loading.gif' 
17232                         },
17233                         {
17234                             tag: "span",
17235                             html: "Loading"
17236                         }
17237                         
17238                     ]
17239                 }
17240             ]
17241         };
17242         this.maskEl = Roo.DomHelper.append(this.el.select('.fc-content', true).first(), mark, true);
17243         
17244         var size = this.el.select('.fc-content', true).first().getSize();
17245         this.maskEl.setSize(size.width, size.height);
17246         this.maskEl.enableDisplayMode("block");
17247         if(!this.loadMask){
17248             this.maskEl.hide();
17249         }
17250         
17251         this.store = Roo.factory(this.store, Roo.data);
17252         this.store.on('load', this.onLoad, this);
17253         this.store.on('beforeload', this.onBeforeLoad, this);
17254         
17255         this.resize();
17256         
17257         this.cells = this.el.select('.fc-day',true);
17258         //Roo.log(this.cells);
17259         this.textNodes = this.el.query('.fc-day-number');
17260         this.cells.addClassOnOver('fc-state-hover');
17261         
17262         this.el.select('.fc-button-prev',true).on('click', this.showPrevMonth, this);
17263         this.el.select('.fc-button-next',true).on('click', this.showNextMonth, this);
17264         this.el.select('.fc-button-today',true).on('click', this.showToday, this);
17265         this.el.select('.fc-button',true).addClassOnOver('fc-state-hover');
17266         
17267         this.on('monthchange', this.onMonthChange, this);
17268         
17269         this.update(new Date().clearTime());
17270     },
17271     
17272     resize : function() {
17273         var sz  = this.el.getSize();
17274         
17275         this.el.select('.fc-day-header',true).setWidth(sz.width / 7);
17276         this.el.select('.fc-day-content div',true).setHeight(34);
17277     },
17278     
17279     
17280     // private
17281     showPrevMonth : function(e){
17282         this.update(this.activeDate.add("mo", -1));
17283     },
17284     showToday : function(e){
17285         this.update(new Date().clearTime());
17286     },
17287     // private
17288     showNextMonth : function(e){
17289         this.update(this.activeDate.add("mo", 1));
17290     },
17291
17292     // private
17293     showPrevYear : function(){
17294         this.update(this.activeDate.add("y", -1));
17295     },
17296
17297     // private
17298     showNextYear : function(){
17299         this.update(this.activeDate.add("y", 1));
17300     },
17301
17302     
17303    // private
17304     update : function(date)
17305     {
17306         var vd = this.activeDate;
17307         this.activeDate = date;
17308 //        if(vd && this.el){
17309 //            var t = date.getTime();
17310 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
17311 //                Roo.log('using add remove');
17312 //                
17313 //                this.fireEvent('monthchange', this, date);
17314 //                
17315 //                this.cells.removeClass("fc-state-highlight");
17316 //                this.cells.each(function(c){
17317 //                   if(c.dateValue == t){
17318 //                       c.addClass("fc-state-highlight");
17319 //                       setTimeout(function(){
17320 //                            try{c.dom.firstChild.focus();}catch(e){}
17321 //                       }, 50);
17322 //                       return false;
17323 //                   }
17324 //                   return true;
17325 //                });
17326 //                return;
17327 //            }
17328 //        }
17329         
17330         var days = date.getDaysInMonth();
17331         
17332         var firstOfMonth = date.getFirstDateOfMonth();
17333         var startingPos = firstOfMonth.getDay()-this.startDay;
17334         
17335         if(startingPos < this.startDay){
17336             startingPos += 7;
17337         }
17338         
17339         var pm = date.add(Date.MONTH, -1);
17340         var prevStart = pm.getDaysInMonth()-startingPos;
17341 //        
17342         this.cells = this.el.select('.fc-day',true);
17343         this.textNodes = this.el.query('.fc-day-number');
17344         this.cells.addClassOnOver('fc-state-hover');
17345         
17346         var cells = this.cells.elements;
17347         var textEls = this.textNodes;
17348         
17349         Roo.each(cells, function(cell){
17350             cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
17351         });
17352         
17353         days += startingPos;
17354
17355         // convert everything to numbers so it's fast
17356         var day = 86400000;
17357         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
17358         //Roo.log(d);
17359         //Roo.log(pm);
17360         //Roo.log(prevStart);
17361         
17362         var today = new Date().clearTime().getTime();
17363         var sel = date.clearTime().getTime();
17364         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
17365         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
17366         var ddMatch = this.disabledDatesRE;
17367         var ddText = this.disabledDatesText;
17368         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
17369         var ddaysText = this.disabledDaysText;
17370         var format = this.format;
17371         
17372         var setCellClass = function(cal, cell){
17373             cell.row = 0;
17374             cell.events = [];
17375             cell.more = [];
17376             //Roo.log('set Cell Class');
17377             cell.title = "";
17378             var t = d.getTime();
17379             
17380             //Roo.log(d);
17381             
17382             cell.dateValue = t;
17383             if(t == today){
17384                 cell.className += " fc-today";
17385                 cell.className += " fc-state-highlight";
17386                 cell.title = cal.todayText;
17387             }
17388             if(t == sel){
17389                 // disable highlight in other month..
17390                 //cell.className += " fc-state-highlight";
17391                 
17392             }
17393             // disabling
17394             if(t < min) {
17395                 cell.className = " fc-state-disabled";
17396                 cell.title = cal.minText;
17397                 return;
17398             }
17399             if(t > max) {
17400                 cell.className = " fc-state-disabled";
17401                 cell.title = cal.maxText;
17402                 return;
17403             }
17404             if(ddays){
17405                 if(ddays.indexOf(d.getDay()) != -1){
17406                     cell.title = ddaysText;
17407                     cell.className = " fc-state-disabled";
17408                 }
17409             }
17410             if(ddMatch && format){
17411                 var fvalue = d.dateFormat(format);
17412                 if(ddMatch.test(fvalue)){
17413                     cell.title = ddText.replace("%0", fvalue);
17414                     cell.className = " fc-state-disabled";
17415                 }
17416             }
17417             
17418             if (!cell.initialClassName) {
17419                 cell.initialClassName = cell.dom.className;
17420             }
17421             
17422             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
17423         };
17424
17425         var i = 0;
17426         
17427         for(; i < startingPos; i++) {
17428             textEls[i].innerHTML = (++prevStart);
17429             d.setDate(d.getDate()+1);
17430             
17431             cells[i].className = "fc-past fc-other-month";
17432             setCellClass(this, cells[i]);
17433         }
17434         
17435         var intDay = 0;
17436         
17437         for(; i < days; i++){
17438             intDay = i - startingPos + 1;
17439             textEls[i].innerHTML = (intDay);
17440             d.setDate(d.getDate()+1);
17441             
17442             cells[i].className = ''; // "x-date-active";
17443             setCellClass(this, cells[i]);
17444         }
17445         var extraDays = 0;
17446         
17447         for(; i < 42; i++) {
17448             textEls[i].innerHTML = (++extraDays);
17449             d.setDate(d.getDate()+1);
17450             
17451             cells[i].className = "fc-future fc-other-month";
17452             setCellClass(this, cells[i]);
17453         }
17454         
17455         this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
17456         
17457         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
17458         
17459         this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
17460         this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
17461         
17462         if(totalRows != 6){
17463             this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
17464             this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
17465         }
17466         
17467         this.fireEvent('monthchange', this, date);
17468         
17469         
17470         /*
17471         if(!this.internalRender){
17472             var main = this.el.dom.firstChild;
17473             var w = main.offsetWidth;
17474             this.el.setWidth(w + this.el.getBorderWidth("lr"));
17475             Roo.fly(main).setWidth(w);
17476             this.internalRender = true;
17477             // opera does not respect the auto grow header center column
17478             // then, after it gets a width opera refuses to recalculate
17479             // without a second pass
17480             if(Roo.isOpera && !this.secondPass){
17481                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
17482                 this.secondPass = true;
17483                 this.update.defer(10, this, [date]);
17484             }
17485         }
17486         */
17487         
17488     },
17489     
17490     findCell : function(dt) {
17491         dt = dt.clearTime().getTime();
17492         var ret = false;
17493         this.cells.each(function(c){
17494             //Roo.log("check " +c.dateValue + '?=' + dt);
17495             if(c.dateValue == dt){
17496                 ret = c;
17497                 return false;
17498             }
17499             return true;
17500         });
17501         
17502         return ret;
17503     },
17504     
17505     findCells : function(ev) {
17506         var s = ev.start.clone().clearTime().getTime();
17507        // Roo.log(s);
17508         var e= ev.end.clone().clearTime().getTime();
17509        // Roo.log(e);
17510         var ret = [];
17511         this.cells.each(function(c){
17512              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
17513             
17514             if(c.dateValue > e){
17515                 return ;
17516             }
17517             if(c.dateValue < s){
17518                 return ;
17519             }
17520             ret.push(c);
17521         });
17522         
17523         return ret;    
17524     },
17525     
17526 //    findBestRow: function(cells)
17527 //    {
17528 //        var ret = 0;
17529 //        
17530 //        for (var i =0 ; i < cells.length;i++) {
17531 //            ret  = Math.max(cells[i].rows || 0,ret);
17532 //        }
17533 //        return ret;
17534 //        
17535 //    },
17536     
17537     
17538     addItem : function(ev)
17539     {
17540         // look for vertical location slot in
17541         var cells = this.findCells(ev);
17542         
17543 //        ev.row = this.findBestRow(cells);
17544         
17545         // work out the location.
17546         
17547         var crow = false;
17548         var rows = [];
17549         for(var i =0; i < cells.length; i++) {
17550             
17551             cells[i].row = cells[0].row;
17552             
17553             if(i == 0){
17554                 cells[i].row = cells[i].row + 1;
17555             }
17556             
17557             if (!crow) {
17558                 crow = {
17559                     start : cells[i],
17560                     end :  cells[i]
17561                 };
17562                 continue;
17563             }
17564             if (crow.start.getY() == cells[i].getY()) {
17565                 // on same row.
17566                 crow.end = cells[i];
17567                 continue;
17568             }
17569             // different row.
17570             rows.push(crow);
17571             crow = {
17572                 start: cells[i],
17573                 end : cells[i]
17574             };
17575             
17576         }
17577         
17578         rows.push(crow);
17579         ev.els = [];
17580         ev.rows = rows;
17581         ev.cells = cells;
17582         
17583         cells[0].events.push(ev);
17584         
17585         this.calevents.push(ev);
17586     },
17587     
17588     clearEvents: function() {
17589         
17590         if(!this.calevents){
17591             return;
17592         }
17593         
17594         Roo.each(this.cells.elements, function(c){
17595             c.row = 0;
17596             c.events = [];
17597             c.more = [];
17598         });
17599         
17600         Roo.each(this.calevents, function(e) {
17601             Roo.each(e.els, function(el) {
17602                 el.un('mouseenter' ,this.onEventEnter, this);
17603                 el.un('mouseleave' ,this.onEventLeave, this);
17604                 el.remove();
17605             },this);
17606         },this);
17607         
17608         Roo.each(Roo.select('.fc-more-event', true).elements, function(e){
17609             e.remove();
17610         });
17611         
17612     },
17613     
17614     renderEvents: function()
17615     {   
17616         var _this = this;
17617         
17618         this.cells.each(function(c) {
17619             
17620             if(c.row < 5){
17621                 return;
17622             }
17623             
17624             var ev = c.events;
17625             
17626             var r = 4;
17627             if(c.row != c.events.length){
17628                 r = 4 - (4 - (c.row - c.events.length));
17629             }
17630             
17631             c.events = ev.slice(0, r);
17632             c.more = ev.slice(r);
17633             
17634             if(c.more.length && c.more.length == 1){
17635                 c.events.push(c.more.pop());
17636             }
17637             
17638             c.row = (c.row - ev.length) + c.events.length + ((c.more.length) ? 1 : 0);
17639             
17640         });
17641             
17642         this.cells.each(function(c) {
17643             
17644             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, c.row * 20));
17645             
17646             
17647             for (var e = 0; e < c.events.length; e++){
17648                 var ev = c.events[e];
17649                 var rows = ev.rows;
17650                 
17651                 for(var i = 0; i < rows.length; i++) {
17652                 
17653                     // how many rows should it span..
17654
17655                     var  cfg = {
17656                         cls : 'roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable',
17657                         style : 'position: absolute', // left: 387px; width: 121px; top: 359px;
17658
17659                         unselectable : "on",
17660                         cn : [
17661                             {
17662                                 cls: 'fc-event-inner',
17663                                 cn : [
17664     //                                {
17665     //                                  tag:'span',
17666     //                                  cls: 'fc-event-time',
17667     //                                  html : cells.length > 1 ? '' : ev.time
17668     //                                },
17669                                     {
17670                                       tag:'span',
17671                                       cls: 'fc-event-title',
17672                                       html : String.format('{0}', ev.title)
17673                                     }
17674
17675
17676                                 ]
17677                             },
17678                             {
17679                                 cls: 'ui-resizable-handle ui-resizable-e',
17680                                 html : '&nbsp;&nbsp;&nbsp'
17681                             }
17682
17683                         ]
17684                     };
17685
17686                     if (i == 0) {
17687                         cfg.cls += ' fc-event-start';
17688                     }
17689                     if ((i+1) == rows.length) {
17690                         cfg.cls += ' fc-event-end';
17691                     }
17692
17693                     var ctr = _this.el.select('.fc-event-container',true).first();
17694                     var cg = ctr.createChild(cfg);
17695
17696                     var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
17697                     var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
17698
17699                     var r = (c.more.length) ? 1 : 0;
17700                     cg.setXY([sbox.x +2, sbox.y + ((c.row - c.events.length - r + e) * 20)]);    
17701                     cg.setWidth(ebox.right - sbox.x -2);
17702
17703                     cg.on('mouseenter' ,_this.onEventEnter, _this, ev);
17704                     cg.on('mouseleave' ,_this.onEventLeave, _this, ev);
17705                     cg.on('click', _this.onEventClick, _this, ev);
17706
17707                     ev.els.push(cg);
17708                     
17709                 }
17710                 
17711             }
17712             
17713             
17714             if(c.more.length){
17715                 var  cfg = {
17716                     cls : 'fc-more-event roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable fc-event-start fc-event-end',
17717                     style : 'position: absolute',
17718                     unselectable : "on",
17719                     cn : [
17720                         {
17721                             cls: 'fc-event-inner',
17722                             cn : [
17723                                 {
17724                                   tag:'span',
17725                                   cls: 'fc-event-title',
17726                                   html : 'More'
17727                                 }
17728
17729
17730                             ]
17731                         },
17732                         {
17733                             cls: 'ui-resizable-handle ui-resizable-e',
17734                             html : '&nbsp;&nbsp;&nbsp'
17735                         }
17736
17737                     ]
17738                 };
17739
17740                 var ctr = _this.el.select('.fc-event-container',true).first();
17741                 var cg = ctr.createChild(cfg);
17742
17743                 var sbox = c.select('.fc-day-content',true).first().getBox();
17744                 var ebox = c.select('.fc-day-content',true).first().getBox();
17745                 //Roo.log(cg);
17746                 cg.setXY([sbox.x +2, sbox.y +((c.row - 1) * 20)]);    
17747                 cg.setWidth(ebox.right - sbox.x -2);
17748
17749                 cg.on('click', _this.onMoreEventClick, _this, c.more);
17750                 
17751             }
17752             
17753         });
17754         
17755         
17756         
17757     },
17758     
17759     onEventEnter: function (e, el,event,d) {
17760         this.fireEvent('evententer', this, el, event);
17761     },
17762     
17763     onEventLeave: function (e, el,event,d) {
17764         this.fireEvent('eventleave', this, el, event);
17765     },
17766     
17767     onEventClick: function (e, el,event,d) {
17768         this.fireEvent('eventclick', this, el, event);
17769     },
17770     
17771     onMonthChange: function () {
17772         this.store.load();
17773     },
17774     
17775     onMoreEventClick: function(e, el, more)
17776     {
17777         var _this = this;
17778         
17779         this.calpopover.placement = 'right';
17780         this.calpopover.setTitle('More');
17781         
17782         this.calpopover.setContent('');
17783         
17784         var ctr = this.calpopover.el.select('.popover-content', true).first();
17785         
17786         Roo.each(more, function(m){
17787             var cfg = {
17788                 cls : 'fc-event-hori fc-event-draggable',
17789                 html : m.title
17790             };
17791             var cg = ctr.createChild(cfg);
17792             
17793             cg.on('click', _this.onEventClick, _this, m);
17794         });
17795         
17796         this.calpopover.show(el);
17797         
17798         
17799     },
17800     
17801     onLoad: function () 
17802     {   
17803         this.calevents = [];
17804         var cal = this;
17805         
17806         if(this.store.getCount() > 0){
17807             this.store.data.each(function(d){
17808                cal.addItem({
17809                     id : d.data.id,
17810                     start: (typeof(d.data.start_dt) === 'string') ? new Date.parseDate(d.data.start_dt, 'Y-m-d H:i:s') : d.data.start_dt,
17811                     end : (typeof(d.data.end_dt) === 'string') ? new Date.parseDate(d.data.end_dt, 'Y-m-d H:i:s') : d.data.end_dt,
17812                     time : d.data.start_time,
17813                     title : d.data.title,
17814                     description : d.data.description,
17815                     venue : d.data.venue
17816                 });
17817             });
17818         }
17819         
17820         this.renderEvents();
17821         
17822         if(this.calevents.length && this.loadMask){
17823             this.maskEl.hide();
17824         }
17825     },
17826     
17827     onBeforeLoad: function()
17828     {
17829         this.clearEvents();
17830         if(this.loadMask){
17831             this.maskEl.show();
17832         }
17833     }
17834 });
17835
17836  
17837  /*
17838  * - LGPL
17839  *
17840  * element
17841  * 
17842  */
17843
17844 /**
17845  * @class Roo.bootstrap.Popover
17846  * @extends Roo.bootstrap.Component
17847  * Bootstrap Popover class
17848  * @cfg {String} html contents of the popover   (or false to use children..)
17849  * @cfg {String} title of popover (or false to hide)
17850  * @cfg {String} placement how it is placed
17851  * @cfg {String} trigger click || hover (or false to trigger manually)
17852  * @cfg {String} over what (parent or false to trigger manually.)
17853  * @cfg {Number} delay - delay before showing
17854  
17855  * @constructor
17856  * Create a new Popover
17857  * @param {Object} config The config object
17858  */
17859
17860 Roo.bootstrap.Popover = function(config){
17861     Roo.bootstrap.Popover.superclass.constructor.call(this, config);
17862     
17863     this.addEvents({
17864         // raw events
17865          /**
17866          * @event show
17867          * After the popover show
17868          * 
17869          * @param {Roo.bootstrap.Popover} this
17870          */
17871         "show" : true,
17872         /**
17873          * @event hide
17874          * After the popover hide
17875          * 
17876          * @param {Roo.bootstrap.Popover} this
17877          */
17878         "hide" : true
17879     });
17880 };
17881
17882 Roo.extend(Roo.bootstrap.Popover, Roo.bootstrap.Component,  {
17883     
17884     title: 'Fill in a title',
17885     html: false,
17886     
17887     placement : 'right',
17888     trigger : 'hover', // hover
17889     
17890     delay : 0,
17891     
17892     over: 'parent',
17893     
17894     can_build_overlaid : false,
17895     
17896     getChildContainer : function()
17897     {
17898         return this.el.select('.popover-content',true).first();
17899     },
17900     
17901     getAutoCreate : function(){
17902          
17903         var cfg = {
17904            cls : 'popover roo-dynamic',
17905            style: 'display:block',
17906            cn : [
17907                 {
17908                     cls : 'arrow'
17909                 },
17910                 {
17911                     cls : 'popover-inner',
17912                     cn : [
17913                         {
17914                             tag: 'h3',
17915                             cls: 'popover-title popover-header',
17916                             html : this.title
17917                         },
17918                         {
17919                             cls : 'popover-content popover-body',
17920                             html : this.html
17921                         }
17922                     ]
17923                     
17924                 }
17925            ]
17926         };
17927         
17928         return cfg;
17929     },
17930     setTitle: function(str)
17931     {
17932         this.title = str;
17933         this.el.select('.popover-title',true).first().dom.innerHTML = str;
17934     },
17935     setContent: function(str)
17936     {
17937         this.html = str;
17938         this.el.select('.popover-content',true).first().dom.innerHTML = str;
17939     },
17940     // as it get's added to the bottom of the page.
17941     onRender : function(ct, position)
17942     {
17943         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
17944         if(!this.el){
17945             var cfg = Roo.apply({},  this.getAutoCreate());
17946             cfg.id = Roo.id();
17947             
17948             if (this.cls) {
17949                 cfg.cls += ' ' + this.cls;
17950             }
17951             if (this.style) {
17952                 cfg.style = this.style;
17953             }
17954             //Roo.log("adding to ");
17955             this.el = Roo.get(document.body).createChild(cfg, position);
17956 //            Roo.log(this.el);
17957         }
17958         this.initEvents();
17959     },
17960     
17961     initEvents : function()
17962     {
17963         this.el.select('.popover-title',true).setVisibilityMode(Roo.Element.DISPLAY);
17964         this.el.enableDisplayMode('block');
17965         this.el.hide();
17966         if (this.over === false) {
17967             return; 
17968         }
17969         if (this.triggers === false) {
17970             return;
17971         }
17972         var on_el = (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
17973         var triggers = this.trigger ? this.trigger.split(' ') : [];
17974         Roo.each(triggers, function(trigger) {
17975         
17976             if (trigger == 'click') {
17977                 on_el.on('click', this.toggle, this);
17978             } else if (trigger != 'manual') {
17979                 var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin';
17980                 var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout';
17981       
17982                 on_el.on(eventIn  ,this.enter, this);
17983                 on_el.on(eventOut, this.leave, this);
17984             }
17985         }, this);
17986         
17987     },
17988     
17989     
17990     // private
17991     timeout : null,
17992     hoverState : null,
17993     
17994     toggle : function () {
17995         this.hoverState == 'in' ? this.leave() : this.enter();
17996     },
17997     
17998     enter : function () {
17999         
18000         clearTimeout(this.timeout);
18001     
18002         this.hoverState = 'in';
18003     
18004         if (!this.delay || !this.delay.show) {
18005             this.show();
18006             return;
18007         }
18008         var _t = this;
18009         this.timeout = setTimeout(function () {
18010             if (_t.hoverState == 'in') {
18011                 _t.show();
18012             }
18013         }, this.delay.show)
18014     },
18015     
18016     leave : function() {
18017         clearTimeout(this.timeout);
18018     
18019         this.hoverState = 'out';
18020     
18021         if (!this.delay || !this.delay.hide) {
18022             this.hide();
18023             return;
18024         }
18025         var _t = this;
18026         this.timeout = setTimeout(function () {
18027             if (_t.hoverState == 'out') {
18028                 _t.hide();
18029             }
18030         }, this.delay.hide)
18031     },
18032     
18033     show : function (on_el)
18034     {
18035         if (!on_el) {
18036             on_el= (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
18037         }
18038         
18039         // set content.
18040         this.el.select('.popover-title',true).first().dom.innerHtml = this.title;
18041         if (this.html !== false) {
18042             this.el.select('.popover-content',true).first().dom.innerHtml = this.html;
18043         }
18044         this.el.removeClass([
18045             'fade','top','bottom', 'left', 'right','in',
18046             'bs-popover-top','bs-popover-bottom', 'bs-popover-left', 'bs-popover-right'
18047         ]);
18048         if (!this.title.length) {
18049             this.el.select('.popover-title',true).hide();
18050         }
18051         
18052         var placement = typeof this.placement == 'function' ?
18053             this.placement.call(this, this.el, on_el) :
18054             this.placement;
18055             
18056         var autoToken = /\s?auto?\s?/i;
18057         var autoPlace = autoToken.test(placement);
18058         if (autoPlace) {
18059             placement = placement.replace(autoToken, '') || 'top';
18060         }
18061         
18062         //this.el.detach()
18063         //this.el.setXY([0,0]);
18064         this.el.show();
18065         this.el.dom.style.display='block';
18066         this.el.addClass(placement);
18067         
18068         //this.el.appendTo(on_el);
18069         
18070         var p = this.getPosition();
18071         var box = this.el.getBox();
18072         
18073         if (autoPlace) {
18074             // fixme..
18075         }
18076         var align = Roo.bootstrap.Popover.alignment[placement];
18077         
18078 //        Roo.log(align);
18079         this.el.alignTo(on_el, align[0],align[1]);
18080         //var arrow = this.el.select('.arrow',true).first();
18081         //arrow.set(align[2], 
18082         
18083         this.el.addClass('in');
18084         
18085         
18086         if (this.el.hasClass('fade')) {
18087             // fade it?
18088         }
18089         
18090         this.hoverState = 'in';
18091         
18092         this.fireEvent('show', this);
18093         
18094     },
18095     hide : function()
18096     {
18097         this.el.setXY([0,0]);
18098         this.el.removeClass('in');
18099         this.el.hide();
18100         this.hoverState = null;
18101         
18102         this.fireEvent('hide', this);
18103     }
18104     
18105 });
18106
18107 Roo.bootstrap.Popover.alignment = {
18108     'left' : ['r-l', [-10,0], 'right bs-popover-right'],
18109     'right' : ['l-r', [10,0], 'left bs-popover-left'],
18110     'bottom' : ['t-b', [0,10], 'top bs-popover-top'],
18111     'top' : [ 'b-t', [0,-10], 'bottom bs-popover-bottom']
18112 };
18113
18114  /*
18115  * - LGPL
18116  *
18117  * Progress
18118  * 
18119  */
18120
18121 /**
18122  * @class Roo.bootstrap.Progress
18123  * @extends Roo.bootstrap.Component
18124  * Bootstrap Progress class
18125  * @cfg {Boolean} striped striped of the progress bar
18126  * @cfg {Boolean} active animated of the progress bar
18127  * 
18128  * 
18129  * @constructor
18130  * Create a new Progress
18131  * @param {Object} config The config object
18132  */
18133
18134 Roo.bootstrap.Progress = function(config){
18135     Roo.bootstrap.Progress.superclass.constructor.call(this, config);
18136 };
18137
18138 Roo.extend(Roo.bootstrap.Progress, Roo.bootstrap.Component,  {
18139     
18140     striped : false,
18141     active: false,
18142     
18143     getAutoCreate : function(){
18144         var cfg = {
18145             tag: 'div',
18146             cls: 'progress'
18147         };
18148         
18149         
18150         if(this.striped){
18151             cfg.cls += ' progress-striped';
18152         }
18153       
18154         if(this.active){
18155             cfg.cls += ' active';
18156         }
18157         
18158         
18159         return cfg;
18160     }
18161    
18162 });
18163
18164  
18165
18166  /*
18167  * - LGPL
18168  *
18169  * ProgressBar
18170  * 
18171  */
18172
18173 /**
18174  * @class Roo.bootstrap.ProgressBar
18175  * @extends Roo.bootstrap.Component
18176  * Bootstrap ProgressBar class
18177  * @cfg {Number} aria_valuenow aria-value now
18178  * @cfg {Number} aria_valuemin aria-value min
18179  * @cfg {Number} aria_valuemax aria-value max
18180  * @cfg {String} label label for the progress bar
18181  * @cfg {String} panel (success | info | warning | danger )
18182  * @cfg {String} role role of the progress bar
18183  * @cfg {String} sr_only text
18184  * 
18185  * 
18186  * @constructor
18187  * Create a new ProgressBar
18188  * @param {Object} config The config object
18189  */
18190
18191 Roo.bootstrap.ProgressBar = function(config){
18192     Roo.bootstrap.ProgressBar.superclass.constructor.call(this, config);
18193 };
18194
18195 Roo.extend(Roo.bootstrap.ProgressBar, Roo.bootstrap.Component,  {
18196     
18197     aria_valuenow : 0,
18198     aria_valuemin : 0,
18199     aria_valuemax : 100,
18200     label : false,
18201     panel : false,
18202     role : false,
18203     sr_only: false,
18204     
18205     getAutoCreate : function()
18206     {
18207         
18208         var cfg = {
18209             tag: 'div',
18210             cls: 'progress-bar',
18211             style: 'width:' + Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%'
18212         };
18213         
18214         if(this.sr_only){
18215             cfg.cn = {
18216                 tag: 'span',
18217                 cls: 'sr-only',
18218                 html: this.sr_only
18219             }
18220         }
18221         
18222         if(this.role){
18223             cfg.role = this.role;
18224         }
18225         
18226         if(this.aria_valuenow){
18227             cfg['aria-valuenow'] = this.aria_valuenow;
18228         }
18229         
18230         if(this.aria_valuemin){
18231             cfg['aria-valuemin'] = this.aria_valuemin;
18232         }
18233         
18234         if(this.aria_valuemax){
18235             cfg['aria-valuemax'] = this.aria_valuemax;
18236         }
18237         
18238         if(this.label && !this.sr_only){
18239             cfg.html = this.label;
18240         }
18241         
18242         if(this.panel){
18243             cfg.cls += ' progress-bar-' + this.panel;
18244         }
18245         
18246         return cfg;
18247     },
18248     
18249     update : function(aria_valuenow)
18250     {
18251         this.aria_valuenow = aria_valuenow;
18252         
18253         this.el.setStyle('width', Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%');
18254     }
18255    
18256 });
18257
18258  
18259
18260  /*
18261  * - LGPL
18262  *
18263  * column
18264  * 
18265  */
18266
18267 /**
18268  * @class Roo.bootstrap.TabGroup
18269  * @extends Roo.bootstrap.Column
18270  * Bootstrap Column class
18271  * @cfg {String} navId the navigation id (for use with navbars) - will be auto generated if it does not exist..
18272  * @cfg {Boolean} carousel true to make the group behave like a carousel
18273  * @cfg {Boolean} bullets show bullets for the panels
18274  * @cfg {Boolean} autoslide (true|false) auto slide .. default false
18275  * @cfg {Number} timer auto slide timer .. default 0 millisecond
18276  * @cfg {Boolean} showarrow (true|false) show arrow default true
18277  * 
18278  * @constructor
18279  * Create a new TabGroup
18280  * @param {Object} config The config object
18281  */
18282
18283 Roo.bootstrap.TabGroup = function(config){
18284     Roo.bootstrap.TabGroup.superclass.constructor.call(this, config);
18285     if (!this.navId) {
18286         this.navId = Roo.id();
18287     }
18288     this.tabs = [];
18289     Roo.bootstrap.TabGroup.register(this);
18290     
18291 };
18292
18293 Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
18294     
18295     carousel : false,
18296     transition : false,
18297     bullets : 0,
18298     timer : 0,
18299     autoslide : false,
18300     slideFn : false,
18301     slideOnTouch : false,
18302     showarrow : true,
18303     
18304     getAutoCreate : function()
18305     {
18306         var cfg = Roo.apply({}, Roo.bootstrap.TabGroup.superclass.getAutoCreate.call(this));
18307         
18308         cfg.cls += ' tab-content';
18309         
18310         if (this.carousel) {
18311             cfg.cls += ' carousel slide';
18312             
18313             cfg.cn = [{
18314                cls : 'carousel-inner',
18315                cn : []
18316             }];
18317         
18318             if(this.bullets  && !Roo.isTouch){
18319                 
18320                 var bullets = {
18321                     cls : 'carousel-bullets',
18322                     cn : []
18323                 };
18324                
18325                 if(this.bullets_cls){
18326                     bullets.cls = bullets.cls + ' ' + this.bullets_cls;
18327                 }
18328                 
18329                 bullets.cn.push({
18330                     cls : 'clear'
18331                 });
18332                 
18333                 cfg.cn[0].cn.push(bullets);
18334             }
18335             
18336             if(this.showarrow){
18337                 cfg.cn[0].cn.push({
18338                     tag : 'div',
18339                     class : 'carousel-arrow',
18340                     cn : [
18341                         {
18342                             tag : 'div',
18343                             class : 'carousel-prev',
18344                             cn : [
18345                                 {
18346                                     tag : 'i',
18347                                     class : 'fa fa-chevron-left'
18348                                 }
18349                             ]
18350                         },
18351                         {
18352                             tag : 'div',
18353                             class : 'carousel-next',
18354                             cn : [
18355                                 {
18356                                     tag : 'i',
18357                                     class : 'fa fa-chevron-right'
18358                                 }
18359                             ]
18360                         }
18361                     ]
18362                 });
18363             }
18364             
18365         }
18366         
18367         return cfg;
18368     },
18369     
18370     initEvents:  function()
18371     {
18372 //        if(Roo.isTouch && this.slideOnTouch && !this.showarrow){
18373 //            this.el.on("touchstart", this.onTouchStart, this);
18374 //        }
18375         
18376         if(this.autoslide){
18377             var _this = this;
18378             
18379             this.slideFn = window.setInterval(function() {
18380                 _this.showPanelNext();
18381             }, this.timer);
18382         }
18383         
18384         if(this.showarrow){
18385             this.el.select('.carousel-prev', true).first().on('click', this.showPanelPrev, this);
18386             this.el.select('.carousel-next', true).first().on('click', this.showPanelNext, this);
18387         }
18388         
18389         
18390     },
18391     
18392 //    onTouchStart : function(e, el, o)
18393 //    {
18394 //        if(!this.slideOnTouch || !Roo.isTouch || Roo.get(e.getTarget()).hasClass('roo-button-text')){
18395 //            return;
18396 //        }
18397 //        
18398 //        this.showPanelNext();
18399 //    },
18400     
18401     
18402     getChildContainer : function()
18403     {
18404         return this.carousel ? this.el.select('.carousel-inner', true).first() : this.el;
18405     },
18406     
18407     /**
18408     * register a Navigation item
18409     * @param {Roo.bootstrap.NavItem} the navitem to add
18410     */
18411     register : function(item)
18412     {
18413         this.tabs.push( item);
18414         item.navId = this.navId; // not really needed..
18415         this.addBullet();
18416     
18417     },
18418     
18419     getActivePanel : function()
18420     {
18421         var r = false;
18422         Roo.each(this.tabs, function(t) {
18423             if (t.active) {
18424                 r = t;
18425                 return false;
18426             }
18427             return null;
18428         });
18429         return r;
18430         
18431     },
18432     getPanelByName : function(n)
18433     {
18434         var r = false;
18435         Roo.each(this.tabs, function(t) {
18436             if (t.tabId == n) {
18437                 r = t;
18438                 return false;
18439             }
18440             return null;
18441         });
18442         return r;
18443     },
18444     indexOfPanel : function(p)
18445     {
18446         var r = false;
18447         Roo.each(this.tabs, function(t,i) {
18448             if (t.tabId == p.tabId) {
18449                 r = i;
18450                 return false;
18451             }
18452             return null;
18453         });
18454         return r;
18455     },
18456     /**
18457      * show a specific panel
18458      * @param {Roo.bootstrap.TabPanel|number|string} panel to change to (use the tabId to specify a specific one)
18459      * @return {boolean} false if panel was not shown (invalid entry or beforedeactivate fails.)
18460      */
18461     showPanel : function (pan)
18462     {
18463         if(this.transition || typeof(pan) == 'undefined'){
18464             Roo.log("waiting for the transitionend");
18465             return false;
18466         }
18467         
18468         if (typeof(pan) == 'number') {
18469             pan = this.tabs[pan];
18470         }
18471         
18472         if (typeof(pan) == 'string') {
18473             pan = this.getPanelByName(pan);
18474         }
18475         
18476         var cur = this.getActivePanel();
18477         
18478         if(!pan || !cur){
18479             Roo.log('pan or acitve pan is undefined');
18480             return false;
18481         }
18482         
18483         if (pan.tabId == this.getActivePanel().tabId) {
18484             return true;
18485         }
18486         
18487         if (false === cur.fireEvent('beforedeactivate')) {
18488             return false;
18489         }
18490         
18491         if(this.bullets > 0 && !Roo.isTouch){
18492             this.setActiveBullet(this.indexOfPanel(pan));
18493         }
18494         
18495         if (this.carousel && typeof(Roo.get(document.body).dom.style.transition) != 'undefined') {
18496             
18497             //class="carousel-item carousel-item-next carousel-item-left"
18498             
18499             this.transition = true;
18500             var dir = this.indexOfPanel(pan) > this.indexOfPanel(cur)  ? 'next' : 'prev';
18501             var lr = dir == 'next' ? 'left' : 'right';
18502             pan.el.addClass(dir); // or prev
18503             pan.el.addClass('carousel-item-' + dir); // or prev
18504             pan.el.dom.offsetWidth; // find the offset with - causing a reflow?
18505             cur.el.addClass(lr); // or right
18506             pan.el.addClass(lr);
18507             cur.el.addClass('carousel-item-' +lr); // or right
18508             pan.el.addClass('carousel-item-' +lr);
18509             
18510             
18511             var _this = this;
18512             cur.el.on('transitionend', function() {
18513                 Roo.log("trans end?");
18514                 
18515                 pan.el.removeClass([lr,dir, 'carousel-item-' + lr, 'carousel-item-' + dir]);
18516                 pan.setActive(true);
18517                 
18518                 cur.el.removeClass([lr, 'carousel-item-' + lr]);
18519                 cur.setActive(false);
18520                 
18521                 _this.transition = false;
18522                 
18523             }, this, { single:  true } );
18524             
18525             return true;
18526         }
18527         
18528         cur.setActive(false);
18529         pan.setActive(true);
18530         
18531         return true;
18532         
18533     },
18534     showPanelNext : function()
18535     {
18536         var i = this.indexOfPanel(this.getActivePanel());
18537         
18538         if (i >= this.tabs.length - 1 && !this.autoslide) {
18539             return;
18540         }
18541         
18542         if (i >= this.tabs.length - 1 && this.autoslide) {
18543             i = -1;
18544         }
18545         
18546         this.showPanel(this.tabs[i+1]);
18547     },
18548     
18549     showPanelPrev : function()
18550     {
18551         var i = this.indexOfPanel(this.getActivePanel());
18552         
18553         if (i  < 1 && !this.autoslide) {
18554             return;
18555         }
18556         
18557         if (i < 1 && this.autoslide) {
18558             i = this.tabs.length;
18559         }
18560         
18561         this.showPanel(this.tabs[i-1]);
18562     },
18563     
18564     
18565     addBullet: function()
18566     {
18567         if(!this.bullets || Roo.isTouch){
18568             return;
18569         }
18570         var ctr = this.el.select('.carousel-bullets',true).first();
18571         var i = this.el.select('.carousel-bullets .bullet',true).getCount() ;
18572         var bullet = ctr.createChild({
18573             cls : 'bullet bullet-' + i
18574         },ctr.dom.lastChild);
18575         
18576         
18577         var _this = this;
18578         
18579         bullet.on('click', (function(e, el, o, ii, t){
18580
18581             e.preventDefault();
18582
18583             this.showPanel(ii);
18584
18585             if(this.autoslide && this.slideFn){
18586                 clearInterval(this.slideFn);
18587                 this.slideFn = window.setInterval(function() {
18588                     _this.showPanelNext();
18589                 }, this.timer);
18590             }
18591
18592         }).createDelegate(this, [i, bullet], true));
18593                 
18594         
18595     },
18596      
18597     setActiveBullet : function(i)
18598     {
18599         if(Roo.isTouch){
18600             return;
18601         }
18602         
18603         Roo.each(this.el.select('.bullet', true).elements, function(el){
18604             el.removeClass('selected');
18605         });
18606
18607         var bullet = this.el.select('.bullet-' + i, true).first();
18608         
18609         if(!bullet){
18610             return;
18611         }
18612         
18613         bullet.addClass('selected');
18614     }
18615     
18616     
18617   
18618 });
18619
18620  
18621
18622  
18623  
18624 Roo.apply(Roo.bootstrap.TabGroup, {
18625     
18626     groups: {},
18627      /**
18628     * register a Navigation Group
18629     * @param {Roo.bootstrap.NavGroup} the navgroup to add
18630     */
18631     register : function(navgrp)
18632     {
18633         this.groups[navgrp.navId] = navgrp;
18634         
18635     },
18636     /**
18637     * fetch a Navigation Group based on the navigation ID
18638     * if one does not exist , it will get created.
18639     * @param {string} the navgroup to add
18640     * @returns {Roo.bootstrap.NavGroup} the navgroup 
18641     */
18642     get: function(navId) {
18643         if (typeof(this.groups[navId]) == 'undefined') {
18644             this.register(new Roo.bootstrap.TabGroup({ navId : navId }));
18645         }
18646         return this.groups[navId] ;
18647     }
18648     
18649     
18650     
18651 });
18652
18653  /*
18654  * - LGPL
18655  *
18656  * TabPanel
18657  * 
18658  */
18659
18660 /**
18661  * @class Roo.bootstrap.TabPanel
18662  * @extends Roo.bootstrap.Component
18663  * Bootstrap TabPanel class
18664  * @cfg {Boolean} active panel active
18665  * @cfg {String} html panel content
18666  * @cfg {String} tabId  unique tab ID (will be autogenerated if not set. - used to match TabItem to Panel)
18667  * @cfg {String} navId The Roo.bootstrap.NavGroup which triggers show hide ()
18668  * @cfg {String} href click to link..
18669  * 
18670  * 
18671  * @constructor
18672  * Create a new TabPanel
18673  * @param {Object} config The config object
18674  */
18675
18676 Roo.bootstrap.TabPanel = function(config){
18677     Roo.bootstrap.TabPanel.superclass.constructor.call(this, config);
18678     this.addEvents({
18679         /**
18680              * @event changed
18681              * Fires when the active status changes
18682              * @param {Roo.bootstrap.TabPanel} this
18683              * @param {Boolean} state the new state
18684             
18685          */
18686         'changed': true,
18687         /**
18688              * @event beforedeactivate
18689              * Fires before a tab is de-activated - can be used to do validation on a form.
18690              * @param {Roo.bootstrap.TabPanel} this
18691              * @return {Boolean} false if there is an error
18692             
18693          */
18694         'beforedeactivate': true
18695      });
18696     
18697     this.tabId = this.tabId || Roo.id();
18698   
18699 };
18700
18701 Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
18702     
18703     active: false,
18704     html: false,
18705     tabId: false,
18706     navId : false,
18707     href : '',
18708     
18709     getAutoCreate : function(){
18710         
18711         
18712         var cfg = {
18713             tag: 'div',
18714             // item is needed for carousel - not sure if it has any effect otherwise
18715             cls: 'carousel-item tab-pane item' + ((this.href.length) ? ' clickable ' : ''),
18716             html: this.html || ''
18717         };
18718         
18719         if(this.active){
18720             cfg.cls += ' active';
18721         }
18722         
18723         if(this.tabId){
18724             cfg.tabId = this.tabId;
18725         }
18726         
18727         
18728         
18729         return cfg;
18730     },
18731     
18732     initEvents:  function()
18733     {
18734         var p = this.parent();
18735         
18736         this.navId = this.navId || p.navId;
18737         
18738         if (typeof(this.navId) != 'undefined') {
18739             // not really needed.. but just in case.. parent should be a NavGroup.
18740             var tg = Roo.bootstrap.TabGroup.get(this.navId);
18741             
18742             tg.register(this);
18743             
18744             var i = tg.tabs.length - 1;
18745             
18746             if(this.active && tg.bullets > 0 && i < tg.bullets){
18747                 tg.setActiveBullet(i);
18748             }
18749         }
18750         
18751         this.el.on('click', this.onClick, this);
18752         
18753         if(Roo.isTouch){
18754             this.el.on("touchstart", this.onTouchStart, this);
18755             this.el.on("touchmove", this.onTouchMove, this);
18756             this.el.on("touchend", this.onTouchEnd, this);
18757         }
18758         
18759     },
18760     
18761     onRender : function(ct, position)
18762     {
18763         Roo.bootstrap.TabPanel.superclass.onRender.call(this, ct, position);
18764     },
18765     
18766     setActive : function(state)
18767     {
18768         Roo.log("panel - set active " + this.tabId + "=" + state);
18769         
18770         this.active = state;
18771         if (!state) {
18772             this.el.removeClass('active');
18773             
18774         } else  if (!this.el.hasClass('active')) {
18775             this.el.addClass('active');
18776         }
18777         
18778         this.fireEvent('changed', this, state);
18779     },
18780     
18781     onClick : function(e)
18782     {
18783         e.preventDefault();
18784         
18785         if(!this.href.length){
18786             return;
18787         }
18788         
18789         window.location.href = this.href;
18790     },
18791     
18792     startX : 0,
18793     startY : 0,
18794     endX : 0,
18795     endY : 0,
18796     swiping : false,
18797     
18798     onTouchStart : function(e)
18799     {
18800         this.swiping = false;
18801         
18802         this.startX = e.browserEvent.touches[0].clientX;
18803         this.startY = e.browserEvent.touches[0].clientY;
18804     },
18805     
18806     onTouchMove : function(e)
18807     {
18808         this.swiping = true;
18809         
18810         this.endX = e.browserEvent.touches[0].clientX;
18811         this.endY = e.browserEvent.touches[0].clientY;
18812     },
18813     
18814     onTouchEnd : function(e)
18815     {
18816         if(!this.swiping){
18817             this.onClick(e);
18818             return;
18819         }
18820         
18821         var tabGroup = this.parent();
18822         
18823         if(this.endX > this.startX){ // swiping right
18824             tabGroup.showPanelPrev();
18825             return;
18826         }
18827         
18828         if(this.startX > this.endX){ // swiping left
18829             tabGroup.showPanelNext();
18830             return;
18831         }
18832     }
18833     
18834     
18835 });
18836  
18837
18838  
18839
18840  /*
18841  * - LGPL
18842  *
18843  * DateField
18844  * 
18845  */
18846
18847 /**
18848  * @class Roo.bootstrap.DateField
18849  * @extends Roo.bootstrap.Input
18850  * Bootstrap DateField class
18851  * @cfg {Number} weekStart default 0
18852  * @cfg {String} viewMode default empty, (months|years)
18853  * @cfg {String} minViewMode default empty, (months|years)
18854  * @cfg {Number} startDate default -Infinity
18855  * @cfg {Number} endDate default Infinity
18856  * @cfg {Boolean} todayHighlight default false
18857  * @cfg {Boolean} todayBtn default false
18858  * @cfg {Boolean} calendarWeeks default false
18859  * @cfg {Object} daysOfWeekDisabled default empty
18860  * @cfg {Boolean} singleMode default false (true | false)
18861  * 
18862  * @cfg {Boolean} keyboardNavigation default true
18863  * @cfg {String} language default en
18864  * 
18865  * @constructor
18866  * Create a new DateField
18867  * @param {Object} config The config object
18868  */
18869
18870 Roo.bootstrap.DateField = function(config){
18871     Roo.bootstrap.DateField.superclass.constructor.call(this, config);
18872      this.addEvents({
18873             /**
18874              * @event show
18875              * Fires when this field show.
18876              * @param {Roo.bootstrap.DateField} this
18877              * @param {Mixed} date The date value
18878              */
18879             show : true,
18880             /**
18881              * @event show
18882              * Fires when this field hide.
18883              * @param {Roo.bootstrap.DateField} this
18884              * @param {Mixed} date The date value
18885              */
18886             hide : true,
18887             /**
18888              * @event select
18889              * Fires when select a date.
18890              * @param {Roo.bootstrap.DateField} this
18891              * @param {Mixed} date The date value
18892              */
18893             select : true,
18894             /**
18895              * @event beforeselect
18896              * Fires when before select a date.
18897              * @param {Roo.bootstrap.DateField} this
18898              * @param {Mixed} date The date value
18899              */
18900             beforeselect : true
18901         });
18902 };
18903
18904 Roo.extend(Roo.bootstrap.DateField, Roo.bootstrap.Input,  {
18905     
18906     /**
18907      * @cfg {String} format
18908      * The default date format string which can be overriden for localization support.  The format must be
18909      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
18910      */
18911     format : "m/d/y",
18912     /**
18913      * @cfg {String} altFormats
18914      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
18915      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
18916      */
18917     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
18918     
18919     weekStart : 0,
18920     
18921     viewMode : '',
18922     
18923     minViewMode : '',
18924     
18925     todayHighlight : false,
18926     
18927     todayBtn: false,
18928     
18929     language: 'en',
18930     
18931     keyboardNavigation: true,
18932     
18933     calendarWeeks: false,
18934     
18935     startDate: -Infinity,
18936     
18937     endDate: Infinity,
18938     
18939     daysOfWeekDisabled: [],
18940     
18941     _events: [],
18942     
18943     singleMode : false,
18944     
18945     UTCDate: function()
18946     {
18947         return new Date(Date.UTC.apply(Date, arguments));
18948     },
18949     
18950     UTCToday: function()
18951     {
18952         var today = new Date();
18953         return this.UTCDate(today.getUTCFullYear(), today.getUTCMonth(), today.getUTCDate());
18954     },
18955     
18956     getDate: function() {
18957             var d = this.getUTCDate();
18958             return new Date(d.getTime() + (d.getTimezoneOffset()*60000));
18959     },
18960     
18961     getUTCDate: function() {
18962             return this.date;
18963     },
18964     
18965     setDate: function(d) {
18966             this.setUTCDate(new Date(d.getTime() - (d.getTimezoneOffset()*60000)));
18967     },
18968     
18969     setUTCDate: function(d) {
18970             this.date = d;
18971             this.setValue(this.formatDate(this.date));
18972     },
18973         
18974     onRender: function(ct, position)
18975     {
18976         
18977         Roo.bootstrap.DateField.superclass.onRender.call(this, ct, position);
18978         
18979         this.language = this.language || 'en';
18980         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : this.language.split('-')[0];
18981         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : "en";
18982         
18983         this.isRTL = Roo.bootstrap.DateField.dates[this.language].rtl || false;
18984         this.format = this.format || 'm/d/y';
18985         this.isInline = false;
18986         this.isInput = true;
18987         this.component = this.el.select('.add-on', true).first() || false;
18988         this.component = (this.component && this.component.length === 0) ? false : this.component;
18989         this.hasInput = this.component && this.inputEl().length;
18990         
18991         if (typeof(this.minViewMode === 'string')) {
18992             switch (this.minViewMode) {
18993                 case 'months':
18994                     this.minViewMode = 1;
18995                     break;
18996                 case 'years':
18997                     this.minViewMode = 2;
18998                     break;
18999                 default:
19000                     this.minViewMode = 0;
19001                     break;
19002             }
19003         }
19004         
19005         if (typeof(this.viewMode === 'string')) {
19006             switch (this.viewMode) {
19007                 case 'months':
19008                     this.viewMode = 1;
19009                     break;
19010                 case 'years':
19011                     this.viewMode = 2;
19012                     break;
19013                 default:
19014                     this.viewMode = 0;
19015                     break;
19016             }
19017         }
19018                 
19019         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.DateField.template);
19020         
19021 //        this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.DateField.template);
19022         
19023         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19024         
19025         this.picker().on('mousedown', this.onMousedown, this);
19026         this.picker().on('click', this.onClick, this);
19027         
19028         this.picker().addClass('datepicker-dropdown');
19029         
19030         this.startViewMode = this.viewMode;
19031         
19032         if(this.singleMode){
19033             Roo.each(this.picker().select('thead > tr > th', true).elements, function(v){
19034                 v.setVisibilityMode(Roo.Element.DISPLAY);
19035                 v.hide();
19036             });
19037             
19038             Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
19039                 v.setStyle('width', '189px');
19040             });
19041         }
19042         
19043         Roo.each(this.picker().select('tfoot th.today', true).elements, function(v){
19044             if(!this.calendarWeeks){
19045                 v.remove();
19046                 return;
19047             }
19048             
19049             v.dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19050             v.attr('colspan', function(i, val){
19051                 return parseInt(val) + 1;
19052             });
19053         });
19054                         
19055         
19056         this.weekEnd = this.weekStart === 0 ? 6 : this.weekStart - 1;
19057         
19058         this.setStartDate(this.startDate);
19059         this.setEndDate(this.endDate);
19060         
19061         this.setDaysOfWeekDisabled(this.daysOfWeekDisabled);
19062         
19063         this.fillDow();
19064         this.fillMonths();
19065         this.update();
19066         this.showMode();
19067         
19068         if(this.isInline) {
19069             this.showPopup();
19070         }
19071     },
19072     
19073     picker : function()
19074     {
19075         return this.pickerEl;
19076 //        return this.el.select('.datepicker', true).first();
19077     },
19078     
19079     fillDow: function()
19080     {
19081         var dowCnt = this.weekStart;
19082         
19083         var dow = {
19084             tag: 'tr',
19085             cn: [
19086                 
19087             ]
19088         };
19089         
19090         if(this.calendarWeeks){
19091             dow.cn.push({
19092                 tag: 'th',
19093                 cls: 'cw',
19094                 html: '&nbsp;'
19095             })
19096         }
19097         
19098         while (dowCnt < this.weekStart + 7) {
19099             dow.cn.push({
19100                 tag: 'th',
19101                 cls: 'dow',
19102                 html: Roo.bootstrap.DateField.dates[this.language].daysMin[(dowCnt++)%7]
19103             });
19104         }
19105         
19106         this.picker().select('>.datepicker-days thead', true).first().createChild(dow);
19107     },
19108     
19109     fillMonths: function()
19110     {    
19111         var i = 0;
19112         var months = this.picker().select('>.datepicker-months td', true).first();
19113         
19114         months.dom.innerHTML = '';
19115         
19116         while (i < 12) {
19117             var month = {
19118                 tag: 'span',
19119                 cls: 'month',
19120                 html: Roo.bootstrap.DateField.dates[this.language].monthsShort[i++]
19121             };
19122             
19123             months.createChild(month);
19124         }
19125         
19126     },
19127     
19128     update: function()
19129     {
19130         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;
19131         
19132         if (this.date < this.startDate) {
19133             this.viewDate = new Date(this.startDate);
19134         } else if (this.date > this.endDate) {
19135             this.viewDate = new Date(this.endDate);
19136         } else {
19137             this.viewDate = new Date(this.date);
19138         }
19139         
19140         this.fill();
19141     },
19142     
19143     fill: function() 
19144     {
19145         var d = new Date(this.viewDate),
19146                 year = d.getUTCFullYear(),
19147                 month = d.getUTCMonth(),
19148                 startYear = this.startDate !== -Infinity ? this.startDate.getUTCFullYear() : -Infinity,
19149                 startMonth = this.startDate !== -Infinity ? this.startDate.getUTCMonth() : -Infinity,
19150                 endYear = this.endDate !== Infinity ? this.endDate.getUTCFullYear() : Infinity,
19151                 endMonth = this.endDate !== Infinity ? this.endDate.getUTCMonth() : Infinity,
19152                 currentDate = this.date && this.date.valueOf(),
19153                 today = this.UTCToday();
19154         
19155         this.picker().select('>.datepicker-days thead th.switch', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].months[month]+' '+year;
19156         
19157 //        this.picker().select('>tfoot th.today', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
19158         
19159 //        this.picker.select('>tfoot th.today').
19160 //                                              .text(dates[this.language].today)
19161 //                                              .toggle(this.todayBtn !== false);
19162     
19163         this.updateNavArrows();
19164         this.fillMonths();
19165                                                 
19166         var prevMonth = this.UTCDate(year, month-1, 28,0,0,0,0),
19167         
19168         day = prevMonth.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());
19169          
19170         prevMonth.setUTCDate(day);
19171         
19172         prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.weekStart + 7)%7);
19173         
19174         var nextMonth = new Date(prevMonth);
19175         
19176         nextMonth.setUTCDate(nextMonth.getUTCDate() + 42);
19177         
19178         nextMonth = nextMonth.valueOf();
19179         
19180         var fillMonths = false;
19181         
19182         this.picker().select('>.datepicker-days tbody',true).first().dom.innerHTML = '';
19183         
19184         while(prevMonth.valueOf() <= nextMonth) {
19185             var clsName = '';
19186             
19187             if (prevMonth.getUTCDay() === this.weekStart) {
19188                 if(fillMonths){
19189                     this.picker().select('>.datepicker-days tbody',true).first().createChild(fillMonths);
19190                 }
19191                     
19192                 fillMonths = {
19193                     tag: 'tr',
19194                     cn: []
19195                 };
19196                 
19197                 if(this.calendarWeeks){
19198                     // ISO 8601: First week contains first thursday.
19199                     // ISO also states week starts on Monday, but we can be more abstract here.
19200                     var
19201                     // Start of current week: based on weekstart/current date
19202                     ws = new Date(+prevMonth + (this.weekStart - prevMonth.getUTCDay() - 7) % 7 * 864e5),
19203                     // Thursday of this week
19204                     th = new Date(+ws + (7 + 4 - ws.getUTCDay()) % 7 * 864e5),
19205                     // First Thursday of year, year from thursday
19206                     yth = new Date(+(yth = this.UTCDate(th.getUTCFullYear(), 0, 1)) + (7 + 4 - yth.getUTCDay())%7*864e5),
19207                     // Calendar week: ms between thursdays, div ms per day, div 7 days
19208                     calWeek =  (th - yth) / 864e5 / 7 + 1;
19209                     
19210                     fillMonths.cn.push({
19211                         tag: 'td',
19212                         cls: 'cw',
19213                         html: calWeek
19214                     });
19215                 }
19216             }
19217             
19218             if (prevMonth.getUTCFullYear() < year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() < month)) {
19219                 clsName += ' old';
19220             } else if (prevMonth.getUTCFullYear() > year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() > month)) {
19221                 clsName += ' new';
19222             }
19223             if (this.todayHighlight &&
19224                 prevMonth.getUTCFullYear() == today.getFullYear() &&
19225                 prevMonth.getUTCMonth() == today.getMonth() &&
19226                 prevMonth.getUTCDate() == today.getDate()) {
19227                 clsName += ' today';
19228             }
19229             
19230             if (currentDate && prevMonth.valueOf() === currentDate) {
19231                 clsName += ' active';
19232             }
19233             
19234             if (prevMonth.valueOf() < this.startDate || prevMonth.valueOf() > this.endDate ||
19235                     this.daysOfWeekDisabled.indexOf(prevMonth.getUTCDay()) !== -1) {
19236                     clsName += ' disabled';
19237             }
19238             
19239             fillMonths.cn.push({
19240                 tag: 'td',
19241                 cls: 'day ' + clsName,
19242                 html: prevMonth.getDate()
19243             });
19244             
19245             prevMonth.setDate(prevMonth.getDate()+1);
19246         }
19247           
19248         var currentYear = this.date && this.date.getUTCFullYear();
19249         var currentMonth = this.date && this.date.getUTCMonth();
19250         
19251         this.picker().select('>.datepicker-months th.switch',true).first().dom.innerHTML = year;
19252         
19253         Roo.each(this.picker().select('>.datepicker-months tbody span',true).elements, function(v,k){
19254             v.removeClass('active');
19255             
19256             if(currentYear === year && k === currentMonth){
19257                 v.addClass('active');
19258             }
19259             
19260             if (year < startYear || year > endYear || (year == startYear && k < startMonth) || (year == endYear && k > endMonth)) {
19261                 v.addClass('disabled');
19262             }
19263             
19264         });
19265         
19266         
19267         year = parseInt(year/10, 10) * 10;
19268         
19269         this.picker().select('>.datepicker-years th.switch', true).first().dom.innerHTML = year + '-' + (year + 9);
19270         
19271         this.picker().select('>.datepicker-years tbody td',true).first().dom.innerHTML = '';
19272         
19273         year -= 1;
19274         for (var i = -1; i < 11; i++) {
19275             this.picker().select('>.datepicker-years tbody td',true).first().createChild({
19276                 tag: 'span',
19277                 cls: 'year' + (i === -1 || i === 10 ? ' old' : '') + (currentYear === year ? ' active' : '') + (year < startYear || year > endYear ? ' disabled' : ''),
19278                 html: year
19279             });
19280             
19281             year += 1;
19282         }
19283     },
19284     
19285     showMode: function(dir) 
19286     {
19287         if (dir) {
19288             this.viewMode = Math.max(this.minViewMode, Math.min(2, this.viewMode + dir));
19289         }
19290         
19291         Roo.each(this.picker().select('>div',true).elements, function(v){
19292             v.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
19293             v.hide();
19294         });
19295         this.picker().select('>.datepicker-'+Roo.bootstrap.DateField.modes[this.viewMode].clsName, true).first().show();
19296     },
19297     
19298     place: function()
19299     {
19300         if(this.isInline) {
19301             return;
19302         }
19303         
19304         this.picker().removeClass(['bottom', 'top']);
19305         
19306         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
19307             /*
19308              * place to the top of element!
19309              *
19310              */
19311             
19312             this.picker().addClass('top');
19313             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
19314             
19315             return;
19316         }
19317         
19318         this.picker().addClass('bottom');
19319         
19320         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
19321     },
19322     
19323     parseDate : function(value)
19324     {
19325         if(!value || value instanceof Date){
19326             return value;
19327         }
19328         var v = Date.parseDate(value, this.format);
19329         if (!v && (this.useIso || value.match(/^(\d{4})-0?(\d+)-0?(\d+)/))) {
19330             v = Date.parseDate(value, 'Y-m-d');
19331         }
19332         if(!v && this.altFormats){
19333             if(!this.altFormatsArray){
19334                 this.altFormatsArray = this.altFormats.split("|");
19335             }
19336             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
19337                 v = Date.parseDate(value, this.altFormatsArray[i]);
19338             }
19339         }
19340         return v;
19341     },
19342     
19343     formatDate : function(date, fmt)
19344     {   
19345         return (!date || !(date instanceof Date)) ?
19346         date : date.dateFormat(fmt || this.format);
19347     },
19348     
19349     onFocus : function()
19350     {
19351         Roo.bootstrap.DateField.superclass.onFocus.call(this);
19352         this.showPopup();
19353     },
19354     
19355     onBlur : function()
19356     {
19357         Roo.bootstrap.DateField.superclass.onBlur.call(this);
19358         
19359         var d = this.inputEl().getValue();
19360         
19361         this.setValue(d);
19362                 
19363         this.hidePopup();
19364     },
19365     
19366     showPopup : function()
19367     {
19368         this.picker().show();
19369         this.update();
19370         this.place();
19371         
19372         this.fireEvent('showpopup', this, this.date);
19373     },
19374     
19375     hidePopup : function()
19376     {
19377         if(this.isInline) {
19378             return;
19379         }
19380         this.picker().hide();
19381         this.viewMode = this.startViewMode;
19382         this.showMode();
19383         
19384         this.fireEvent('hidepopup', this, this.date);
19385         
19386     },
19387     
19388     onMousedown: function(e)
19389     {
19390         e.stopPropagation();
19391         e.preventDefault();
19392     },
19393     
19394     keyup: function(e)
19395     {
19396         Roo.bootstrap.DateField.superclass.keyup.call(this);
19397         this.update();
19398     },
19399
19400     setValue: function(v)
19401     {
19402         if(this.fireEvent('beforeselect', this, v) !== false){
19403             var d = new Date(this.parseDate(v) ).clearTime();
19404         
19405             if(isNaN(d.getTime())){
19406                 this.date = this.viewDate = '';
19407                 Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19408                 return;
19409             }
19410
19411             v = this.formatDate(d);
19412
19413             Roo.bootstrap.DateField.superclass.setValue.call(this, v);
19414
19415             this.date = new Date(d.getTime() - d.getTimezoneOffset()*60000);
19416
19417             this.update();
19418
19419             this.fireEvent('select', this, this.date);
19420         }
19421     },
19422     
19423     getValue: function()
19424     {
19425         return this.formatDate(this.date);
19426     },
19427     
19428     fireKey: function(e)
19429     {
19430         if (!this.picker().isVisible()){
19431             if (e.keyCode == 27) { // allow escape to hide and re-show picker
19432                 this.showPopup();
19433             }
19434             return;
19435         }
19436         
19437         var dateChanged = false,
19438         dir, day, month,
19439         newDate, newViewDate;
19440         
19441         switch(e.keyCode){
19442             case 27: // escape
19443                 this.hidePopup();
19444                 e.preventDefault();
19445                 break;
19446             case 37: // left
19447             case 39: // right
19448                 if (!this.keyboardNavigation) {
19449                     break;
19450                 }
19451                 dir = e.keyCode == 37 ? -1 : 1;
19452                 
19453                 if (e.ctrlKey){
19454                     newDate = this.moveYear(this.date, dir);
19455                     newViewDate = this.moveYear(this.viewDate, dir);
19456                 } else if (e.shiftKey){
19457                     newDate = this.moveMonth(this.date, dir);
19458                     newViewDate = this.moveMonth(this.viewDate, dir);
19459                 } else {
19460                     newDate = new Date(this.date);
19461                     newDate.setUTCDate(this.date.getUTCDate() + dir);
19462                     newViewDate = new Date(this.viewDate);
19463                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir);
19464                 }
19465                 if (this.dateWithinRange(newDate)){
19466                     this.date = newDate;
19467                     this.viewDate = newViewDate;
19468                     this.setValue(this.formatDate(this.date));
19469 //                    this.update();
19470                     e.preventDefault();
19471                     dateChanged = true;
19472                 }
19473                 break;
19474             case 38: // up
19475             case 40: // down
19476                 if (!this.keyboardNavigation) {
19477                     break;
19478                 }
19479                 dir = e.keyCode == 38 ? -1 : 1;
19480                 if (e.ctrlKey){
19481                     newDate = this.moveYear(this.date, dir);
19482                     newViewDate = this.moveYear(this.viewDate, dir);
19483                 } else if (e.shiftKey){
19484                     newDate = this.moveMonth(this.date, dir);
19485                     newViewDate = this.moveMonth(this.viewDate, dir);
19486                 } else {
19487                     newDate = new Date(this.date);
19488                     newDate.setUTCDate(this.date.getUTCDate() + dir * 7);
19489                     newViewDate = new Date(this.viewDate);
19490                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir * 7);
19491                 }
19492                 if (this.dateWithinRange(newDate)){
19493                     this.date = newDate;
19494                     this.viewDate = newViewDate;
19495                     this.setValue(this.formatDate(this.date));
19496 //                    this.update();
19497                     e.preventDefault();
19498                     dateChanged = true;
19499                 }
19500                 break;
19501             case 13: // enter
19502                 this.setValue(this.formatDate(this.date));
19503                 this.hidePopup();
19504                 e.preventDefault();
19505                 break;
19506             case 9: // tab
19507                 this.setValue(this.formatDate(this.date));
19508                 this.hidePopup();
19509                 break;
19510             case 16: // shift
19511             case 17: // ctrl
19512             case 18: // alt
19513                 break;
19514             default :
19515                 this.hidePopup();
19516                 
19517         }
19518     },
19519     
19520     
19521     onClick: function(e) 
19522     {
19523         e.stopPropagation();
19524         e.preventDefault();
19525         
19526         var target = e.getTarget();
19527         
19528         if(target.nodeName.toLowerCase() === 'i'){
19529             target = Roo.get(target).dom.parentNode;
19530         }
19531         
19532         var nodeName = target.nodeName;
19533         var className = target.className;
19534         var html = target.innerHTML;
19535         //Roo.log(nodeName);
19536         
19537         switch(nodeName.toLowerCase()) {
19538             case 'th':
19539                 switch(className) {
19540                     case 'switch':
19541                         this.showMode(1);
19542                         break;
19543                     case 'prev':
19544                     case 'next':
19545                         var dir = Roo.bootstrap.DateField.modes[this.viewMode].navStep * (className == 'prev' ? -1 : 1);
19546                         switch(this.viewMode){
19547                                 case 0:
19548                                         this.viewDate = this.moveMonth(this.viewDate, dir);
19549                                         break;
19550                                 case 1:
19551                                 case 2:
19552                                         this.viewDate = this.moveYear(this.viewDate, dir);
19553                                         break;
19554                         }
19555                         this.fill();
19556                         break;
19557                     case 'today':
19558                         var date = new Date();
19559                         this.date = this.UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);
19560 //                        this.fill()
19561                         this.setValue(this.formatDate(this.date));
19562                         
19563                         this.hidePopup();
19564                         break;
19565                 }
19566                 break;
19567             case 'span':
19568                 if (className.indexOf('disabled') < 0) {
19569                     this.viewDate.setUTCDate(1);
19570                     if (className.indexOf('month') > -1) {
19571                         this.viewDate.setUTCMonth(Roo.bootstrap.DateField.dates[this.language].monthsShort.indexOf(html));
19572                     } else {
19573                         var year = parseInt(html, 10) || 0;
19574                         this.viewDate.setUTCFullYear(year);
19575                         
19576                     }
19577                     
19578                     if(this.singleMode){
19579                         this.setValue(this.formatDate(this.viewDate));
19580                         this.hidePopup();
19581                         return;
19582                     }
19583                     
19584                     this.showMode(-1);
19585                     this.fill();
19586                 }
19587                 break;
19588                 
19589             case 'td':
19590                 //Roo.log(className);
19591                 if (className.indexOf('day') > -1 && className.indexOf('disabled') < 0 ){
19592                     var day = parseInt(html, 10) || 1;
19593                     var year = this.viewDate.getUTCFullYear(),
19594                         month = this.viewDate.getUTCMonth();
19595
19596                     if (className.indexOf('old') > -1) {
19597                         if(month === 0 ){
19598                             month = 11;
19599                             year -= 1;
19600                         }else{
19601                             month -= 1;
19602                         }
19603                     } else if (className.indexOf('new') > -1) {
19604                         if (month == 11) {
19605                             month = 0;
19606                             year += 1;
19607                         } else {
19608                             month += 1;
19609                         }
19610                     }
19611                     //Roo.log([year,month,day]);
19612                     this.date = this.UTCDate(year, month, day,0,0,0,0);
19613                     this.viewDate = this.UTCDate(year, month, Math.min(28, day),0,0,0,0);
19614 //                    this.fill();
19615                     //Roo.log(this.formatDate(this.date));
19616                     this.setValue(this.formatDate(this.date));
19617                     this.hidePopup();
19618                 }
19619                 break;
19620         }
19621     },
19622     
19623     setStartDate: function(startDate)
19624     {
19625         this.startDate = startDate || -Infinity;
19626         if (this.startDate !== -Infinity) {
19627             this.startDate = this.parseDate(this.startDate);
19628         }
19629         this.update();
19630         this.updateNavArrows();
19631     },
19632
19633     setEndDate: function(endDate)
19634     {
19635         this.endDate = endDate || Infinity;
19636         if (this.endDate !== Infinity) {
19637             this.endDate = this.parseDate(this.endDate);
19638         }
19639         this.update();
19640         this.updateNavArrows();
19641     },
19642     
19643     setDaysOfWeekDisabled: function(daysOfWeekDisabled)
19644     {
19645         this.daysOfWeekDisabled = daysOfWeekDisabled || [];
19646         if (typeof(this.daysOfWeekDisabled) !== 'object') {
19647             this.daysOfWeekDisabled = this.daysOfWeekDisabled.split(/,\s*/);
19648         }
19649         this.daysOfWeekDisabled = this.daysOfWeekDisabled.map(function (d) {
19650             return parseInt(d, 10);
19651         });
19652         this.update();
19653         this.updateNavArrows();
19654     },
19655     
19656     updateNavArrows: function() 
19657     {
19658         if(this.singleMode){
19659             return;
19660         }
19661         
19662         var d = new Date(this.viewDate),
19663         year = d.getUTCFullYear(),
19664         month = d.getUTCMonth();
19665         
19666         Roo.each(this.picker().select('.prev', true).elements, function(v){
19667             v.show();
19668             switch (this.viewMode) {
19669                 case 0:
19670
19671                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear() && month <= this.startDate.getUTCMonth()) {
19672                         v.hide();
19673                     }
19674                     break;
19675                 case 1:
19676                 case 2:
19677                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()) {
19678                         v.hide();
19679                     }
19680                     break;
19681             }
19682         });
19683         
19684         Roo.each(this.picker().select('.next', true).elements, function(v){
19685             v.show();
19686             switch (this.viewMode) {
19687                 case 0:
19688
19689                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear() && month >= this.endDate.getUTCMonth()) {
19690                         v.hide();
19691                     }
19692                     break;
19693                 case 1:
19694                 case 2:
19695                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()) {
19696                         v.hide();
19697                     }
19698                     break;
19699             }
19700         })
19701     },
19702     
19703     moveMonth: function(date, dir)
19704     {
19705         if (!dir) {
19706             return date;
19707         }
19708         var new_date = new Date(date.valueOf()),
19709         day = new_date.getUTCDate(),
19710         month = new_date.getUTCMonth(),
19711         mag = Math.abs(dir),
19712         new_month, test;
19713         dir = dir > 0 ? 1 : -1;
19714         if (mag == 1){
19715             test = dir == -1
19716             // If going back one month, make sure month is not current month
19717             // (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02)
19718             ? function(){
19719                 return new_date.getUTCMonth() == month;
19720             }
19721             // If going forward one month, make sure month is as expected
19722             // (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02)
19723             : function(){
19724                 return new_date.getUTCMonth() != new_month;
19725             };
19726             new_month = month + dir;
19727             new_date.setUTCMonth(new_month);
19728             // Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11
19729             if (new_month < 0 || new_month > 11) {
19730                 new_month = (new_month + 12) % 12;
19731             }
19732         } else {
19733             // For magnitudes >1, move one month at a time...
19734             for (var i=0; i<mag; i++) {
19735                 // ...which might decrease the day (eg, Jan 31 to Feb 28, etc)...
19736                 new_date = this.moveMonth(new_date, dir);
19737             }
19738             // ...then reset the day, keeping it in the new month
19739             new_month = new_date.getUTCMonth();
19740             new_date.setUTCDate(day);
19741             test = function(){
19742                 return new_month != new_date.getUTCMonth();
19743             };
19744         }
19745         // Common date-resetting loop -- if date is beyond end of month, make it
19746         // end of month
19747         while (test()){
19748             new_date.setUTCDate(--day);
19749             new_date.setUTCMonth(new_month);
19750         }
19751         return new_date;
19752     },
19753
19754     moveYear: function(date, dir)
19755     {
19756         return this.moveMonth(date, dir*12);
19757     },
19758
19759     dateWithinRange: function(date)
19760     {
19761         return date >= this.startDate && date <= this.endDate;
19762     },
19763
19764     
19765     remove: function() 
19766     {
19767         this.picker().remove();
19768     },
19769     
19770     validateValue : function(value)
19771     {
19772         if(this.getVisibilityEl().hasClass('hidden')){
19773             return true;
19774         }
19775         
19776         if(value.length < 1)  {
19777             if(this.allowBlank){
19778                 return true;
19779             }
19780             return false;
19781         }
19782         
19783         if(value.length < this.minLength){
19784             return false;
19785         }
19786         if(value.length > this.maxLength){
19787             return false;
19788         }
19789         if(this.vtype){
19790             var vt = Roo.form.VTypes;
19791             if(!vt[this.vtype](value, this)){
19792                 return false;
19793             }
19794         }
19795         if(typeof this.validator == "function"){
19796             var msg = this.validator(value);
19797             if(msg !== true){
19798                 return false;
19799             }
19800         }
19801         
19802         if(this.regex && !this.regex.test(value)){
19803             return false;
19804         }
19805         
19806         if(typeof(this.parseDate(value)) == 'undefined'){
19807             return false;
19808         }
19809         
19810         if (this.endDate !== Infinity && this.parseDate(value).getTime() > this.endDate.getTime()) {
19811             return false;
19812         }      
19813         
19814         if (this.startDate !== -Infinity && this.parseDate(value).getTime() < this.startDate.getTime()) {
19815             return false;
19816         } 
19817         
19818         
19819         return true;
19820     },
19821     
19822     reset : function()
19823     {
19824         this.date = this.viewDate = '';
19825         
19826         Roo.bootstrap.DateField.superclass.setValue.call(this, '');
19827     }
19828    
19829 });
19830
19831 Roo.apply(Roo.bootstrap.DateField,  {
19832     
19833     head : {
19834         tag: 'thead',
19835         cn: [
19836         {
19837             tag: 'tr',
19838             cn: [
19839             {
19840                 tag: 'th',
19841                 cls: 'prev',
19842                 html: '<i class="fa fa-arrow-left"/>'
19843             },
19844             {
19845                 tag: 'th',
19846                 cls: 'switch',
19847                 colspan: '5'
19848             },
19849             {
19850                 tag: 'th',
19851                 cls: 'next',
19852                 html: '<i class="fa fa-arrow-right"/>'
19853             }
19854
19855             ]
19856         }
19857         ]
19858     },
19859     
19860     content : {
19861         tag: 'tbody',
19862         cn: [
19863         {
19864             tag: 'tr',
19865             cn: [
19866             {
19867                 tag: 'td',
19868                 colspan: '7'
19869             }
19870             ]
19871         }
19872         ]
19873     },
19874     
19875     footer : {
19876         tag: 'tfoot',
19877         cn: [
19878         {
19879             tag: 'tr',
19880             cn: [
19881             {
19882                 tag: 'th',
19883                 colspan: '7',
19884                 cls: 'today'
19885             }
19886                     
19887             ]
19888         }
19889         ]
19890     },
19891     
19892     dates:{
19893         en: {
19894             days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
19895             daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
19896             daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"],
19897             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
19898             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
19899             today: "Today"
19900         }
19901     },
19902     
19903     modes: [
19904     {
19905         clsName: 'days',
19906         navFnc: 'Month',
19907         navStep: 1
19908     },
19909     {
19910         clsName: 'months',
19911         navFnc: 'FullYear',
19912         navStep: 1
19913     },
19914     {
19915         clsName: 'years',
19916         navFnc: 'FullYear',
19917         navStep: 10
19918     }]
19919 });
19920
19921 Roo.apply(Roo.bootstrap.DateField,  {
19922   
19923     template : {
19924         tag: 'div',
19925         cls: 'datepicker dropdown-menu roo-dynamic',
19926         cn: [
19927         {
19928             tag: 'div',
19929             cls: 'datepicker-days',
19930             cn: [
19931             {
19932                 tag: 'table',
19933                 cls: 'table-condensed',
19934                 cn:[
19935                 Roo.bootstrap.DateField.head,
19936                 {
19937                     tag: 'tbody'
19938                 },
19939                 Roo.bootstrap.DateField.footer
19940                 ]
19941             }
19942             ]
19943         },
19944         {
19945             tag: 'div',
19946             cls: 'datepicker-months',
19947             cn: [
19948             {
19949                 tag: 'table',
19950                 cls: 'table-condensed',
19951                 cn:[
19952                 Roo.bootstrap.DateField.head,
19953                 Roo.bootstrap.DateField.content,
19954                 Roo.bootstrap.DateField.footer
19955                 ]
19956             }
19957             ]
19958         },
19959         {
19960             tag: 'div',
19961             cls: 'datepicker-years',
19962             cn: [
19963             {
19964                 tag: 'table',
19965                 cls: 'table-condensed',
19966                 cn:[
19967                 Roo.bootstrap.DateField.head,
19968                 Roo.bootstrap.DateField.content,
19969                 Roo.bootstrap.DateField.footer
19970                 ]
19971             }
19972             ]
19973         }
19974         ]
19975     }
19976 });
19977
19978  
19979
19980  /*
19981  * - LGPL
19982  *
19983  * TimeField
19984  * 
19985  */
19986
19987 /**
19988  * @class Roo.bootstrap.TimeField
19989  * @extends Roo.bootstrap.Input
19990  * Bootstrap DateField class
19991  * 
19992  * 
19993  * @constructor
19994  * Create a new TimeField
19995  * @param {Object} config The config object
19996  */
19997
19998 Roo.bootstrap.TimeField = function(config){
19999     Roo.bootstrap.TimeField.superclass.constructor.call(this, config);
20000     this.addEvents({
20001             /**
20002              * @event show
20003              * Fires when this field show.
20004              * @param {Roo.bootstrap.DateField} thisthis
20005              * @param {Mixed} date The date value
20006              */
20007             show : true,
20008             /**
20009              * @event show
20010              * Fires when this field hide.
20011              * @param {Roo.bootstrap.DateField} this
20012              * @param {Mixed} date The date value
20013              */
20014             hide : true,
20015             /**
20016              * @event select
20017              * Fires when select a date.
20018              * @param {Roo.bootstrap.DateField} this
20019              * @param {Mixed} date The date value
20020              */
20021             select : true
20022         });
20023 };
20024
20025 Roo.extend(Roo.bootstrap.TimeField, Roo.bootstrap.Input,  {
20026     
20027     /**
20028      * @cfg {String} format
20029      * The default time format string which can be overriden for localization support.  The format must be
20030      * valid according to {@link Date#parseDate} (defaults to 'H:i').
20031      */
20032     format : "H:i",
20033        
20034     onRender: function(ct, position)
20035     {
20036         
20037         Roo.bootstrap.TimeField.superclass.onRender.call(this, ct, position);
20038                 
20039         this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.TimeField.template);
20040         
20041         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20042         
20043         this.pop = this.picker().select('>.datepicker-time',true).first();
20044         this.pop.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20045         
20046         this.picker().on('mousedown', this.onMousedown, this);
20047         this.picker().on('click', this.onClick, this);
20048         
20049         this.picker().addClass('datepicker-dropdown');
20050     
20051         this.fillTime();
20052         this.update();
20053             
20054         this.pop.select('span.hours-up', true).first().on('click', this.onIncrementHours, this);
20055         this.pop.select('span.hours-down', true).first().on('click', this.onDecrementHours, this);
20056         this.pop.select('span.minutes-up', true).first().on('click', this.onIncrementMinutes, this);
20057         this.pop.select('span.minutes-down', true).first().on('click', this.onDecrementMinutes, this);
20058         this.pop.select('button.period', true).first().on('click', this.onTogglePeriod, this);
20059         this.pop.select('button.ok', true).first().on('click', this.setTime, this);
20060
20061     },
20062     
20063     fireKey: function(e){
20064         if (!this.picker().isVisible()){
20065             if (e.keyCode == 27) { // allow escape to hide and re-show picker
20066                 this.show();
20067             }
20068             return;
20069         }
20070
20071         e.preventDefault();
20072         
20073         switch(e.keyCode){
20074             case 27: // escape
20075                 this.hide();
20076                 break;
20077             case 37: // left
20078             case 39: // right
20079                 this.onTogglePeriod();
20080                 break;
20081             case 38: // up
20082                 this.onIncrementMinutes();
20083                 break;
20084             case 40: // down
20085                 this.onDecrementMinutes();
20086                 break;
20087             case 13: // enter
20088             case 9: // tab
20089                 this.setTime();
20090                 break;
20091         }
20092     },
20093     
20094     onClick: function(e) {
20095         e.stopPropagation();
20096         e.preventDefault();
20097     },
20098     
20099     picker : function()
20100     {
20101         return this.el.select('.datepicker', true).first();
20102     },
20103     
20104     fillTime: function()
20105     {    
20106         var time = this.pop.select('tbody', true).first();
20107         
20108         time.dom.innerHTML = '';
20109         
20110         time.createChild({
20111             tag: 'tr',
20112             cn: [
20113                 {
20114                     tag: 'td',
20115                     cn: [
20116                         {
20117                             tag: 'a',
20118                             href: '#',
20119                             cls: 'btn',
20120                             cn: [
20121                                 {
20122                                     tag: 'span',
20123                                     cls: 'hours-up glyphicon glyphicon-chevron-up'
20124                                 }
20125                             ]
20126                         } 
20127                     ]
20128                 },
20129                 {
20130                     tag: 'td',
20131                     cls: 'separator'
20132                 },
20133                 {
20134                     tag: 'td',
20135                     cn: [
20136                         {
20137                             tag: 'a',
20138                             href: '#',
20139                             cls: 'btn',
20140                             cn: [
20141                                 {
20142                                     tag: 'span',
20143                                     cls: 'minutes-up glyphicon glyphicon-chevron-up'
20144                                 }
20145                             ]
20146                         }
20147                     ]
20148                 },
20149                 {
20150                     tag: 'td',
20151                     cls: 'separator'
20152                 }
20153             ]
20154         });
20155         
20156         time.createChild({
20157             tag: 'tr',
20158             cn: [
20159                 {
20160                     tag: 'td',
20161                     cn: [
20162                         {
20163                             tag: 'span',
20164                             cls: 'timepicker-hour',
20165                             html: '00'
20166                         }  
20167                     ]
20168                 },
20169                 {
20170                     tag: 'td',
20171                     cls: 'separator',
20172                     html: ':'
20173                 },
20174                 {
20175                     tag: 'td',
20176                     cn: [
20177                         {
20178                             tag: 'span',
20179                             cls: 'timepicker-minute',
20180                             html: '00'
20181                         }  
20182                     ]
20183                 },
20184                 {
20185                     tag: 'td',
20186                     cls: 'separator'
20187                 },
20188                 {
20189                     tag: 'td',
20190                     cn: [
20191                         {
20192                             tag: 'button',
20193                             type: 'button',
20194                             cls: 'btn btn-primary period',
20195                             html: 'AM'
20196                             
20197                         }
20198                     ]
20199                 }
20200             ]
20201         });
20202         
20203         time.createChild({
20204             tag: 'tr',
20205             cn: [
20206                 {
20207                     tag: 'td',
20208                     cn: [
20209                         {
20210                             tag: 'a',
20211                             href: '#',
20212                             cls: 'btn',
20213                             cn: [
20214                                 {
20215                                     tag: 'span',
20216                                     cls: 'hours-down glyphicon glyphicon-chevron-down'
20217                                 }
20218                             ]
20219                         }
20220                     ]
20221                 },
20222                 {
20223                     tag: 'td',
20224                     cls: 'separator'
20225                 },
20226                 {
20227                     tag: 'td',
20228                     cn: [
20229                         {
20230                             tag: 'a',
20231                             href: '#',
20232                             cls: 'btn',
20233                             cn: [
20234                                 {
20235                                     tag: 'span',
20236                                     cls: 'minutes-down glyphicon glyphicon-chevron-down'
20237                                 }
20238                             ]
20239                         }
20240                     ]
20241                 },
20242                 {
20243                     tag: 'td',
20244                     cls: 'separator'
20245                 }
20246             ]
20247         });
20248         
20249     },
20250     
20251     update: function()
20252     {
20253         
20254         this.time = (typeof(this.time) === 'undefined') ? new Date() : this.time;
20255         
20256         this.fill();
20257     },
20258     
20259     fill: function() 
20260     {
20261         var hours = this.time.getHours();
20262         var minutes = this.time.getMinutes();
20263         var period = 'AM';
20264         
20265         if(hours > 11){
20266             period = 'PM';
20267         }
20268         
20269         if(hours == 0){
20270             hours = 12;
20271         }
20272         
20273         
20274         if(hours > 12){
20275             hours = hours - 12;
20276         }
20277         
20278         if(hours < 10){
20279             hours = '0' + hours;
20280         }
20281         
20282         if(minutes < 10){
20283             minutes = '0' + minutes;
20284         }
20285         
20286         this.pop.select('.timepicker-hour', true).first().dom.innerHTML = hours;
20287         this.pop.select('.timepicker-minute', true).first().dom.innerHTML = minutes;
20288         this.pop.select('button', true).first().dom.innerHTML = period;
20289         
20290     },
20291     
20292     place: function()
20293     {   
20294         this.picker().removeClass(['bottom-left', 'bottom-right', 'top-left', 'top-right']);
20295         
20296         var cls = ['bottom'];
20297         
20298         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){ // top
20299             cls.pop();
20300             cls.push('top');
20301         }
20302         
20303         cls.push('right');
20304         
20305         if((Roo.lib.Dom.getViewWidth() + Roo.get(document.body).getScroll().left) - (this.inputEl().getLeft() + this.picker().getWidth()) < 0){ // left
20306             cls.pop();
20307             cls.push('left');
20308         }
20309         
20310         this.picker().addClass(cls.join('-'));
20311         
20312         var _this = this;
20313         
20314         Roo.each(cls, function(c){
20315             if(c == 'bottom'){
20316                 _this.picker().setTop(_this.inputEl().getHeight());
20317                 return;
20318             }
20319             if(c == 'top'){
20320                 _this.picker().setTop(0 - _this.picker().getHeight());
20321                 return;
20322             }
20323             
20324             if(c == 'left'){
20325                 _this.picker().setLeft(_this.inputEl().getLeft() + _this.inputEl().getWidth() - _this.el.getLeft() - _this.picker().getWidth());
20326                 return;
20327             }
20328             if(c == 'right'){
20329                 _this.picker().setLeft(_this.inputEl().getLeft() - _this.el.getLeft());
20330                 return;
20331             }
20332         });
20333         
20334     },
20335   
20336     onFocus : function()
20337     {
20338         Roo.bootstrap.TimeField.superclass.onFocus.call(this);
20339         this.show();
20340     },
20341     
20342     onBlur : function()
20343     {
20344         Roo.bootstrap.TimeField.superclass.onBlur.call(this);
20345         this.hide();
20346     },
20347     
20348     show : function()
20349     {
20350         this.picker().show();
20351         this.pop.show();
20352         this.update();
20353         this.place();
20354         
20355         this.fireEvent('show', this, this.date);
20356     },
20357     
20358     hide : function()
20359     {
20360         this.picker().hide();
20361         this.pop.hide();
20362         
20363         this.fireEvent('hide', this, this.date);
20364     },
20365     
20366     setTime : function()
20367     {
20368         this.hide();
20369         this.setValue(this.time.format(this.format));
20370         
20371         this.fireEvent('select', this, this.date);
20372         
20373         
20374     },
20375     
20376     onMousedown: function(e){
20377         e.stopPropagation();
20378         e.preventDefault();
20379     },
20380     
20381     onIncrementHours: function()
20382     {
20383         Roo.log('onIncrementHours');
20384         this.time = this.time.add(Date.HOUR, 1);
20385         this.update();
20386         
20387     },
20388     
20389     onDecrementHours: function()
20390     {
20391         Roo.log('onDecrementHours');
20392         this.time = this.time.add(Date.HOUR, -1);
20393         this.update();
20394     },
20395     
20396     onIncrementMinutes: function()
20397     {
20398         Roo.log('onIncrementMinutes');
20399         this.time = this.time.add(Date.MINUTE, 1);
20400         this.update();
20401     },
20402     
20403     onDecrementMinutes: function()
20404     {
20405         Roo.log('onDecrementMinutes');
20406         this.time = this.time.add(Date.MINUTE, -1);
20407         this.update();
20408     },
20409     
20410     onTogglePeriod: function()
20411     {
20412         Roo.log('onTogglePeriod');
20413         this.time = this.time.add(Date.HOUR, 12);
20414         this.update();
20415     }
20416     
20417    
20418 });
20419
20420 Roo.apply(Roo.bootstrap.TimeField,  {
20421     
20422     content : {
20423         tag: 'tbody',
20424         cn: [
20425             {
20426                 tag: 'tr',
20427                 cn: [
20428                 {
20429                     tag: 'td',
20430                     colspan: '7'
20431                 }
20432                 ]
20433             }
20434         ]
20435     },
20436     
20437     footer : {
20438         tag: 'tfoot',
20439         cn: [
20440             {
20441                 tag: 'tr',
20442                 cn: [
20443                 {
20444                     tag: 'th',
20445                     colspan: '7',
20446                     cls: '',
20447                     cn: [
20448                         {
20449                             tag: 'button',
20450                             cls: 'btn btn-info ok',
20451                             html: 'OK'
20452                         }
20453                     ]
20454                 }
20455
20456                 ]
20457             }
20458         ]
20459     }
20460 });
20461
20462 Roo.apply(Roo.bootstrap.TimeField,  {
20463   
20464     template : {
20465         tag: 'div',
20466         cls: 'datepicker dropdown-menu',
20467         cn: [
20468             {
20469                 tag: 'div',
20470                 cls: 'datepicker-time',
20471                 cn: [
20472                 {
20473                     tag: 'table',
20474                     cls: 'table-condensed',
20475                     cn:[
20476                     Roo.bootstrap.TimeField.content,
20477                     Roo.bootstrap.TimeField.footer
20478                     ]
20479                 }
20480                 ]
20481             }
20482         ]
20483     }
20484 });
20485
20486  
20487
20488  /*
20489  * - LGPL
20490  *
20491  * MonthField
20492  * 
20493  */
20494
20495 /**
20496  * @class Roo.bootstrap.MonthField
20497  * @extends Roo.bootstrap.Input
20498  * Bootstrap MonthField class
20499  * 
20500  * @cfg {String} language default en
20501  * 
20502  * @constructor
20503  * Create a new MonthField
20504  * @param {Object} config The config object
20505  */
20506
20507 Roo.bootstrap.MonthField = function(config){
20508     Roo.bootstrap.MonthField.superclass.constructor.call(this, config);
20509     
20510     this.addEvents({
20511         /**
20512          * @event show
20513          * Fires when this field show.
20514          * @param {Roo.bootstrap.MonthField} this
20515          * @param {Mixed} date The date value
20516          */
20517         show : true,
20518         /**
20519          * @event show
20520          * Fires when this field hide.
20521          * @param {Roo.bootstrap.MonthField} this
20522          * @param {Mixed} date The date value
20523          */
20524         hide : true,
20525         /**
20526          * @event select
20527          * Fires when select a date.
20528          * @param {Roo.bootstrap.MonthField} this
20529          * @param {String} oldvalue The old value
20530          * @param {String} newvalue The new value
20531          */
20532         select : true
20533     });
20534 };
20535
20536 Roo.extend(Roo.bootstrap.MonthField, Roo.bootstrap.Input,  {
20537     
20538     onRender: function(ct, position)
20539     {
20540         
20541         Roo.bootstrap.MonthField.superclass.onRender.call(this, ct, position);
20542         
20543         this.language = this.language || 'en';
20544         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : this.language.split('-')[0];
20545         this.language = this.language in Roo.bootstrap.MonthField.dates ? this.language : "en";
20546         
20547         this.isRTL = Roo.bootstrap.MonthField.dates[this.language].rtl || false;
20548         this.isInline = false;
20549         this.isInput = true;
20550         this.component = this.el.select('.add-on', true).first() || false;
20551         this.component = (this.component && this.component.length === 0) ? false : this.component;
20552         this.hasInput = this.component && this.inputEL().length;
20553         
20554         this.pickerEl = Roo.get(document.body).createChild(Roo.bootstrap.MonthField.template);
20555         
20556         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
20557         
20558         this.picker().on('mousedown', this.onMousedown, this);
20559         this.picker().on('click', this.onClick, this);
20560         
20561         this.picker().addClass('datepicker-dropdown');
20562         
20563         Roo.each(this.picker().select('tbody > tr > td', true).elements, function(v){
20564             v.setStyle('width', '189px');
20565         });
20566         
20567         this.fillMonths();
20568         
20569         this.update();
20570         
20571         if(this.isInline) {
20572             this.show();
20573         }
20574         
20575     },
20576     
20577     setValue: function(v, suppressEvent)
20578     {   
20579         var o = this.getValue();
20580         
20581         Roo.bootstrap.MonthField.superclass.setValue.call(this, v);
20582         
20583         this.update();
20584
20585         if(suppressEvent !== true){
20586             this.fireEvent('select', this, o, v);
20587         }
20588         
20589     },
20590     
20591     getValue: function()
20592     {
20593         return this.value;
20594     },
20595     
20596     onClick: function(e) 
20597     {
20598         e.stopPropagation();
20599         e.preventDefault();
20600         
20601         var target = e.getTarget();
20602         
20603         if(target.nodeName.toLowerCase() === 'i'){
20604             target = Roo.get(target).dom.parentNode;
20605         }
20606         
20607         var nodeName = target.nodeName;
20608         var className = target.className;
20609         var html = target.innerHTML;
20610         
20611         if(nodeName.toLowerCase() != 'span' || className.indexOf('disabled') > -1 || className.indexOf('month') == -1){
20612             return;
20613         }
20614         
20615         this.vIndex = Roo.bootstrap.MonthField.dates[this.language].monthsShort.indexOf(html);
20616         
20617         this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20618         
20619         this.hide();
20620                         
20621     },
20622     
20623     picker : function()
20624     {
20625         return this.pickerEl;
20626     },
20627     
20628     fillMonths: function()
20629     {    
20630         var i = 0;
20631         var months = this.picker().select('>.datepicker-months td', true).first();
20632         
20633         months.dom.innerHTML = '';
20634         
20635         while (i < 12) {
20636             var month = {
20637                 tag: 'span',
20638                 cls: 'month',
20639                 html: Roo.bootstrap.MonthField.dates[this.language].monthsShort[i++]
20640             };
20641             
20642             months.createChild(month);
20643         }
20644         
20645     },
20646     
20647     update: function()
20648     {
20649         var _this = this;
20650         
20651         if(typeof(this.vIndex) == 'undefined' && this.value.length){
20652             this.vIndex = Roo.bootstrap.MonthField.dates[this.language].months.indexOf(this.value);
20653         }
20654         
20655         Roo.each(this.pickerEl.select('> .datepicker-months tbody > tr > td > span', true).elements, function(e, k){
20656             e.removeClass('active');
20657             
20658             if(typeof(_this.vIndex) != 'undefined' && k == _this.vIndex){
20659                 e.addClass('active');
20660             }
20661         })
20662     },
20663     
20664     place: function()
20665     {
20666         if(this.isInline) {
20667             return;
20668         }
20669         
20670         this.picker().removeClass(['bottom', 'top']);
20671         
20672         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
20673             /*
20674              * place to the top of element!
20675              *
20676              */
20677             
20678             this.picker().addClass('top');
20679             this.picker().setTop(this.inputEl().getTop() - this.picker().getHeight()).setLeft(this.inputEl().getLeft());
20680             
20681             return;
20682         }
20683         
20684         this.picker().addClass('bottom');
20685         
20686         this.picker().setTop(this.inputEl().getBottom()).setLeft(this.inputEl().getLeft());
20687     },
20688     
20689     onFocus : function()
20690     {
20691         Roo.bootstrap.MonthField.superclass.onFocus.call(this);
20692         this.show();
20693     },
20694     
20695     onBlur : function()
20696     {
20697         Roo.bootstrap.MonthField.superclass.onBlur.call(this);
20698         
20699         var d = this.inputEl().getValue();
20700         
20701         this.setValue(d);
20702                 
20703         this.hide();
20704     },
20705     
20706     show : function()
20707     {
20708         this.picker().show();
20709         this.picker().select('>.datepicker-months', true).first().show();
20710         this.update();
20711         this.place();
20712         
20713         this.fireEvent('show', this, this.date);
20714     },
20715     
20716     hide : function()
20717     {
20718         if(this.isInline) {
20719             return;
20720         }
20721         this.picker().hide();
20722         this.fireEvent('hide', this, this.date);
20723         
20724     },
20725     
20726     onMousedown: function(e)
20727     {
20728         e.stopPropagation();
20729         e.preventDefault();
20730     },
20731     
20732     keyup: function(e)
20733     {
20734         Roo.bootstrap.MonthField.superclass.keyup.call(this);
20735         this.update();
20736     },
20737
20738     fireKey: function(e)
20739     {
20740         if (!this.picker().isVisible()){
20741             if (e.keyCode == 27)   {// allow escape to hide and re-show picker
20742                 this.show();
20743             }
20744             return;
20745         }
20746         
20747         var dir;
20748         
20749         switch(e.keyCode){
20750             case 27: // escape
20751                 this.hide();
20752                 e.preventDefault();
20753                 break;
20754             case 37: // left
20755             case 39: // right
20756                 dir = e.keyCode == 37 ? -1 : 1;
20757                 
20758                 this.vIndex = this.vIndex + dir;
20759                 
20760                 if(this.vIndex < 0){
20761                     this.vIndex = 0;
20762                 }
20763                 
20764                 if(this.vIndex > 11){
20765                     this.vIndex = 11;
20766                 }
20767                 
20768                 if(isNaN(this.vIndex)){
20769                     this.vIndex = 0;
20770                 }
20771                 
20772                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20773                 
20774                 break;
20775             case 38: // up
20776             case 40: // down
20777                 
20778                 dir = e.keyCode == 38 ? -1 : 1;
20779                 
20780                 this.vIndex = this.vIndex + dir * 4;
20781                 
20782                 if(this.vIndex < 0){
20783                     this.vIndex = 0;
20784                 }
20785                 
20786                 if(this.vIndex > 11){
20787                     this.vIndex = 11;
20788                 }
20789                 
20790                 if(isNaN(this.vIndex)){
20791                     this.vIndex = 0;
20792                 }
20793                 
20794                 this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20795                 break;
20796                 
20797             case 13: // enter
20798                 
20799                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20800                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20801                 }
20802                 
20803                 this.hide();
20804                 e.preventDefault();
20805                 break;
20806             case 9: // tab
20807                 if(typeof(this.vIndex) != 'undefined' && !isNaN(this.vIndex)){
20808                     this.setValue(Roo.bootstrap.MonthField.dates[this.language].months[this.vIndex]);
20809                 }
20810                 this.hide();
20811                 break;
20812             case 16: // shift
20813             case 17: // ctrl
20814             case 18: // alt
20815                 break;
20816             default :
20817                 this.hide();
20818                 
20819         }
20820     },
20821     
20822     remove: function() 
20823     {
20824         this.picker().remove();
20825     }
20826    
20827 });
20828
20829 Roo.apply(Roo.bootstrap.MonthField,  {
20830     
20831     content : {
20832         tag: 'tbody',
20833         cn: [
20834         {
20835             tag: 'tr',
20836             cn: [
20837             {
20838                 tag: 'td',
20839                 colspan: '7'
20840             }
20841             ]
20842         }
20843         ]
20844     },
20845     
20846     dates:{
20847         en: {
20848             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
20849             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"]
20850         }
20851     }
20852 });
20853
20854 Roo.apply(Roo.bootstrap.MonthField,  {
20855   
20856     template : {
20857         tag: 'div',
20858         cls: 'datepicker dropdown-menu roo-dynamic',
20859         cn: [
20860             {
20861                 tag: 'div',
20862                 cls: 'datepicker-months',
20863                 cn: [
20864                 {
20865                     tag: 'table',
20866                     cls: 'table-condensed',
20867                     cn:[
20868                         Roo.bootstrap.DateField.content
20869                     ]
20870                 }
20871                 ]
20872             }
20873         ]
20874     }
20875 });
20876
20877  
20878
20879  
20880  /*
20881  * - LGPL
20882  *
20883  * CheckBox
20884  * 
20885  */
20886
20887 /**
20888  * @class Roo.bootstrap.CheckBox
20889  * @extends Roo.bootstrap.Input
20890  * Bootstrap CheckBox class
20891  * 
20892  * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
20893  * @cfg {String} inputValue The value that should go into the generated input element's value when checked.
20894  * @cfg {String} boxLabel The text that appears beside the checkbox
20895  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the checkbox
20896  * @cfg {Boolean} checked initnal the element
20897  * @cfg {Boolean} inline inline the element (default false)
20898  * @cfg {String} groupId the checkbox group id // normal just use for checkbox
20899  * @cfg {String} tooltip label tooltip
20900  * 
20901  * @constructor
20902  * Create a new CheckBox
20903  * @param {Object} config The config object
20904  */
20905
20906 Roo.bootstrap.CheckBox = function(config){
20907     Roo.bootstrap.CheckBox.superclass.constructor.call(this, config);
20908    
20909     this.addEvents({
20910         /**
20911         * @event check
20912         * Fires when the element is checked or unchecked.
20913         * @param {Roo.bootstrap.CheckBox} this This input
20914         * @param {Boolean} checked The new checked value
20915         */
20916        check : true,
20917        /**
20918         * @event click
20919         * Fires when the element is click.
20920         * @param {Roo.bootstrap.CheckBox} this This input
20921         */
20922        click : true
20923     });
20924     
20925 };
20926
20927 Roo.extend(Roo.bootstrap.CheckBox, Roo.bootstrap.Input,  {
20928   
20929     inputType: 'checkbox',
20930     inputValue: 1,
20931     valueOff: 0,
20932     boxLabel: false,
20933     checked: false,
20934     weight : false,
20935     inline: false,
20936     tooltip : '',
20937     
20938     // checkbox success does not make any sense really.. 
20939     invalidClass : "",
20940     validClass : "",
20941     
20942     
20943     getAutoCreate : function()
20944     {
20945         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
20946         
20947         var id = Roo.id();
20948         
20949         var cfg = {};
20950         
20951         cfg.cls = 'form-group ' + this.inputType; //input-group
20952         
20953         if(this.inline){
20954             cfg.cls += ' ' + this.inputType + '-inline';
20955         }
20956         
20957         var input =  {
20958             tag: 'input',
20959             id : id,
20960             type : this.inputType,
20961             value : this.inputValue,
20962             cls : 'roo-' + this.inputType, //'form-box',
20963             placeholder : this.placeholder || ''
20964             
20965         };
20966         
20967         if(this.inputType != 'radio'){
20968             var hidden =  {
20969                 tag: 'input',
20970                 type : 'hidden',
20971                 cls : 'roo-hidden-value',
20972                 value : this.checked ? this.inputValue : this.valueOff
20973             };
20974         }
20975         
20976             
20977         if (this.weight) { // Validity check?
20978             cfg.cls += " " + this.inputType + "-" + this.weight;
20979         }
20980         
20981         if (this.disabled) {
20982             input.disabled=true;
20983         }
20984         
20985         if(this.checked){
20986             input.checked = this.checked;
20987         }
20988         
20989         if (this.name) {
20990             
20991             input.name = this.name;
20992             
20993             if(this.inputType != 'radio'){
20994                 hidden.name = this.name;
20995                 input.name = '_hidden_' + this.name;
20996             }
20997         }
20998         
20999         if (this.size) {
21000             input.cls += ' input-' + this.size;
21001         }
21002         
21003         var settings=this;
21004         
21005         ['xs','sm','md','lg'].map(function(size){
21006             if (settings[size]) {
21007                 cfg.cls += ' col-' + size + '-' + settings[size];
21008             }
21009         });
21010         
21011         var inputblock = input;
21012          
21013         if (this.before || this.after) {
21014             
21015             inputblock = {
21016                 cls : 'input-group',
21017                 cn :  [] 
21018             };
21019             
21020             if (this.before) {
21021                 inputblock.cn.push({
21022                     tag :'span',
21023                     cls : 'input-group-addon',
21024                     html : this.before
21025                 });
21026             }
21027             
21028             inputblock.cn.push(input);
21029             
21030             if(this.inputType != 'radio'){
21031                 inputblock.cn.push(hidden);
21032             }
21033             
21034             if (this.after) {
21035                 inputblock.cn.push({
21036                     tag :'span',
21037                     cls : 'input-group-addon',
21038                     html : this.after
21039                 });
21040             }
21041             
21042         }
21043         var boxLabelCfg = false;
21044         
21045         if(this.boxLabel){
21046            
21047             boxLabelCfg = {
21048                 tag: 'label',
21049                 //'for': id, // box label is handled by onclick - so no for...
21050                 cls: 'box-label',
21051                 html: this.boxLabel
21052             };
21053             if(this.tooltip){
21054                 boxLabelCfg.tooltip = this.tooltip;
21055             }
21056              
21057         }
21058         
21059         
21060         if (align ==='left' && this.fieldLabel.length) {
21061 //                Roo.log("left and has label");
21062             cfg.cn = [
21063                 {
21064                     tag: 'label',
21065                     'for' :  id,
21066                     cls : 'control-label',
21067                     html : this.fieldLabel
21068                 },
21069                 {
21070                     cls : "", 
21071                     cn: [
21072                         inputblock
21073                     ]
21074                 }
21075             ];
21076             
21077             if (boxLabelCfg) {
21078                 cfg.cn[1].cn.push(boxLabelCfg);
21079             }
21080             
21081             if(this.labelWidth > 12){
21082                 cfg.cn[0].style = "width: " + this.labelWidth + 'px';
21083             }
21084             
21085             if(this.labelWidth < 13 && this.labelmd == 0){
21086                 this.labelmd = this.labelWidth;
21087             }
21088             
21089             if(this.labellg > 0){
21090                 cfg.cn[0].cls += ' col-lg-' + this.labellg;
21091                 cfg.cn[1].cls += ' col-lg-' + (12 - this.labellg);
21092             }
21093             
21094             if(this.labelmd > 0){
21095                 cfg.cn[0].cls += ' col-md-' + this.labelmd;
21096                 cfg.cn[1].cls += ' col-md-' + (12 - this.labelmd);
21097             }
21098             
21099             if(this.labelsm > 0){
21100                 cfg.cn[0].cls += ' col-sm-' + this.labelsm;
21101                 cfg.cn[1].cls += ' col-sm-' + (12 - this.labelsm);
21102             }
21103             
21104             if(this.labelxs > 0){
21105                 cfg.cn[0].cls += ' col-xs-' + this.labelxs;
21106                 cfg.cn[1].cls += ' col-xs-' + (12 - this.labelxs);
21107             }
21108             
21109         } else if ( this.fieldLabel.length) {
21110 //                Roo.log(" label");
21111                 cfg.cn = [
21112                    
21113                     {
21114                         tag: this.boxLabel ? 'span' : 'label',
21115                         'for': id,
21116                         cls: 'control-label box-input-label',
21117                         //cls : 'input-group-addon',
21118                         html : this.fieldLabel
21119                     },
21120                     
21121                     inputblock
21122                     
21123                 ];
21124                 if (boxLabelCfg) {
21125                     cfg.cn.push(boxLabelCfg);
21126                 }
21127
21128         } else {
21129             
21130 //                Roo.log(" no label && no align");
21131                 cfg.cn = [  inputblock ] ;
21132                 if (boxLabelCfg) {
21133                     cfg.cn.push(boxLabelCfg);
21134                 }
21135
21136                 
21137         }
21138         
21139        
21140         
21141         if(this.inputType != 'radio'){
21142             cfg.cn.push(hidden);
21143         }
21144         
21145         return cfg;
21146         
21147     },
21148     
21149     /**
21150      * return the real input element.
21151      */
21152     inputEl: function ()
21153     {
21154         return this.el.select('input.roo-' + this.inputType,true).first();
21155     },
21156     hiddenEl: function ()
21157     {
21158         return this.el.select('input.roo-hidden-value',true).first();
21159     },
21160     
21161     labelEl: function()
21162     {
21163         return this.el.select('label.control-label',true).first();
21164     },
21165     /* depricated... */
21166     
21167     label: function()
21168     {
21169         return this.labelEl();
21170     },
21171     
21172     boxLabelEl: function()
21173     {
21174         return this.el.select('label.box-label',true).first();
21175     },
21176     
21177     initEvents : function()
21178     {
21179 //        Roo.bootstrap.CheckBox.superclass.initEvents.call(this);
21180         
21181         this.inputEl().on('click', this.onClick,  this);
21182         
21183         if (this.boxLabel) { 
21184             this.el.select('label.box-label',true).first().on('click', this.onClick,  this);
21185         }
21186         
21187         this.startValue = this.getValue();
21188         
21189         if(this.groupId){
21190             Roo.bootstrap.CheckBox.register(this);
21191         }
21192     },
21193     
21194     onClick : function(e)
21195     {   
21196         if(this.fireEvent('click', this, e) !== false){
21197             this.setChecked(!this.checked);
21198         }
21199         
21200     },
21201     
21202     setChecked : function(state,suppressEvent)
21203     {
21204         this.startValue = this.getValue();
21205
21206         if(this.inputType == 'radio'){
21207             
21208             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21209                 e.dom.checked = false;
21210             });
21211             
21212             this.inputEl().dom.checked = true;
21213             
21214             this.inputEl().dom.value = this.inputValue;
21215             
21216             if(suppressEvent !== true){
21217                 this.fireEvent('check', this, true);
21218             }
21219             
21220             this.validate();
21221             
21222             return;
21223         }
21224         
21225         this.checked = state;
21226         
21227         this.inputEl().dom.checked = state;
21228         
21229         
21230         this.hiddenEl().dom.value = state ? this.inputValue : this.valueOff;
21231         
21232         if(suppressEvent !== true){
21233             this.fireEvent('check', this, state);
21234         }
21235         
21236         this.validate();
21237     },
21238     
21239     getValue : function()
21240     {
21241         if(this.inputType == 'radio'){
21242             return this.getGroupValue();
21243         }
21244         
21245         return this.hiddenEl().dom.value;
21246         
21247     },
21248     
21249     getGroupValue : function()
21250     {
21251         if(typeof(this.el.up('form').child('input[name='+this.name+']:checked', true)) == 'undefined'){
21252             return '';
21253         }
21254         
21255         return this.el.up('form').child('input[name='+this.name+']:checked', true).value;
21256     },
21257     
21258     setValue : function(v,suppressEvent)
21259     {
21260         if(this.inputType == 'radio'){
21261             this.setGroupValue(v, suppressEvent);
21262             return;
21263         }
21264         
21265         this.setChecked(((typeof(v) == 'undefined') ? this.checked : (String(v) === String(this.inputValue))), suppressEvent);
21266         
21267         this.validate();
21268     },
21269     
21270     setGroupValue : function(v, suppressEvent)
21271     {
21272         this.startValue = this.getValue();
21273         
21274         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21275             e.dom.checked = false;
21276             
21277             if(e.dom.value == v){
21278                 e.dom.checked = true;
21279             }
21280         });
21281         
21282         if(suppressEvent !== true){
21283             this.fireEvent('check', this, true);
21284         }
21285
21286         this.validate();
21287         
21288         return;
21289     },
21290     
21291     validate : function()
21292     {
21293         if(this.getVisibilityEl().hasClass('hidden')){
21294             return true;
21295         }
21296         
21297         if(
21298                 this.disabled || 
21299                 (this.inputType == 'radio' && this.validateRadio()) ||
21300                 (this.inputType == 'checkbox' && this.validateCheckbox())
21301         ){
21302             this.markValid();
21303             return true;
21304         }
21305         
21306         this.markInvalid();
21307         return false;
21308     },
21309     
21310     validateRadio : function()
21311     {
21312         if(this.getVisibilityEl().hasClass('hidden')){
21313             return true;
21314         }
21315         
21316         if(this.allowBlank){
21317             return true;
21318         }
21319         
21320         var valid = false;
21321         
21322         Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21323             if(!e.dom.checked){
21324                 return;
21325             }
21326             
21327             valid = true;
21328             
21329             return false;
21330         });
21331         
21332         return valid;
21333     },
21334     
21335     validateCheckbox : function()
21336     {
21337         if(!this.groupId){
21338             return (this.getValue() == this.inputValue || this.allowBlank) ? true : false;
21339             //return (this.getValue() == this.inputValue) ? true : false;
21340         }
21341         
21342         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21343         
21344         if(!group){
21345             return false;
21346         }
21347         
21348         var r = false;
21349         
21350         for(var i in group){
21351             if(group[i].el.isVisible(true)){
21352                 r = false;
21353                 break;
21354             }
21355             
21356             r = true;
21357         }
21358         
21359         for(var i in group){
21360             if(r){
21361                 break;
21362             }
21363             
21364             r = (group[i].getValue() == group[i].inputValue) ? true : false;
21365         }
21366         
21367         return r;
21368     },
21369     
21370     /**
21371      * Mark this field as valid
21372      */
21373     markValid : function()
21374     {
21375         var _this = this;
21376         
21377         this.fireEvent('valid', this);
21378         
21379         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21380         
21381         if(this.groupId){
21382             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21383         }
21384         
21385         if(label){
21386             label.markValid();
21387         }
21388
21389         if(this.inputType == 'radio'){
21390             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21391                 var fg = e.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             return;
21402         }
21403
21404         if(!this.groupId){
21405             var fg = this.el.findParent('.form-group', false, true);
21406             if (Roo.bootstrap.version == 3) {
21407                 fg.removeClass([this.invalidClass, this.validClass]);
21408                 fg.addClass(this.validClass);
21409             } else {
21410                 fg.removeClass(['is-valid', 'is-invalid']);
21411                 fg.addClass('is-valid');
21412             }
21413             return;
21414         }
21415         
21416         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21417         
21418         if(!group){
21419             return;
21420         }
21421         
21422         for(var i in group){
21423             var fg = group[i].el.findParent('.form-group', false, true);
21424             if (Roo.bootstrap.version == 3) {
21425                 fg.removeClass([this.invalidClass, this.validClass]);
21426                 fg.addClass(this.validClass);
21427             } else {
21428                 fg.removeClass(['is-valid', 'is-invalid']);
21429                 fg.addClass('is-valid');
21430             }
21431         }
21432     },
21433     
21434      /**
21435      * Mark this field as invalid
21436      * @param {String} msg The validation message
21437      */
21438     markInvalid : function(msg)
21439     {
21440         if(this.allowBlank){
21441             return;
21442         }
21443         
21444         var _this = this;
21445         
21446         this.fireEvent('invalid', this, msg);
21447         
21448         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21449         
21450         if(this.groupId){
21451             label = Roo.bootstrap.FieldLabel.get(this.groupId + '-group');
21452         }
21453         
21454         if(label){
21455             label.markInvalid();
21456         }
21457             
21458         if(this.inputType == 'radio'){
21459             
21460             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21461                 var fg = e.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             return;
21472         }
21473         
21474         if(!this.groupId){
21475             var fg = this.el.findParent('.form-group', false, true);
21476             if (Roo.bootstrap.version == 3) {
21477                 fg.removeClass([_this.invalidClass, _this.validClass]);
21478                 fg.addClass(_this.invalidClass);
21479             } else {
21480                 fg.removeClass(['is-invalid', 'is-valid']);
21481                 fg.addClass('is-invalid');
21482             }
21483             return;
21484         }
21485         
21486         var group = Roo.bootstrap.CheckBox.get(this.groupId);
21487         
21488         if(!group){
21489             return;
21490         }
21491         
21492         for(var i in group){
21493             var fg = group[i].el.findParent('.form-group', false, true);
21494             if (Roo.bootstrap.version == 3) {
21495                 fg.removeClass([_this.invalidClass, _this.validClass]);
21496                 fg.addClass(_this.invalidClass);
21497             } else {
21498                 fg.removeClass(['is-invalid', 'is-valid']);
21499                 fg.addClass('is-invalid');
21500             }
21501         }
21502         
21503     },
21504     
21505     clearInvalid : function()
21506     {
21507         Roo.bootstrap.Input.prototype.clearInvalid.call(this);
21508         
21509         // this.el.findParent('.form-group', false, true).removeClass([this.invalidClass, this.validClass]);
21510         
21511         var label = Roo.bootstrap.FieldLabel.get(this.name + '-group');
21512         
21513         if (label && label.iconEl) {
21514             label.iconEl.removeClass([ label.validClass, label.invalidClass ]);
21515             label.iconEl.removeClass(['is-invalid', 'is-valid']);
21516         }
21517     },
21518     
21519     disable : function()
21520     {
21521         if(this.inputType != 'radio'){
21522             Roo.bootstrap.CheckBox.superclass.disable.call(this);
21523             return;
21524         }
21525         
21526         var _this = this;
21527         
21528         if(this.rendered){
21529             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21530                 _this.getActionEl().addClass(this.disabledClass);
21531                 e.dom.disabled = true;
21532             });
21533         }
21534         
21535         this.disabled = true;
21536         this.fireEvent("disable", this);
21537         return this;
21538     },
21539
21540     enable : function()
21541     {
21542         if(this.inputType != 'radio'){
21543             Roo.bootstrap.CheckBox.superclass.enable.call(this);
21544             return;
21545         }
21546         
21547         var _this = this;
21548         
21549         if(this.rendered){
21550             Roo.each(this.el.up('form').select('input[name='+this.name+']', true).elements, function(e){
21551                 _this.getActionEl().removeClass(this.disabledClass);
21552                 e.dom.disabled = false;
21553             });
21554         }
21555         
21556         this.disabled = false;
21557         this.fireEvent("enable", this);
21558         return this;
21559     },
21560     
21561     setBoxLabel : function(v)
21562     {
21563         this.boxLabel = v;
21564         
21565         if(this.rendered){
21566             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21567         }
21568     }
21569
21570 });
21571
21572 Roo.apply(Roo.bootstrap.CheckBox, {
21573     
21574     groups: {},
21575     
21576      /**
21577     * register a CheckBox Group
21578     * @param {Roo.bootstrap.CheckBox} the CheckBox to add
21579     */
21580     register : function(checkbox)
21581     {
21582         if(typeof(this.groups[checkbox.groupId]) == 'undefined'){
21583             this.groups[checkbox.groupId] = {};
21584         }
21585         
21586         if(this.groups[checkbox.groupId].hasOwnProperty(checkbox.name)){
21587             return;
21588         }
21589         
21590         this.groups[checkbox.groupId][checkbox.name] = checkbox;
21591         
21592     },
21593     /**
21594     * fetch a CheckBox Group based on the group ID
21595     * @param {string} the group ID
21596     * @returns {Roo.bootstrap.CheckBox} the CheckBox group
21597     */
21598     get: function(groupId) {
21599         if (typeof(this.groups[groupId]) == 'undefined') {
21600             return false;
21601         }
21602         
21603         return this.groups[groupId] ;
21604     }
21605     
21606     
21607 });
21608 /*
21609  * - LGPL
21610  *
21611  * RadioItem
21612  * 
21613  */
21614
21615 /**
21616  * @class Roo.bootstrap.Radio
21617  * @extends Roo.bootstrap.Component
21618  * Bootstrap Radio class
21619  * @cfg {String} boxLabel - the label associated
21620  * @cfg {String} value - the value of radio
21621  * 
21622  * @constructor
21623  * Create a new Radio
21624  * @param {Object} config The config object
21625  */
21626 Roo.bootstrap.Radio = function(config){
21627     Roo.bootstrap.Radio.superclass.constructor.call(this, config);
21628     
21629 };
21630
21631 Roo.extend(Roo.bootstrap.Radio, Roo.bootstrap.Component, {
21632     
21633     boxLabel : '',
21634     
21635     value : '',
21636     
21637     getAutoCreate : function()
21638     {
21639         var cfg = {
21640             tag : 'div',
21641             cls : 'form-group radio',
21642             cn : [
21643                 {
21644                     tag : 'label',
21645                     cls : 'box-label',
21646                     html : this.boxLabel
21647                 }
21648             ]
21649         };
21650         
21651         return cfg;
21652     },
21653     
21654     initEvents : function() 
21655     {
21656         this.parent().register(this);
21657         
21658         this.el.on('click', this.onClick, this);
21659         
21660     },
21661     
21662     onClick : function(e)
21663     {
21664         if(this.parent().fireEvent('click', this.parent(), this, e) !== false){
21665             this.setChecked(true);
21666         }
21667     },
21668     
21669     setChecked : function(state, suppressEvent)
21670     {
21671         this.parent().setValue(this.value, suppressEvent);
21672         
21673     },
21674     
21675     setBoxLabel : function(v)
21676     {
21677         this.boxLabel = v;
21678         
21679         if(this.rendered){
21680             this.el.select('label.box-label',true).first().dom.innerHTML = (v === null || v === undefined ? '' : v);
21681         }
21682     }
21683     
21684 });
21685  
21686
21687  /*
21688  * - LGPL
21689  *
21690  * Input
21691  * 
21692  */
21693
21694 /**
21695  * @class Roo.bootstrap.SecurePass
21696  * @extends Roo.bootstrap.Input
21697  * Bootstrap SecurePass class
21698  *
21699  * 
21700  * @constructor
21701  * Create a new SecurePass
21702  * @param {Object} config The config object
21703  */
21704  
21705 Roo.bootstrap.SecurePass = function (config) {
21706     // these go here, so the translation tool can replace them..
21707     this.errors = {
21708         PwdEmpty: "Please type a password, and then retype it to confirm.",
21709         PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21710         PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21711         PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21712         IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21713         FNInPwd: "Your password can't contain your first name. Please type a different password.",
21714         LNInPwd: "Your password can't contain your last name. Please type a different password.",
21715         TooWeak: "Your password is Too Weak."
21716     },
21717     this.meterLabel = "Password strength:";
21718     this.pwdStrengths = ["Too Weak", "Weak", "Medium", "Strong"];
21719     this.meterClass = [
21720         "roo-password-meter-tooweak", 
21721         "roo-password-meter-weak", 
21722         "roo-password-meter-medium", 
21723         "roo-password-meter-strong", 
21724         "roo-password-meter-grey"
21725     ];
21726     
21727     this.errors = {};
21728     
21729     Roo.bootstrap.SecurePass.superclass.constructor.call(this, config);
21730 }
21731
21732 Roo.extend(Roo.bootstrap.SecurePass, Roo.bootstrap.Input, {
21733     /**
21734      * @cfg {String/Object} errors A Error spec, or true for a default spec (defaults to
21735      * {
21736      *  PwdEmpty: "Please type a password, and then retype it to confirm.",
21737      *  PwdShort: "Your password must be at least 6 characters long. Please type a different password.",
21738      *  PwdLong: "Your password can't contain more than 16 characters. Please type a different password.",
21739      *  PwdBadChar: "The password contains characters that aren't allowed. Please type a different password.",
21740      *  IDInPwd: "Your password can't include the part of your ID. Please type a different password.",
21741      *  FNInPwd: "Your password can't contain your first name. Please type a different password.",
21742      *  LNInPwd: "Your password can't contain your last name. Please type a different password."
21743      * })
21744      */
21745     // private
21746     
21747     meterWidth: 300,
21748     errorMsg :'',    
21749     errors: false,
21750     imageRoot: '/',
21751     /**
21752      * @cfg {String/Object} Label for the strength meter (defaults to
21753      * 'Password strength:')
21754      */
21755     // private
21756     meterLabel: '',
21757     /**
21758      * @cfg {String/Object} pwdStrengths A pwdStrengths spec, or true for a default spec (defaults to
21759      * ['Weak', 'Medium', 'Strong'])
21760      */
21761     // private    
21762     pwdStrengths: false,    
21763     // private
21764     strength: 0,
21765     // private
21766     _lastPwd: null,
21767     // private
21768     kCapitalLetter: 0,
21769     kSmallLetter: 1,
21770     kDigit: 2,
21771     kPunctuation: 3,
21772     
21773     insecure: false,
21774     // private
21775     initEvents: function ()
21776     {
21777         Roo.bootstrap.SecurePass.superclass.initEvents.call(this);
21778
21779         if (this.el.is('input[type=password]') && Roo.isSafari) {
21780             this.el.on('keydown', this.SafariOnKeyDown, this);
21781         }
21782
21783         this.el.on('keyup', this.checkStrength, this, {buffer: 50});
21784     },
21785     // private
21786     onRender: function (ct, position)
21787     {
21788         Roo.bootstrap.SecurePass.superclass.onRender.call(this, ct, position);
21789         this.wrap = this.el.wrap({cls: 'x-form-field-wrap'});
21790         this.trigger = this.wrap.createChild({tag: 'div', cls: 'StrengthMeter ' + this.triggerClass});
21791
21792         this.trigger.createChild({
21793                    cn: [
21794                     {
21795                     //id: 'PwdMeter',
21796                     tag: 'div',
21797                     cls: 'roo-password-meter-grey col-xs-12',
21798                     style: {
21799                         //width: 0,
21800                         //width: this.meterWidth + 'px'                                                
21801                         }
21802                     },
21803                     {                            
21804                          cls: 'roo-password-meter-text'                          
21805                     }
21806                 ]            
21807         });
21808
21809          
21810         if (this.hideTrigger) {
21811             this.trigger.setDisplayed(false);
21812         }
21813         this.setSize(this.width || '', this.height || '');
21814     },
21815     // private
21816     onDestroy: function ()
21817     {
21818         if (this.trigger) {
21819             this.trigger.removeAllListeners();
21820             this.trigger.remove();
21821         }
21822         if (this.wrap) {
21823             this.wrap.remove();
21824         }
21825         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
21826     },
21827     // private
21828     checkStrength: function ()
21829     {
21830         var pwd = this.inputEl().getValue();
21831         if (pwd == this._lastPwd) {
21832             return;
21833         }
21834
21835         var strength;
21836         if (this.ClientSideStrongPassword(pwd)) {
21837             strength = 3;
21838         } else if (this.ClientSideMediumPassword(pwd)) {
21839             strength = 2;
21840         } else if (this.ClientSideWeakPassword(pwd)) {
21841             strength = 1;
21842         } else {
21843             strength = 0;
21844         }
21845         
21846         Roo.log('strength1: ' + strength);
21847         
21848         //var pm = this.trigger.child('div/div/div').dom;
21849         var pm = this.trigger.child('div/div');
21850         pm.removeClass(this.meterClass);
21851         pm.addClass(this.meterClass[strength]);
21852                 
21853         
21854         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21855                 
21856         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21857         
21858         this._lastPwd = pwd;
21859     },
21860     reset: function ()
21861     {
21862         Roo.bootstrap.SecurePass.superclass.reset.call(this);
21863         
21864         this._lastPwd = '';
21865         
21866         var pm = this.trigger.child('div/div');
21867         pm.removeClass(this.meterClass);
21868         pm.addClass('roo-password-meter-grey');        
21869         
21870         
21871         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21872         
21873         pt.innerHTML = '';
21874         this.inputEl().dom.type='password';
21875     },
21876     // private
21877     validateValue: function (value)
21878     {
21879         
21880         if (!Roo.bootstrap.SecurePass.superclass.validateValue.call(this, value)) {
21881             return false;
21882         }
21883         if (value.length == 0) {
21884             if (this.allowBlank) {
21885                 this.clearInvalid();
21886                 return true;
21887             }
21888
21889             this.markInvalid(this.errors.PwdEmpty);
21890             this.errorMsg = this.errors.PwdEmpty;
21891             return false;
21892         }
21893         
21894         if(this.insecure){
21895             return true;
21896         }
21897         
21898         if ('[\x21-\x7e]*'.match(value)) {
21899             this.markInvalid(this.errors.PwdBadChar);
21900             this.errorMsg = this.errors.PwdBadChar;
21901             return false;
21902         }
21903         if (value.length < 6) {
21904             this.markInvalid(this.errors.PwdShort);
21905             this.errorMsg = this.errors.PwdShort;
21906             return false;
21907         }
21908         if (value.length > 16) {
21909             this.markInvalid(this.errors.PwdLong);
21910             this.errorMsg = this.errors.PwdLong;
21911             return false;
21912         }
21913         var strength;
21914         if (this.ClientSideStrongPassword(value)) {
21915             strength = 3;
21916         } else if (this.ClientSideMediumPassword(value)) {
21917             strength = 2;
21918         } else if (this.ClientSideWeakPassword(value)) {
21919             strength = 1;
21920         } else {
21921             strength = 0;
21922         }
21923
21924         
21925         if (strength < 2) {
21926             //this.markInvalid(this.errors.TooWeak);
21927             this.errorMsg = this.errors.TooWeak;
21928             //return false;
21929         }
21930         
21931         
21932         console.log('strength2: ' + strength);
21933         
21934         //var pm = this.trigger.child('div/div/div').dom;
21935         
21936         var pm = this.trigger.child('div/div');
21937         pm.removeClass(this.meterClass);
21938         pm.addClass(this.meterClass[strength]);
21939                 
21940         var pt = this.trigger.child('/div').child('>*[class=roo-password-meter-text]').dom;        
21941                 
21942         pt.innerHTML = this.meterLabel + '&nbsp;' + this.pwdStrengths[strength];
21943         
21944         this.errorMsg = ''; 
21945         return true;
21946     },
21947     // private
21948     CharacterSetChecks: function (type)
21949     {
21950         this.type = type;
21951         this.fResult = false;
21952     },
21953     // private
21954     isctype: function (character, type)
21955     {
21956         switch (type) {  
21957             case this.kCapitalLetter:
21958                 if (character >= 'A' && character <= 'Z') {
21959                     return true;
21960                 }
21961                 break;
21962             
21963             case this.kSmallLetter:
21964                 if (character >= 'a' && character <= 'z') {
21965                     return true;
21966                 }
21967                 break;
21968             
21969             case this.kDigit:
21970                 if (character >= '0' && character <= '9') {
21971                     return true;
21972                 }
21973                 break;
21974             
21975             case this.kPunctuation:
21976                 if ('!@#$%^&*()_+-=\'";:[{]}|.>,</?`~'.indexOf(character) >= 0) {
21977                     return true;
21978                 }
21979                 break;
21980             
21981             default:
21982                 return false;
21983         }
21984
21985     },
21986     // private
21987     IsLongEnough: function (pwd, size)
21988     {
21989         return !(pwd == null || isNaN(size) || pwd.length < size);
21990     },
21991     // private
21992     SpansEnoughCharacterSets: function (word, nb)
21993     {
21994         if (!this.IsLongEnough(word, nb))
21995         {
21996             return false;
21997         }
21998
21999         var characterSetChecks = new Array(
22000             new this.CharacterSetChecks(this.kCapitalLetter), new this.CharacterSetChecks(this.kSmallLetter),
22001             new this.CharacterSetChecks(this.kDigit), new this.CharacterSetChecks(this.kPunctuation)
22002         );
22003         
22004         for (var index = 0; index < word.length; ++index) {
22005             for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
22006                 if (!characterSetChecks[nCharSet].fResult && this.isctype(word.charAt(index), characterSetChecks[nCharSet].type)) {
22007                     characterSetChecks[nCharSet].fResult = true;
22008                     break;
22009                 }
22010             }
22011         }
22012
22013         var nCharSets = 0;
22014         for (var nCharSet = 0; nCharSet < characterSetChecks.length; ++nCharSet) {
22015             if (characterSetChecks[nCharSet].fResult) {
22016                 ++nCharSets;
22017             }
22018         }
22019
22020         if (nCharSets < nb) {
22021             return false;
22022         }
22023         return true;
22024     },
22025     // private
22026     ClientSideStrongPassword: function (pwd)
22027     {
22028         return this.IsLongEnough(pwd, 8) && this.SpansEnoughCharacterSets(pwd, 3);
22029     },
22030     // private
22031     ClientSideMediumPassword: function (pwd)
22032     {
22033         return this.IsLongEnough(pwd, 7) && this.SpansEnoughCharacterSets(pwd, 2);
22034     },
22035     // private
22036     ClientSideWeakPassword: function (pwd)
22037     {
22038         return this.IsLongEnough(pwd, 6) || !this.IsLongEnough(pwd, 0);
22039     }
22040           
22041 })//<script type="text/javascript">
22042
22043 /*
22044  * Based  Ext JS Library 1.1.1
22045  * Copyright(c) 2006-2007, Ext JS, LLC.
22046  * LGPL
22047  *
22048  */
22049  
22050 /**
22051  * @class Roo.HtmlEditorCore
22052  * @extends Roo.Component
22053  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
22054  *
22055  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
22056  */
22057
22058 Roo.HtmlEditorCore = function(config){
22059     
22060     
22061     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
22062     
22063     
22064     this.addEvents({
22065         /**
22066          * @event initialize
22067          * Fires when the editor is fully initialized (including the iframe)
22068          * @param {Roo.HtmlEditorCore} this
22069          */
22070         initialize: true,
22071         /**
22072          * @event activate
22073          * Fires when the editor is first receives the focus. Any insertion must wait
22074          * until after this event.
22075          * @param {Roo.HtmlEditorCore} this
22076          */
22077         activate: true,
22078          /**
22079          * @event beforesync
22080          * Fires before the textarea is updated with content from the editor iframe. Return false
22081          * to cancel the sync.
22082          * @param {Roo.HtmlEditorCore} this
22083          * @param {String} html
22084          */
22085         beforesync: true,
22086          /**
22087          * @event beforepush
22088          * Fires before the iframe editor is updated with content from the textarea. Return false
22089          * to cancel the push.
22090          * @param {Roo.HtmlEditorCore} this
22091          * @param {String} html
22092          */
22093         beforepush: true,
22094          /**
22095          * @event sync
22096          * Fires when the textarea is updated with content from the editor iframe.
22097          * @param {Roo.HtmlEditorCore} this
22098          * @param {String} html
22099          */
22100         sync: true,
22101          /**
22102          * @event push
22103          * Fires when the iframe editor is updated with content from the textarea.
22104          * @param {Roo.HtmlEditorCore} this
22105          * @param {String} html
22106          */
22107         push: true,
22108         
22109         /**
22110          * @event editorevent
22111          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
22112          * @param {Roo.HtmlEditorCore} this
22113          */
22114         editorevent: true
22115         
22116     });
22117     
22118     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
22119     
22120     // defaults : white / black...
22121     this.applyBlacklists();
22122     
22123     
22124     
22125 };
22126
22127
22128 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
22129
22130
22131      /**
22132      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
22133      */
22134     
22135     owner : false,
22136     
22137      /**
22138      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
22139      *                        Roo.resizable.
22140      */
22141     resizable : false,
22142      /**
22143      * @cfg {Number} height (in pixels)
22144      */   
22145     height: 300,
22146    /**
22147      * @cfg {Number} width (in pixels)
22148      */   
22149     width: 500,
22150     
22151     /**
22152      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
22153      * 
22154      */
22155     stylesheets: false,
22156     
22157     // id of frame..
22158     frameId: false,
22159     
22160     // private properties
22161     validationEvent : false,
22162     deferHeight: true,
22163     initialized : false,
22164     activated : false,
22165     sourceEditMode : false,
22166     onFocus : Roo.emptyFn,
22167     iframePad:3,
22168     hideMode:'offsets',
22169     
22170     clearUp: true,
22171     
22172     // blacklist + whitelisted elements..
22173     black: false,
22174     white: false,
22175      
22176     bodyCls : '',
22177
22178     /**
22179      * Protected method that will not generally be called directly. It
22180      * is called when the editor initializes the iframe with HTML contents. Override this method if you
22181      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
22182      */
22183     getDocMarkup : function(){
22184         // body styles..
22185         var st = '';
22186         
22187         // inherit styels from page...?? 
22188         if (this.stylesheets === false) {
22189             
22190             Roo.get(document.head).select('style').each(function(node) {
22191                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22192             });
22193             
22194             Roo.get(document.head).select('link').each(function(node) { 
22195                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
22196             });
22197             
22198         } else if (!this.stylesheets.length) {
22199                 // simple..
22200                 st = '<style type="text/css">' +
22201                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22202                    '</style>';
22203         } else { 
22204             st = '<style type="text/css">' +
22205                     this.stylesheets +
22206                 '</style>';
22207         }
22208         
22209         st +=  '<style type="text/css">' +
22210             'IMG { cursor: pointer } ' +
22211         '</style>';
22212
22213         var cls = 'roo-htmleditor-body';
22214         
22215         if(this.bodyCls.length){
22216             cls += ' ' + this.bodyCls;
22217         }
22218         
22219         return '<html><head>' + st  +
22220             //<style type="text/css">' +
22221             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
22222             //'</style>' +
22223             ' </head><body class="' +  cls + '"></body></html>';
22224     },
22225
22226     // private
22227     onRender : function(ct, position)
22228     {
22229         var _t = this;
22230         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
22231         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
22232         
22233         
22234         this.el.dom.style.border = '0 none';
22235         this.el.dom.setAttribute('tabIndex', -1);
22236         this.el.addClass('x-hidden hide');
22237         
22238         
22239         
22240         if(Roo.isIE){ // fix IE 1px bogus margin
22241             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
22242         }
22243        
22244         
22245         this.frameId = Roo.id();
22246         
22247          
22248         
22249         var iframe = this.owner.wrap.createChild({
22250             tag: 'iframe',
22251             cls: 'form-control', // bootstrap..
22252             id: this.frameId,
22253             name: this.frameId,
22254             frameBorder : 'no',
22255             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
22256         }, this.el
22257         );
22258         
22259         
22260         this.iframe = iframe.dom;
22261
22262          this.assignDocWin();
22263         
22264         this.doc.designMode = 'on';
22265        
22266         this.doc.open();
22267         this.doc.write(this.getDocMarkup());
22268         this.doc.close();
22269
22270         
22271         var task = { // must defer to wait for browser to be ready
22272             run : function(){
22273                 //console.log("run task?" + this.doc.readyState);
22274                 this.assignDocWin();
22275                 if(this.doc.body || this.doc.readyState == 'complete'){
22276                     try {
22277                         this.doc.designMode="on";
22278                     } catch (e) {
22279                         return;
22280                     }
22281                     Roo.TaskMgr.stop(task);
22282                     this.initEditor.defer(10, this);
22283                 }
22284             },
22285             interval : 10,
22286             duration: 10000,
22287             scope: this
22288         };
22289         Roo.TaskMgr.start(task);
22290
22291     },
22292
22293     // private
22294     onResize : function(w, h)
22295     {
22296          Roo.log('resize: ' +w + ',' + h );
22297         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
22298         if(!this.iframe){
22299             return;
22300         }
22301         if(typeof w == 'number'){
22302             
22303             this.iframe.style.width = w + 'px';
22304         }
22305         if(typeof h == 'number'){
22306             
22307             this.iframe.style.height = h + 'px';
22308             if(this.doc){
22309                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
22310             }
22311         }
22312         
22313     },
22314
22315     /**
22316      * Toggles the editor between standard and source edit mode.
22317      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
22318      */
22319     toggleSourceEdit : function(sourceEditMode){
22320         
22321         this.sourceEditMode = sourceEditMode === true;
22322         
22323         if(this.sourceEditMode){
22324  
22325             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
22326             
22327         }else{
22328             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
22329             //this.iframe.className = '';
22330             this.deferFocus();
22331         }
22332         //this.setSize(this.owner.wrap.getSize());
22333         //this.fireEvent('editmodechange', this, this.sourceEditMode);
22334     },
22335
22336     
22337   
22338
22339     /**
22340      * Protected method that will not generally be called directly. If you need/want
22341      * custom HTML cleanup, this is the method you should override.
22342      * @param {String} html The HTML to be cleaned
22343      * return {String} The cleaned HTML
22344      */
22345     cleanHtml : function(html){
22346         html = String(html);
22347         if(html.length > 5){
22348             if(Roo.isSafari){ // strip safari nonsense
22349                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
22350             }
22351         }
22352         if(html == '&nbsp;'){
22353             html = '';
22354         }
22355         return html;
22356     },
22357
22358     /**
22359      * HTML Editor -> Textarea
22360      * Protected method that will not generally be called directly. Syncs the contents
22361      * of the editor iframe with the textarea.
22362      */
22363     syncValue : function(){
22364         if(this.initialized){
22365             var bd = (this.doc.body || this.doc.documentElement);
22366             //this.cleanUpPaste(); -- this is done else where and causes havoc..
22367             var html = bd.innerHTML;
22368             if(Roo.isSafari){
22369                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
22370                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
22371                 if(m && m[1]){
22372                     html = '<div style="'+m[0]+'">' + html + '</div>';
22373                 }
22374             }
22375             html = this.cleanHtml(html);
22376             // fix up the special chars.. normaly like back quotes in word...
22377             // however we do not want to do this with chinese..
22378             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
22379                 
22380                 var cc = match.charCodeAt();
22381
22382                 // Get the character value, handling surrogate pairs
22383                 if (match.length == 2) {
22384                     // It's a surrogate pair, calculate the Unicode code point
22385                     var high = match.charCodeAt(0) - 0xD800;
22386                     var low  = match.charCodeAt(1) - 0xDC00;
22387                     cc = (high * 0x400) + low + 0x10000;
22388                 }  else if (
22389                     (cc >= 0x4E00 && cc < 0xA000 ) ||
22390                     (cc >= 0x3400 && cc < 0x4E00 ) ||
22391                     (cc >= 0xf900 && cc < 0xfb00 )
22392                 ) {
22393                         return match;
22394                 }  
22395          
22396                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
22397                 return "&#" + cc + ";";
22398                 
22399                 
22400             });
22401             
22402             
22403              
22404             if(this.owner.fireEvent('beforesync', this, html) !== false){
22405                 this.el.dom.value = html;
22406                 this.owner.fireEvent('sync', this, html);
22407             }
22408         }
22409     },
22410
22411     /**
22412      * Protected method that will not generally be called directly. Pushes the value of the textarea
22413      * into the iframe editor.
22414      */
22415     pushValue : function(){
22416         if(this.initialized){
22417             var v = this.el.dom.value.trim();
22418             
22419 //            if(v.length < 1){
22420 //                v = '&#160;';
22421 //            }
22422             
22423             if(this.owner.fireEvent('beforepush', this, v) !== false){
22424                 var d = (this.doc.body || this.doc.documentElement);
22425                 d.innerHTML = v;
22426                 this.cleanUpPaste();
22427                 this.el.dom.value = d.innerHTML;
22428                 this.owner.fireEvent('push', this, v);
22429             }
22430         }
22431     },
22432
22433     // private
22434     deferFocus : function(){
22435         this.focus.defer(10, this);
22436     },
22437
22438     // doc'ed in Field
22439     focus : function(){
22440         if(this.win && !this.sourceEditMode){
22441             this.win.focus();
22442         }else{
22443             this.el.focus();
22444         }
22445     },
22446     
22447     assignDocWin: function()
22448     {
22449         var iframe = this.iframe;
22450         
22451          if(Roo.isIE){
22452             this.doc = iframe.contentWindow.document;
22453             this.win = iframe.contentWindow;
22454         } else {
22455 //            if (!Roo.get(this.frameId)) {
22456 //                return;
22457 //            }
22458 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22459 //            this.win = Roo.get(this.frameId).dom.contentWindow;
22460             
22461             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
22462                 return;
22463             }
22464             
22465             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
22466             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
22467         }
22468     },
22469     
22470     // private
22471     initEditor : function(){
22472         //console.log("INIT EDITOR");
22473         this.assignDocWin();
22474         
22475         
22476         
22477         this.doc.designMode="on";
22478         this.doc.open();
22479         this.doc.write(this.getDocMarkup());
22480         this.doc.close();
22481         
22482         var dbody = (this.doc.body || this.doc.documentElement);
22483         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
22484         // this copies styles from the containing element into thsi one..
22485         // not sure why we need all of this..
22486         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
22487         
22488         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
22489         //ss['background-attachment'] = 'fixed'; // w3c
22490         dbody.bgProperties = 'fixed'; // ie
22491         //Roo.DomHelper.applyStyles(dbody, ss);
22492         Roo.EventManager.on(this.doc, {
22493             //'mousedown': this.onEditorEvent,
22494             'mouseup': this.onEditorEvent,
22495             'dblclick': this.onEditorEvent,
22496             'click': this.onEditorEvent,
22497             'keyup': this.onEditorEvent,
22498             buffer:100,
22499             scope: this
22500         });
22501         if(Roo.isGecko){
22502             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
22503         }
22504         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
22505             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
22506         }
22507         this.initialized = true;
22508
22509         this.owner.fireEvent('initialize', this);
22510         this.pushValue();
22511     },
22512
22513     // private
22514     onDestroy : function(){
22515         
22516         
22517         
22518         if(this.rendered){
22519             
22520             //for (var i =0; i < this.toolbars.length;i++) {
22521             //    // fixme - ask toolbars for heights?
22522             //    this.toolbars[i].onDestroy();
22523            // }
22524             
22525             //this.wrap.dom.innerHTML = '';
22526             //this.wrap.remove();
22527         }
22528     },
22529
22530     // private
22531     onFirstFocus : function(){
22532         
22533         this.assignDocWin();
22534         
22535         
22536         this.activated = true;
22537          
22538     
22539         if(Roo.isGecko){ // prevent silly gecko errors
22540             this.win.focus();
22541             var s = this.win.getSelection();
22542             if(!s.focusNode || s.focusNode.nodeType != 3){
22543                 var r = s.getRangeAt(0);
22544                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
22545                 r.collapse(true);
22546                 this.deferFocus();
22547             }
22548             try{
22549                 this.execCmd('useCSS', true);
22550                 this.execCmd('styleWithCSS', false);
22551             }catch(e){}
22552         }
22553         this.owner.fireEvent('activate', this);
22554     },
22555
22556     // private
22557     adjustFont: function(btn){
22558         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
22559         //if(Roo.isSafari){ // safari
22560         //    adjust *= 2;
22561        // }
22562         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
22563         if(Roo.isSafari){ // safari
22564             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
22565             v =  (v < 10) ? 10 : v;
22566             v =  (v > 48) ? 48 : v;
22567             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
22568             
22569         }
22570         
22571         
22572         v = Math.max(1, v+adjust);
22573         
22574         this.execCmd('FontSize', v  );
22575     },
22576
22577     onEditorEvent : function(e)
22578     {
22579         this.owner.fireEvent('editorevent', this, e);
22580       //  this.updateToolbar();
22581         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
22582     },
22583
22584     insertTag : function(tg)
22585     {
22586         // could be a bit smarter... -> wrap the current selected tRoo..
22587         if (tg.toLowerCase() == 'span' ||
22588             tg.toLowerCase() == 'code' ||
22589             tg.toLowerCase() == 'sup' ||
22590             tg.toLowerCase() == 'sub' 
22591             ) {
22592             
22593             range = this.createRange(this.getSelection());
22594             var wrappingNode = this.doc.createElement(tg.toLowerCase());
22595             wrappingNode.appendChild(range.extractContents());
22596             range.insertNode(wrappingNode);
22597
22598             return;
22599             
22600             
22601             
22602         }
22603         this.execCmd("formatblock",   tg);
22604         
22605     },
22606     
22607     insertText : function(txt)
22608     {
22609         
22610         
22611         var range = this.createRange();
22612         range.deleteContents();
22613                //alert(Sender.getAttribute('label'));
22614                
22615         range.insertNode(this.doc.createTextNode(txt));
22616     } ,
22617     
22618      
22619
22620     /**
22621      * Executes a Midas editor command on the editor document and performs necessary focus and
22622      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
22623      * @param {String} cmd The Midas command
22624      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22625      */
22626     relayCmd : function(cmd, value){
22627         this.win.focus();
22628         this.execCmd(cmd, value);
22629         this.owner.fireEvent('editorevent', this);
22630         //this.updateToolbar();
22631         this.owner.deferFocus();
22632     },
22633
22634     /**
22635      * Executes a Midas editor command directly on the editor document.
22636      * For visual commands, you should use {@link #relayCmd} instead.
22637      * <b>This should only be called after the editor is initialized.</b>
22638      * @param {String} cmd The Midas command
22639      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
22640      */
22641     execCmd : function(cmd, value){
22642         this.doc.execCommand(cmd, false, value === undefined ? null : value);
22643         this.syncValue();
22644     },
22645  
22646  
22647    
22648     /**
22649      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
22650      * to insert tRoo.
22651      * @param {String} text | dom node.. 
22652      */
22653     insertAtCursor : function(text)
22654     {
22655         
22656         if(!this.activated){
22657             return;
22658         }
22659         /*
22660         if(Roo.isIE){
22661             this.win.focus();
22662             var r = this.doc.selection.createRange();
22663             if(r){
22664                 r.collapse(true);
22665                 r.pasteHTML(text);
22666                 this.syncValue();
22667                 this.deferFocus();
22668             
22669             }
22670             return;
22671         }
22672         */
22673         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
22674             this.win.focus();
22675             
22676             
22677             // from jquery ui (MIT licenced)
22678             var range, node;
22679             var win = this.win;
22680             
22681             if (win.getSelection && win.getSelection().getRangeAt) {
22682                 range = win.getSelection().getRangeAt(0);
22683                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
22684                 range.insertNode(node);
22685             } else if (win.document.selection && win.document.selection.createRange) {
22686                 // no firefox support
22687                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22688                 win.document.selection.createRange().pasteHTML(txt);
22689             } else {
22690                 // no firefox support
22691                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
22692                 this.execCmd('InsertHTML', txt);
22693             } 
22694             
22695             this.syncValue();
22696             
22697             this.deferFocus();
22698         }
22699     },
22700  // private
22701     mozKeyPress : function(e){
22702         if(e.ctrlKey){
22703             var c = e.getCharCode(), cmd;
22704           
22705             if(c > 0){
22706                 c = String.fromCharCode(c).toLowerCase();
22707                 switch(c){
22708                     case 'b':
22709                         cmd = 'bold';
22710                         break;
22711                     case 'i':
22712                         cmd = 'italic';
22713                         break;
22714                     
22715                     case 'u':
22716                         cmd = 'underline';
22717                         break;
22718                     
22719                     case 'v':
22720                         this.cleanUpPaste.defer(100, this);
22721                         return;
22722                         
22723                 }
22724                 if(cmd){
22725                     this.win.focus();
22726                     this.execCmd(cmd);
22727                     this.deferFocus();
22728                     e.preventDefault();
22729                 }
22730                 
22731             }
22732         }
22733     },
22734
22735     // private
22736     fixKeys : function(){ // load time branching for fastest keydown performance
22737         if(Roo.isIE){
22738             return function(e){
22739                 var k = e.getKey(), r;
22740                 if(k == e.TAB){
22741                     e.stopEvent();
22742                     r = this.doc.selection.createRange();
22743                     if(r){
22744                         r.collapse(true);
22745                         r.pasteHTML('&#160;&#160;&#160;&#160;');
22746                         this.deferFocus();
22747                     }
22748                     return;
22749                 }
22750                 
22751                 if(k == e.ENTER){
22752                     r = this.doc.selection.createRange();
22753                     if(r){
22754                         var target = r.parentElement();
22755                         if(!target || target.tagName.toLowerCase() != 'li'){
22756                             e.stopEvent();
22757                             r.pasteHTML('<br />');
22758                             r.collapse(false);
22759                             r.select();
22760                         }
22761                     }
22762                 }
22763                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22764                     this.cleanUpPaste.defer(100, this);
22765                     return;
22766                 }
22767                 
22768                 
22769             };
22770         }else if(Roo.isOpera){
22771             return function(e){
22772                 var k = e.getKey();
22773                 if(k == e.TAB){
22774                     e.stopEvent();
22775                     this.win.focus();
22776                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
22777                     this.deferFocus();
22778                 }
22779                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22780                     this.cleanUpPaste.defer(100, this);
22781                     return;
22782                 }
22783                 
22784             };
22785         }else if(Roo.isSafari){
22786             return function(e){
22787                 var k = e.getKey();
22788                 
22789                 if(k == e.TAB){
22790                     e.stopEvent();
22791                     this.execCmd('InsertText','\t');
22792                     this.deferFocus();
22793                     return;
22794                 }
22795                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
22796                     this.cleanUpPaste.defer(100, this);
22797                     return;
22798                 }
22799                 
22800              };
22801         }
22802     }(),
22803     
22804     getAllAncestors: function()
22805     {
22806         var p = this.getSelectedNode();
22807         var a = [];
22808         if (!p) {
22809             a.push(p); // push blank onto stack..
22810             p = this.getParentElement();
22811         }
22812         
22813         
22814         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
22815             a.push(p);
22816             p = p.parentNode;
22817         }
22818         a.push(this.doc.body);
22819         return a;
22820     },
22821     lastSel : false,
22822     lastSelNode : false,
22823     
22824     
22825     getSelection : function() 
22826     {
22827         this.assignDocWin();
22828         return Roo.isIE ? this.doc.selection : this.win.getSelection();
22829     },
22830     
22831     getSelectedNode: function() 
22832     {
22833         // this may only work on Gecko!!!
22834         
22835         // should we cache this!!!!
22836         
22837         
22838         
22839          
22840         var range = this.createRange(this.getSelection()).cloneRange();
22841         
22842         if (Roo.isIE) {
22843             var parent = range.parentElement();
22844             while (true) {
22845                 var testRange = range.duplicate();
22846                 testRange.moveToElementText(parent);
22847                 if (testRange.inRange(range)) {
22848                     break;
22849                 }
22850                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
22851                     break;
22852                 }
22853                 parent = parent.parentElement;
22854             }
22855             return parent;
22856         }
22857         
22858         // is ancestor a text element.
22859         var ac =  range.commonAncestorContainer;
22860         if (ac.nodeType == 3) {
22861             ac = ac.parentNode;
22862         }
22863         
22864         var ar = ac.childNodes;
22865          
22866         var nodes = [];
22867         var other_nodes = [];
22868         var has_other_nodes = false;
22869         for (var i=0;i<ar.length;i++) {
22870             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
22871                 continue;
22872             }
22873             // fullly contained node.
22874             
22875             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
22876                 nodes.push(ar[i]);
22877                 continue;
22878             }
22879             
22880             // probably selected..
22881             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
22882                 other_nodes.push(ar[i]);
22883                 continue;
22884             }
22885             // outer..
22886             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
22887                 continue;
22888             }
22889             
22890             
22891             has_other_nodes = true;
22892         }
22893         if (!nodes.length && other_nodes.length) {
22894             nodes= other_nodes;
22895         }
22896         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
22897             return false;
22898         }
22899         
22900         return nodes[0];
22901     },
22902     createRange: function(sel)
22903     {
22904         // this has strange effects when using with 
22905         // top toolbar - not sure if it's a great idea.
22906         //this.editor.contentWindow.focus();
22907         if (typeof sel != "undefined") {
22908             try {
22909                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
22910             } catch(e) {
22911                 return this.doc.createRange();
22912             }
22913         } else {
22914             return this.doc.createRange();
22915         }
22916     },
22917     getParentElement: function()
22918     {
22919         
22920         this.assignDocWin();
22921         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
22922         
22923         var range = this.createRange(sel);
22924          
22925         try {
22926             var p = range.commonAncestorContainer;
22927             while (p.nodeType == 3) { // text node
22928                 p = p.parentNode;
22929             }
22930             return p;
22931         } catch (e) {
22932             return null;
22933         }
22934     
22935     },
22936     /***
22937      *
22938      * Range intersection.. the hard stuff...
22939      *  '-1' = before
22940      *  '0' = hits..
22941      *  '1' = after.
22942      *         [ -- selected range --- ]
22943      *   [fail]                        [fail]
22944      *
22945      *    basically..
22946      *      if end is before start or  hits it. fail.
22947      *      if start is after end or hits it fail.
22948      *
22949      *   if either hits (but other is outside. - then it's not 
22950      *   
22951      *    
22952      **/
22953     
22954     
22955     // @see http://www.thismuchiknow.co.uk/?p=64.
22956     rangeIntersectsNode : function(range, node)
22957     {
22958         var nodeRange = node.ownerDocument.createRange();
22959         try {
22960             nodeRange.selectNode(node);
22961         } catch (e) {
22962             nodeRange.selectNodeContents(node);
22963         }
22964     
22965         var rangeStartRange = range.cloneRange();
22966         rangeStartRange.collapse(true);
22967     
22968         var rangeEndRange = range.cloneRange();
22969         rangeEndRange.collapse(false);
22970     
22971         var nodeStartRange = nodeRange.cloneRange();
22972         nodeStartRange.collapse(true);
22973     
22974         var nodeEndRange = nodeRange.cloneRange();
22975         nodeEndRange.collapse(false);
22976     
22977         return rangeStartRange.compareBoundaryPoints(
22978                  Range.START_TO_START, nodeEndRange) == -1 &&
22979                rangeEndRange.compareBoundaryPoints(
22980                  Range.START_TO_START, nodeStartRange) == 1;
22981         
22982          
22983     },
22984     rangeCompareNode : function(range, node)
22985     {
22986         var nodeRange = node.ownerDocument.createRange();
22987         try {
22988             nodeRange.selectNode(node);
22989         } catch (e) {
22990             nodeRange.selectNodeContents(node);
22991         }
22992         
22993         
22994         range.collapse(true);
22995     
22996         nodeRange.collapse(true);
22997      
22998         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
22999         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
23000          
23001         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
23002         
23003         var nodeIsBefore   =  ss == 1;
23004         var nodeIsAfter    = ee == -1;
23005         
23006         if (nodeIsBefore && nodeIsAfter) {
23007             return 0; // outer
23008         }
23009         if (!nodeIsBefore && nodeIsAfter) {
23010             return 1; //right trailed.
23011         }
23012         
23013         if (nodeIsBefore && !nodeIsAfter) {
23014             return 2;  // left trailed.
23015         }
23016         // fully contined.
23017         return 3;
23018     },
23019
23020     // private? - in a new class?
23021     cleanUpPaste :  function()
23022     {
23023         // cleans up the whole document..
23024         Roo.log('cleanuppaste');
23025         
23026         this.cleanUpChildren(this.doc.body);
23027         var clean = this.cleanWordChars(this.doc.body.innerHTML);
23028         if (clean != this.doc.body.innerHTML) {
23029             this.doc.body.innerHTML = clean;
23030         }
23031         
23032     },
23033     
23034     cleanWordChars : function(input) {// change the chars to hex code
23035         var he = Roo.HtmlEditorCore;
23036         
23037         var output = input;
23038         Roo.each(he.swapCodes, function(sw) { 
23039             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
23040             
23041             output = output.replace(swapper, sw[1]);
23042         });
23043         
23044         return output;
23045     },
23046     
23047     
23048     cleanUpChildren : function (n)
23049     {
23050         if (!n.childNodes.length) {
23051             return;
23052         }
23053         for (var i = n.childNodes.length-1; i > -1 ; i--) {
23054            this.cleanUpChild(n.childNodes[i]);
23055         }
23056     },
23057     
23058     
23059         
23060     
23061     cleanUpChild : function (node)
23062     {
23063         var ed = this;
23064         //console.log(node);
23065         if (node.nodeName == "#text") {
23066             // clean up silly Windows -- stuff?
23067             return; 
23068         }
23069         if (node.nodeName == "#comment") {
23070             node.parentNode.removeChild(node);
23071             // clean up silly Windows -- stuff?
23072             return; 
23073         }
23074         var lcname = node.tagName.toLowerCase();
23075         // we ignore whitelists... ?? = not really the way to go, but we probably have not got a full
23076         // whitelist of tags..
23077         
23078         if (this.black.indexOf(lcname) > -1 && this.clearUp ) {
23079             // remove node.
23080             node.parentNode.removeChild(node);
23081             return;
23082             
23083         }
23084         
23085         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
23086         
23087         // spans with no attributes - just remove them..
23088         if ((!node.attributes || !node.attributes.length) && lcname == 'span') { 
23089             remove_keep_children = true;
23090         }
23091         
23092         // remove <a name=....> as rendering on yahoo mailer is borked with this.
23093         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
23094         
23095         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
23096         //    remove_keep_children = true;
23097         //}
23098         
23099         if (remove_keep_children) {
23100             this.cleanUpChildren(node);
23101             // inserts everything just before this node...
23102             while (node.childNodes.length) {
23103                 var cn = node.childNodes[0];
23104                 node.removeChild(cn);
23105                 node.parentNode.insertBefore(cn, node);
23106             }
23107             node.parentNode.removeChild(node);
23108             return;
23109         }
23110         
23111         if (!node.attributes || !node.attributes.length) {
23112             
23113           
23114             
23115             
23116             this.cleanUpChildren(node);
23117             return;
23118         }
23119         
23120         function cleanAttr(n,v)
23121         {
23122             
23123             if (v.match(/^\./) || v.match(/^\//)) {
23124                 return;
23125             }
23126             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/) || v.match(/^ftp:/)) {
23127                 return;
23128             }
23129             if (v.match(/^#/)) {
23130                 return;
23131             }
23132 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
23133             node.removeAttribute(n);
23134             
23135         }
23136         
23137         var cwhite = this.cwhite;
23138         var cblack = this.cblack;
23139             
23140         function cleanStyle(n,v)
23141         {
23142             if (v.match(/expression/)) { //XSS?? should we even bother..
23143                 node.removeAttribute(n);
23144                 return;
23145             }
23146             
23147             var parts = v.split(/;/);
23148             var clean = [];
23149             
23150             Roo.each(parts, function(p) {
23151                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
23152                 if (!p.length) {
23153                     return true;
23154                 }
23155                 var l = p.split(':').shift().replace(/\s+/g,'');
23156                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
23157                 
23158                 if ( cwhite.length && cblack.indexOf(l) > -1) {
23159 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23160                     //node.removeAttribute(n);
23161                     return true;
23162                 }
23163                 //Roo.log()
23164                 // only allow 'c whitelisted system attributes'
23165                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
23166 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
23167                     //node.removeAttribute(n);
23168                     return true;
23169                 }
23170                 
23171                 
23172                  
23173                 
23174                 clean.push(p);
23175                 return true;
23176             });
23177             if (clean.length) { 
23178                 node.setAttribute(n, clean.join(';'));
23179             } else {
23180                 node.removeAttribute(n);
23181             }
23182             
23183         }
23184         
23185         
23186         for (var i = node.attributes.length-1; i > -1 ; i--) {
23187             var a = node.attributes[i];
23188             //console.log(a);
23189             
23190             if (a.name.toLowerCase().substr(0,2)=='on')  {
23191                 node.removeAttribute(a.name);
23192                 continue;
23193             }
23194             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
23195                 node.removeAttribute(a.name);
23196                 continue;
23197             }
23198             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
23199                 cleanAttr(a.name,a.value); // fixme..
23200                 continue;
23201             }
23202             if (a.name == 'style') {
23203                 cleanStyle(a.name,a.value);
23204                 continue;
23205             }
23206             /// clean up MS crap..
23207             // tecnically this should be a list of valid class'es..
23208             
23209             
23210             if (a.name == 'class') {
23211                 if (a.value.match(/^Mso/)) {
23212                     node.removeAttribute('class');
23213                 }
23214                 
23215                 if (a.value.match(/^body$/)) {
23216                     node.removeAttribute('class');
23217                 }
23218                 continue;
23219             }
23220             
23221             // style cleanup!?
23222             // class cleanup?
23223             
23224         }
23225         
23226         
23227         this.cleanUpChildren(node);
23228         
23229         
23230     },
23231     
23232     /**
23233      * Clean up MS wordisms...
23234      */
23235     cleanWord : function(node)
23236     {
23237         if (!node) {
23238             this.cleanWord(this.doc.body);
23239             return;
23240         }
23241         
23242         if(
23243                 node.nodeName == 'SPAN' &&
23244                 !node.hasAttributes() &&
23245                 node.childNodes.length == 1 &&
23246                 node.firstChild.nodeName == "#text"  
23247         ) {
23248             var textNode = node.firstChild;
23249             node.removeChild(textNode);
23250             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
23251                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
23252             }
23253             node.parentNode.insertBefore(textNode, node);
23254             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
23255                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
23256             }
23257             node.parentNode.removeChild(node);
23258         }
23259         
23260         if (node.nodeName == "#text") {
23261             // clean up silly Windows -- stuff?
23262             return; 
23263         }
23264         if (node.nodeName == "#comment") {
23265             node.parentNode.removeChild(node);
23266             // clean up silly Windows -- stuff?
23267             return; 
23268         }
23269         
23270         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
23271             node.parentNode.removeChild(node);
23272             return;
23273         }
23274         //Roo.log(node.tagName);
23275         // remove - but keep children..
23276         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
23277             //Roo.log('-- removed');
23278             while (node.childNodes.length) {
23279                 var cn = node.childNodes[0];
23280                 node.removeChild(cn);
23281                 node.parentNode.insertBefore(cn, node);
23282                 // move node to parent - and clean it..
23283                 this.cleanWord(cn);
23284             }
23285             node.parentNode.removeChild(node);
23286             /// no need to iterate chidlren = it's got none..
23287             //this.iterateChildren(node, this.cleanWord);
23288             return;
23289         }
23290         // clean styles
23291         if (node.className.length) {
23292             
23293             var cn = node.className.split(/\W+/);
23294             var cna = [];
23295             Roo.each(cn, function(cls) {
23296                 if (cls.match(/Mso[a-zA-Z]+/)) {
23297                     return;
23298                 }
23299                 cna.push(cls);
23300             });
23301             node.className = cna.length ? cna.join(' ') : '';
23302             if (!cna.length) {
23303                 node.removeAttribute("class");
23304             }
23305         }
23306         
23307         if (node.hasAttribute("lang")) {
23308             node.removeAttribute("lang");
23309         }
23310         
23311         if (node.hasAttribute("style")) {
23312             
23313             var styles = node.getAttribute("style").split(";");
23314             var nstyle = [];
23315             Roo.each(styles, function(s) {
23316                 if (!s.match(/:/)) {
23317                     return;
23318                 }
23319                 var kv = s.split(":");
23320                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
23321                     return;
23322                 }
23323                 // what ever is left... we allow.
23324                 nstyle.push(s);
23325             });
23326             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23327             if (!nstyle.length) {
23328                 node.removeAttribute('style');
23329             }
23330         }
23331         this.iterateChildren(node, this.cleanWord);
23332         
23333         
23334         
23335     },
23336     /**
23337      * iterateChildren of a Node, calling fn each time, using this as the scole..
23338      * @param {DomNode} node node to iterate children of.
23339      * @param {Function} fn method of this class to call on each item.
23340      */
23341     iterateChildren : function(node, fn)
23342     {
23343         if (!node.childNodes.length) {
23344                 return;
23345         }
23346         for (var i = node.childNodes.length-1; i > -1 ; i--) {
23347            fn.call(this, node.childNodes[i])
23348         }
23349     },
23350     
23351     
23352     /**
23353      * cleanTableWidths.
23354      *
23355      * Quite often pasting from word etc.. results in tables with column and widths.
23356      * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
23357      *
23358      */
23359     cleanTableWidths : function(node)
23360     {
23361          
23362          
23363         if (!node) {
23364             this.cleanTableWidths(this.doc.body);
23365             return;
23366         }
23367         
23368         // ignore list...
23369         if (node.nodeName == "#text" || node.nodeName == "#comment") {
23370             return; 
23371         }
23372         Roo.log(node.tagName);
23373         if (!node.tagName.toLowerCase().match(/^(table|td|tr)$/)) {
23374             this.iterateChildren(node, this.cleanTableWidths);
23375             return;
23376         }
23377         if (node.hasAttribute('width')) {
23378             node.removeAttribute('width');
23379         }
23380         
23381          
23382         if (node.hasAttribute("style")) {
23383             // pretty basic...
23384             
23385             var styles = node.getAttribute("style").split(";");
23386             var nstyle = [];
23387             Roo.each(styles, function(s) {
23388                 if (!s.match(/:/)) {
23389                     return;
23390                 }
23391                 var kv = s.split(":");
23392                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
23393                     return;
23394                 }
23395                 // what ever is left... we allow.
23396                 nstyle.push(s);
23397             });
23398             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
23399             if (!nstyle.length) {
23400                 node.removeAttribute('style');
23401             }
23402         }
23403         
23404         this.iterateChildren(node, this.cleanTableWidths);
23405         
23406         
23407     },
23408     
23409     
23410     
23411     
23412     domToHTML : function(currentElement, depth, nopadtext) {
23413         
23414         depth = depth || 0;
23415         nopadtext = nopadtext || false;
23416     
23417         if (!currentElement) {
23418             return this.domToHTML(this.doc.body);
23419         }
23420         
23421         //Roo.log(currentElement);
23422         var j;
23423         var allText = false;
23424         var nodeName = currentElement.nodeName;
23425         var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
23426         
23427         if  (nodeName == '#text') {
23428             
23429             return nopadtext ? currentElement.nodeValue : currentElement.nodeValue.trim();
23430         }
23431         
23432         
23433         var ret = '';
23434         if (nodeName != 'BODY') {
23435              
23436             var i = 0;
23437             // Prints the node tagName, such as <A>, <IMG>, etc
23438             if (tagName) {
23439                 var attr = [];
23440                 for(i = 0; i < currentElement.attributes.length;i++) {
23441                     // quoting?
23442                     var aname = currentElement.attributes.item(i).name;
23443                     if (!currentElement.attributes.item(i).value.length) {
23444                         continue;
23445                     }
23446                     attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
23447                 }
23448                 
23449                 ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
23450             } 
23451             else {
23452                 
23453                 // eack
23454             }
23455         } else {
23456             tagName = false;
23457         }
23458         if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
23459             return ret;
23460         }
23461         if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
23462             nopadtext = true;
23463         }
23464         
23465         
23466         // Traverse the tree
23467         i = 0;
23468         var currentElementChild = currentElement.childNodes.item(i);
23469         var allText = true;
23470         var innerHTML  = '';
23471         lastnode = '';
23472         while (currentElementChild) {
23473             // Formatting code (indent the tree so it looks nice on the screen)
23474             var nopad = nopadtext;
23475             if (lastnode == 'SPAN') {
23476                 nopad  = true;
23477             }
23478             // text
23479             if  (currentElementChild.nodeName == '#text') {
23480                 var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
23481                 toadd = nopadtext ? toadd : toadd.trim();
23482                 if (!nopad && toadd.length > 80) {
23483                     innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
23484                 }
23485                 innerHTML  += toadd;
23486                 
23487                 i++;
23488                 currentElementChild = currentElement.childNodes.item(i);
23489                 lastNode = '';
23490                 continue;
23491             }
23492             allText = false;
23493             
23494             innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
23495                 
23496             // Recursively traverse the tree structure of the child node
23497             innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
23498             lastnode = currentElementChild.nodeName;
23499             i++;
23500             currentElementChild=currentElement.childNodes.item(i);
23501         }
23502         
23503         ret += innerHTML;
23504         
23505         if (!allText) {
23506                 // The remaining code is mostly for formatting the tree
23507             ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
23508         }
23509         
23510         
23511         if (tagName) {
23512             ret+= "</"+tagName+">";
23513         }
23514         return ret;
23515         
23516     },
23517         
23518     applyBlacklists : function()
23519     {
23520         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
23521         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
23522         
23523         this.white = [];
23524         this.black = [];
23525         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
23526             if (b.indexOf(tag) > -1) {
23527                 return;
23528             }
23529             this.white.push(tag);
23530             
23531         }, this);
23532         
23533         Roo.each(w, function(tag) {
23534             if (b.indexOf(tag) > -1) {
23535                 return;
23536             }
23537             if (this.white.indexOf(tag) > -1) {
23538                 return;
23539             }
23540             this.white.push(tag);
23541             
23542         }, this);
23543         
23544         
23545         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
23546             if (w.indexOf(tag) > -1) {
23547                 return;
23548             }
23549             this.black.push(tag);
23550             
23551         }, this);
23552         
23553         Roo.each(b, function(tag) {
23554             if (w.indexOf(tag) > -1) {
23555                 return;
23556             }
23557             if (this.black.indexOf(tag) > -1) {
23558                 return;
23559             }
23560             this.black.push(tag);
23561             
23562         }, this);
23563         
23564         
23565         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
23566         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
23567         
23568         this.cwhite = [];
23569         this.cblack = [];
23570         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
23571             if (b.indexOf(tag) > -1) {
23572                 return;
23573             }
23574             this.cwhite.push(tag);
23575             
23576         }, this);
23577         
23578         Roo.each(w, function(tag) {
23579             if (b.indexOf(tag) > -1) {
23580                 return;
23581             }
23582             if (this.cwhite.indexOf(tag) > -1) {
23583                 return;
23584             }
23585             this.cwhite.push(tag);
23586             
23587         }, this);
23588         
23589         
23590         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
23591             if (w.indexOf(tag) > -1) {
23592                 return;
23593             }
23594             this.cblack.push(tag);
23595             
23596         }, this);
23597         
23598         Roo.each(b, function(tag) {
23599             if (w.indexOf(tag) > -1) {
23600                 return;
23601             }
23602             if (this.cblack.indexOf(tag) > -1) {
23603                 return;
23604             }
23605             this.cblack.push(tag);
23606             
23607         }, this);
23608     },
23609     
23610     setStylesheets : function(stylesheets)
23611     {
23612         if(typeof(stylesheets) == 'string'){
23613             Roo.get(this.iframe.contentDocument.head).createChild({
23614                 tag : 'link',
23615                 rel : 'stylesheet',
23616                 type : 'text/css',
23617                 href : stylesheets
23618             });
23619             
23620             return;
23621         }
23622         var _this = this;
23623      
23624         Roo.each(stylesheets, function(s) {
23625             if(!s.length){
23626                 return;
23627             }
23628             
23629             Roo.get(_this.iframe.contentDocument.head).createChild({
23630                 tag : 'link',
23631                 rel : 'stylesheet',
23632                 type : 'text/css',
23633                 href : s
23634             });
23635         });
23636
23637         
23638     },
23639     
23640     removeStylesheets : function()
23641     {
23642         var _this = this;
23643         
23644         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
23645             s.remove();
23646         });
23647     },
23648     
23649     setStyle : function(style)
23650     {
23651         Roo.get(this.iframe.contentDocument.head).createChild({
23652             tag : 'style',
23653             type : 'text/css',
23654             html : style
23655         });
23656
23657         return;
23658     }
23659     
23660     // hide stuff that is not compatible
23661     /**
23662      * @event blur
23663      * @hide
23664      */
23665     /**
23666      * @event change
23667      * @hide
23668      */
23669     /**
23670      * @event focus
23671      * @hide
23672      */
23673     /**
23674      * @event specialkey
23675      * @hide
23676      */
23677     /**
23678      * @cfg {String} fieldClass @hide
23679      */
23680     /**
23681      * @cfg {String} focusClass @hide
23682      */
23683     /**
23684      * @cfg {String} autoCreate @hide
23685      */
23686     /**
23687      * @cfg {String} inputType @hide
23688      */
23689     /**
23690      * @cfg {String} invalidClass @hide
23691      */
23692     /**
23693      * @cfg {String} invalidText @hide
23694      */
23695     /**
23696      * @cfg {String} msgFx @hide
23697      */
23698     /**
23699      * @cfg {String} validateOnBlur @hide
23700      */
23701 });
23702
23703 Roo.HtmlEditorCore.white = [
23704         'area', 'br', 'img', 'input', 'hr', 'wbr',
23705         
23706        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
23707        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
23708        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
23709        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
23710        'table',   'ul',         'xmp', 
23711        
23712        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
23713       'thead',   'tr', 
23714      
23715       'dir', 'menu', 'ol', 'ul', 'dl',
23716        
23717       'embed',  'object'
23718 ];
23719
23720
23721 Roo.HtmlEditorCore.black = [
23722     //    'embed',  'object', // enable - backend responsiblity to clean thiese
23723         'applet', // 
23724         'base',   'basefont', 'bgsound', 'blink',  'body', 
23725         'frame',  'frameset', 'head',    'html',   'ilayer', 
23726         'iframe', 'layer',  'link',     'meta',    'object',   
23727         'script', 'style' ,'title',  'xml' // clean later..
23728 ];
23729 Roo.HtmlEditorCore.clean = [
23730     'script', 'style', 'title', 'xml'
23731 ];
23732 Roo.HtmlEditorCore.remove = [
23733     'font'
23734 ];
23735 // attributes..
23736
23737 Roo.HtmlEditorCore.ablack = [
23738     'on'
23739 ];
23740     
23741 Roo.HtmlEditorCore.aclean = [ 
23742     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
23743 ];
23744
23745 // protocols..
23746 Roo.HtmlEditorCore.pwhite= [
23747         'http',  'https',  'mailto'
23748 ];
23749
23750 // white listed style attributes.
23751 Roo.HtmlEditorCore.cwhite= [
23752       //  'text-align', /// default is to allow most things..
23753       
23754          
23755 //        'font-size'//??
23756 ];
23757
23758 // black listed style attributes.
23759 Roo.HtmlEditorCore.cblack= [
23760       //  'font-size' -- this can be set by the project 
23761 ];
23762
23763
23764 Roo.HtmlEditorCore.swapCodes   =[ 
23765     [    8211, "--" ], 
23766     [    8212, "--" ], 
23767     [    8216,  "'" ],  
23768     [    8217, "'" ],  
23769     [    8220, '"' ],  
23770     [    8221, '"' ],  
23771     [    8226, "*" ],  
23772     [    8230, "..." ]
23773 ]; 
23774
23775     /*
23776  * - LGPL
23777  *
23778  * HtmlEditor
23779  * 
23780  */
23781
23782 /**
23783  * @class Roo.bootstrap.HtmlEditor
23784  * @extends Roo.bootstrap.TextArea
23785  * Bootstrap HtmlEditor class
23786
23787  * @constructor
23788  * Create a new HtmlEditor
23789  * @param {Object} config The config object
23790  */
23791
23792 Roo.bootstrap.HtmlEditor = function(config){
23793     Roo.bootstrap.HtmlEditor.superclass.constructor.call(this, config);
23794     if (!this.toolbars) {
23795         this.toolbars = [];
23796     }
23797     
23798     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
23799     this.addEvents({
23800             /**
23801              * @event initialize
23802              * Fires when the editor is fully initialized (including the iframe)
23803              * @param {HtmlEditor} this
23804              */
23805             initialize: true,
23806             /**
23807              * @event activate
23808              * Fires when the editor is first receives the focus. Any insertion must wait
23809              * until after this event.
23810              * @param {HtmlEditor} this
23811              */
23812             activate: true,
23813              /**
23814              * @event beforesync
23815              * Fires before the textarea is updated with content from the editor iframe. Return false
23816              * to cancel the sync.
23817              * @param {HtmlEditor} this
23818              * @param {String} html
23819              */
23820             beforesync: true,
23821              /**
23822              * @event beforepush
23823              * Fires before the iframe editor is updated with content from the textarea. Return false
23824              * to cancel the push.
23825              * @param {HtmlEditor} this
23826              * @param {String} html
23827              */
23828             beforepush: true,
23829              /**
23830              * @event sync
23831              * Fires when the textarea is updated with content from the editor iframe.
23832              * @param {HtmlEditor} this
23833              * @param {String} html
23834              */
23835             sync: true,
23836              /**
23837              * @event push
23838              * Fires when the iframe editor is updated with content from the textarea.
23839              * @param {HtmlEditor} this
23840              * @param {String} html
23841              */
23842             push: true,
23843              /**
23844              * @event editmodechange
23845              * Fires when the editor switches edit modes
23846              * @param {HtmlEditor} this
23847              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
23848              */
23849             editmodechange: true,
23850             /**
23851              * @event editorevent
23852              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
23853              * @param {HtmlEditor} this
23854              */
23855             editorevent: true,
23856             /**
23857              * @event firstfocus
23858              * Fires when on first focus - needed by toolbars..
23859              * @param {HtmlEditor} this
23860              */
23861             firstfocus: true,
23862             /**
23863              * @event autosave
23864              * Auto save the htmlEditor value as a file into Events
23865              * @param {HtmlEditor} this
23866              */
23867             autosave: true,
23868             /**
23869              * @event savedpreview
23870              * preview the saved version of htmlEditor
23871              * @param {HtmlEditor} this
23872              */
23873             savedpreview: true
23874         });
23875 };
23876
23877
23878 Roo.extend(Roo.bootstrap.HtmlEditor, Roo.bootstrap.TextArea,  {
23879     
23880     
23881       /**
23882      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
23883      */
23884     toolbars : false,
23885     
23886      /**
23887     * @cfg {Array} buttons Array of toolbar's buttons. - defaults to empty
23888     */
23889     btns : [],
23890    
23891      /**
23892      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
23893      *                        Roo.resizable.
23894      */
23895     resizable : false,
23896      /**
23897      * @cfg {Number} height (in pixels)
23898      */   
23899     height: 300,
23900    /**
23901      * @cfg {Number} width (in pixels)
23902      */   
23903     width: false,
23904     
23905     /**
23906      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
23907      * 
23908      */
23909     stylesheets: false,
23910     
23911     // id of frame..
23912     frameId: false,
23913     
23914     // private properties
23915     validationEvent : false,
23916     deferHeight: true,
23917     initialized : false,
23918     activated : false,
23919     
23920     onFocus : Roo.emptyFn,
23921     iframePad:3,
23922     hideMode:'offsets',
23923     
23924     tbContainer : false,
23925     
23926     bodyCls : '',
23927     
23928     toolbarContainer :function() {
23929         return this.wrap.select('.x-html-editor-tb',true).first();
23930     },
23931
23932     /**
23933      * Protected method that will not generally be called directly. It
23934      * is called when the editor creates its toolbar. Override this method if you need to
23935      * add custom toolbar buttons.
23936      * @param {HtmlEditor} editor
23937      */
23938     createToolbar : function(){
23939         Roo.log('renewing');
23940         Roo.log("create toolbars");
23941         
23942         this.toolbars = [ new Roo.bootstrap.htmleditor.ToolbarStandard({editor: this} ) ];
23943         this.toolbars[0].render(this.toolbarContainer());
23944         
23945         return;
23946         
23947 //        if (!editor.toolbars || !editor.toolbars.length) {
23948 //            editor.toolbars = [ new Roo.bootstrap.HtmlEditor.ToolbarStandard() ]; // can be empty?
23949 //        }
23950 //        
23951 //        for (var i =0 ; i < editor.toolbars.length;i++) {
23952 //            editor.toolbars[i] = Roo.factory(
23953 //                    typeof(editor.toolbars[i]) == 'string' ?
23954 //                        { xtype: editor.toolbars[i]} : editor.toolbars[i],
23955 //                Roo.bootstrap.HtmlEditor);
23956 //            editor.toolbars[i].init(editor);
23957 //        }
23958     },
23959
23960      
23961     // private
23962     onRender : function(ct, position)
23963     {
23964        // Roo.log("Call onRender: " + this.xtype);
23965         var _t = this;
23966         Roo.bootstrap.HtmlEditor.superclass.onRender.call(this, ct, position);
23967       
23968         this.wrap = this.inputEl().wrap({
23969             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
23970         });
23971         
23972         this.editorcore.onRender(ct, position);
23973          
23974         if (this.resizable) {
23975             this.resizeEl = new Roo.Resizable(this.wrap, {
23976                 pinned : true,
23977                 wrap: true,
23978                 dynamic : true,
23979                 minHeight : this.height,
23980                 height: this.height,
23981                 handles : this.resizable,
23982                 width: this.width,
23983                 listeners : {
23984                     resize : function(r, w, h) {
23985                         _t.onResize(w,h); // -something
23986                     }
23987                 }
23988             });
23989             
23990         }
23991         this.createToolbar(this);
23992        
23993         
23994         if(!this.width && this.resizable){
23995             this.setSize(this.wrap.getSize());
23996         }
23997         if (this.resizeEl) {
23998             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
23999             // should trigger onReize..
24000         }
24001         
24002     },
24003
24004     // private
24005     onResize : function(w, h)
24006     {
24007         Roo.log('resize: ' +w + ',' + h );
24008         Roo.bootstrap.HtmlEditor.superclass.onResize.apply(this, arguments);
24009         var ew = false;
24010         var eh = false;
24011         
24012         if(this.inputEl() ){
24013             if(typeof w == 'number'){
24014                 var aw = w - this.wrap.getFrameWidth('lr');
24015                 this.inputEl().setWidth(this.adjustWidth('textarea', aw));
24016                 ew = aw;
24017             }
24018             if(typeof h == 'number'){
24019                  var tbh = -11;  // fixme it needs to tool bar size!
24020                 for (var i =0; i < this.toolbars.length;i++) {
24021                     // fixme - ask toolbars for heights?
24022                     tbh += this.toolbars[i].el.getHeight();
24023                     //if (this.toolbars[i].footer) {
24024                     //    tbh += this.toolbars[i].footer.el.getHeight();
24025                     //}
24026                 }
24027               
24028                 
24029                 
24030                 
24031                 
24032                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
24033                 ah -= 5; // knock a few pixes off for look..
24034                 this.inputEl().setHeight(this.adjustWidth('textarea', ah));
24035                 var eh = ah;
24036             }
24037         }
24038         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
24039         this.editorcore.onResize(ew,eh);
24040         
24041     },
24042
24043     /**
24044      * Toggles the editor between standard and source edit mode.
24045      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
24046      */
24047     toggleSourceEdit : function(sourceEditMode)
24048     {
24049         this.editorcore.toggleSourceEdit(sourceEditMode);
24050         
24051         if(this.editorcore.sourceEditMode){
24052             Roo.log('editor - showing textarea');
24053             
24054 //            Roo.log('in');
24055 //            Roo.log(this.syncValue());
24056             this.syncValue();
24057             this.inputEl().removeClass(['hide', 'x-hidden']);
24058             this.inputEl().dom.removeAttribute('tabIndex');
24059             this.inputEl().focus();
24060         }else{
24061             Roo.log('editor - hiding textarea');
24062 //            Roo.log('out')
24063 //            Roo.log(this.pushValue()); 
24064             this.pushValue();
24065             
24066             this.inputEl().addClass(['hide', 'x-hidden']);
24067             this.inputEl().dom.setAttribute('tabIndex', -1);
24068             //this.deferFocus();
24069         }
24070          
24071         if(this.resizable){
24072             this.setSize(this.wrap.getSize());
24073         }
24074         
24075         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
24076     },
24077  
24078     // private (for BoxComponent)
24079     adjustSize : Roo.BoxComponent.prototype.adjustSize,
24080
24081     // private (for BoxComponent)
24082     getResizeEl : function(){
24083         return this.wrap;
24084     },
24085
24086     // private (for BoxComponent)
24087     getPositionEl : function(){
24088         return this.wrap;
24089     },
24090
24091     // private
24092     initEvents : function(){
24093         this.originalValue = this.getValue();
24094     },
24095
24096 //    /**
24097 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24098 //     * @method
24099 //     */
24100 //    markInvalid : Roo.emptyFn,
24101 //    /**
24102 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
24103 //     * @method
24104 //     */
24105 //    clearInvalid : Roo.emptyFn,
24106
24107     setValue : function(v){
24108         Roo.bootstrap.HtmlEditor.superclass.setValue.call(this, v);
24109         this.editorcore.pushValue();
24110     },
24111
24112      
24113     // private
24114     deferFocus : function(){
24115         this.focus.defer(10, this);
24116     },
24117
24118     // doc'ed in Field
24119     focus : function(){
24120         this.editorcore.focus();
24121         
24122     },
24123       
24124
24125     // private
24126     onDestroy : function(){
24127         
24128         
24129         
24130         if(this.rendered){
24131             
24132             for (var i =0; i < this.toolbars.length;i++) {
24133                 // fixme - ask toolbars for heights?
24134                 this.toolbars[i].onDestroy();
24135             }
24136             
24137             this.wrap.dom.innerHTML = '';
24138             this.wrap.remove();
24139         }
24140     },
24141
24142     // private
24143     onFirstFocus : function(){
24144         //Roo.log("onFirstFocus");
24145         this.editorcore.onFirstFocus();
24146          for (var i =0; i < this.toolbars.length;i++) {
24147             this.toolbars[i].onFirstFocus();
24148         }
24149         
24150     },
24151     
24152     // private
24153     syncValue : function()
24154     {   
24155         this.editorcore.syncValue();
24156     },
24157     
24158     pushValue : function()
24159     {   
24160         this.editorcore.pushValue();
24161     }
24162      
24163     
24164     // hide stuff that is not compatible
24165     /**
24166      * @event blur
24167      * @hide
24168      */
24169     /**
24170      * @event change
24171      * @hide
24172      */
24173     /**
24174      * @event focus
24175      * @hide
24176      */
24177     /**
24178      * @event specialkey
24179      * @hide
24180      */
24181     /**
24182      * @cfg {String} fieldClass @hide
24183      */
24184     /**
24185      * @cfg {String} focusClass @hide
24186      */
24187     /**
24188      * @cfg {String} autoCreate @hide
24189      */
24190     /**
24191      * @cfg {String} inputType @hide
24192      */
24193      
24194     /**
24195      * @cfg {String} invalidText @hide
24196      */
24197     /**
24198      * @cfg {String} msgFx @hide
24199      */
24200     /**
24201      * @cfg {String} validateOnBlur @hide
24202      */
24203 });
24204  
24205     
24206    
24207    
24208    
24209       
24210 Roo.namespace('Roo.bootstrap.htmleditor');
24211 /**
24212  * @class Roo.bootstrap.HtmlEditorToolbar1
24213  * Basic Toolbar
24214  * 
24215  * @example
24216  * Usage:
24217  *
24218  new Roo.bootstrap.HtmlEditor({
24219     ....
24220     toolbars : [
24221         new Roo.bootstrap.HtmlEditorToolbar1({
24222             disable : { fonts: 1 , format: 1, ..., ... , ...],
24223             btns : [ .... ]
24224         })
24225     }
24226      
24227  * 
24228  * @cfg {Object} disable List of elements to disable..
24229  * @cfg {Array} btns List of additional buttons.
24230  * 
24231  * 
24232  * NEEDS Extra CSS? 
24233  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
24234  */
24235  
24236 Roo.bootstrap.htmleditor.ToolbarStandard = function(config)
24237 {
24238     
24239     Roo.apply(this, config);
24240     
24241     // default disabled, based on 'good practice'..
24242     this.disable = this.disable || {};
24243     Roo.applyIf(this.disable, {
24244         fontSize : true,
24245         colors : true,
24246         specialElements : true
24247     });
24248     Roo.bootstrap.htmleditor.ToolbarStandard.superclass.constructor.call(this, config);
24249     
24250     this.editor = config.editor;
24251     this.editorcore = config.editor.editorcore;
24252     
24253     this.buttons   = new Roo.util.MixedCollection(false, function(o) { return o.cmd; });
24254     
24255     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
24256     // dont call parent... till later.
24257 }
24258 Roo.extend(Roo.bootstrap.htmleditor.ToolbarStandard, Roo.bootstrap.NavSimplebar,  {
24259      
24260     bar : true,
24261     
24262     editor : false,
24263     editorcore : false,
24264     
24265     
24266     formats : [
24267         "p" ,  
24268         "h1","h2","h3","h4","h5","h6", 
24269         "pre", "code", 
24270         "abbr", "acronym", "address", "cite", "samp", "var",
24271         'div','span'
24272     ],
24273     
24274     onRender : function(ct, position)
24275     {
24276        // Roo.log("Call onRender: " + this.xtype);
24277         
24278        Roo.bootstrap.htmleditor.ToolbarStandard.superclass.onRender.call(this, ct, position);
24279        Roo.log(this.el);
24280        this.el.dom.style.marginBottom = '0';
24281        var _this = this;
24282        var editorcore = this.editorcore;
24283        var editor= this.editor;
24284        
24285        var children = [];
24286        var btn = function(id,cmd , toggle, handler, html){
24287        
24288             var  event = toggle ? 'toggle' : 'click';
24289        
24290             var a = {
24291                 size : 'sm',
24292                 xtype: 'Button',
24293                 xns: Roo.bootstrap,
24294                 //glyphicon : id,
24295                 fa: id,
24296                 cmd : id || cmd,
24297                 enableToggle:toggle !== false,
24298                 html : html || '',
24299                 pressed : toggle ? false : null,
24300                 listeners : {}
24301             };
24302             a.listeners[toggle ? 'toggle' : 'click'] = function() {
24303                 handler ? handler.call(_this,this) :_this.onBtnClick.call(_this, cmd ||  id);
24304             };
24305             children.push(a);
24306             return a;
24307        }
24308        
24309     //    var cb_box = function...
24310         
24311         var style = {
24312                 xtype: 'Button',
24313                 size : 'sm',
24314                 xns: Roo.bootstrap,
24315                 fa : 'font',
24316                 //html : 'submit'
24317                 menu : {
24318                     xtype: 'Menu',
24319                     xns: Roo.bootstrap,
24320                     items:  []
24321                 }
24322         };
24323         Roo.each(this.formats, function(f) {
24324             style.menu.items.push({
24325                 xtype :'MenuItem',
24326                 xns: Roo.bootstrap,
24327                 html : '<'+ f+' style="margin:2px">'+f +'</'+ f+'>',
24328                 tagname : f,
24329                 listeners : {
24330                     click : function()
24331                     {
24332                         editorcore.insertTag(this.tagname);
24333                         editor.focus();
24334                     }
24335                 }
24336                 
24337             });
24338         });
24339         children.push(style);   
24340         
24341         btn('bold',false,true);
24342         btn('italic',false,true);
24343         btn('align-left', 'justifyleft',true);
24344         btn('align-center', 'justifycenter',true);
24345         btn('align-right' , 'justifyright',true);
24346         btn('link', false, false, function(btn) {
24347             //Roo.log("create link?");
24348             var url = prompt(this.createLinkText, this.defaultLinkValue);
24349             if(url && url != 'http:/'+'/'){
24350                 this.editorcore.relayCmd('createlink', url);
24351             }
24352         }),
24353         btn('list','insertunorderedlist',true);
24354         btn('pencil', false,true, function(btn){
24355                 Roo.log(this);
24356                 this.toggleSourceEdit(btn.pressed);
24357         });
24358         
24359         if (this.editor.btns.length > 0) {
24360             for (var i = 0; i<this.editor.btns.length; i++) {
24361                 children.push(this.editor.btns[i]);
24362             }
24363         }
24364         
24365         /*
24366         var cog = {
24367                 xtype: 'Button',
24368                 size : 'sm',
24369                 xns: Roo.bootstrap,
24370                 glyphicon : 'cog',
24371                 //html : 'submit'
24372                 menu : {
24373                     xtype: 'Menu',
24374                     xns: Roo.bootstrap,
24375                     items:  []
24376                 }
24377         };
24378         
24379         cog.menu.items.push({
24380             xtype :'MenuItem',
24381             xns: Roo.bootstrap,
24382             html : Clean styles,
24383             tagname : f,
24384             listeners : {
24385                 click : function()
24386                 {
24387                     editorcore.insertTag(this.tagname);
24388                     editor.focus();
24389                 }
24390             }
24391             
24392         });
24393        */
24394         
24395          
24396        this.xtype = 'NavSimplebar';
24397         
24398         for(var i=0;i< children.length;i++) {
24399             
24400             this.buttons.add(this.addxtypeChild(children[i]));
24401             
24402         }
24403         
24404         editor.on('editorevent', this.updateToolbar, this);
24405     },
24406     onBtnClick : function(id)
24407     {
24408        this.editorcore.relayCmd(id);
24409        this.editorcore.focus();
24410     },
24411     
24412     /**
24413      * Protected method that will not generally be called directly. It triggers
24414      * a toolbar update by reading the markup state of the current selection in the editor.
24415      */
24416     updateToolbar: function(){
24417
24418         if(!this.editorcore.activated){
24419             this.editor.onFirstFocus(); // is this neeed?
24420             return;
24421         }
24422
24423         var btns = this.buttons; 
24424         var doc = this.editorcore.doc;
24425         btns.get('bold').setActive(doc.queryCommandState('bold'));
24426         btns.get('italic').setActive(doc.queryCommandState('italic'));
24427         //btns.get('underline').setActive(doc.queryCommandState('underline'));
24428         
24429         btns.get('align-left').setActive(doc.queryCommandState('justifyleft'));
24430         btns.get('align-center').setActive(doc.queryCommandState('justifycenter'));
24431         btns.get('align-right').setActive(doc.queryCommandState('justifyright'));
24432         
24433         //btns[frameId + '-insertorderedlist').setActive(doc.queryCommandState('insertorderedlist'));
24434         btns.get('list').setActive(doc.queryCommandState('insertunorderedlist'));
24435          /*
24436         
24437         var ans = this.editorcore.getAllAncestors();
24438         if (this.formatCombo) {
24439             
24440             
24441             var store = this.formatCombo.store;
24442             this.formatCombo.setValue("");
24443             for (var i =0; i < ans.length;i++) {
24444                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
24445                     // select it..
24446                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
24447                     break;
24448                 }
24449             }
24450         }
24451         
24452         
24453         
24454         // hides menus... - so this cant be on a menu...
24455         Roo.bootstrap.MenuMgr.hideAll();
24456         */
24457         Roo.bootstrap.MenuMgr.hideAll();
24458         //this.editorsyncValue();
24459     },
24460     onFirstFocus: function() {
24461         this.buttons.each(function(item){
24462            item.enable();
24463         });
24464     },
24465     toggleSourceEdit : function(sourceEditMode){
24466         
24467           
24468         if(sourceEditMode){
24469             Roo.log("disabling buttons");
24470            this.buttons.each( function(item){
24471                 if(item.cmd != 'pencil'){
24472                     item.disable();
24473                 }
24474             });
24475           
24476         }else{
24477             Roo.log("enabling buttons");
24478             if(this.editorcore.initialized){
24479                 this.buttons.each( function(item){
24480                     item.enable();
24481                 });
24482             }
24483             
24484         }
24485         Roo.log("calling toggole on editor");
24486         // tell the editor that it's been pressed..
24487         this.editor.toggleSourceEdit(sourceEditMode);
24488        
24489     }
24490 });
24491
24492
24493
24494
24495
24496 /**
24497  * @class Roo.bootstrap.Table.AbstractSelectionModel
24498  * @extends Roo.util.Observable
24499  * Abstract base class for grid SelectionModels.  It provides the interface that should be
24500  * implemented by descendant classes.  This class should not be directly instantiated.
24501  * @constructor
24502  */
24503 Roo.bootstrap.Table.AbstractSelectionModel = function(){
24504     this.locked = false;
24505     Roo.bootstrap.Table.AbstractSelectionModel.superclass.constructor.call(this);
24506 };
24507
24508
24509 Roo.extend(Roo.bootstrap.Table.AbstractSelectionModel, Roo.util.Observable,  {
24510     /** @ignore Called by the grid automatically. Do not call directly. */
24511     init : function(grid){
24512         this.grid = grid;
24513         this.initEvents();
24514     },
24515
24516     /**
24517      * Locks the selections.
24518      */
24519     lock : function(){
24520         this.locked = true;
24521     },
24522
24523     /**
24524      * Unlocks the selections.
24525      */
24526     unlock : function(){
24527         this.locked = false;
24528     },
24529
24530     /**
24531      * Returns true if the selections are locked.
24532      * @return {Boolean}
24533      */
24534     isLocked : function(){
24535         return this.locked;
24536     }
24537 });
24538 /**
24539  * @extends Roo.bootstrap.Table.AbstractSelectionModel
24540  * @class Roo.bootstrap.Table.RowSelectionModel
24541  * The default SelectionModel used by {@link Roo.bootstrap.Table}.
24542  * It supports multiple selections and keyboard selection/navigation. 
24543  * @constructor
24544  * @param {Object} config
24545  */
24546
24547 Roo.bootstrap.Table.RowSelectionModel = function(config){
24548     Roo.apply(this, config);
24549     this.selections = new Roo.util.MixedCollection(false, function(o){
24550         return o.id;
24551     });
24552
24553     this.last = false;
24554     this.lastActive = false;
24555
24556     this.addEvents({
24557         /**
24558              * @event selectionchange
24559              * Fires when the selection changes
24560              * @param {SelectionModel} this
24561              */
24562             "selectionchange" : true,
24563         /**
24564              * @event afterselectionchange
24565              * Fires after the selection changes (eg. by key press or clicking)
24566              * @param {SelectionModel} this
24567              */
24568             "afterselectionchange" : true,
24569         /**
24570              * @event beforerowselect
24571              * Fires when a row is selected being selected, return false to cancel.
24572              * @param {SelectionModel} this
24573              * @param {Number} rowIndex The selected index
24574              * @param {Boolean} keepExisting False if other selections will be cleared
24575              */
24576             "beforerowselect" : true,
24577         /**
24578              * @event rowselect
24579              * Fires when a row is selected.
24580              * @param {SelectionModel} this
24581              * @param {Number} rowIndex The selected index
24582              * @param {Roo.data.Record} r The record
24583              */
24584             "rowselect" : true,
24585         /**
24586              * @event rowdeselect
24587              * Fires when a row is deselected.
24588              * @param {SelectionModel} this
24589              * @param {Number} rowIndex The selected index
24590              */
24591         "rowdeselect" : true
24592     });
24593     Roo.bootstrap.Table.RowSelectionModel.superclass.constructor.call(this);
24594     this.locked = false;
24595  };
24596
24597 Roo.extend(Roo.bootstrap.Table.RowSelectionModel, Roo.bootstrap.Table.AbstractSelectionModel,  {
24598     /**
24599      * @cfg {Boolean} singleSelect
24600      * True to allow selection of only one row at a time (defaults to false)
24601      */
24602     singleSelect : false,
24603
24604     // private
24605     initEvents : function()
24606     {
24607
24608         //if(!this.grid.enableDragDrop && !this.grid.enableDrag){
24609         //    this.growclickrid.on("mousedown", this.handleMouseDown, this);
24610         //}else{ // allow click to work like normal
24611          //   this.grid.on("rowclick", this.handleDragableRowClick, this);
24612         //}
24613         //this.grid.on("rowdblclick", this.handleMouseDBClick, this);
24614         this.grid.on("rowclick", this.handleMouseDown, this);
24615         
24616         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
24617             "up" : function(e){
24618                 if(!e.shiftKey){
24619                     this.selectPrevious(e.shiftKey);
24620                 }else if(this.last !== false && this.lastActive !== false){
24621                     var last = this.last;
24622                     this.selectRange(this.last,  this.lastActive-1);
24623                     this.grid.getView().focusRow(this.lastActive);
24624                     if(last !== false){
24625                         this.last = last;
24626                     }
24627                 }else{
24628                     this.selectFirstRow();
24629                 }
24630                 this.fireEvent("afterselectionchange", this);
24631             },
24632             "down" : function(e){
24633                 if(!e.shiftKey){
24634                     this.selectNext(e.shiftKey);
24635                 }else if(this.last !== false && this.lastActive !== false){
24636                     var last = this.last;
24637                     this.selectRange(this.last,  this.lastActive+1);
24638                     this.grid.getView().focusRow(this.lastActive);
24639                     if(last !== false){
24640                         this.last = last;
24641                     }
24642                 }else{
24643                     this.selectFirstRow();
24644                 }
24645                 this.fireEvent("afterselectionchange", this);
24646             },
24647             scope: this
24648         });
24649         this.grid.store.on('load', function(){
24650             this.selections.clear();
24651         },this);
24652         /*
24653         var view = this.grid.view;
24654         view.on("refresh", this.onRefresh, this);
24655         view.on("rowupdated", this.onRowUpdated, this);
24656         view.on("rowremoved", this.onRemove, this);
24657         */
24658     },
24659
24660     // private
24661     onRefresh : function()
24662     {
24663         var ds = this.grid.store, i, v = this.grid.view;
24664         var s = this.selections;
24665         s.each(function(r){
24666             if((i = ds.indexOfId(r.id)) != -1){
24667                 v.onRowSelect(i);
24668             }else{
24669                 s.remove(r);
24670             }
24671         });
24672     },
24673
24674     // private
24675     onRemove : function(v, index, r){
24676         this.selections.remove(r);
24677     },
24678
24679     // private
24680     onRowUpdated : function(v, index, r){
24681         if(this.isSelected(r)){
24682             v.onRowSelect(index);
24683         }
24684     },
24685
24686     /**
24687      * Select records.
24688      * @param {Array} records The records to select
24689      * @param {Boolean} keepExisting (optional) True to keep existing selections
24690      */
24691     selectRecords : function(records, keepExisting)
24692     {
24693         if(!keepExisting){
24694             this.clearSelections();
24695         }
24696             var ds = this.grid.store;
24697         for(var i = 0, len = records.length; i < len; i++){
24698             this.selectRow(ds.indexOf(records[i]), true);
24699         }
24700     },
24701
24702     /**
24703      * Gets the number of selected rows.
24704      * @return {Number}
24705      */
24706     getCount : function(){
24707         return this.selections.length;
24708     },
24709
24710     /**
24711      * Selects the first row in the grid.
24712      */
24713     selectFirstRow : function(){
24714         this.selectRow(0);
24715     },
24716
24717     /**
24718      * Select the last row.
24719      * @param {Boolean} keepExisting (optional) True to keep existing selections
24720      */
24721     selectLastRow : function(keepExisting){
24722         //this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
24723         this.selectRow(this.grid.store.getCount() - 1, keepExisting);
24724     },
24725
24726     /**
24727      * Selects the row immediately following the last selected row.
24728      * @param {Boolean} keepExisting (optional) True to keep existing selections
24729      */
24730     selectNext : function(keepExisting)
24731     {
24732             if(this.last !== false && (this.last+1) < this.grid.store.getCount()){
24733             this.selectRow(this.last+1, keepExisting);
24734             this.grid.getView().focusRow(this.last);
24735         }
24736     },
24737
24738     /**
24739      * Selects the row that precedes the last selected row.
24740      * @param {Boolean} keepExisting (optional) True to keep existing selections
24741      */
24742     selectPrevious : function(keepExisting){
24743         if(this.last){
24744             this.selectRow(this.last-1, keepExisting);
24745             this.grid.getView().focusRow(this.last);
24746         }
24747     },
24748
24749     /**
24750      * Returns the selected records
24751      * @return {Array} Array of selected records
24752      */
24753     getSelections : function(){
24754         return [].concat(this.selections.items);
24755     },
24756
24757     /**
24758      * Returns the first selected record.
24759      * @return {Record}
24760      */
24761     getSelected : function(){
24762         return this.selections.itemAt(0);
24763     },
24764
24765
24766     /**
24767      * Clears all selections.
24768      */
24769     clearSelections : function(fast)
24770     {
24771         if(this.locked) {
24772             return;
24773         }
24774         if(fast !== true){
24775                 var ds = this.grid.store;
24776             var s = this.selections;
24777             s.each(function(r){
24778                 this.deselectRow(ds.indexOfId(r.id));
24779             }, this);
24780             s.clear();
24781         }else{
24782             this.selections.clear();
24783         }
24784         this.last = false;
24785     },
24786
24787
24788     /**
24789      * Selects all rows.
24790      */
24791     selectAll : function(){
24792         if(this.locked) {
24793             return;
24794         }
24795         this.selections.clear();
24796         for(var i = 0, len = this.grid.store.getCount(); i < len; i++){
24797             this.selectRow(i, true);
24798         }
24799     },
24800
24801     /**
24802      * Returns True if there is a selection.
24803      * @return {Boolean}
24804      */
24805     hasSelection : function(){
24806         return this.selections.length > 0;
24807     },
24808
24809     /**
24810      * Returns True if the specified row is selected.
24811      * @param {Number/Record} record The record or index of the record to check
24812      * @return {Boolean}
24813      */
24814     isSelected : function(index){
24815             var r = typeof index == "number" ? this.grid.store.getAt(index) : index;
24816         return (r && this.selections.key(r.id) ? true : false);
24817     },
24818
24819     /**
24820      * Returns True if the specified record id is selected.
24821      * @param {String} id The id of record to check
24822      * @return {Boolean}
24823      */
24824     isIdSelected : function(id){
24825         return (this.selections.key(id) ? true : false);
24826     },
24827
24828
24829     // private
24830     handleMouseDBClick : function(e, t){
24831         
24832     },
24833     // private
24834     handleMouseDown : function(e, t)
24835     {
24836             var rowIndex = this.grid.headerShow  ? t.dom.rowIndex - 1 : t.dom.rowIndex ; // first row is header???
24837         if(this.isLocked() || rowIndex < 0 ){
24838             return;
24839         };
24840         if(e.shiftKey && this.last !== false){
24841             var last = this.last;
24842             this.selectRange(last, rowIndex, e.ctrlKey);
24843             this.last = last; // reset the last
24844             t.focus();
24845     
24846         }else{
24847             var isSelected = this.isSelected(rowIndex);
24848             //Roo.log("select row:" + rowIndex);
24849             if(isSelected){
24850                 this.deselectRow(rowIndex);
24851             } else {
24852                         this.selectRow(rowIndex, true);
24853             }
24854     
24855             /*
24856                 if(e.button !== 0 && isSelected){
24857                 alert('rowIndex 2: ' + rowIndex);
24858                     view.focusRow(rowIndex);
24859                 }else if(e.ctrlKey && isSelected){
24860                     this.deselectRow(rowIndex);
24861                 }else if(!isSelected){
24862                     this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
24863                     view.focusRow(rowIndex);
24864                 }
24865             */
24866         }
24867         this.fireEvent("afterselectionchange", this);
24868     },
24869     // private
24870     handleDragableRowClick :  function(grid, rowIndex, e) 
24871     {
24872         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
24873             this.selectRow(rowIndex, false);
24874             grid.view.focusRow(rowIndex);
24875              this.fireEvent("afterselectionchange", this);
24876         }
24877     },
24878     
24879     /**
24880      * Selects multiple rows.
24881      * @param {Array} rows Array of the indexes of the row to select
24882      * @param {Boolean} keepExisting (optional) True to keep existing selections
24883      */
24884     selectRows : function(rows, keepExisting){
24885         if(!keepExisting){
24886             this.clearSelections();
24887         }
24888         for(var i = 0, len = rows.length; i < len; i++){
24889             this.selectRow(rows[i], true);
24890         }
24891     },
24892
24893     /**
24894      * Selects a range of rows. All rows in between startRow and endRow are also selected.
24895      * @param {Number} startRow The index of the first row in the range
24896      * @param {Number} endRow The index of the last row in the range
24897      * @param {Boolean} keepExisting (optional) True to retain existing selections
24898      */
24899     selectRange : function(startRow, endRow, keepExisting){
24900         if(this.locked) {
24901             return;
24902         }
24903         if(!keepExisting){
24904             this.clearSelections();
24905         }
24906         if(startRow <= endRow){
24907             for(var i = startRow; i <= endRow; i++){
24908                 this.selectRow(i, true);
24909             }
24910         }else{
24911             for(var i = startRow; i >= endRow; i--){
24912                 this.selectRow(i, true);
24913             }
24914         }
24915     },
24916
24917     /**
24918      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
24919      * @param {Number} startRow The index of the first row in the range
24920      * @param {Number} endRow The index of the last row in the range
24921      */
24922     deselectRange : function(startRow, endRow, preventViewNotify){
24923         if(this.locked) {
24924             return;
24925         }
24926         for(var i = startRow; i <= endRow; i++){
24927             this.deselectRow(i, preventViewNotify);
24928         }
24929     },
24930
24931     /**
24932      * Selects a row.
24933      * @param {Number} row The index of the row to select
24934      * @param {Boolean} keepExisting (optional) True to keep existing selections
24935      */
24936     selectRow : function(index, keepExisting, preventViewNotify)
24937     {
24938             if(this.locked || (index < 0 || index > this.grid.store.getCount())) {
24939             return;
24940         }
24941         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
24942             if(!keepExisting || this.singleSelect){
24943                 this.clearSelections();
24944             }
24945             
24946             var r = this.grid.store.getAt(index);
24947             //console.log('selectRow - record id :' + r.id);
24948             
24949             this.selections.add(r);
24950             this.last = this.lastActive = index;
24951             if(!preventViewNotify){
24952                 var proxy = new Roo.Element(
24953                                 this.grid.getRowDom(index)
24954                 );
24955                 proxy.addClass('bg-info info');
24956             }
24957             this.fireEvent("rowselect", this, index, r);
24958             this.fireEvent("selectionchange", this);
24959         }
24960     },
24961
24962     /**
24963      * Deselects a row.
24964      * @param {Number} row The index of the row to deselect
24965      */
24966     deselectRow : function(index, preventViewNotify)
24967     {
24968         if(this.locked) {
24969             return;
24970         }
24971         if(this.last == index){
24972             this.last = false;
24973         }
24974         if(this.lastActive == index){
24975             this.lastActive = false;
24976         }
24977         
24978         var r = this.grid.store.getAt(index);
24979         if (!r) {
24980             return;
24981         }
24982         
24983         this.selections.remove(r);
24984         //.console.log('deselectRow - record id :' + r.id);
24985         if(!preventViewNotify){
24986         
24987             var proxy = new Roo.Element(
24988                 this.grid.getRowDom(index)
24989             );
24990             proxy.removeClass('bg-info info');
24991         }
24992         this.fireEvent("rowdeselect", this, index);
24993         this.fireEvent("selectionchange", this);
24994     },
24995
24996     // private
24997     restoreLast : function(){
24998         if(this._last){
24999             this.last = this._last;
25000         }
25001     },
25002
25003     // private
25004     acceptsNav : function(row, col, cm){
25005         return !cm.isHidden(col) && cm.isCellEditable(col, row);
25006     },
25007
25008     // private
25009     onEditorKey : function(field, e){
25010         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
25011         if(k == e.TAB){
25012             e.stopEvent();
25013             ed.completeEdit();
25014             if(e.shiftKey){
25015                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
25016             }else{
25017                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
25018             }
25019         }else if(k == e.ENTER && !e.ctrlKey){
25020             e.stopEvent();
25021             ed.completeEdit();
25022             if(e.shiftKey){
25023                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
25024             }else{
25025                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
25026             }
25027         }else if(k == e.ESC){
25028             ed.cancelEdit();
25029         }
25030         if(newCell){
25031             g.startEditing(newCell[0], newCell[1]);
25032         }
25033     }
25034 });
25035 /*
25036  * Based on:
25037  * Ext JS Library 1.1.1
25038  * Copyright(c) 2006-2007, Ext JS, LLC.
25039  *
25040  * Originally Released Under LGPL - original licence link has changed is not relivant.
25041  *
25042  * Fork - LGPL
25043  * <script type="text/javascript">
25044  */
25045  
25046 /**
25047  * @class Roo.bootstrap.PagingToolbar
25048  * @extends Roo.bootstrap.NavSimplebar
25049  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
25050  * @constructor
25051  * Create a new PagingToolbar
25052  * @param {Object} config The config object
25053  * @param {Roo.data.Store} store
25054  */
25055 Roo.bootstrap.PagingToolbar = function(config)
25056 {
25057     // old args format still supported... - xtype is prefered..
25058         // created from xtype...
25059     
25060     this.ds = config.dataSource;
25061     
25062     if (config.store && !this.ds) {
25063         this.store= Roo.factory(config.store, Roo.data);
25064         this.ds = this.store;
25065         this.ds.xmodule = this.xmodule || false;
25066     }
25067     
25068     this.toolbarItems = [];
25069     if (config.items) {
25070         this.toolbarItems = config.items;
25071     }
25072     
25073     Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, config);
25074     
25075     this.cursor = 0;
25076     
25077     if (this.ds) { 
25078         this.bind(this.ds);
25079     }
25080     
25081     if (Roo.bootstrap.version == 4) {
25082         this.navgroup = new Roo.bootstrap.ButtonGroup({ cls: 'pagination' });
25083     } else {
25084         this.navgroup = new Roo.bootstrap.NavGroup({ cls: 'pagination' });
25085     }
25086     
25087 };
25088
25089 Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.NavSimplebar, {
25090     /**
25091      * @cfg {Roo.data.Store} dataSource
25092      * The underlying data store providing the paged data
25093      */
25094     /**
25095      * @cfg {String/HTMLElement/Element} container
25096      * container The id or element that will contain the toolbar
25097      */
25098     /**
25099      * @cfg {Boolean} displayInfo
25100      * True to display the displayMsg (defaults to false)
25101      */
25102     /**
25103      * @cfg {Number} pageSize
25104      * The number of records to display per page (defaults to 20)
25105      */
25106     pageSize: 20,
25107     /**
25108      * @cfg {String} displayMsg
25109      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
25110      */
25111     displayMsg : 'Displaying {0} - {1} of {2}',
25112     /**
25113      * @cfg {String} emptyMsg
25114      * The message to display when no records are found (defaults to "No data to display")
25115      */
25116     emptyMsg : 'No data to display',
25117     /**
25118      * Customizable piece of the default paging text (defaults to "Page")
25119      * @type String
25120      */
25121     beforePageText : "Page",
25122     /**
25123      * Customizable piece of the default paging text (defaults to "of %0")
25124      * @type String
25125      */
25126     afterPageText : "of {0}",
25127     /**
25128      * Customizable piece of the default paging text (defaults to "First Page")
25129      * @type String
25130      */
25131     firstText : "First Page",
25132     /**
25133      * Customizable piece of the default paging text (defaults to "Previous Page")
25134      * @type String
25135      */
25136     prevText : "Previous Page",
25137     /**
25138      * Customizable piece of the default paging text (defaults to "Next Page")
25139      * @type String
25140      */
25141     nextText : "Next Page",
25142     /**
25143      * Customizable piece of the default paging text (defaults to "Last Page")
25144      * @type String
25145      */
25146     lastText : "Last Page",
25147     /**
25148      * Customizable piece of the default paging text (defaults to "Refresh")
25149      * @type String
25150      */
25151     refreshText : "Refresh",
25152
25153     buttons : false,
25154     // private
25155     onRender : function(ct, position) 
25156     {
25157         Roo.bootstrap.PagingToolbar.superclass.onRender.call(this, ct, position);
25158         this.navgroup.parentId = this.id;
25159         this.navgroup.onRender(this.el, null);
25160         // add the buttons to the navgroup
25161         
25162         if(this.displayInfo){
25163             this.el.select('ul.navbar-nav',true).first().createChild({cls:'x-paging-info'});
25164             this.displayEl = this.el.select('.x-paging-info', true).first();
25165 //            var navel = this.navgroup.addItem( { tagtype : 'span', html : '', cls : 'x-paging-info', preventDefault : true } );
25166 //            this.displayEl = navel.el.select('span',true).first();
25167         }
25168         
25169         var _this = this;
25170         
25171         if(this.buttons){
25172             Roo.each(_this.buttons, function(e){ // this might need to use render????
25173                Roo.factory(e).render(_this.el);
25174             });
25175         }
25176             
25177         Roo.each(_this.toolbarItems, function(e) {
25178             _this.navgroup.addItem(e);
25179         });
25180         
25181         
25182         this.first = this.navgroup.addItem({
25183             tooltip: this.firstText,
25184             cls: "prev btn-outline-secondary",
25185             html : ' <i class="fa fa-step-backward"></i>',
25186             disabled: true,
25187             preventDefault: true,
25188             listeners : { click : this.onClick.createDelegate(this, ["first"]) }
25189         });
25190         
25191         this.prev =  this.navgroup.addItem({
25192             tooltip: this.prevText,
25193             cls: "prev btn-outline-secondary",
25194             html : ' <i class="fa fa-backward"></i>',
25195             disabled: true,
25196             preventDefault: true,
25197             listeners : { click :  this.onClick.createDelegate(this, ["prev"]) }
25198         });
25199     //this.addSeparator();
25200         
25201         
25202         var field = this.navgroup.addItem( {
25203             tagtype : 'span',
25204             cls : 'x-paging-position  btn-outline-secondary',
25205              disabled: true,
25206             html : this.beforePageText  +
25207                 '<input type="text" size="3" value="1" class="x-grid-page-number">' +
25208                 '<span class="x-paging-after">' +  String.format(this.afterPageText, 1) + '</span>'
25209          } ); //?? escaped?
25210         
25211         this.field = field.el.select('input', true).first();
25212         this.field.on("keydown", this.onPagingKeydown, this);
25213         this.field.on("focus", function(){this.dom.select();});
25214     
25215     
25216         this.afterTextEl =  field.el.select('.x-paging-after',true).first();
25217         //this.field.setHeight(18);
25218         //this.addSeparator();
25219         this.next = this.navgroup.addItem({
25220             tooltip: this.nextText,
25221             cls: "next btn-outline-secondary",
25222             html : ' <i class="fa fa-forward"></i>',
25223             disabled: true,
25224             preventDefault: true,
25225             listeners : { click :  this.onClick.createDelegate(this, ["next"]) }
25226         });
25227         this.last = this.navgroup.addItem({
25228             tooltip: this.lastText,
25229             html : ' <i class="fa fa-step-forward"></i>',
25230             cls: "next btn-outline-secondary",
25231             disabled: true,
25232             preventDefault: true,
25233             listeners : { click :  this.onClick.createDelegate(this, ["last"]) }
25234         });
25235     //this.addSeparator();
25236         this.loading = this.navgroup.addItem({
25237             tooltip: this.refreshText,
25238             cls: "btn-outline-secondary",
25239             html : ' <i class="fa fa-refresh"></i>',
25240             preventDefault: true,
25241             listeners : { click : this.onClick.createDelegate(this, ["refresh"]) }
25242         });
25243         
25244     },
25245
25246     // private
25247     updateInfo : function(){
25248         if(this.displayEl){
25249             var count = (typeof(this.getCount) == 'undefined') ? this.ds.getCount() : this.getCount();
25250             var msg = count == 0 ?
25251                 this.emptyMsg :
25252                 String.format(
25253                     this.displayMsg,
25254                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
25255                 );
25256             this.displayEl.update(msg);
25257         }
25258     },
25259
25260     // private
25261     onLoad : function(ds, r, o)
25262     {
25263         this.cursor = o.params.start ? o.params.start : 0;
25264         
25265         var d = this.getPageData(),
25266             ap = d.activePage,
25267             ps = d.pages;
25268         
25269         
25270         this.afterTextEl.dom.innerHTML = String.format(this.afterPageText, d.pages);
25271         this.field.dom.value = ap;
25272         this.first.setDisabled(ap == 1);
25273         this.prev.setDisabled(ap == 1);
25274         this.next.setDisabled(ap == ps);
25275         this.last.setDisabled(ap == ps);
25276         this.loading.enable();
25277         this.updateInfo();
25278     },
25279
25280     // private
25281     getPageData : function(){
25282         var total = this.ds.getTotalCount();
25283         return {
25284             total : total,
25285             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
25286             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
25287         };
25288     },
25289
25290     // private
25291     onLoadError : function(){
25292         this.loading.enable();
25293     },
25294
25295     // private
25296     onPagingKeydown : function(e){
25297         var k = e.getKey();
25298         var d = this.getPageData();
25299         if(k == e.RETURN){
25300             var v = this.field.dom.value, pageNum;
25301             if(!v || isNaN(pageNum = parseInt(v, 10))){
25302                 this.field.dom.value = d.activePage;
25303                 return;
25304             }
25305             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
25306             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25307             e.stopEvent();
25308         }
25309         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))
25310         {
25311           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
25312           this.field.dom.value = pageNum;
25313           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
25314           e.stopEvent();
25315         }
25316         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
25317         {
25318           var v = this.field.dom.value, pageNum; 
25319           var increment = (e.shiftKey) ? 10 : 1;
25320           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
25321                 increment *= -1;
25322           }
25323           if(!v || isNaN(pageNum = parseInt(v, 10))) {
25324             this.field.dom.value = d.activePage;
25325             return;
25326           }
25327           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
25328           {
25329             this.field.dom.value = parseInt(v, 10) + increment;
25330             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
25331             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
25332           }
25333           e.stopEvent();
25334         }
25335     },
25336
25337     // private
25338     beforeLoad : function(){
25339         if(this.loading){
25340             this.loading.disable();
25341         }
25342     },
25343
25344     // private
25345     onClick : function(which){
25346         
25347         var ds = this.ds;
25348         if (!ds) {
25349             return;
25350         }
25351         
25352         switch(which){
25353             case "first":
25354                 ds.load({params:{start: 0, limit: this.pageSize}});
25355             break;
25356             case "prev":
25357                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
25358             break;
25359             case "next":
25360                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
25361             break;
25362             case "last":
25363                 var total = ds.getTotalCount();
25364                 var extra = total % this.pageSize;
25365                 var lastStart = extra ? (total - extra) : total-this.pageSize;
25366                 ds.load({params:{start: lastStart, limit: this.pageSize}});
25367             break;
25368             case "refresh":
25369                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
25370             break;
25371         }
25372     },
25373
25374     /**
25375      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
25376      * @param {Roo.data.Store} store The data store to unbind
25377      */
25378     unbind : function(ds){
25379         ds.un("beforeload", this.beforeLoad, this);
25380         ds.un("load", this.onLoad, this);
25381         ds.un("loadexception", this.onLoadError, this);
25382         ds.un("remove", this.updateInfo, this);
25383         ds.un("add", this.updateInfo, this);
25384         this.ds = undefined;
25385     },
25386
25387     /**
25388      * Binds the paging toolbar to the specified {@link Roo.data.Store}
25389      * @param {Roo.data.Store} store The data store to bind
25390      */
25391     bind : function(ds){
25392         ds.on("beforeload", this.beforeLoad, this);
25393         ds.on("load", this.onLoad, this);
25394         ds.on("loadexception", this.onLoadError, this);
25395         ds.on("remove", this.updateInfo, this);
25396         ds.on("add", this.updateInfo, this);
25397         this.ds = ds;
25398     }
25399 });/*
25400  * - LGPL
25401  *
25402  * element
25403  * 
25404  */
25405
25406 /**
25407  * @class Roo.bootstrap.MessageBar
25408  * @extends Roo.bootstrap.Component
25409  * Bootstrap MessageBar class
25410  * @cfg {String} html contents of the MessageBar
25411  * @cfg {String} weight (info | success | warning | danger) default info
25412  * @cfg {String} beforeClass insert the bar before the given class
25413  * @cfg {Boolean} closable (true | false) default false
25414  * @cfg {Boolean} fixed (true | false) default false, fix the bar at the top
25415  * 
25416  * @constructor
25417  * Create a new Element
25418  * @param {Object} config The config object
25419  */
25420
25421 Roo.bootstrap.MessageBar = function(config){
25422     Roo.bootstrap.MessageBar.superclass.constructor.call(this, config);
25423 };
25424
25425 Roo.extend(Roo.bootstrap.MessageBar, Roo.bootstrap.Component,  {
25426     
25427     html: '',
25428     weight: 'info',
25429     closable: false,
25430     fixed: false,
25431     beforeClass: 'bootstrap-sticky-wrap',
25432     
25433     getAutoCreate : function(){
25434         
25435         var cfg = {
25436             tag: 'div',
25437             cls: 'alert alert-dismissable alert-' + this.weight,
25438             cn: [
25439                 {
25440                     tag: 'span',
25441                     cls: 'message',
25442                     html: this.html || ''
25443                 }
25444             ]
25445         };
25446         
25447         if(this.fixed){
25448             cfg.cls += ' alert-messages-fixed';
25449         }
25450         
25451         if(this.closable){
25452             cfg.cn.push({
25453                 tag: 'button',
25454                 cls: 'close',
25455                 html: 'x'
25456             });
25457         }
25458         
25459         return cfg;
25460     },
25461     
25462     onRender : function(ct, position)
25463     {
25464         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
25465         
25466         if(!this.el){
25467             var cfg = Roo.apply({},  this.getAutoCreate());
25468             cfg.id = Roo.id();
25469             
25470             if (this.cls) {
25471                 cfg.cls += ' ' + this.cls;
25472             }
25473             if (this.style) {
25474                 cfg.style = this.style;
25475             }
25476             this.el = Roo.get(document.body).createChild(cfg, Roo.select('.'+this.beforeClass, true).first());
25477             
25478             this.el.setVisibilityMode(Roo.Element.DISPLAY);
25479         }
25480         
25481         this.el.select('>button.close').on('click', this.hide, this);
25482         
25483     },
25484     
25485     show : function()
25486     {
25487         if (!this.rendered) {
25488             this.render();
25489         }
25490         
25491         this.el.show();
25492         
25493         this.fireEvent('show', this);
25494         
25495     },
25496     
25497     hide : function()
25498     {
25499         if (!this.rendered) {
25500             this.render();
25501         }
25502         
25503         this.el.hide();
25504         
25505         this.fireEvent('hide', this);
25506     },
25507     
25508     update : function()
25509     {
25510 //        var e = this.el.dom.firstChild;
25511 //        
25512 //        if(this.closable){
25513 //            e = e.nextSibling;
25514 //        }
25515 //        
25516 //        e.data = this.html || '';
25517
25518         this.el.select('>.message', true).first().dom.innerHTML = this.html || '';
25519     }
25520    
25521 });
25522
25523  
25524
25525      /*
25526  * - LGPL
25527  *
25528  * Graph
25529  * 
25530  */
25531
25532
25533 /**
25534  * @class Roo.bootstrap.Graph
25535  * @extends Roo.bootstrap.Component
25536  * Bootstrap Graph class
25537 > Prameters
25538  -sm {number} sm 4
25539  -md {number} md 5
25540  @cfg {String} graphtype  bar | vbar | pie
25541  @cfg {number} g_x coodinator | centre x (pie)
25542  @cfg {number} g_y coodinator | centre y (pie)
25543  @cfg {number} g_r radius (pie)
25544  @cfg {number} g_height height of the chart (respected by all elements in the set)
25545  @cfg {number} g_width width of the chart (respected by all elements in the set)
25546  @cfg {Object} title The title of the chart
25547     
25548  -{Array}  values
25549  -opts (object) options for the chart 
25550      o {
25551      o type (string) type of endings of the bar. Default: 'square'. Other options are: 'round', 'sharp', 'soft'.
25552      o gutter (number)(string) default '20%' (WHAT DOES IT DO?)
25553      o vgutter (number)
25554      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.
25555      o stacked (boolean) whether or not to tread values as in a stacked bar chart
25556      o to
25557      o stretch (boolean)
25558      o }
25559  -opts (object) options for the pie
25560      o{
25561      o cut
25562      o startAngle (number)
25563      o endAngle (number)
25564      } 
25565  *
25566  * @constructor
25567  * Create a new Input
25568  * @param {Object} config The config object
25569  */
25570
25571 Roo.bootstrap.Graph = function(config){
25572     Roo.bootstrap.Graph.superclass.constructor.call(this, config);
25573     
25574     this.addEvents({
25575         // img events
25576         /**
25577          * @event click
25578          * The img click event for the img.
25579          * @param {Roo.EventObject} e
25580          */
25581         "click" : true
25582     });
25583 };
25584
25585 Roo.extend(Roo.bootstrap.Graph, Roo.bootstrap.Component,  {
25586     
25587     sm: 4,
25588     md: 5,
25589     graphtype: 'bar',
25590     g_height: 250,
25591     g_width: 400,
25592     g_x: 50,
25593     g_y: 50,
25594     g_r: 30,
25595     opts:{
25596         //g_colors: this.colors,
25597         g_type: 'soft',
25598         g_gutter: '20%'
25599
25600     },
25601     title : false,
25602
25603     getAutoCreate : function(){
25604         
25605         var cfg = {
25606             tag: 'div',
25607             html : null
25608         };
25609         
25610         
25611         return  cfg;
25612     },
25613
25614     onRender : function(ct,position){
25615         
25616         
25617         Roo.bootstrap.Graph.superclass.onRender.call(this,ct,position);
25618         
25619         if (typeof(Raphael) == 'undefined') {
25620             Roo.bootstrap.MessageBox.alert("Error","Raphael is not availabe");
25621             return;
25622         }
25623         
25624         this.raphael = Raphael(this.el.dom);
25625         
25626                     // data1 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25627                     // data2 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25628                     // data3 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
25629                     // txtattr = { font: "12px 'Fontin Sans', Fontin-Sans, sans-serif" };
25630                 /*
25631                 r.text(160, 10, "Single Series Chart").attr(txtattr);
25632                 r.text(480, 10, "Multiline Series Chart").attr(txtattr);
25633                 r.text(160, 250, "Multiple Series Stacked Chart").attr(txtattr);
25634                 r.text(480, 250, 'Multiline Series Stacked Vertical Chart. Type "round"').attr(txtattr);
25635                 
25636                 r.barchart(10, 10, 300, 220, [[55, 20, 13, 32, 5, 1, 2, 10]], 0, {type: "sharp"});
25637                 r.barchart(330, 10, 300, 220, data1);
25638                 r.barchart(10, 250, 300, 220, data2, {stacked: true});
25639                 r.barchart(330, 250, 300, 220, data3, {stacked: true, type: "round"});
25640                 */
25641                 
25642                 // var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25643                 // r.barchart(30, 30, 560, 250,  xdata, {
25644                 //    labels : [55, 20, 13, 32, 5, 1, 2, 10,5 , 10],
25645                 //     axis : "0 0 1 1",
25646                 //     axisxlabels :  xdata
25647                 //     //yvalues : cols,
25648                    
25649                 // });
25650 //        var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
25651 //        
25652 //        this.load(null,xdata,{
25653 //                axis : "0 0 1 1",
25654 //                axisxlabels :  xdata
25655 //                });
25656
25657     },
25658
25659     load : function(graphtype,xdata,opts)
25660     {
25661         this.raphael.clear();
25662         if(!graphtype) {
25663             graphtype = this.graphtype;
25664         }
25665         if(!opts){
25666             opts = this.opts;
25667         }
25668         var r = this.raphael,
25669             fin = function () {
25670                 this.flag = r.popup(this.bar.x, this.bar.y, this.bar.value || "0").insertBefore(this);
25671             },
25672             fout = function () {
25673                 this.flag.animate({opacity: 0}, 300, function () {this.remove();});
25674             },
25675             pfin = function() {
25676                 this.sector.stop();
25677                 this.sector.scale(1.1, 1.1, this.cx, this.cy);
25678
25679                 if (this.label) {
25680                     this.label[0].stop();
25681                     this.label[0].attr({ r: 7.5 });
25682                     this.label[1].attr({ "font-weight": 800 });
25683                 }
25684             },
25685             pfout = function() {
25686                 this.sector.animate({ transform: 's1 1 ' + this.cx + ' ' + this.cy }, 500, "bounce");
25687
25688                 if (this.label) {
25689                     this.label[0].animate({ r: 5 }, 500, "bounce");
25690                     this.label[1].attr({ "font-weight": 400 });
25691                 }
25692             };
25693
25694         switch(graphtype){
25695             case 'bar':
25696                 this.raphael.barchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25697                 break;
25698             case 'hbar':
25699                 this.raphael.hbarchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
25700                 break;
25701             case 'pie':
25702 //                opts = { legend: ["%% - Enterprise Users", "% - ddd","Chrome Users"], legendpos: "west", 
25703 //                href: ["http://raphaeljs.com", "http://g.raphaeljs.com"]};
25704 //            
25705                 this.raphael.piechart(this.g_x,this.g_y,this.g_r,xdata,opts).hover(pfin, pfout);
25706                 
25707                 break;
25708
25709         }
25710         
25711         if(this.title){
25712             this.raphael.text(this.title.x, this.title.y, this.title.text).attr(this.title.attr);
25713         }
25714         
25715     },
25716     
25717     setTitle: function(o)
25718     {
25719         this.title = o;
25720     },
25721     
25722     initEvents: function() {
25723         
25724         if(!this.href){
25725             this.el.on('click', this.onClick, this);
25726         }
25727     },
25728     
25729     onClick : function(e)
25730     {
25731         Roo.log('img onclick');
25732         this.fireEvent('click', this, e);
25733     }
25734    
25735 });
25736
25737  
25738 /*
25739  * - LGPL
25740  *
25741  * numberBox
25742  * 
25743  */
25744 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25745
25746 /**
25747  * @class Roo.bootstrap.dash.NumberBox
25748  * @extends Roo.bootstrap.Component
25749  * Bootstrap NumberBox class
25750  * @cfg {String} headline Box headline
25751  * @cfg {String} content Box content
25752  * @cfg {String} icon Box icon
25753  * @cfg {String} footer Footer text
25754  * @cfg {String} fhref Footer href
25755  * 
25756  * @constructor
25757  * Create a new NumberBox
25758  * @param {Object} config The config object
25759  */
25760
25761
25762 Roo.bootstrap.dash.NumberBox = function(config){
25763     Roo.bootstrap.dash.NumberBox.superclass.constructor.call(this, config);
25764     
25765 };
25766
25767 Roo.extend(Roo.bootstrap.dash.NumberBox, Roo.bootstrap.Component,  {
25768     
25769     headline : '',
25770     content : '',
25771     icon : '',
25772     footer : '',
25773     fhref : '',
25774     ficon : '',
25775     
25776     getAutoCreate : function(){
25777         
25778         var cfg = {
25779             tag : 'div',
25780             cls : 'small-box ',
25781             cn : [
25782                 {
25783                     tag : 'div',
25784                     cls : 'inner',
25785                     cn :[
25786                         {
25787                             tag : 'h3',
25788                             cls : 'roo-headline',
25789                             html : this.headline
25790                         },
25791                         {
25792                             tag : 'p',
25793                             cls : 'roo-content',
25794                             html : this.content
25795                         }
25796                     ]
25797                 }
25798             ]
25799         };
25800         
25801         if(this.icon){
25802             cfg.cn.push({
25803                 tag : 'div',
25804                 cls : 'icon',
25805                 cn :[
25806                     {
25807                         tag : 'i',
25808                         cls : 'ion ' + this.icon
25809                     }
25810                 ]
25811             });
25812         }
25813         
25814         if(this.footer){
25815             var footer = {
25816                 tag : 'a',
25817                 cls : 'small-box-footer',
25818                 href : this.fhref || '#',
25819                 html : this.footer
25820             };
25821             
25822             cfg.cn.push(footer);
25823             
25824         }
25825         
25826         return  cfg;
25827     },
25828
25829     onRender : function(ct,position){
25830         Roo.bootstrap.dash.NumberBox.superclass.onRender.call(this,ct,position);
25831
25832
25833        
25834                 
25835     },
25836
25837     setHeadline: function (value)
25838     {
25839         this.el.select('.roo-headline',true).first().dom.innerHTML = value;
25840     },
25841     
25842     setFooter: function (value, href)
25843     {
25844         this.el.select('a.small-box-footer',true).first().dom.innerHTML = value;
25845         
25846         if(href){
25847             this.el.select('a.small-box-footer',true).first().attr('href', href);
25848         }
25849         
25850     },
25851
25852     setContent: function (value)
25853     {
25854         this.el.select('.roo-content',true).first().dom.innerHTML = value;
25855     },
25856
25857     initEvents: function() 
25858     {   
25859         
25860     }
25861     
25862 });
25863
25864  
25865 /*
25866  * - LGPL
25867  *
25868  * TabBox
25869  * 
25870  */
25871 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
25872
25873 /**
25874  * @class Roo.bootstrap.dash.TabBox
25875  * @extends Roo.bootstrap.Component
25876  * Bootstrap TabBox class
25877  * @cfg {String} title Title of the TabBox
25878  * @cfg {String} icon Icon of the TabBox
25879  * @cfg {Boolean} showtabs (true|false) show the tabs default true
25880  * @cfg {Boolean} tabScrollable (true|false) tab scrollable when mobile view default false
25881  * 
25882  * @constructor
25883  * Create a new TabBox
25884  * @param {Object} config The config object
25885  */
25886
25887
25888 Roo.bootstrap.dash.TabBox = function(config){
25889     Roo.bootstrap.dash.TabBox.superclass.constructor.call(this, config);
25890     this.addEvents({
25891         // raw events
25892         /**
25893          * @event addpane
25894          * When a pane is added
25895          * @param {Roo.bootstrap.dash.TabPane} pane
25896          */
25897         "addpane" : true,
25898         /**
25899          * @event activatepane
25900          * When a pane is activated
25901          * @param {Roo.bootstrap.dash.TabPane} pane
25902          */
25903         "activatepane" : true
25904         
25905          
25906     });
25907     
25908     this.panes = [];
25909 };
25910
25911 Roo.extend(Roo.bootstrap.dash.TabBox, Roo.bootstrap.Component,  {
25912
25913     title : '',
25914     icon : false,
25915     showtabs : true,
25916     tabScrollable : false,
25917     
25918     getChildContainer : function()
25919     {
25920         return this.el.select('.tab-content', true).first();
25921     },
25922     
25923     getAutoCreate : function(){
25924         
25925         var header = {
25926             tag: 'li',
25927             cls: 'pull-left header',
25928             html: this.title,
25929             cn : []
25930         };
25931         
25932         if(this.icon){
25933             header.cn.push({
25934                 tag: 'i',
25935                 cls: 'fa ' + this.icon
25936             });
25937         }
25938         
25939         var h = {
25940             tag: 'ul',
25941             cls: 'nav nav-tabs pull-right',
25942             cn: [
25943                 header
25944             ]
25945         };
25946         
25947         if(this.tabScrollable){
25948             h = {
25949                 tag: 'div',
25950                 cls: 'tab-header',
25951                 cn: [
25952                     {
25953                         tag: 'ul',
25954                         cls: 'nav nav-tabs pull-right',
25955                         cn: [
25956                             header
25957                         ]
25958                     }
25959                 ]
25960             };
25961         }
25962         
25963         var cfg = {
25964             tag: 'div',
25965             cls: 'nav-tabs-custom',
25966             cn: [
25967                 h,
25968                 {
25969                     tag: 'div',
25970                     cls: 'tab-content no-padding',
25971                     cn: []
25972                 }
25973             ]
25974         };
25975
25976         return  cfg;
25977     },
25978     initEvents : function()
25979     {
25980         //Roo.log('add add pane handler');
25981         this.on('addpane', this.onAddPane, this);
25982     },
25983      /**
25984      * Updates the box title
25985      * @param {String} html to set the title to.
25986      */
25987     setTitle : function(value)
25988     {
25989         this.el.select('.nav-tabs .header', true).first().dom.innerHTML = value;
25990     },
25991     onAddPane : function(pane)
25992     {
25993         this.panes.push(pane);
25994         //Roo.log('addpane');
25995         //Roo.log(pane);
25996         // tabs are rendere left to right..
25997         if(!this.showtabs){
25998             return;
25999         }
26000         
26001         var ctr = this.el.select('.nav-tabs', true).first();
26002          
26003          
26004         var existing = ctr.select('.nav-tab',true);
26005         var qty = existing.getCount();;
26006         
26007         
26008         var tab = ctr.createChild({
26009             tag : 'li',
26010             cls : 'nav-tab' + (qty ? '' : ' active'),
26011             cn : [
26012                 {
26013                     tag : 'a',
26014                     href:'#',
26015                     html : pane.title
26016                 }
26017             ]
26018         }, qty ? existing.first().dom : ctr.select('.header', true).first().dom );
26019         pane.tab = tab;
26020         
26021         tab.on('click', this.onTabClick.createDelegate(this, [pane], true));
26022         if (!qty) {
26023             pane.el.addClass('active');
26024         }
26025         
26026                 
26027     },
26028     onTabClick : function(ev,un,ob,pane)
26029     {
26030         //Roo.log('tab - prev default');
26031         ev.preventDefault();
26032         
26033         
26034         this.el.select('.nav-tabs li.nav-tab', true).removeClass('active');
26035         pane.tab.addClass('active');
26036         //Roo.log(pane.title);
26037         this.getChildContainer().select('.tab-pane',true).removeClass('active');
26038         // technically we should have a deactivate event.. but maybe add later.
26039         // and it should not de-activate the selected tab...
26040         this.fireEvent('activatepane', pane);
26041         pane.el.addClass('active');
26042         pane.fireEvent('activate');
26043         
26044         
26045     },
26046     
26047     getActivePane : function()
26048     {
26049         var r = false;
26050         Roo.each(this.panes, function(p) {
26051             if(p.el.hasClass('active')){
26052                 r = p;
26053                 return false;
26054             }
26055             
26056             return;
26057         });
26058         
26059         return r;
26060     }
26061     
26062     
26063 });
26064
26065  
26066 /*
26067  * - LGPL
26068  *
26069  * Tab pane
26070  * 
26071  */
26072 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
26073 /**
26074  * @class Roo.bootstrap.TabPane
26075  * @extends Roo.bootstrap.Component
26076  * Bootstrap TabPane class
26077  * @cfg {Boolean} active (false | true) Default false
26078  * @cfg {String} title title of panel
26079
26080  * 
26081  * @constructor
26082  * Create a new TabPane
26083  * @param {Object} config The config object
26084  */
26085
26086 Roo.bootstrap.dash.TabPane = function(config){
26087     Roo.bootstrap.dash.TabPane.superclass.constructor.call(this, config);
26088     
26089     this.addEvents({
26090         // raw events
26091         /**
26092          * @event activate
26093          * When a pane is activated
26094          * @param {Roo.bootstrap.dash.TabPane} pane
26095          */
26096         "activate" : true
26097          
26098     });
26099 };
26100
26101 Roo.extend(Roo.bootstrap.dash.TabPane, Roo.bootstrap.Component,  {
26102     
26103     active : false,
26104     title : '',
26105     
26106     // the tabBox that this is attached to.
26107     tab : false,
26108      
26109     getAutoCreate : function() 
26110     {
26111         var cfg = {
26112             tag: 'div',
26113             cls: 'tab-pane'
26114         };
26115         
26116         if(this.active){
26117             cfg.cls += ' active';
26118         }
26119         
26120         return cfg;
26121     },
26122     initEvents  : function()
26123     {
26124         //Roo.log('trigger add pane handler');
26125         this.parent().fireEvent('addpane', this)
26126     },
26127     
26128      /**
26129      * Updates the tab title 
26130      * @param {String} html to set the title to.
26131      */
26132     setTitle: function(str)
26133     {
26134         if (!this.tab) {
26135             return;
26136         }
26137         this.title = str;
26138         this.tab.select('a', true).first().dom.innerHTML = str;
26139         
26140     }
26141     
26142     
26143     
26144 });
26145
26146  
26147
26148
26149  /*
26150  * - LGPL
26151  *
26152  * menu
26153  * 
26154  */
26155 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26156
26157 /**
26158  * @class Roo.bootstrap.menu.Menu
26159  * @extends Roo.bootstrap.Component
26160  * Bootstrap Menu class - container for Menu
26161  * @cfg {String} html Text of the menu
26162  * @cfg {String} weight (default | primary | success | info | warning | danger | inverse)
26163  * @cfg {String} icon Font awesome icon
26164  * @cfg {String} pos Menu align to (top | bottom) default bottom
26165  * 
26166  * 
26167  * @constructor
26168  * Create a new Menu
26169  * @param {Object} config The config object
26170  */
26171
26172
26173 Roo.bootstrap.menu.Menu = function(config){
26174     Roo.bootstrap.menu.Menu.superclass.constructor.call(this, config);
26175     
26176     this.addEvents({
26177         /**
26178          * @event beforeshow
26179          * Fires before this menu is displayed
26180          * @param {Roo.bootstrap.menu.Menu} this
26181          */
26182         beforeshow : true,
26183         /**
26184          * @event beforehide
26185          * Fires before this menu is hidden
26186          * @param {Roo.bootstrap.menu.Menu} this
26187          */
26188         beforehide : true,
26189         /**
26190          * @event show
26191          * Fires after this menu is displayed
26192          * @param {Roo.bootstrap.menu.Menu} this
26193          */
26194         show : true,
26195         /**
26196          * @event hide
26197          * Fires after this menu is hidden
26198          * @param {Roo.bootstrap.menu.Menu} this
26199          */
26200         hide : true,
26201         /**
26202          * @event click
26203          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
26204          * @param {Roo.bootstrap.menu.Menu} this
26205          * @param {Roo.EventObject} e
26206          */
26207         click : true
26208     });
26209     
26210 };
26211
26212 Roo.extend(Roo.bootstrap.menu.Menu, Roo.bootstrap.Component,  {
26213     
26214     submenu : false,
26215     html : '',
26216     weight : 'default',
26217     icon : false,
26218     pos : 'bottom',
26219     
26220     
26221     getChildContainer : function() {
26222         if(this.isSubMenu){
26223             return this.el;
26224         }
26225         
26226         return this.el.select('ul.dropdown-menu', true).first();  
26227     },
26228     
26229     getAutoCreate : function()
26230     {
26231         var text = [
26232             {
26233                 tag : 'span',
26234                 cls : 'roo-menu-text',
26235                 html : this.html
26236             }
26237         ];
26238         
26239         if(this.icon){
26240             text.unshift({
26241                 tag : 'i',
26242                 cls : 'fa ' + this.icon
26243             })
26244         }
26245         
26246         
26247         var cfg = {
26248             tag : 'div',
26249             cls : 'btn-group',
26250             cn : [
26251                 {
26252                     tag : 'button',
26253                     cls : 'dropdown-button btn btn-' + this.weight,
26254                     cn : text
26255                 },
26256                 {
26257                     tag : 'button',
26258                     cls : 'dropdown-toggle btn btn-' + this.weight,
26259                     cn : [
26260                         {
26261                             tag : 'span',
26262                             cls : 'caret'
26263                         }
26264                     ]
26265                 },
26266                 {
26267                     tag : 'ul',
26268                     cls : 'dropdown-menu'
26269                 }
26270             ]
26271             
26272         };
26273         
26274         if(this.pos == 'top'){
26275             cfg.cls += ' dropup';
26276         }
26277         
26278         if(this.isSubMenu){
26279             cfg = {
26280                 tag : 'ul',
26281                 cls : 'dropdown-menu'
26282             }
26283         }
26284         
26285         return cfg;
26286     },
26287     
26288     onRender : function(ct, position)
26289     {
26290         this.isSubMenu = ct.hasClass('dropdown-submenu');
26291         
26292         Roo.bootstrap.menu.Menu.superclass.onRender.call(this, ct, position);
26293     },
26294     
26295     initEvents : function() 
26296     {
26297         if(this.isSubMenu){
26298             return;
26299         }
26300         
26301         this.hidden = true;
26302         
26303         this.triggerEl = this.el.select('button.dropdown-toggle', true).first();
26304         this.triggerEl.on('click', this.onTriggerPress, this);
26305         
26306         this.buttonEl = this.el.select('button.dropdown-button', true).first();
26307         this.buttonEl.on('click', this.onClick, this);
26308         
26309     },
26310     
26311     list : function()
26312     {
26313         if(this.isSubMenu){
26314             return this.el;
26315         }
26316         
26317         return this.el.select('ul.dropdown-menu', true).first();
26318     },
26319     
26320     onClick : function(e)
26321     {
26322         this.fireEvent("click", this, e);
26323     },
26324     
26325     onTriggerPress  : function(e)
26326     {   
26327         if (this.isVisible()) {
26328             this.hide();
26329         } else {
26330             this.show();
26331         }
26332     },
26333     
26334     isVisible : function(){
26335         return !this.hidden;
26336     },
26337     
26338     show : function()
26339     {
26340         this.fireEvent("beforeshow", this);
26341         
26342         this.hidden = false;
26343         this.el.addClass('open');
26344         
26345         Roo.get(document).on("mouseup", this.onMouseUp, this);
26346         
26347         this.fireEvent("show", this);
26348         
26349         
26350     },
26351     
26352     hide : function()
26353     {
26354         this.fireEvent("beforehide", this);
26355         
26356         this.hidden = true;
26357         this.el.removeClass('open');
26358         
26359         Roo.get(document).un("mouseup", this.onMouseUp);
26360         
26361         this.fireEvent("hide", this);
26362     },
26363     
26364     onMouseUp : function()
26365     {
26366         this.hide();
26367     }
26368     
26369 });
26370
26371  
26372  /*
26373  * - LGPL
26374  *
26375  * menu item
26376  * 
26377  */
26378 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26379
26380 /**
26381  * @class Roo.bootstrap.menu.Item
26382  * @extends Roo.bootstrap.Component
26383  * Bootstrap MenuItem class
26384  * @cfg {Boolean} submenu (true | false) default false
26385  * @cfg {String} html text of the item
26386  * @cfg {String} href the link
26387  * @cfg {Boolean} disable (true | false) default false
26388  * @cfg {Boolean} preventDefault (true | false) default true
26389  * @cfg {String} icon Font awesome icon
26390  * @cfg {String} pos Submenu align to (left | right) default right 
26391  * 
26392  * 
26393  * @constructor
26394  * Create a new Item
26395  * @param {Object} config The config object
26396  */
26397
26398
26399 Roo.bootstrap.menu.Item = function(config){
26400     Roo.bootstrap.menu.Item.superclass.constructor.call(this, config);
26401     this.addEvents({
26402         /**
26403          * @event mouseover
26404          * Fires when the mouse is hovering over this menu
26405          * @param {Roo.bootstrap.menu.Item} this
26406          * @param {Roo.EventObject} e
26407          */
26408         mouseover : true,
26409         /**
26410          * @event mouseout
26411          * Fires when the mouse exits this menu
26412          * @param {Roo.bootstrap.menu.Item} this
26413          * @param {Roo.EventObject} e
26414          */
26415         mouseout : true,
26416         // raw events
26417         /**
26418          * @event click
26419          * The raw click event for the entire grid.
26420          * @param {Roo.EventObject} e
26421          */
26422         click : true
26423     });
26424 };
26425
26426 Roo.extend(Roo.bootstrap.menu.Item, Roo.bootstrap.Component,  {
26427     
26428     submenu : false,
26429     href : '',
26430     html : '',
26431     preventDefault: true,
26432     disable : false,
26433     icon : false,
26434     pos : 'right',
26435     
26436     getAutoCreate : function()
26437     {
26438         var text = [
26439             {
26440                 tag : 'span',
26441                 cls : 'roo-menu-item-text',
26442                 html : this.html
26443             }
26444         ];
26445         
26446         if(this.icon){
26447             text.unshift({
26448                 tag : 'i',
26449                 cls : 'fa ' + this.icon
26450             })
26451         }
26452         
26453         var cfg = {
26454             tag : 'li',
26455             cn : [
26456                 {
26457                     tag : 'a',
26458                     href : this.href || '#',
26459                     cn : text
26460                 }
26461             ]
26462         };
26463         
26464         if(this.disable){
26465             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'disabled' : (cfg.cls + ' disabled');
26466         }
26467         
26468         if(this.submenu){
26469             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'dropdown-submenu' : (cfg.cls + ' dropdown-submenu');
26470             
26471             if(this.pos == 'left'){
26472                 cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'pull-left' : (cfg.cls + ' pull-left');
26473             }
26474         }
26475         
26476         return cfg;
26477     },
26478     
26479     initEvents : function() 
26480     {
26481         this.el.on('mouseover', this.onMouseOver, this);
26482         this.el.on('mouseout', this.onMouseOut, this);
26483         
26484         this.el.select('a', true).first().on('click', this.onClick, this);
26485         
26486     },
26487     
26488     onClick : function(e)
26489     {
26490         if(this.preventDefault){
26491             e.preventDefault();
26492         }
26493         
26494         this.fireEvent("click", this, e);
26495     },
26496     
26497     onMouseOver : function(e)
26498     {
26499         if(this.submenu && this.pos == 'left'){
26500             this.el.select('ul.dropdown-menu', true).first().setLeft(this.el.select('ul.dropdown-menu', true).first().getWidth() * -1);
26501         }
26502         
26503         this.fireEvent("mouseover", this, e);
26504     },
26505     
26506     onMouseOut : function(e)
26507     {
26508         this.fireEvent("mouseout", this, e);
26509     }
26510 });
26511
26512  
26513
26514  /*
26515  * - LGPL
26516  *
26517  * menu separator
26518  * 
26519  */
26520 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
26521
26522 /**
26523  * @class Roo.bootstrap.menu.Separator
26524  * @extends Roo.bootstrap.Component
26525  * Bootstrap Separator class
26526  * 
26527  * @constructor
26528  * Create a new Separator
26529  * @param {Object} config The config object
26530  */
26531
26532
26533 Roo.bootstrap.menu.Separator = function(config){
26534     Roo.bootstrap.menu.Separator.superclass.constructor.call(this, config);
26535 };
26536
26537 Roo.extend(Roo.bootstrap.menu.Separator, Roo.bootstrap.Component,  {
26538     
26539     getAutoCreate : function(){
26540         var cfg = {
26541             tag : 'li',
26542             cls: 'divider'
26543         };
26544         
26545         return cfg;
26546     }
26547    
26548 });
26549
26550  
26551
26552  /*
26553  * - LGPL
26554  *
26555  * Tooltip
26556  * 
26557  */
26558
26559 /**
26560  * @class Roo.bootstrap.Tooltip
26561  * Bootstrap Tooltip class
26562  * This is basic at present - all componets support it by default, however they should add tooltipEl() method
26563  * to determine which dom element triggers the tooltip.
26564  * 
26565  * It needs to add support for additional attributes like tooltip-position
26566  * 
26567  * @constructor
26568  * Create a new Toolti
26569  * @param {Object} config The config object
26570  */
26571
26572 Roo.bootstrap.Tooltip = function(config){
26573     Roo.bootstrap.Tooltip.superclass.constructor.call(this, config);
26574     
26575     this.alignment = Roo.bootstrap.Tooltip.alignment;
26576     
26577     if(typeof(config) != 'undefined' && typeof(config.alignment) != 'undefined'){
26578         this.alignment = config.alignment;
26579     }
26580     
26581 };
26582
26583 Roo.apply(Roo.bootstrap.Tooltip, {
26584     /**
26585      * @function init initialize tooltip monitoring.
26586      * @static
26587      */
26588     currentEl : false,
26589     currentTip : false,
26590     currentRegion : false,
26591     
26592     //  init : delay?
26593     
26594     init : function()
26595     {
26596         Roo.get(document).on('mouseover', this.enter ,this);
26597         Roo.get(document).on('mouseout', this.leave, this);
26598          
26599         
26600         this.currentTip = new Roo.bootstrap.Tooltip();
26601     },
26602     
26603     enter : function(ev)
26604     {
26605         var dom = ev.getTarget();
26606         
26607         //Roo.log(['enter',dom]);
26608         var el = Roo.fly(dom);
26609         if (this.currentEl) {
26610             //Roo.log(dom);
26611             //Roo.log(this.currentEl);
26612             //Roo.log(this.currentEl.contains(dom));
26613             if (this.currentEl == el) {
26614                 return;
26615             }
26616             if (dom != this.currentEl.dom && this.currentEl.contains(dom)) {
26617                 return;
26618             }
26619
26620         }
26621         
26622         if (this.currentTip.el) {
26623             this.currentTip.el.setVisibilityMode(Roo.Element.DISPLAY).hide(); // force hiding...
26624         }    
26625         //Roo.log(ev);
26626         
26627         if(!el || el.dom == document){
26628             return;
26629         }
26630         
26631         var bindEl = el;
26632         
26633         // you can not look for children, as if el is the body.. then everythign is the child..
26634         if (!el.attr('tooltip')) { //
26635             if (!el.select("[tooltip]").elements.length) {
26636                 return;
26637             }
26638             // is the mouse over this child...?
26639             bindEl = el.select("[tooltip]").first();
26640             var xy = ev.getXY();
26641             if (!bindEl.getRegion().contains( { top : xy[1] ,right : xy[0] , bottom : xy[1], left : xy[0]})) {
26642                 //Roo.log("not in region.");
26643                 return;
26644             }
26645             //Roo.log("child element over..");
26646             
26647         }
26648         this.currentEl = bindEl;
26649         this.currentTip.bind(bindEl);
26650         this.currentRegion = Roo.lib.Region.getRegion(dom);
26651         this.currentTip.enter();
26652         
26653     },
26654     leave : function(ev)
26655     {
26656         var dom = ev.getTarget();
26657         //Roo.log(['leave',dom]);
26658         if (!this.currentEl) {
26659             return;
26660         }
26661         
26662         
26663         if (dom != this.currentEl.dom) {
26664             return;
26665         }
26666         var xy = ev.getXY();
26667         if (this.currentRegion.contains( new Roo.lib.Region( xy[1], xy[0] ,xy[1], xy[0]  ))) {
26668             return;
26669         }
26670         // only activate leave if mouse cursor is outside... bounding box..
26671         
26672         
26673         
26674         
26675         if (this.currentTip) {
26676             this.currentTip.leave();
26677         }
26678         //Roo.log('clear currentEl');
26679         this.currentEl = false;
26680         
26681         
26682     },
26683     alignment : {
26684         'left' : ['r-l', [-2,0], 'right'],
26685         'right' : ['l-r', [2,0], 'left'],
26686         'bottom' : ['t-b', [0,2], 'top'],
26687         'top' : [ 'b-t', [0,-2], 'bottom']
26688     }
26689     
26690 });
26691
26692
26693 Roo.extend(Roo.bootstrap.Tooltip, Roo.bootstrap.Component,  {
26694     
26695     
26696     bindEl : false,
26697     
26698     delay : null, // can be { show : 300 , hide: 500}
26699     
26700     timeout : null,
26701     
26702     hoverState : null, //???
26703     
26704     placement : 'bottom', 
26705     
26706     alignment : false,
26707     
26708     getAutoCreate : function(){
26709     
26710         var cfg = {
26711            cls : 'tooltip',
26712            role : 'tooltip',
26713            cn : [
26714                 {
26715                     cls : 'tooltip-arrow'
26716                 },
26717                 {
26718                     cls : 'tooltip-inner'
26719                 }
26720            ]
26721         };
26722         
26723         return cfg;
26724     },
26725     bind : function(el)
26726     {
26727         this.bindEl = el;
26728     },
26729       
26730     
26731     enter : function () {
26732        
26733         if (this.timeout != null) {
26734             clearTimeout(this.timeout);
26735         }
26736         
26737         this.hoverState = 'in';
26738          //Roo.log("enter - show");
26739         if (!this.delay || !this.delay.show) {
26740             this.show();
26741             return;
26742         }
26743         var _t = this;
26744         this.timeout = setTimeout(function () {
26745             if (_t.hoverState == 'in') {
26746                 _t.show();
26747             }
26748         }, this.delay.show);
26749     },
26750     leave : function()
26751     {
26752         clearTimeout(this.timeout);
26753     
26754         this.hoverState = 'out';
26755          if (!this.delay || !this.delay.hide) {
26756             this.hide();
26757             return;
26758         }
26759        
26760         var _t = this;
26761         this.timeout = setTimeout(function () {
26762             //Roo.log("leave - timeout");
26763             
26764             if (_t.hoverState == 'out') {
26765                 _t.hide();
26766                 Roo.bootstrap.Tooltip.currentEl = false;
26767             }
26768         }, delay);
26769     },
26770     
26771     show : function (msg)
26772     {
26773         if (!this.el) {
26774             this.render(document.body);
26775         }
26776         // set content.
26777         //Roo.log([this.bindEl, this.bindEl.attr('tooltip')]);
26778         
26779         var tip = msg || this.bindEl.attr('tooltip') || this.bindEl.select("[tooltip]").first().attr('tooltip');
26780         
26781         this.el.select('.tooltip-inner',true).first().dom.innerHTML = tip;
26782         
26783         this.el.removeClass(['fade','top','bottom', 'left', 'right','in']);
26784         
26785         var placement = typeof this.placement == 'function' ?
26786             this.placement.call(this, this.el, on_el) :
26787             this.placement;
26788             
26789         var autoToken = /\s?auto?\s?/i;
26790         var autoPlace = autoToken.test(placement);
26791         if (autoPlace) {
26792             placement = placement.replace(autoToken, '') || 'top';
26793         }
26794         
26795         //this.el.detach()
26796         //this.el.setXY([0,0]);
26797         this.el.show();
26798         //this.el.dom.style.display='block';
26799         
26800         //this.el.appendTo(on_el);
26801         
26802         var p = this.getPosition();
26803         var box = this.el.getBox();
26804         
26805         if (autoPlace) {
26806             // fixme..
26807         }
26808         
26809         var align = this.alignment[placement];
26810         
26811         var xy = this.el.getAlignToXY(this.bindEl, align[0], align[1]);
26812         
26813         if(placement == 'top' || placement == 'bottom'){
26814             if(xy[0] < 0){
26815                 placement = 'right';
26816             }
26817             
26818             if(xy[0] + this.el.getWidth() > Roo.lib.Dom.getViewWidth()){
26819                 placement = 'left';
26820             }
26821             
26822             var scroll = Roo.select('body', true).first().getScroll();
26823             
26824             if(xy[1] > Roo.lib.Dom.getViewHeight() + scroll.top - this.el.getHeight()){
26825                 placement = 'top';
26826             }
26827             
26828             align = this.alignment[placement];
26829         }
26830         
26831         this.el.alignTo(this.bindEl, align[0],align[1]);
26832         //var arrow = this.el.select('.arrow',true).first();
26833         //arrow.set(align[2], 
26834         
26835         this.el.addClass(placement);
26836         
26837         this.el.addClass('in fade');
26838         
26839         this.hoverState = null;
26840         
26841         if (this.el.hasClass('fade')) {
26842             // fade it?
26843         }
26844         
26845     },
26846     hide : function()
26847     {
26848          
26849         if (!this.el) {
26850             return;
26851         }
26852         //this.el.setXY([0,0]);
26853         this.el.removeClass('in');
26854         //this.el.hide();
26855         
26856     }
26857     
26858 });
26859  
26860
26861  /*
26862  * - LGPL
26863  *
26864  * Location Picker
26865  * 
26866  */
26867
26868 /**
26869  * @class Roo.bootstrap.LocationPicker
26870  * @extends Roo.bootstrap.Component
26871  * Bootstrap LocationPicker class
26872  * @cfg {Number} latitude Position when init default 0
26873  * @cfg {Number} longitude Position when init default 0
26874  * @cfg {Number} zoom default 15
26875  * @cfg {String} mapTypeId default google.maps.MapTypeId.ROADMAP
26876  * @cfg {Boolean} mapTypeControl default false
26877  * @cfg {Boolean} disableDoubleClickZoom default false
26878  * @cfg {Boolean} scrollwheel default true
26879  * @cfg {Boolean} streetViewControl default false
26880  * @cfg {Number} radius default 0
26881  * @cfg {String} locationName
26882  * @cfg {Boolean} draggable default true
26883  * @cfg {Boolean} enableAutocomplete default false
26884  * @cfg {Boolean} enableReverseGeocode default true
26885  * @cfg {String} markerTitle
26886  * 
26887  * @constructor
26888  * Create a new LocationPicker
26889  * @param {Object} config The config object
26890  */
26891
26892
26893 Roo.bootstrap.LocationPicker = function(config){
26894     
26895     Roo.bootstrap.LocationPicker.superclass.constructor.call(this, config);
26896     
26897     this.addEvents({
26898         /**
26899          * @event initial
26900          * Fires when the picker initialized.
26901          * @param {Roo.bootstrap.LocationPicker} this
26902          * @param {Google Location} location
26903          */
26904         initial : true,
26905         /**
26906          * @event positionchanged
26907          * Fires when the picker position changed.
26908          * @param {Roo.bootstrap.LocationPicker} this
26909          * @param {Google Location} location
26910          */
26911         positionchanged : true,
26912         /**
26913          * @event resize
26914          * Fires when the map resize.
26915          * @param {Roo.bootstrap.LocationPicker} this
26916          */
26917         resize : true,
26918         /**
26919          * @event show
26920          * Fires when the map show.
26921          * @param {Roo.bootstrap.LocationPicker} this
26922          */
26923         show : true,
26924         /**
26925          * @event hide
26926          * Fires when the map hide.
26927          * @param {Roo.bootstrap.LocationPicker} this
26928          */
26929         hide : true,
26930         /**
26931          * @event mapClick
26932          * Fires when click the map.
26933          * @param {Roo.bootstrap.LocationPicker} this
26934          * @param {Map event} e
26935          */
26936         mapClick : true,
26937         /**
26938          * @event mapRightClick
26939          * Fires when right click the map.
26940          * @param {Roo.bootstrap.LocationPicker} this
26941          * @param {Map event} e
26942          */
26943         mapRightClick : true,
26944         /**
26945          * @event markerClick
26946          * Fires when click the marker.
26947          * @param {Roo.bootstrap.LocationPicker} this
26948          * @param {Map event} e
26949          */
26950         markerClick : true,
26951         /**
26952          * @event markerRightClick
26953          * Fires when right click the marker.
26954          * @param {Roo.bootstrap.LocationPicker} this
26955          * @param {Map event} e
26956          */
26957         markerRightClick : true,
26958         /**
26959          * @event OverlayViewDraw
26960          * Fires when OverlayView Draw
26961          * @param {Roo.bootstrap.LocationPicker} this
26962          */
26963         OverlayViewDraw : true,
26964         /**
26965          * @event OverlayViewOnAdd
26966          * Fires when OverlayView Draw
26967          * @param {Roo.bootstrap.LocationPicker} this
26968          */
26969         OverlayViewOnAdd : true,
26970         /**
26971          * @event OverlayViewOnRemove
26972          * Fires when OverlayView Draw
26973          * @param {Roo.bootstrap.LocationPicker} this
26974          */
26975         OverlayViewOnRemove : true,
26976         /**
26977          * @event OverlayViewShow
26978          * Fires when OverlayView Draw
26979          * @param {Roo.bootstrap.LocationPicker} this
26980          * @param {Pixel} cpx
26981          */
26982         OverlayViewShow : true,
26983         /**
26984          * @event OverlayViewHide
26985          * Fires when OverlayView Draw
26986          * @param {Roo.bootstrap.LocationPicker} this
26987          */
26988         OverlayViewHide : true,
26989         /**
26990          * @event loadexception
26991          * Fires when load google lib failed.
26992          * @param {Roo.bootstrap.LocationPicker} this
26993          */
26994         loadexception : true
26995     });
26996         
26997 };
26998
26999 Roo.extend(Roo.bootstrap.LocationPicker, Roo.bootstrap.Component,  {
27000     
27001     gMapContext: false,
27002     
27003     latitude: 0,
27004     longitude: 0,
27005     zoom: 15,
27006     mapTypeId: false,
27007     mapTypeControl: false,
27008     disableDoubleClickZoom: false,
27009     scrollwheel: true,
27010     streetViewControl: false,
27011     radius: 0,
27012     locationName: '',
27013     draggable: true,
27014     enableAutocomplete: false,
27015     enableReverseGeocode: true,
27016     markerTitle: '',
27017     
27018     getAutoCreate: function()
27019     {
27020
27021         var cfg = {
27022             tag: 'div',
27023             cls: 'roo-location-picker'
27024         };
27025         
27026         return cfg
27027     },
27028     
27029     initEvents: function(ct, position)
27030     {       
27031         if(!this.el.getWidth() || this.isApplied()){
27032             return;
27033         }
27034         
27035         this.el.setVisibilityMode(Roo.Element.DISPLAY);
27036         
27037         this.initial();
27038     },
27039     
27040     initial: function()
27041     {
27042         if(typeof(google) == 'undefined' || typeof(google.maps) == 'undefined'){
27043             this.fireEvent('loadexception', this);
27044             return;
27045         }
27046         
27047         if(!this.mapTypeId){
27048             this.mapTypeId = google.maps.MapTypeId.ROADMAP;
27049         }
27050         
27051         this.gMapContext = this.GMapContext();
27052         
27053         this.initOverlayView();
27054         
27055         this.OverlayView = new Roo.bootstrap.LocationPicker.OverlayView(this.gMapContext.map);
27056         
27057         var _this = this;
27058                 
27059         google.maps.event.addListener(this.gMapContext.marker, "dragend", function(event) {
27060             _this.setPosition(_this.gMapContext.marker.position);
27061         });
27062         
27063         google.maps.event.addListener(this.gMapContext.map, 'click', function(event){
27064             _this.fireEvent('mapClick', this, event);
27065             
27066         });
27067
27068         google.maps.event.addListener(this.gMapContext.map, 'rightclick', function(event){
27069             _this.fireEvent('mapRightClick', this, event);
27070             
27071         });
27072         
27073         google.maps.event.addListener(this.gMapContext.marker, 'click', function(event){
27074             _this.fireEvent('markerClick', this, event);
27075             
27076         });
27077
27078         google.maps.event.addListener(this.gMapContext.marker, 'rightclick', function(event){
27079             _this.fireEvent('markerRightClick', this, event);
27080             
27081         });
27082         
27083         this.setPosition(this.gMapContext.location);
27084         
27085         this.fireEvent('initial', this, this.gMapContext.location);
27086     },
27087     
27088     initOverlayView: function()
27089     {
27090         var _this = this;
27091         
27092         Roo.bootstrap.LocationPicker.OverlayView.prototype = Roo.apply(new google.maps.OverlayView(), {
27093             
27094             draw: function()
27095             {
27096                 _this.fireEvent('OverlayViewDraw', _this);
27097             },
27098             
27099             onAdd: function()
27100             {
27101                 _this.fireEvent('OverlayViewOnAdd', _this);
27102             },
27103             
27104             onRemove: function()
27105             {
27106                 _this.fireEvent('OverlayViewOnRemove', _this);
27107             },
27108             
27109             show: function(cpx)
27110             {
27111                 _this.fireEvent('OverlayViewShow', _this, cpx);
27112             },
27113             
27114             hide: function()
27115             {
27116                 _this.fireEvent('OverlayViewHide', _this);
27117             }
27118             
27119         });
27120     },
27121     
27122     fromLatLngToContainerPixel: function(event)
27123     {
27124         return this.OverlayView.getProjection().fromLatLngToContainerPixel(event.latLng);
27125     },
27126     
27127     isApplied: function() 
27128     {
27129         return this.getGmapContext() == false ? false : true;
27130     },
27131     
27132     getGmapContext: function() 
27133     {
27134         return (typeof(this.gMapContext) == 'undefined') ? false : this.gMapContext;
27135     },
27136     
27137     GMapContext: function() 
27138     {
27139         var position = new google.maps.LatLng(this.latitude, this.longitude);
27140         
27141         var _map = new google.maps.Map(this.el.dom, {
27142             center: position,
27143             zoom: this.zoom,
27144             mapTypeId: this.mapTypeId,
27145             mapTypeControl: this.mapTypeControl,
27146             disableDoubleClickZoom: this.disableDoubleClickZoom,
27147             scrollwheel: this.scrollwheel,
27148             streetViewControl: this.streetViewControl,
27149             locationName: this.locationName,
27150             draggable: this.draggable,
27151             enableAutocomplete: this.enableAutocomplete,
27152             enableReverseGeocode: this.enableReverseGeocode
27153         });
27154         
27155         var _marker = new google.maps.Marker({
27156             position: position,
27157             map: _map,
27158             title: this.markerTitle,
27159             draggable: this.draggable
27160         });
27161         
27162         return {
27163             map: _map,
27164             marker: _marker,
27165             circle: null,
27166             location: position,
27167             radius: this.radius,
27168             locationName: this.locationName,
27169             addressComponents: {
27170                 formatted_address: null,
27171                 addressLine1: null,
27172                 addressLine2: null,
27173                 streetName: null,
27174                 streetNumber: null,
27175                 city: null,
27176                 district: null,
27177                 state: null,
27178                 stateOrProvince: null
27179             },
27180             settings: this,
27181             domContainer: this.el.dom,
27182             geodecoder: new google.maps.Geocoder()
27183         };
27184     },
27185     
27186     drawCircle: function(center, radius, options) 
27187     {
27188         if (this.gMapContext.circle != null) {
27189             this.gMapContext.circle.setMap(null);
27190         }
27191         if (radius > 0) {
27192             radius *= 1;
27193             options = Roo.apply({}, options, {
27194                 strokeColor: "#0000FF",
27195                 strokeOpacity: .35,
27196                 strokeWeight: 2,
27197                 fillColor: "#0000FF",
27198                 fillOpacity: .2
27199             });
27200             
27201             options.map = this.gMapContext.map;
27202             options.radius = radius;
27203             options.center = center;
27204             this.gMapContext.circle = new google.maps.Circle(options);
27205             return this.gMapContext.circle;
27206         }
27207         
27208         return null;
27209     },
27210     
27211     setPosition: function(location) 
27212     {
27213         this.gMapContext.location = location;
27214         this.gMapContext.marker.setPosition(location);
27215         this.gMapContext.map.panTo(location);
27216         this.drawCircle(location, this.gMapContext.radius, {});
27217         
27218         var _this = this;
27219         
27220         if (this.gMapContext.settings.enableReverseGeocode) {
27221             this.gMapContext.geodecoder.geocode({
27222                 latLng: this.gMapContext.location
27223             }, function(results, status) {
27224                 
27225                 if (status == google.maps.GeocoderStatus.OK && results.length > 0) {
27226                     _this.gMapContext.locationName = results[0].formatted_address;
27227                     _this.gMapContext.addressComponents = _this.address_component_from_google_geocode(results[0].address_components);
27228                     
27229                     _this.fireEvent('positionchanged', this, location);
27230                 }
27231             });
27232             
27233             return;
27234         }
27235         
27236         this.fireEvent('positionchanged', this, location);
27237     },
27238     
27239     resize: function()
27240     {
27241         google.maps.event.trigger(this.gMapContext.map, "resize");
27242         
27243         this.gMapContext.map.setCenter(this.gMapContext.marker.position);
27244         
27245         this.fireEvent('resize', this);
27246     },
27247     
27248     setPositionByLatLng: function(latitude, longitude)
27249     {
27250         this.setPosition(new google.maps.LatLng(latitude, longitude));
27251     },
27252     
27253     getCurrentPosition: function() 
27254     {
27255         return {
27256             latitude: this.gMapContext.location.lat(),
27257             longitude: this.gMapContext.location.lng()
27258         };
27259     },
27260     
27261     getAddressName: function() 
27262     {
27263         return this.gMapContext.locationName;
27264     },
27265     
27266     getAddressComponents: function() 
27267     {
27268         return this.gMapContext.addressComponents;
27269     },
27270     
27271     address_component_from_google_geocode: function(address_components) 
27272     {
27273         var result = {};
27274         
27275         for (var i = 0; i < address_components.length; i++) {
27276             var component = address_components[i];
27277             if (component.types.indexOf("postal_code") >= 0) {
27278                 result.postalCode = component.short_name;
27279             } else if (component.types.indexOf("street_number") >= 0) {
27280                 result.streetNumber = component.short_name;
27281             } else if (component.types.indexOf("route") >= 0) {
27282                 result.streetName = component.short_name;
27283             } else if (component.types.indexOf("neighborhood") >= 0) {
27284                 result.city = component.short_name;
27285             } else if (component.types.indexOf("locality") >= 0) {
27286                 result.city = component.short_name;
27287             } else if (component.types.indexOf("sublocality") >= 0) {
27288                 result.district = component.short_name;
27289             } else if (component.types.indexOf("administrative_area_level_1") >= 0) {
27290                 result.stateOrProvince = component.short_name;
27291             } else if (component.types.indexOf("country") >= 0) {
27292                 result.country = component.short_name;
27293             }
27294         }
27295         
27296         result.addressLine1 = [ result.streetNumber, result.streetName ].join(" ").trim();
27297         result.addressLine2 = "";
27298         return result;
27299     },
27300     
27301     setZoomLevel: function(zoom)
27302     {
27303         this.gMapContext.map.setZoom(zoom);
27304     },
27305     
27306     show: function()
27307     {
27308         if(!this.el){
27309             return;
27310         }
27311         
27312         this.el.show();
27313         
27314         this.resize();
27315         
27316         this.fireEvent('show', this);
27317     },
27318     
27319     hide: function()
27320     {
27321         if(!this.el){
27322             return;
27323         }
27324         
27325         this.el.hide();
27326         
27327         this.fireEvent('hide', this);
27328     }
27329     
27330 });
27331
27332 Roo.apply(Roo.bootstrap.LocationPicker, {
27333     
27334     OverlayView : function(map, options)
27335     {
27336         options = options || {};
27337         
27338         this.setMap(map);
27339     }
27340     
27341     
27342 });/**
27343  * @class Roo.bootstrap.Alert
27344  * @extends Roo.bootstrap.Component
27345  * Bootstrap Alert class - shows an alert area box
27346  * eg
27347  * <div class="alert alert-danger" role="alert"><span class="fa fa-exclamation-triangle"></span><span class="sr-only">Error:</span>
27348   Enter a valid email address
27349 </div>
27350  * @licence LGPL
27351  * @cfg {String} title The title of alert
27352  * @cfg {String} html The content of alert
27353  * @cfg {String} weight (  success | info | warning | danger )
27354  * @cfg {String} faicon font-awesomeicon
27355  * 
27356  * @constructor
27357  * Create a new alert
27358  * @param {Object} config The config object
27359  */
27360
27361
27362 Roo.bootstrap.Alert = function(config){
27363     Roo.bootstrap.Alert.superclass.constructor.call(this, config);
27364     
27365 };
27366
27367 Roo.extend(Roo.bootstrap.Alert, Roo.bootstrap.Component,  {
27368     
27369     title: '',
27370     html: '',
27371     weight: false,
27372     faicon: false,
27373     
27374     getAutoCreate : function()
27375     {
27376         
27377         var cfg = {
27378             tag : 'div',
27379             cls : 'alert',
27380             cn : [
27381                 {
27382                     tag : 'i',
27383                     cls : 'roo-alert-icon'
27384                     
27385                 },
27386                 {
27387                     tag : 'b',
27388                     cls : 'roo-alert-title',
27389                     html : this.title
27390                 },
27391                 {
27392                     tag : 'span',
27393                     cls : 'roo-alert-text',
27394                     html : this.html
27395                 }
27396             ]
27397         };
27398         
27399         if(this.faicon){
27400             cfg.cn[0].cls += ' fa ' + this.faicon;
27401         }
27402         
27403         if(this.weight){
27404             cfg.cls += ' alert-' + this.weight;
27405         }
27406         
27407         return cfg;
27408     },
27409     
27410     initEvents: function() 
27411     {
27412         this.el.setVisibilityMode(Roo.Element.DISPLAY);
27413     },
27414     
27415     setTitle : function(str)
27416     {
27417         this.el.select('.roo-alert-title',true).first().dom.innerHTML = str;
27418     },
27419     
27420     setText : function(str)
27421     {
27422         this.el.select('.roo-alert-text',true).first().dom.innerHTML = str;
27423     },
27424     
27425     setWeight : function(weight)
27426     {
27427         if(this.weight){
27428             this.el.select('.alert',true).first().removeClass('alert-' + this.weight);
27429         }
27430         
27431         this.weight = weight;
27432         
27433         this.el.select('.alert',true).first().addClass('alert-' + this.weight);
27434     },
27435     
27436     setIcon : function(icon)
27437     {
27438         if(this.faicon){
27439             this.el.select('.roo-alert-icon',true).first().removeClass(['fa', 'fa-' + this.faicon]);
27440         }
27441         
27442         this.faicon = icon;
27443         
27444         this.el.select('.roo-alert-icon',true).first().addClass(['fa', 'fa-' + this.faicon]);
27445     },
27446     
27447     hide: function() 
27448     {
27449         this.el.hide();   
27450     },
27451     
27452     show: function() 
27453     {  
27454         this.el.show();   
27455     }
27456     
27457 });
27458
27459  
27460 /*
27461 * Licence: LGPL
27462 */
27463
27464 /**
27465  * @class Roo.bootstrap.UploadCropbox
27466  * @extends Roo.bootstrap.Component
27467  * Bootstrap UploadCropbox class
27468  * @cfg {String} emptyText show when image has been loaded
27469  * @cfg {String} rotateNotify show when image too small to rotate
27470  * @cfg {Number} errorTimeout default 3000
27471  * @cfg {Number} minWidth default 300
27472  * @cfg {Number} minHeight default 300
27473  * @cfg {Array} buttons default ['rotateLeft', 'pictureBtn', 'rotateRight']
27474  * @cfg {Boolean} isDocument (true|false) default false
27475  * @cfg {String} url action url
27476  * @cfg {String} paramName default 'imageUpload'
27477  * @cfg {String} method default POST
27478  * @cfg {Boolean} loadMask (true|false) default true
27479  * @cfg {Boolean} loadingText default 'Loading...'
27480  * 
27481  * @constructor
27482  * Create a new UploadCropbox
27483  * @param {Object} config The config object
27484  */
27485
27486 Roo.bootstrap.UploadCropbox = function(config){
27487     Roo.bootstrap.UploadCropbox.superclass.constructor.call(this, config);
27488     
27489     this.addEvents({
27490         /**
27491          * @event beforeselectfile
27492          * Fire before select file
27493          * @param {Roo.bootstrap.UploadCropbox} this
27494          */
27495         "beforeselectfile" : true,
27496         /**
27497          * @event initial
27498          * Fire after initEvent
27499          * @param {Roo.bootstrap.UploadCropbox} this
27500          */
27501         "initial" : true,
27502         /**
27503          * @event crop
27504          * Fire after initEvent
27505          * @param {Roo.bootstrap.UploadCropbox} this
27506          * @param {String} data
27507          */
27508         "crop" : true,
27509         /**
27510          * @event prepare
27511          * Fire when preparing the file data
27512          * @param {Roo.bootstrap.UploadCropbox} this
27513          * @param {Object} file
27514          */
27515         "prepare" : true,
27516         /**
27517          * @event exception
27518          * Fire when get exception
27519          * @param {Roo.bootstrap.UploadCropbox} this
27520          * @param {XMLHttpRequest} xhr
27521          */
27522         "exception" : true,
27523         /**
27524          * @event beforeloadcanvas
27525          * Fire before load the canvas
27526          * @param {Roo.bootstrap.UploadCropbox} this
27527          * @param {String} src
27528          */
27529         "beforeloadcanvas" : true,
27530         /**
27531          * @event trash
27532          * Fire when trash image
27533          * @param {Roo.bootstrap.UploadCropbox} this
27534          */
27535         "trash" : true,
27536         /**
27537          * @event download
27538          * Fire when download the image
27539          * @param {Roo.bootstrap.UploadCropbox} this
27540          */
27541         "download" : true,
27542         /**
27543          * @event footerbuttonclick
27544          * Fire when footerbuttonclick
27545          * @param {Roo.bootstrap.UploadCropbox} this
27546          * @param {String} type
27547          */
27548         "footerbuttonclick" : true,
27549         /**
27550          * @event resize
27551          * Fire when resize
27552          * @param {Roo.bootstrap.UploadCropbox} this
27553          */
27554         "resize" : true,
27555         /**
27556          * @event rotate
27557          * Fire when rotate the image
27558          * @param {Roo.bootstrap.UploadCropbox} this
27559          * @param {String} pos
27560          */
27561         "rotate" : true,
27562         /**
27563          * @event inspect
27564          * Fire when inspect the file
27565          * @param {Roo.bootstrap.UploadCropbox} this
27566          * @param {Object} file
27567          */
27568         "inspect" : true,
27569         /**
27570          * @event upload
27571          * Fire when xhr upload the file
27572          * @param {Roo.bootstrap.UploadCropbox} this
27573          * @param {Object} data
27574          */
27575         "upload" : true,
27576         /**
27577          * @event arrange
27578          * Fire when arrange the file data
27579          * @param {Roo.bootstrap.UploadCropbox} this
27580          * @param {Object} formData
27581          */
27582         "arrange" : true
27583     });
27584     
27585     this.buttons = this.buttons || Roo.bootstrap.UploadCropbox.footer.STANDARD;
27586 };
27587
27588 Roo.extend(Roo.bootstrap.UploadCropbox, Roo.bootstrap.Component,  {
27589     
27590     emptyText : 'Click to upload image',
27591     rotateNotify : 'Image is too small to rotate',
27592     errorTimeout : 3000,
27593     scale : 0,
27594     baseScale : 1,
27595     rotate : 0,
27596     dragable : false,
27597     pinching : false,
27598     mouseX : 0,
27599     mouseY : 0,
27600     cropData : false,
27601     minWidth : 300,
27602     minHeight : 300,
27603     file : false,
27604     exif : {},
27605     baseRotate : 1,
27606     cropType : 'image/jpeg',
27607     buttons : false,
27608     canvasLoaded : false,
27609     isDocument : false,
27610     method : 'POST',
27611     paramName : 'imageUpload',
27612     loadMask : true,
27613     loadingText : 'Loading...',
27614     maskEl : false,
27615     
27616     getAutoCreate : function()
27617     {
27618         var cfg = {
27619             tag : 'div',
27620             cls : 'roo-upload-cropbox',
27621             cn : [
27622                 {
27623                     tag : 'input',
27624                     cls : 'roo-upload-cropbox-selector',
27625                     type : 'file'
27626                 },
27627                 {
27628                     tag : 'div',
27629                     cls : 'roo-upload-cropbox-body',
27630                     style : 'cursor:pointer',
27631                     cn : [
27632                         {
27633                             tag : 'div',
27634                             cls : 'roo-upload-cropbox-preview'
27635                         },
27636                         {
27637                             tag : 'div',
27638                             cls : 'roo-upload-cropbox-thumb'
27639                         },
27640                         {
27641                             tag : 'div',
27642                             cls : 'roo-upload-cropbox-empty-notify',
27643                             html : this.emptyText
27644                         },
27645                         {
27646                             tag : 'div',
27647                             cls : 'roo-upload-cropbox-error-notify alert alert-danger',
27648                             html : this.rotateNotify
27649                         }
27650                     ]
27651                 },
27652                 {
27653                     tag : 'div',
27654                     cls : 'roo-upload-cropbox-footer',
27655                     cn : {
27656                         tag : 'div',
27657                         cls : 'btn-group btn-group-justified roo-upload-cropbox-btn-group',
27658                         cn : []
27659                     }
27660                 }
27661             ]
27662         };
27663         
27664         return cfg;
27665     },
27666     
27667     onRender : function(ct, position)
27668     {
27669         Roo.bootstrap.UploadCropbox.superclass.onRender.call(this, ct, position);
27670         
27671         if (this.buttons.length) {
27672             
27673             Roo.each(this.buttons, function(bb) {
27674                 
27675                 var btn = this.el.select('.roo-upload-cropbox-footer div.roo-upload-cropbox-btn-group').first().createChild(bb);
27676                 
27677                 btn.on('click', this.onFooterButtonClick.createDelegate(this, [bb.action], true));
27678                 
27679             }, this);
27680         }
27681         
27682         if(this.loadMask){
27683             this.maskEl = this.el;
27684         }
27685     },
27686     
27687     initEvents : function()
27688     {
27689         this.urlAPI = (window.createObjectURL && window) || 
27690                                 (window.URL && URL.revokeObjectURL && URL) || 
27691                                 (window.webkitURL && webkitURL);
27692                         
27693         this.bodyEl = this.el.select('.roo-upload-cropbox-body', true).first();
27694         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27695         
27696         this.selectorEl = this.el.select('.roo-upload-cropbox-selector', true).first();
27697         this.selectorEl.hide();
27698         
27699         this.previewEl = this.el.select('.roo-upload-cropbox-preview', true).first();
27700         this.previewEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27701         
27702         this.thumbEl = this.el.select('.roo-upload-cropbox-thumb', true).first();
27703         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27704         this.thumbEl.hide();
27705         
27706         this.notifyEl = this.el.select('.roo-upload-cropbox-empty-notify', true).first();
27707         this.notifyEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27708         
27709         this.errorEl = this.el.select('.roo-upload-cropbox-error-notify', true).first();
27710         this.errorEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27711         this.errorEl.hide();
27712         
27713         this.footerEl = this.el.select('.roo-upload-cropbox-footer', true).first();
27714         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
27715         this.footerEl.hide();
27716         
27717         this.setThumbBoxSize();
27718         
27719         this.bind();
27720         
27721         this.resize();
27722         
27723         this.fireEvent('initial', this);
27724     },
27725
27726     bind : function()
27727     {
27728         var _this = this;
27729         
27730         window.addEventListener("resize", function() { _this.resize(); } );
27731         
27732         this.bodyEl.on('click', this.beforeSelectFile, this);
27733         
27734         if(Roo.isTouch){
27735             this.bodyEl.on('touchstart', this.onTouchStart, this);
27736             this.bodyEl.on('touchmove', this.onTouchMove, this);
27737             this.bodyEl.on('touchend', this.onTouchEnd, this);
27738         }
27739         
27740         if(!Roo.isTouch){
27741             this.bodyEl.on('mousedown', this.onMouseDown, this);
27742             this.bodyEl.on('mousemove', this.onMouseMove, this);
27743             var mousewheel = (/Firefox/i.test(navigator.userAgent))? 'DOMMouseScroll' : 'mousewheel';
27744             this.bodyEl.on(mousewheel, this.onMouseWheel, this);
27745             Roo.get(document).on('mouseup', this.onMouseUp, this);
27746         }
27747         
27748         this.selectorEl.on('change', this.onFileSelected, this);
27749     },
27750     
27751     reset : function()
27752     {    
27753         this.scale = 0;
27754         this.baseScale = 1;
27755         this.rotate = 0;
27756         this.baseRotate = 1;
27757         this.dragable = false;
27758         this.pinching = false;
27759         this.mouseX = 0;
27760         this.mouseY = 0;
27761         this.cropData = false;
27762         this.notifyEl.dom.innerHTML = this.emptyText;
27763         
27764         this.selectorEl.dom.value = '';
27765         
27766     },
27767     
27768     resize : function()
27769     {
27770         if(this.fireEvent('resize', this) != false){
27771             this.setThumbBoxPosition();
27772             this.setCanvasPosition();
27773         }
27774     },
27775     
27776     onFooterButtonClick : function(e, el, o, type)
27777     {
27778         switch (type) {
27779             case 'rotate-left' :
27780                 this.onRotateLeft(e);
27781                 break;
27782             case 'rotate-right' :
27783                 this.onRotateRight(e);
27784                 break;
27785             case 'picture' :
27786                 this.beforeSelectFile(e);
27787                 break;
27788             case 'trash' :
27789                 this.trash(e);
27790                 break;
27791             case 'crop' :
27792                 this.crop(e);
27793                 break;
27794             case 'download' :
27795                 this.download(e);
27796                 break;
27797             default :
27798                 break;
27799         }
27800         
27801         this.fireEvent('footerbuttonclick', this, type);
27802     },
27803     
27804     beforeSelectFile : function(e)
27805     {
27806         e.preventDefault();
27807         
27808         if(this.fireEvent('beforeselectfile', this) != false){
27809             this.selectorEl.dom.click();
27810         }
27811     },
27812     
27813     onFileSelected : function(e)
27814     {
27815         e.preventDefault();
27816         
27817         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
27818             return;
27819         }
27820         
27821         var file = this.selectorEl.dom.files[0];
27822         
27823         if(this.fireEvent('inspect', this, file) != false){
27824             this.prepare(file);
27825         }
27826         
27827     },
27828     
27829     trash : function(e)
27830     {
27831         this.fireEvent('trash', this);
27832     },
27833     
27834     download : function(e)
27835     {
27836         this.fireEvent('download', this);
27837     },
27838     
27839     loadCanvas : function(src)
27840     {   
27841         if(this.fireEvent('beforeloadcanvas', this, src) != false){
27842             
27843             this.reset();
27844             
27845             this.imageEl = document.createElement('img');
27846             
27847             var _this = this;
27848             
27849             this.imageEl.addEventListener("load", function(){ _this.onLoadCanvas(); });
27850             
27851             this.imageEl.src = src;
27852         }
27853     },
27854     
27855     onLoadCanvas : function()
27856     {   
27857         this.imageEl.OriginWidth = this.imageEl.naturalWidth || this.imageEl.width;
27858         this.imageEl.OriginHeight = this.imageEl.naturalHeight || this.imageEl.height;
27859         
27860         this.bodyEl.un('click', this.beforeSelectFile, this);
27861         
27862         this.notifyEl.hide();
27863         this.thumbEl.show();
27864         this.footerEl.show();
27865         
27866         this.baseRotateLevel();
27867         
27868         if(this.isDocument){
27869             this.setThumbBoxSize();
27870         }
27871         
27872         this.setThumbBoxPosition();
27873         
27874         this.baseScaleLevel();
27875         
27876         this.draw();
27877         
27878         this.resize();
27879         
27880         this.canvasLoaded = true;
27881         
27882         if(this.loadMask){
27883             this.maskEl.unmask();
27884         }
27885         
27886     },
27887     
27888     setCanvasPosition : function()
27889     {   
27890         if(!this.canvasEl){
27891             return;
27892         }
27893         
27894         var pw = Math.ceil((this.bodyEl.getWidth() - this.canvasEl.width) / 2);
27895         var ph = Math.ceil((this.bodyEl.getHeight() - this.canvasEl.height) / 2);
27896         
27897         this.previewEl.setLeft(pw);
27898         this.previewEl.setTop(ph);
27899         
27900     },
27901     
27902     onMouseDown : function(e)
27903     {   
27904         e.stopEvent();
27905         
27906         this.dragable = true;
27907         this.pinching = false;
27908         
27909         if(this.isDocument && (this.canvasEl.width < this.thumbEl.getWidth() || this.canvasEl.height < this.thumbEl.getHeight())){
27910             this.dragable = false;
27911             return;
27912         }
27913         
27914         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27915         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27916         
27917     },
27918     
27919     onMouseMove : function(e)
27920     {   
27921         e.stopEvent();
27922         
27923         if(!this.canvasLoaded){
27924             return;
27925         }
27926         
27927         if (!this.dragable){
27928             return;
27929         }
27930         
27931         var minX = Math.ceil(this.thumbEl.getLeft(true));
27932         var minY = Math.ceil(this.thumbEl.getTop(true));
27933         
27934         var maxX = Math.ceil(minX + this.thumbEl.getWidth() - this.canvasEl.width);
27935         var maxY = Math.ceil(minY + this.thumbEl.getHeight() - this.canvasEl.height);
27936         
27937         var x = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27938         var y = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27939         
27940         x = x - this.mouseX;
27941         y = y - this.mouseY;
27942         
27943         var bgX = Math.ceil(x + this.previewEl.getLeft(true));
27944         var bgY = Math.ceil(y + this.previewEl.getTop(true));
27945         
27946         bgX = (minX < bgX) ? minX : ((maxX > bgX) ? maxX : bgX);
27947         bgY = (minY < bgY) ? minY : ((maxY > bgY) ? maxY : bgY);
27948         
27949         this.previewEl.setLeft(bgX);
27950         this.previewEl.setTop(bgY);
27951         
27952         this.mouseX = Roo.isTouch ? e.browserEvent.touches[0].pageX : e.getPageX();
27953         this.mouseY = Roo.isTouch ? e.browserEvent.touches[0].pageY : e.getPageY();
27954     },
27955     
27956     onMouseUp : function(e)
27957     {   
27958         e.stopEvent();
27959         
27960         this.dragable = false;
27961     },
27962     
27963     onMouseWheel : function(e)
27964     {   
27965         e.stopEvent();
27966         
27967         this.startScale = this.scale;
27968         
27969         this.scale = (e.getWheelDelta() == 1) ? (this.scale + 1) : (this.scale - 1);
27970         
27971         if(!this.zoomable()){
27972             this.scale = this.startScale;
27973             return;
27974         }
27975         
27976         this.draw();
27977         
27978         return;
27979     },
27980     
27981     zoomable : function()
27982     {
27983         var minScale = this.thumbEl.getWidth() / this.minWidth;
27984         
27985         if(this.minWidth < this.minHeight){
27986             minScale = this.thumbEl.getHeight() / this.minHeight;
27987         }
27988         
27989         var width = Math.ceil(this.imageEl.OriginWidth * this.getScaleLevel() / minScale);
27990         var height = Math.ceil(this.imageEl.OriginHeight * this.getScaleLevel() / minScale);
27991         
27992         if(
27993                 this.isDocument &&
27994                 (this.rotate == 0 || this.rotate == 180) && 
27995                 (
27996                     width > this.imageEl.OriginWidth || 
27997                     height > this.imageEl.OriginHeight ||
27998                     (width < this.minWidth && height < this.minHeight)
27999                 )
28000         ){
28001             return false;
28002         }
28003         
28004         if(
28005                 this.isDocument &&
28006                 (this.rotate == 90 || this.rotate == 270) && 
28007                 (
28008                     width > this.imageEl.OriginWidth || 
28009                     height > this.imageEl.OriginHeight ||
28010                     (width < this.minHeight && height < this.minWidth)
28011                 )
28012         ){
28013             return false;
28014         }
28015         
28016         if(
28017                 !this.isDocument &&
28018                 (this.rotate == 0 || this.rotate == 180) && 
28019                 (
28020                     width < this.minWidth || 
28021                     width > this.imageEl.OriginWidth || 
28022                     height < this.minHeight || 
28023                     height > this.imageEl.OriginHeight
28024                 )
28025         ){
28026             return false;
28027         }
28028         
28029         if(
28030                 !this.isDocument &&
28031                 (this.rotate == 90 || this.rotate == 270) && 
28032                 (
28033                     width < this.minHeight || 
28034                     width > this.imageEl.OriginWidth || 
28035                     height < this.minWidth || 
28036                     height > this.imageEl.OriginHeight
28037                 )
28038         ){
28039             return false;
28040         }
28041         
28042         return true;
28043         
28044     },
28045     
28046     onRotateLeft : function(e)
28047     {   
28048         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
28049             
28050             var minScale = this.thumbEl.getWidth() / this.minWidth;
28051             
28052             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
28053             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
28054             
28055             this.startScale = this.scale;
28056             
28057             while (this.getScaleLevel() < minScale){
28058             
28059                 this.scale = this.scale + 1;
28060                 
28061                 if(!this.zoomable()){
28062                     break;
28063                 }
28064                 
28065                 if(
28066                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
28067                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
28068                 ){
28069                     continue;
28070                 }
28071                 
28072                 this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
28073
28074                 this.draw();
28075                 
28076                 return;
28077             }
28078             
28079             this.scale = this.startScale;
28080             
28081             this.onRotateFail();
28082             
28083             return false;
28084         }
28085         
28086         this.rotate = (this.rotate < 90) ? 270 : this.rotate - 90;
28087
28088         if(this.isDocument){
28089             this.setThumbBoxSize();
28090             this.setThumbBoxPosition();
28091             this.setCanvasPosition();
28092         }
28093         
28094         this.draw();
28095         
28096         this.fireEvent('rotate', this, 'left');
28097         
28098     },
28099     
28100     onRotateRight : function(e)
28101     {
28102         if(!this.isDocument && (this.canvasEl.height < this.thumbEl.getWidth() || this.canvasEl.width < this.thumbEl.getHeight())){
28103             
28104             var minScale = this.thumbEl.getWidth() / this.minWidth;
28105         
28106             var bw = Math.ceil(this.canvasEl.width / this.getScaleLevel());
28107             var bh = Math.ceil(this.canvasEl.height / this.getScaleLevel());
28108             
28109             this.startScale = this.scale;
28110             
28111             while (this.getScaleLevel() < minScale){
28112             
28113                 this.scale = this.scale + 1;
28114                 
28115                 if(!this.zoomable()){
28116                     break;
28117                 }
28118                 
28119                 if(
28120                         Math.ceil(bw * this.getScaleLevel()) < this.thumbEl.getHeight() ||
28121                         Math.ceil(bh * this.getScaleLevel()) < this.thumbEl.getWidth()
28122                 ){
28123                     continue;
28124                 }
28125                 
28126                 this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28127
28128                 this.draw();
28129                 
28130                 return;
28131             }
28132             
28133             this.scale = this.startScale;
28134             
28135             this.onRotateFail();
28136             
28137             return false;
28138         }
28139         
28140         this.rotate = (this.rotate > 180) ? 0 : this.rotate + 90;
28141
28142         if(this.isDocument){
28143             this.setThumbBoxSize();
28144             this.setThumbBoxPosition();
28145             this.setCanvasPosition();
28146         }
28147         
28148         this.draw();
28149         
28150         this.fireEvent('rotate', this, 'right');
28151     },
28152     
28153     onRotateFail : function()
28154     {
28155         this.errorEl.show(true);
28156         
28157         var _this = this;
28158         
28159         (function() { _this.errorEl.hide(true); }).defer(this.errorTimeout);
28160     },
28161     
28162     draw : function()
28163     {
28164         this.previewEl.dom.innerHTML = '';
28165         
28166         var canvasEl = document.createElement("canvas");
28167         
28168         var contextEl = canvasEl.getContext("2d");
28169         
28170         canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28171         canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28172         var center = this.imageEl.OriginWidth / 2;
28173         
28174         if(this.imageEl.OriginWidth < this.imageEl.OriginHeight){
28175             canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28176             canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28177             center = this.imageEl.OriginHeight / 2;
28178         }
28179         
28180         contextEl.scale(this.getScaleLevel(), this.getScaleLevel());
28181         
28182         contextEl.translate(center, center);
28183         contextEl.rotate(this.rotate * Math.PI / 180);
28184
28185         contextEl.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28186         
28187         this.canvasEl = document.createElement("canvas");
28188         
28189         this.contextEl = this.canvasEl.getContext("2d");
28190         
28191         switch (this.rotate) {
28192             case 0 :
28193                 
28194                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28195                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28196                 
28197                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28198                 
28199                 break;
28200             case 90 : 
28201                 
28202                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28203                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28204                 
28205                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28206                     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);
28207                     break;
28208                 }
28209                 
28210                 this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28211                 
28212                 break;
28213             case 180 :
28214                 
28215                 this.canvasEl.width = this.imageEl.OriginWidth * this.getScaleLevel();
28216                 this.canvasEl.height = this.imageEl.OriginHeight * this.getScaleLevel();
28217                 
28218                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28219                     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);
28220                     break;
28221                 }
28222                 
28223                 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);
28224                 
28225                 break;
28226             case 270 :
28227                 
28228                 this.canvasEl.width = this.imageEl.OriginHeight * this.getScaleLevel();
28229                 this.canvasEl.height = this.imageEl.OriginWidth * this.getScaleLevel();
28230         
28231                 if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28232                     this.contextEl.drawImage(canvasEl, 0, 0, this.canvasEl.width, this.canvasEl.height, 0, 0, this.canvasEl.width, this.canvasEl.height);
28233                     break;
28234                 }
28235                 
28236                 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);
28237                 
28238                 break;
28239             default : 
28240                 break;
28241         }
28242         
28243         this.previewEl.appendChild(this.canvasEl);
28244         
28245         this.setCanvasPosition();
28246     },
28247     
28248     crop : function()
28249     {
28250         if(!this.canvasLoaded){
28251             return;
28252         }
28253         
28254         var imageCanvas = document.createElement("canvas");
28255         
28256         var imageContext = imageCanvas.getContext("2d");
28257         
28258         imageCanvas.width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28259         imageCanvas.height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? this.imageEl.OriginWidth : this.imageEl.OriginHeight;
28260         
28261         var center = imageCanvas.width / 2;
28262         
28263         imageContext.translate(center, center);
28264         
28265         imageContext.rotate(this.rotate * Math.PI / 180);
28266         
28267         imageContext.drawImage(this.imageEl, 0, 0, this.imageEl.OriginWidth, this.imageEl.OriginHeight, center * -1, center * -1, this.imageEl.OriginWidth, this.imageEl.OriginHeight);
28268         
28269         var canvas = document.createElement("canvas");
28270         
28271         var context = canvas.getContext("2d");
28272                 
28273         canvas.width = this.minWidth;
28274         canvas.height = this.minHeight;
28275
28276         switch (this.rotate) {
28277             case 0 :
28278                 
28279                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28280                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28281                 
28282                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28283                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28284                 
28285                 var targetWidth = this.minWidth - 2 * x;
28286                 var targetHeight = this.minHeight - 2 * y;
28287                 
28288                 var scale = 1;
28289                 
28290                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28291                     scale = targetWidth / width;
28292                 }
28293                 
28294                 if(x > 0 && y == 0){
28295                     scale = targetHeight / height;
28296                 }
28297                 
28298                 if(x > 0 && y > 0){
28299                     scale = targetWidth / width;
28300                     
28301                     if(width < height){
28302                         scale = targetHeight / height;
28303                     }
28304                 }
28305                 
28306                 context.scale(scale, scale);
28307                 
28308                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28309                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28310
28311                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28312                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28313
28314                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28315                 
28316                 break;
28317             case 90 : 
28318                 
28319                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28320                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28321                 
28322                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28323                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28324                 
28325                 var targetWidth = this.minWidth - 2 * x;
28326                 var targetHeight = this.minHeight - 2 * y;
28327                 
28328                 var scale = 1;
28329                 
28330                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28331                     scale = targetWidth / width;
28332                 }
28333                 
28334                 if(x > 0 && y == 0){
28335                     scale = targetHeight / height;
28336                 }
28337                 
28338                 if(x > 0 && y > 0){
28339                     scale = targetWidth / width;
28340                     
28341                     if(width < height){
28342                         scale = targetHeight / height;
28343                     }
28344                 }
28345                 
28346                 context.scale(scale, scale);
28347                 
28348                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28349                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28350
28351                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28352                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28353                 
28354                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28355                 
28356                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28357                 
28358                 break;
28359             case 180 :
28360                 
28361                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getWidth() / this.getScaleLevel());
28362                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getHeight() / this.getScaleLevel());
28363                 
28364                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28365                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28366                 
28367                 var targetWidth = this.minWidth - 2 * x;
28368                 var targetHeight = this.minHeight - 2 * y;
28369                 
28370                 var scale = 1;
28371                 
28372                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28373                     scale = targetWidth / width;
28374                 }
28375                 
28376                 if(x > 0 && y == 0){
28377                     scale = targetHeight / height;
28378                 }
28379                 
28380                 if(x > 0 && y > 0){
28381                     scale = targetWidth / width;
28382                     
28383                     if(width < height){
28384                         scale = targetHeight / height;
28385                     }
28386                 }
28387                 
28388                 context.scale(scale, scale);
28389                 
28390                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28391                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28392
28393                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28394                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28395
28396                 sx += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28397                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight) : 0;
28398                 
28399                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28400                 
28401                 break;
28402             case 270 :
28403                 
28404                 var width = (this.thumbEl.getWidth() / this.getScaleLevel() > this.imageEl.OriginHeight) ? this.imageEl.OriginHeight : (this.thumbEl.getWidth() / this.getScaleLevel());
28405                 var height = (this.thumbEl.getHeight() / this.getScaleLevel() > this.imageEl.OriginWidth) ? this.imageEl.OriginWidth : (this.thumbEl.getHeight() / this.getScaleLevel());
28406                 
28407                 var x = (this.thumbEl.getLeft(true) > this.previewEl.getLeft(true)) ? 0 : ((this.previewEl.getLeft(true) - this.thumbEl.getLeft(true)) / this.getScaleLevel());
28408                 var y = (this.thumbEl.getTop(true) > this.previewEl.getTop(true)) ? 0 : ((this.previewEl.getTop(true) - this.thumbEl.getTop(true)) / this.getScaleLevel());
28409                 
28410                 var targetWidth = this.minWidth - 2 * x;
28411                 var targetHeight = this.minHeight - 2 * y;
28412                 
28413                 var scale = 1;
28414                 
28415                 if((x == 0 && y == 0) || (x == 0 && y > 0)){
28416                     scale = targetWidth / width;
28417                 }
28418                 
28419                 if(x > 0 && y == 0){
28420                     scale = targetHeight / height;
28421                 }
28422                 
28423                 if(x > 0 && y > 0){
28424                     scale = targetWidth / width;
28425                     
28426                     if(width < height){
28427                         scale = targetHeight / height;
28428                     }
28429                 }
28430                 
28431                 context.scale(scale, scale);
28432                 
28433                 var sx = Math.min(this.canvasEl.width - this.thumbEl.getWidth(), this.thumbEl.getLeft(true) - this.previewEl.getLeft(true));
28434                 var sy = Math.min(this.canvasEl.height - this.thumbEl.getHeight(), this.thumbEl.getTop(true) - this.previewEl.getTop(true));
28435
28436                 sx = sx < 0 ? 0 : (sx / this.getScaleLevel());
28437                 sy = sy < 0 ? 0 : (sy / this.getScaleLevel());
28438                 
28439                 sy += (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? 0 : Math.abs(this.imageEl.OriginWidth - this.imageEl.OriginHeight);
28440                 
28441                 context.drawImage(imageCanvas, sx, sy, width, height, x, y, width, height);
28442                 
28443                 break;
28444             default : 
28445                 break;
28446         }
28447         
28448         this.cropData = canvas.toDataURL(this.cropType);
28449         
28450         if(this.fireEvent('crop', this, this.cropData) !== false){
28451             this.process(this.file, this.cropData);
28452         }
28453         
28454         return;
28455         
28456     },
28457     
28458     setThumbBoxSize : function()
28459     {
28460         var width, height;
28461         
28462         if(this.isDocument && typeof(this.imageEl) != 'undefined'){
28463             width = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.max(this.minWidth, this.minHeight) : Math.min(this.minWidth, this.minHeight);
28464             height = (this.imageEl.OriginWidth > this.imageEl.OriginHeight) ? Math.min(this.minWidth, this.minHeight) : Math.max(this.minWidth, this.minHeight);
28465             
28466             this.minWidth = width;
28467             this.minHeight = height;
28468             
28469             if(this.rotate == 90 || this.rotate == 270){
28470                 this.minWidth = height;
28471                 this.minHeight = width;
28472             }
28473         }
28474         
28475         height = 300;
28476         width = Math.ceil(this.minWidth * height / this.minHeight);
28477         
28478         if(this.minWidth > this.minHeight){
28479             width = 300;
28480             height = Math.ceil(this.minHeight * width / this.minWidth);
28481         }
28482         
28483         this.thumbEl.setStyle({
28484             width : width + 'px',
28485             height : height + 'px'
28486         });
28487
28488         return;
28489             
28490     },
28491     
28492     setThumbBoxPosition : function()
28493     {
28494         var x = Math.ceil((this.bodyEl.getWidth() - this.thumbEl.getWidth()) / 2 );
28495         var y = Math.ceil((this.bodyEl.getHeight() - this.thumbEl.getHeight()) / 2);
28496         
28497         this.thumbEl.setLeft(x);
28498         this.thumbEl.setTop(y);
28499         
28500     },
28501     
28502     baseRotateLevel : function()
28503     {
28504         this.baseRotate = 1;
28505         
28506         if(
28507                 typeof(this.exif) != 'undefined' &&
28508                 typeof(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != 'undefined' &&
28509                 [1, 3, 6, 8].indexOf(this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']]) != -1
28510         ){
28511             this.baseRotate = this.exif[Roo.bootstrap.UploadCropbox['tags']['Orientation']];
28512         }
28513         
28514         this.rotate = Roo.bootstrap.UploadCropbox['Orientation'][this.baseRotate];
28515         
28516     },
28517     
28518     baseScaleLevel : function()
28519     {
28520         var width, height;
28521         
28522         if(this.isDocument){
28523             
28524             if(this.baseRotate == 6 || this.baseRotate == 8){
28525             
28526                 height = this.thumbEl.getHeight();
28527                 this.baseScale = height / this.imageEl.OriginWidth;
28528
28529                 if(this.imageEl.OriginHeight * this.baseScale > this.thumbEl.getWidth()){
28530                     width = this.thumbEl.getWidth();
28531                     this.baseScale = width / this.imageEl.OriginHeight;
28532                 }
28533
28534                 return;
28535             }
28536
28537             height = this.thumbEl.getHeight();
28538             this.baseScale = height / this.imageEl.OriginHeight;
28539
28540             if(this.imageEl.OriginWidth * this.baseScale > this.thumbEl.getWidth()){
28541                 width = this.thumbEl.getWidth();
28542                 this.baseScale = width / this.imageEl.OriginWidth;
28543             }
28544
28545             return;
28546         }
28547         
28548         if(this.baseRotate == 6 || this.baseRotate == 8){
28549             
28550             width = this.thumbEl.getHeight();
28551             this.baseScale = width / this.imageEl.OriginHeight;
28552             
28553             if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getWidth()){
28554                 height = this.thumbEl.getWidth();
28555                 this.baseScale = height / this.imageEl.OriginHeight;
28556             }
28557             
28558             if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28559                 height = this.thumbEl.getWidth();
28560                 this.baseScale = height / this.imageEl.OriginHeight;
28561                 
28562                 if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getHeight()){
28563                     width = this.thumbEl.getHeight();
28564                     this.baseScale = width / this.imageEl.OriginWidth;
28565                 }
28566             }
28567             
28568             return;
28569         }
28570         
28571         width = this.thumbEl.getWidth();
28572         this.baseScale = width / this.imageEl.OriginWidth;
28573         
28574         if(this.imageEl.OriginHeight * this.baseScale < this.thumbEl.getHeight()){
28575             height = this.thumbEl.getHeight();
28576             this.baseScale = height / this.imageEl.OriginHeight;
28577         }
28578         
28579         if(this.imageEl.OriginWidth > this.imageEl.OriginHeight){
28580             
28581             height = this.thumbEl.getHeight();
28582             this.baseScale = height / this.imageEl.OriginHeight;
28583             
28584             if(this.imageEl.OriginWidth * this.baseScale < this.thumbEl.getWidth()){
28585                 width = this.thumbEl.getWidth();
28586                 this.baseScale = width / this.imageEl.OriginWidth;
28587             }
28588             
28589         }
28590         
28591         return;
28592     },
28593     
28594     getScaleLevel : function()
28595     {
28596         return this.baseScale * Math.pow(1.1, this.scale);
28597     },
28598     
28599     onTouchStart : function(e)
28600     {
28601         if(!this.canvasLoaded){
28602             this.beforeSelectFile(e);
28603             return;
28604         }
28605         
28606         var touches = e.browserEvent.touches;
28607         
28608         if(!touches){
28609             return;
28610         }
28611         
28612         if(touches.length == 1){
28613             this.onMouseDown(e);
28614             return;
28615         }
28616         
28617         if(touches.length != 2){
28618             return;
28619         }
28620         
28621         var coords = [];
28622         
28623         for(var i = 0, finger; finger = touches[i]; i++){
28624             coords.push(finger.pageX, finger.pageY);
28625         }
28626         
28627         var x = Math.pow(coords[0] - coords[2], 2);
28628         var y = Math.pow(coords[1] - coords[3], 2);
28629         
28630         this.startDistance = Math.sqrt(x + y);
28631         
28632         this.startScale = this.scale;
28633         
28634         this.pinching = true;
28635         this.dragable = false;
28636         
28637     },
28638     
28639     onTouchMove : function(e)
28640     {
28641         if(!this.pinching && !this.dragable){
28642             return;
28643         }
28644         
28645         var touches = e.browserEvent.touches;
28646         
28647         if(!touches){
28648             return;
28649         }
28650         
28651         if(this.dragable){
28652             this.onMouseMove(e);
28653             return;
28654         }
28655         
28656         var coords = [];
28657         
28658         for(var i = 0, finger; finger = touches[i]; i++){
28659             coords.push(finger.pageX, finger.pageY);
28660         }
28661         
28662         var x = Math.pow(coords[0] - coords[2], 2);
28663         var y = Math.pow(coords[1] - coords[3], 2);
28664         
28665         this.endDistance = Math.sqrt(x + y);
28666         
28667         this.scale = this.startScale + Math.floor(Math.log(this.endDistance / this.startDistance) / Math.log(1.1));
28668         
28669         if(!this.zoomable()){
28670             this.scale = this.startScale;
28671             return;
28672         }
28673         
28674         this.draw();
28675         
28676     },
28677     
28678     onTouchEnd : function(e)
28679     {
28680         this.pinching = false;
28681         this.dragable = false;
28682         
28683     },
28684     
28685     process : function(file, crop)
28686     {
28687         if(this.loadMask){
28688             this.maskEl.mask(this.loadingText);
28689         }
28690         
28691         this.xhr = new XMLHttpRequest();
28692         
28693         file.xhr = this.xhr;
28694
28695         this.xhr.open(this.method, this.url, true);
28696         
28697         var headers = {
28698             "Accept": "application/json",
28699             "Cache-Control": "no-cache",
28700             "X-Requested-With": "XMLHttpRequest"
28701         };
28702         
28703         for (var headerName in headers) {
28704             var headerValue = headers[headerName];
28705             if (headerValue) {
28706                 this.xhr.setRequestHeader(headerName, headerValue);
28707             }
28708         }
28709         
28710         var _this = this;
28711         
28712         this.xhr.onload = function()
28713         {
28714             _this.xhrOnLoad(_this.xhr);
28715         }
28716         
28717         this.xhr.onerror = function()
28718         {
28719             _this.xhrOnError(_this.xhr);
28720         }
28721         
28722         var formData = new FormData();
28723
28724         formData.append('returnHTML', 'NO');
28725         
28726         if(crop){
28727             formData.append('crop', crop);
28728         }
28729         
28730         if(typeof(file) != 'undefined' && (typeof(file.id) == 'undefined' || file.id * 1 < 1)){
28731             formData.append(this.paramName, file, file.name);
28732         }
28733         
28734         if(typeof(file.filename) != 'undefined'){
28735             formData.append('filename', file.filename);
28736         }
28737         
28738         if(typeof(file.mimetype) != 'undefined'){
28739             formData.append('mimetype', file.mimetype);
28740         }
28741         
28742         if(this.fireEvent('arrange', this, formData) != false){
28743             this.xhr.send(formData);
28744         };
28745     },
28746     
28747     xhrOnLoad : function(xhr)
28748     {
28749         if(this.loadMask){
28750             this.maskEl.unmask();
28751         }
28752         
28753         if (xhr.readyState !== 4) {
28754             this.fireEvent('exception', this, xhr);
28755             return;
28756         }
28757
28758         var response = Roo.decode(xhr.responseText);
28759         
28760         if(!response.success){
28761             this.fireEvent('exception', this, xhr);
28762             return;
28763         }
28764         
28765         var response = Roo.decode(xhr.responseText);
28766         
28767         this.fireEvent('upload', this, response);
28768         
28769     },
28770     
28771     xhrOnError : function()
28772     {
28773         if(this.loadMask){
28774             this.maskEl.unmask();
28775         }
28776         
28777         Roo.log('xhr on error');
28778         
28779         var response = Roo.decode(xhr.responseText);
28780           
28781         Roo.log(response);
28782         
28783     },
28784     
28785     prepare : function(file)
28786     {   
28787         if(this.loadMask){
28788             this.maskEl.mask(this.loadingText);
28789         }
28790         
28791         this.file = false;
28792         this.exif = {};
28793         
28794         if(typeof(file) === 'string'){
28795             this.loadCanvas(file);
28796             return;
28797         }
28798         
28799         if(!file || !this.urlAPI){
28800             return;
28801         }
28802         
28803         this.file = file;
28804         this.cropType = file.type;
28805         
28806         var _this = this;
28807         
28808         if(this.fireEvent('prepare', this, this.file) != false){
28809             
28810             var reader = new FileReader();
28811             
28812             reader.onload = function (e) {
28813                 if (e.target.error) {
28814                     Roo.log(e.target.error);
28815                     return;
28816                 }
28817                 
28818                 var buffer = e.target.result,
28819                     dataView = new DataView(buffer),
28820                     offset = 2,
28821                     maxOffset = dataView.byteLength - 4,
28822                     markerBytes,
28823                     markerLength;
28824                 
28825                 if (dataView.getUint16(0) === 0xffd8) {
28826                     while (offset < maxOffset) {
28827                         markerBytes = dataView.getUint16(offset);
28828                         
28829                         if ((markerBytes >= 0xffe0 && markerBytes <= 0xffef) || markerBytes === 0xfffe) {
28830                             markerLength = dataView.getUint16(offset + 2) + 2;
28831                             if (offset + markerLength > dataView.byteLength) {
28832                                 Roo.log('Invalid meta data: Invalid segment size.');
28833                                 break;
28834                             }
28835                             
28836                             if(markerBytes == 0xffe1){
28837                                 _this.parseExifData(
28838                                     dataView,
28839                                     offset,
28840                                     markerLength
28841                                 );
28842                             }
28843                             
28844                             offset += markerLength;
28845                             
28846                             continue;
28847                         }
28848                         
28849                         break;
28850                     }
28851                     
28852                 }
28853                 
28854                 var url = _this.urlAPI.createObjectURL(_this.file);
28855                 
28856                 _this.loadCanvas(url);
28857                 
28858                 return;
28859             }
28860             
28861             reader.readAsArrayBuffer(this.file);
28862             
28863         }
28864         
28865     },
28866     
28867     parseExifData : function(dataView, offset, length)
28868     {
28869         var tiffOffset = offset + 10,
28870             littleEndian,
28871             dirOffset;
28872     
28873         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28874             // No Exif data, might be XMP data instead
28875             return;
28876         }
28877         
28878         // Check for the ASCII code for "Exif" (0x45786966):
28879         if (dataView.getUint32(offset + 4) !== 0x45786966) {
28880             // No Exif data, might be XMP data instead
28881             return;
28882         }
28883         if (tiffOffset + 8 > dataView.byteLength) {
28884             Roo.log('Invalid Exif data: Invalid segment size.');
28885             return;
28886         }
28887         // Check for the two null bytes:
28888         if (dataView.getUint16(offset + 8) !== 0x0000) {
28889             Roo.log('Invalid Exif data: Missing byte alignment offset.');
28890             return;
28891         }
28892         // Check the byte alignment:
28893         switch (dataView.getUint16(tiffOffset)) {
28894         case 0x4949:
28895             littleEndian = true;
28896             break;
28897         case 0x4D4D:
28898             littleEndian = false;
28899             break;
28900         default:
28901             Roo.log('Invalid Exif data: Invalid byte alignment marker.');
28902             return;
28903         }
28904         // Check for the TIFF tag marker (0x002A):
28905         if (dataView.getUint16(tiffOffset + 2, littleEndian) !== 0x002A) {
28906             Roo.log('Invalid Exif data: Missing TIFF marker.');
28907             return;
28908         }
28909         // Retrieve the directory offset bytes, usually 0x00000008 or 8 decimal:
28910         dirOffset = dataView.getUint32(tiffOffset + 4, littleEndian);
28911         
28912         this.parseExifTags(
28913             dataView,
28914             tiffOffset,
28915             tiffOffset + dirOffset,
28916             littleEndian
28917         );
28918     },
28919     
28920     parseExifTags : function(dataView, tiffOffset, dirOffset, littleEndian)
28921     {
28922         var tagsNumber,
28923             dirEndOffset,
28924             i;
28925         if (dirOffset + 6 > dataView.byteLength) {
28926             Roo.log('Invalid Exif data: Invalid directory offset.');
28927             return;
28928         }
28929         tagsNumber = dataView.getUint16(dirOffset, littleEndian);
28930         dirEndOffset = dirOffset + 2 + 12 * tagsNumber;
28931         if (dirEndOffset + 4 > dataView.byteLength) {
28932             Roo.log('Invalid Exif data: Invalid directory size.');
28933             return;
28934         }
28935         for (i = 0; i < tagsNumber; i += 1) {
28936             this.parseExifTag(
28937                 dataView,
28938                 tiffOffset,
28939                 dirOffset + 2 + 12 * i, // tag offset
28940                 littleEndian
28941             );
28942         }
28943         // Return the offset to the next directory:
28944         return dataView.getUint32(dirEndOffset, littleEndian);
28945     },
28946     
28947     parseExifTag : function (dataView, tiffOffset, offset, littleEndian) 
28948     {
28949         var tag = dataView.getUint16(offset, littleEndian);
28950         
28951         this.exif[tag] = this.getExifValue(
28952             dataView,
28953             tiffOffset,
28954             offset,
28955             dataView.getUint16(offset + 2, littleEndian), // tag type
28956             dataView.getUint32(offset + 4, littleEndian), // tag length
28957             littleEndian
28958         );
28959     },
28960     
28961     getExifValue : function (dataView, tiffOffset, offset, type, length, littleEndian)
28962     {
28963         var tagType = Roo.bootstrap.UploadCropbox.exifTagTypes[type],
28964             tagSize,
28965             dataOffset,
28966             values,
28967             i,
28968             str,
28969             c;
28970     
28971         if (!tagType) {
28972             Roo.log('Invalid Exif data: Invalid tag type.');
28973             return;
28974         }
28975         
28976         tagSize = tagType.size * length;
28977         // Determine if the value is contained in the dataOffset bytes,
28978         // or if the value at the dataOffset is a pointer to the actual data:
28979         dataOffset = tagSize > 4 ?
28980                 tiffOffset + dataView.getUint32(offset + 8, littleEndian) : (offset + 8);
28981         if (dataOffset + tagSize > dataView.byteLength) {
28982             Roo.log('Invalid Exif data: Invalid data offset.');
28983             return;
28984         }
28985         if (length === 1) {
28986             return tagType.getValue(dataView, dataOffset, littleEndian);
28987         }
28988         values = [];
28989         for (i = 0; i < length; i += 1) {
28990             values[i] = tagType.getValue(dataView, dataOffset + i * tagType.size, littleEndian);
28991         }
28992         
28993         if (tagType.ascii) {
28994             str = '';
28995             // Concatenate the chars:
28996             for (i = 0; i < values.length; i += 1) {
28997                 c = values[i];
28998                 // Ignore the terminating NULL byte(s):
28999                 if (c === '\u0000') {
29000                     break;
29001                 }
29002                 str += c;
29003             }
29004             return str;
29005         }
29006         return values;
29007     }
29008     
29009 });
29010
29011 Roo.apply(Roo.bootstrap.UploadCropbox, {
29012     tags : {
29013         'Orientation': 0x0112
29014     },
29015     
29016     Orientation: {
29017             1: 0, //'top-left',
29018 //            2: 'top-right',
29019             3: 180, //'bottom-right',
29020 //            4: 'bottom-left',
29021 //            5: 'left-top',
29022             6: 90, //'right-top',
29023 //            7: 'right-bottom',
29024             8: 270 //'left-bottom'
29025     },
29026     
29027     exifTagTypes : {
29028         // byte, 8-bit unsigned int:
29029         1: {
29030             getValue: function (dataView, dataOffset) {
29031                 return dataView.getUint8(dataOffset);
29032             },
29033             size: 1
29034         },
29035         // ascii, 8-bit byte:
29036         2: {
29037             getValue: function (dataView, dataOffset) {
29038                 return String.fromCharCode(dataView.getUint8(dataOffset));
29039             },
29040             size: 1,
29041             ascii: true
29042         },
29043         // short, 16 bit int:
29044         3: {
29045             getValue: function (dataView, dataOffset, littleEndian) {
29046                 return dataView.getUint16(dataOffset, littleEndian);
29047             },
29048             size: 2
29049         },
29050         // long, 32 bit int:
29051         4: {
29052             getValue: function (dataView, dataOffset, littleEndian) {
29053                 return dataView.getUint32(dataOffset, littleEndian);
29054             },
29055             size: 4
29056         },
29057         // rational = two long values, first is numerator, second is denominator:
29058         5: {
29059             getValue: function (dataView, dataOffset, littleEndian) {
29060                 return dataView.getUint32(dataOffset, littleEndian) /
29061                     dataView.getUint32(dataOffset + 4, littleEndian);
29062             },
29063             size: 8
29064         },
29065         // slong, 32 bit signed int:
29066         9: {
29067             getValue: function (dataView, dataOffset, littleEndian) {
29068                 return dataView.getInt32(dataOffset, littleEndian);
29069             },
29070             size: 4
29071         },
29072         // srational, two slongs, first is numerator, second is denominator:
29073         10: {
29074             getValue: function (dataView, dataOffset, littleEndian) {
29075                 return dataView.getInt32(dataOffset, littleEndian) /
29076                     dataView.getInt32(dataOffset + 4, littleEndian);
29077             },
29078             size: 8
29079         }
29080     },
29081     
29082     footer : {
29083         STANDARD : [
29084             {
29085                 tag : 'div',
29086                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29087                 action : 'rotate-left',
29088                 cn : [
29089                     {
29090                         tag : 'button',
29091                         cls : 'btn btn-default',
29092                         html : '<i class="fa fa-undo"></i>'
29093                     }
29094                 ]
29095             },
29096             {
29097                 tag : 'div',
29098                 cls : 'btn-group roo-upload-cropbox-picture',
29099                 action : 'picture',
29100                 cn : [
29101                     {
29102                         tag : 'button',
29103                         cls : 'btn btn-default',
29104                         html : '<i class="fa fa-picture-o"></i>'
29105                     }
29106                 ]
29107             },
29108             {
29109                 tag : 'div',
29110                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29111                 action : 'rotate-right',
29112                 cn : [
29113                     {
29114                         tag : 'button',
29115                         cls : 'btn btn-default',
29116                         html : '<i class="fa fa-repeat"></i>'
29117                     }
29118                 ]
29119             }
29120         ],
29121         DOCUMENT : [
29122             {
29123                 tag : 'div',
29124                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29125                 action : 'rotate-left',
29126                 cn : [
29127                     {
29128                         tag : 'button',
29129                         cls : 'btn btn-default',
29130                         html : '<i class="fa fa-undo"></i>'
29131                     }
29132                 ]
29133             },
29134             {
29135                 tag : 'div',
29136                 cls : 'btn-group roo-upload-cropbox-download',
29137                 action : 'download',
29138                 cn : [
29139                     {
29140                         tag : 'button',
29141                         cls : 'btn btn-default',
29142                         html : '<i class="fa fa-download"></i>'
29143                     }
29144                 ]
29145             },
29146             {
29147                 tag : 'div',
29148                 cls : 'btn-group roo-upload-cropbox-crop',
29149                 action : 'crop',
29150                 cn : [
29151                     {
29152                         tag : 'button',
29153                         cls : 'btn btn-default',
29154                         html : '<i class="fa fa-crop"></i>'
29155                     }
29156                 ]
29157             },
29158             {
29159                 tag : 'div',
29160                 cls : 'btn-group roo-upload-cropbox-trash',
29161                 action : 'trash',
29162                 cn : [
29163                     {
29164                         tag : 'button',
29165                         cls : 'btn btn-default',
29166                         html : '<i class="fa fa-trash"></i>'
29167                     }
29168                 ]
29169             },
29170             {
29171                 tag : 'div',
29172                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29173                 action : 'rotate-right',
29174                 cn : [
29175                     {
29176                         tag : 'button',
29177                         cls : 'btn btn-default',
29178                         html : '<i class="fa fa-repeat"></i>'
29179                     }
29180                 ]
29181             }
29182         ],
29183         ROTATOR : [
29184             {
29185                 tag : 'div',
29186                 cls : 'btn-group roo-upload-cropbox-rotate-left',
29187                 action : 'rotate-left',
29188                 cn : [
29189                     {
29190                         tag : 'button',
29191                         cls : 'btn btn-default',
29192                         html : '<i class="fa fa-undo"></i>'
29193                     }
29194                 ]
29195             },
29196             {
29197                 tag : 'div',
29198                 cls : 'btn-group roo-upload-cropbox-rotate-right',
29199                 action : 'rotate-right',
29200                 cn : [
29201                     {
29202                         tag : 'button',
29203                         cls : 'btn btn-default',
29204                         html : '<i class="fa fa-repeat"></i>'
29205                     }
29206                 ]
29207             }
29208         ]
29209     }
29210 });
29211
29212 /*
29213 * Licence: LGPL
29214 */
29215
29216 /**
29217  * @class Roo.bootstrap.DocumentManager
29218  * @extends Roo.bootstrap.Component
29219  * Bootstrap DocumentManager class
29220  * @cfg {String} paramName default 'imageUpload'
29221  * @cfg {String} toolTipName default 'filename'
29222  * @cfg {String} method default POST
29223  * @cfg {String} url action url
29224  * @cfg {Number} boxes number of boxes, 0 is no limit.. default 0
29225  * @cfg {Boolean} multiple multiple upload default true
29226  * @cfg {Number} thumbSize default 300
29227  * @cfg {String} fieldLabel
29228  * @cfg {Number} labelWidth default 4
29229  * @cfg {String} labelAlign (left|top) default left
29230  * @cfg {Boolean} editable (true|false) allow edit when upload a image default true
29231 * @cfg {Number} labellg set the width of label (1-12)
29232  * @cfg {Number} labelmd set the width of label (1-12)
29233  * @cfg {Number} labelsm set the width of label (1-12)
29234  * @cfg {Number} labelxs set the width of label (1-12)
29235  * 
29236  * @constructor
29237  * Create a new DocumentManager
29238  * @param {Object} config The config object
29239  */
29240
29241 Roo.bootstrap.DocumentManager = function(config){
29242     Roo.bootstrap.DocumentManager.superclass.constructor.call(this, config);
29243     
29244     this.files = [];
29245     this.delegates = [];
29246     
29247     this.addEvents({
29248         /**
29249          * @event initial
29250          * Fire when initial the DocumentManager
29251          * @param {Roo.bootstrap.DocumentManager} this
29252          */
29253         "initial" : true,
29254         /**
29255          * @event inspect
29256          * inspect selected file
29257          * @param {Roo.bootstrap.DocumentManager} this
29258          * @param {File} file
29259          */
29260         "inspect" : true,
29261         /**
29262          * @event exception
29263          * Fire when xhr load exception
29264          * @param {Roo.bootstrap.DocumentManager} this
29265          * @param {XMLHttpRequest} xhr
29266          */
29267         "exception" : true,
29268         /**
29269          * @event afterupload
29270          * Fire when xhr load exception
29271          * @param {Roo.bootstrap.DocumentManager} this
29272          * @param {XMLHttpRequest} xhr
29273          */
29274         "afterupload" : true,
29275         /**
29276          * @event prepare
29277          * prepare the form data
29278          * @param {Roo.bootstrap.DocumentManager} this
29279          * @param {Object} formData
29280          */
29281         "prepare" : true,
29282         /**
29283          * @event remove
29284          * Fire when remove the file
29285          * @param {Roo.bootstrap.DocumentManager} this
29286          * @param {Object} file
29287          */
29288         "remove" : true,
29289         /**
29290          * @event refresh
29291          * Fire after refresh the file
29292          * @param {Roo.bootstrap.DocumentManager} this
29293          */
29294         "refresh" : true,
29295         /**
29296          * @event click
29297          * Fire after click the image
29298          * @param {Roo.bootstrap.DocumentManager} this
29299          * @param {Object} file
29300          */
29301         "click" : true,
29302         /**
29303          * @event edit
29304          * Fire when upload a image and editable set to true
29305          * @param {Roo.bootstrap.DocumentManager} this
29306          * @param {Object} file
29307          */
29308         "edit" : true,
29309         /**
29310          * @event beforeselectfile
29311          * Fire before select file
29312          * @param {Roo.bootstrap.DocumentManager} this
29313          */
29314         "beforeselectfile" : true,
29315         /**
29316          * @event process
29317          * Fire before process file
29318          * @param {Roo.bootstrap.DocumentManager} this
29319          * @param {Object} file
29320          */
29321         "process" : true,
29322         /**
29323          * @event previewrendered
29324          * Fire when preview rendered
29325          * @param {Roo.bootstrap.DocumentManager} this
29326          * @param {Object} file
29327          */
29328         "previewrendered" : true,
29329         /**
29330          */
29331         "previewResize" : true
29332         
29333     });
29334 };
29335
29336 Roo.extend(Roo.bootstrap.DocumentManager, Roo.bootstrap.Component,  {
29337     
29338     boxes : 0,
29339     inputName : '',
29340     thumbSize : 300,
29341     multiple : true,
29342     files : false,
29343     method : 'POST',
29344     url : '',
29345     paramName : 'imageUpload',
29346     toolTipName : 'filename',
29347     fieldLabel : '',
29348     labelWidth : 4,
29349     labelAlign : 'left',
29350     editable : true,
29351     delegates : false,
29352     xhr : false, 
29353     
29354     labellg : 0,
29355     labelmd : 0,
29356     labelsm : 0,
29357     labelxs : 0,
29358     
29359     getAutoCreate : function()
29360     {   
29361         var managerWidget = {
29362             tag : 'div',
29363             cls : 'roo-document-manager',
29364             cn : [
29365                 {
29366                     tag : 'input',
29367                     cls : 'roo-document-manager-selector',
29368                     type : 'file'
29369                 },
29370                 {
29371                     tag : 'div',
29372                     cls : 'roo-document-manager-uploader',
29373                     cn : [
29374                         {
29375                             tag : 'div',
29376                             cls : 'roo-document-manager-upload-btn',
29377                             html : '<i class="fa fa-plus"></i>'
29378                         }
29379                     ]
29380                     
29381                 }
29382             ]
29383         };
29384         
29385         var content = [
29386             {
29387                 tag : 'div',
29388                 cls : 'column col-md-12',
29389                 cn : managerWidget
29390             }
29391         ];
29392         
29393         if(this.fieldLabel.length){
29394             
29395             content = [
29396                 {
29397                     tag : 'div',
29398                     cls : 'column col-md-12',
29399                     html : this.fieldLabel
29400                 },
29401                 {
29402                     tag : 'div',
29403                     cls : 'column col-md-12',
29404                     cn : managerWidget
29405                 }
29406             ];
29407
29408             if(this.labelAlign == 'left'){
29409                 content = [
29410                     {
29411                         tag : 'div',
29412                         cls : 'column',
29413                         html : this.fieldLabel
29414                     },
29415                     {
29416                         tag : 'div',
29417                         cls : 'column',
29418                         cn : managerWidget
29419                     }
29420                 ];
29421                 
29422                 if(this.labelWidth > 12){
29423                     content[0].style = "width: " + this.labelWidth + 'px';
29424                 }
29425
29426                 if(this.labelWidth < 13 && this.labelmd == 0){
29427                     this.labelmd = this.labelWidth;
29428                 }
29429
29430                 if(this.labellg > 0){
29431                     content[0].cls += ' col-lg-' + this.labellg;
29432                     content[1].cls += ' col-lg-' + (12 - this.labellg);
29433                 }
29434
29435                 if(this.labelmd > 0){
29436                     content[0].cls += ' col-md-' + this.labelmd;
29437                     content[1].cls += ' col-md-' + (12 - this.labelmd);
29438                 }
29439
29440                 if(this.labelsm > 0){
29441                     content[0].cls += ' col-sm-' + this.labelsm;
29442                     content[1].cls += ' col-sm-' + (12 - this.labelsm);
29443                 }
29444
29445                 if(this.labelxs > 0){
29446                     content[0].cls += ' col-xs-' + this.labelxs;
29447                     content[1].cls += ' col-xs-' + (12 - this.labelxs);
29448                 }
29449                 
29450             }
29451         }
29452         
29453         var cfg = {
29454             tag : 'div',
29455             cls : 'row clearfix',
29456             cn : content
29457         };
29458         
29459         return cfg;
29460         
29461     },
29462     
29463     initEvents : function()
29464     {
29465         this.managerEl = this.el.select('.roo-document-manager', true).first();
29466         this.managerEl.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29467         
29468         this.selectorEl = this.el.select('.roo-document-manager-selector', true).first();
29469         this.selectorEl.hide();
29470         
29471         if(this.multiple){
29472             this.selectorEl.attr('multiple', 'multiple');
29473         }
29474         
29475         this.selectorEl.on('change', this.onFileSelected, this);
29476         
29477         this.uploader = this.el.select('.roo-document-manager-uploader', true).first();
29478         this.uploader.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29479         
29480         this.uploader.on('click', this.onUploaderClick, this);
29481         
29482         this.renderProgressDialog();
29483         
29484         var _this = this;
29485         
29486         window.addEventListener("resize", function() { _this.refresh(); } );
29487         
29488         this.fireEvent('initial', this);
29489     },
29490     
29491     renderProgressDialog : function()
29492     {
29493         var _this = this;
29494         
29495         this.progressDialog = new Roo.bootstrap.Modal({
29496             cls : 'roo-document-manager-progress-dialog',
29497             allow_close : false,
29498             animate : false,
29499             title : '',
29500             buttons : [
29501                 {
29502                     name  :'cancel',
29503                     weight : 'danger',
29504                     html : 'Cancel'
29505                 }
29506             ], 
29507             listeners : { 
29508                 btnclick : function() {
29509                     _this.uploadCancel();
29510                     this.hide();
29511                 }
29512             }
29513         });
29514          
29515         this.progressDialog.render(Roo.get(document.body));
29516          
29517         this.progress = new Roo.bootstrap.Progress({
29518             cls : 'roo-document-manager-progress',
29519             active : true,
29520             striped : true
29521         });
29522         
29523         this.progress.render(this.progressDialog.getChildContainer());
29524         
29525         this.progressBar = new Roo.bootstrap.ProgressBar({
29526             cls : 'roo-document-manager-progress-bar',
29527             aria_valuenow : 0,
29528             aria_valuemin : 0,
29529             aria_valuemax : 12,
29530             panel : 'success'
29531         });
29532         
29533         this.progressBar.render(this.progress.getChildContainer());
29534     },
29535     
29536     onUploaderClick : function(e)
29537     {
29538         e.preventDefault();
29539      
29540         if(this.fireEvent('beforeselectfile', this) != false){
29541             this.selectorEl.dom.click();
29542         }
29543         
29544     },
29545     
29546     onFileSelected : function(e)
29547     {
29548         e.preventDefault();
29549         
29550         if(typeof(this.selectorEl.dom.files) == 'undefined' || !this.selectorEl.dom.files.length){
29551             return;
29552         }
29553         
29554         Roo.each(this.selectorEl.dom.files, function(file){
29555             if(this.fireEvent('inspect', this, file) != false){
29556                 this.files.push(file);
29557             }
29558         }, this);
29559         
29560         this.queue();
29561         
29562     },
29563     
29564     queue : function()
29565     {
29566         this.selectorEl.dom.value = '';
29567         
29568         if(!this.files || !this.files.length){
29569             return;
29570         }
29571         
29572         if(this.boxes > 0 && this.files.length > this.boxes){
29573             this.files = this.files.slice(0, this.boxes);
29574         }
29575         
29576         this.uploader.show();
29577         
29578         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29579             this.uploader.hide();
29580         }
29581         
29582         var _this = this;
29583         
29584         var files = [];
29585         
29586         var docs = [];
29587         
29588         Roo.each(this.files, function(file){
29589             
29590             if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29591                 var f = this.renderPreview(file);
29592                 files.push(f);
29593                 return;
29594             }
29595             
29596             if(file.type.indexOf('image') != -1){
29597                 this.delegates.push(
29598                     (function(){
29599                         _this.process(file);
29600                     }).createDelegate(this)
29601                 );
29602         
29603                 return;
29604             }
29605             
29606             docs.push(
29607                 (function(){
29608                     _this.process(file);
29609                 }).createDelegate(this)
29610             );
29611             
29612         }, this);
29613         
29614         this.files = files;
29615         
29616         this.delegates = this.delegates.concat(docs);
29617         
29618         if(!this.delegates.length){
29619             this.refresh();
29620             return;
29621         }
29622         
29623         this.progressBar.aria_valuemax = this.delegates.length;
29624         
29625         this.arrange();
29626         
29627         return;
29628     },
29629     
29630     arrange : function()
29631     {
29632         if(!this.delegates.length){
29633             this.progressDialog.hide();
29634             this.refresh();
29635             return;
29636         }
29637         
29638         var delegate = this.delegates.shift();
29639         
29640         this.progressDialog.show();
29641         
29642         this.progressDialog.setTitle((this.progressBar.aria_valuemax - this.delegates.length) + ' / ' + this.progressBar.aria_valuemax);
29643         
29644         this.progressBar.update(this.progressBar.aria_valuemax - this.delegates.length);
29645         
29646         delegate();
29647     },
29648     
29649     refresh : function()
29650     {
29651         this.uploader.show();
29652         
29653         if(this.boxes > 0 && this.files.length > this.boxes - 1){
29654             this.uploader.hide();
29655         }
29656         
29657         Roo.isTouch ? this.closable(false) : this.closable(true);
29658         
29659         this.fireEvent('refresh', this);
29660     },
29661     
29662     onRemove : function(e, el, o)
29663     {
29664         e.preventDefault();
29665         
29666         this.fireEvent('remove', this, o);
29667         
29668     },
29669     
29670     remove : function(o)
29671     {
29672         var files = [];
29673         
29674         Roo.each(this.files, function(file){
29675             if(typeof(file.id) == 'undefined' || file.id * 1 < 1 || file.id != o.id){
29676                 files.push(file);
29677                 return;
29678             }
29679
29680             o.target.remove();
29681
29682         }, this);
29683         
29684         this.files = files;
29685         
29686         this.refresh();
29687     },
29688     
29689     clear : function()
29690     {
29691         Roo.each(this.files, function(file){
29692             if(!file.target){
29693                 return;
29694             }
29695             
29696             file.target.remove();
29697
29698         }, this);
29699         
29700         this.files = [];
29701         
29702         this.refresh();
29703     },
29704     
29705     onClick : function(e, el, o)
29706     {
29707         e.preventDefault();
29708         
29709         this.fireEvent('click', this, o);
29710         
29711     },
29712     
29713     closable : function(closable)
29714     {
29715         Roo.each(this.managerEl.select('.roo-document-manager-preview > button.close', true).elements, function(el){
29716             
29717             el.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
29718             
29719             if(closable){
29720                 el.show();
29721                 return;
29722             }
29723             
29724             el.hide();
29725             
29726         }, this);
29727     },
29728     
29729     xhrOnLoad : function(xhr)
29730     {
29731         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29732             el.remove();
29733         }, this);
29734         
29735         if (xhr.readyState !== 4) {
29736             this.arrange();
29737             this.fireEvent('exception', this, xhr);
29738             return;
29739         }
29740
29741         var response = Roo.decode(xhr.responseText);
29742         
29743         if(!response.success){
29744             this.arrange();
29745             this.fireEvent('exception', this, xhr);
29746             return;
29747         }
29748         
29749         var file = this.renderPreview(response.data);
29750         
29751         this.files.push(file);
29752         
29753         this.arrange();
29754         
29755         this.fireEvent('afterupload', this, xhr);
29756         
29757     },
29758     
29759     xhrOnError : function(xhr)
29760     {
29761         Roo.log('xhr on error');
29762         
29763         var response = Roo.decode(xhr.responseText);
29764           
29765         Roo.log(response);
29766         
29767         this.arrange();
29768     },
29769     
29770     process : function(file)
29771     {
29772         if(this.fireEvent('process', this, file) !== false){
29773             if(this.editable && file.type.indexOf('image') != -1){
29774                 this.fireEvent('edit', this, file);
29775                 return;
29776             }
29777
29778             this.uploadStart(file, false);
29779
29780             return;
29781         }
29782         
29783     },
29784     
29785     uploadStart : function(file, crop)
29786     {
29787         this.xhr = new XMLHttpRequest();
29788         
29789         if(typeof(file.id) != 'undefined' && file.id * 1 > 0){
29790             this.arrange();
29791             return;
29792         }
29793         
29794         file.xhr = this.xhr;
29795             
29796         this.managerEl.createChild({
29797             tag : 'div',
29798             cls : 'roo-document-manager-loading',
29799             cn : [
29800                 {
29801                     tag : 'div',
29802                     tooltip : file.name,
29803                     cls : 'roo-document-manager-thumb',
29804                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29805                 }
29806             ]
29807
29808         });
29809
29810         this.xhr.open(this.method, this.url, true);
29811         
29812         var headers = {
29813             "Accept": "application/json",
29814             "Cache-Control": "no-cache",
29815             "X-Requested-With": "XMLHttpRequest"
29816         };
29817         
29818         for (var headerName in headers) {
29819             var headerValue = headers[headerName];
29820             if (headerValue) {
29821                 this.xhr.setRequestHeader(headerName, headerValue);
29822             }
29823         }
29824         
29825         var _this = this;
29826         
29827         this.xhr.onload = function()
29828         {
29829             _this.xhrOnLoad(_this.xhr);
29830         }
29831         
29832         this.xhr.onerror = function()
29833         {
29834             _this.xhrOnError(_this.xhr);
29835         }
29836         
29837         var formData = new FormData();
29838
29839         formData.append('returnHTML', 'NO');
29840         
29841         if(crop){
29842             formData.append('crop', crop);
29843         }
29844         
29845         formData.append(this.paramName, file, file.name);
29846         
29847         var options = {
29848             file : file, 
29849             manually : false
29850         };
29851         
29852         if(this.fireEvent('prepare', this, formData, options) != false){
29853             
29854             if(options.manually){
29855                 return;
29856             }
29857             
29858             this.xhr.send(formData);
29859             return;
29860         };
29861         
29862         this.uploadCancel();
29863     },
29864     
29865     uploadCancel : function()
29866     {
29867         if (this.xhr) {
29868             this.xhr.abort();
29869         }
29870         
29871         this.delegates = [];
29872         
29873         Roo.each(this.managerEl.select('.roo-document-manager-loading', true).elements, function(el){
29874             el.remove();
29875         }, this);
29876         
29877         this.arrange();
29878     },
29879     
29880     renderPreview : function(file)
29881     {
29882         if(typeof(file.target) != 'undefined' && file.target){
29883             return file;
29884         }
29885         
29886         var img_src = encodeURI(baseURL +'/Images/Thumb/' + this.thumbSize + '/' + file.id + '/' + file.filename);
29887         
29888         var previewEl = this.managerEl.createChild({
29889             tag : 'div',
29890             cls : 'roo-document-manager-preview',
29891             cn : [
29892                 {
29893                     tag : 'div',
29894                     tooltip : file[this.toolTipName],
29895                     cls : 'roo-document-manager-thumb',
29896                     html : '<img tooltip="' + file[this.toolTipName] + '" src="' + img_src + '">'
29897                 },
29898                 {
29899                     tag : 'button',
29900                     cls : 'close',
29901                     html : '<i class="fa fa-times-circle"></i>'
29902                 }
29903             ]
29904         });
29905
29906         var close = previewEl.select('button.close', true).first();
29907
29908         close.on('click', this.onRemove, this, file);
29909
29910         file.target = previewEl;
29911
29912         var image = previewEl.select('img', true).first();
29913         
29914         var _this = this;
29915         
29916         image.dom.addEventListener("load", function(){ _this.onPreviewLoad(file, image); });
29917         
29918         image.on('click', this.onClick, this, file);
29919         
29920         this.fireEvent('previewrendered', this, file);
29921         
29922         return file;
29923         
29924     },
29925     
29926     onPreviewLoad : function(file, image)
29927     {
29928         if(typeof(file.target) == 'undefined' || !file.target){
29929             return;
29930         }
29931         
29932         var width = image.dom.naturalWidth || image.dom.width;
29933         var height = image.dom.naturalHeight || image.dom.height;
29934         
29935         if(!this.previewResize) {
29936             return;
29937         }
29938         
29939         if(width > height){
29940             file.target.addClass('wide');
29941             return;
29942         }
29943         
29944         file.target.addClass('tall');
29945         return;
29946         
29947     },
29948     
29949     uploadFromSource : function(file, crop)
29950     {
29951         this.xhr = new XMLHttpRequest();
29952         
29953         this.managerEl.createChild({
29954             tag : 'div',
29955             cls : 'roo-document-manager-loading',
29956             cn : [
29957                 {
29958                     tag : 'div',
29959                     tooltip : file.name,
29960                     cls : 'roo-document-manager-thumb',
29961                     html : '<i class="fa fa-circle-o-notch fa-spin"></i>'
29962                 }
29963             ]
29964
29965         });
29966
29967         this.xhr.open(this.method, this.url, true);
29968         
29969         var headers = {
29970             "Accept": "application/json",
29971             "Cache-Control": "no-cache",
29972             "X-Requested-With": "XMLHttpRequest"
29973         };
29974         
29975         for (var headerName in headers) {
29976             var headerValue = headers[headerName];
29977             if (headerValue) {
29978                 this.xhr.setRequestHeader(headerName, headerValue);
29979             }
29980         }
29981         
29982         var _this = this;
29983         
29984         this.xhr.onload = function()
29985         {
29986             _this.xhrOnLoad(_this.xhr);
29987         }
29988         
29989         this.xhr.onerror = function()
29990         {
29991             _this.xhrOnError(_this.xhr);
29992         }
29993         
29994         var formData = new FormData();
29995
29996         formData.append('returnHTML', 'NO');
29997         
29998         formData.append('crop', crop);
29999         
30000         if(typeof(file.filename) != 'undefined'){
30001             formData.append('filename', file.filename);
30002         }
30003         
30004         if(typeof(file.mimetype) != 'undefined'){
30005             formData.append('mimetype', file.mimetype);
30006         }
30007         
30008         Roo.log(formData);
30009         
30010         if(this.fireEvent('prepare', this, formData) != false){
30011             this.xhr.send(formData);
30012         };
30013     }
30014 });
30015
30016 /*
30017 * Licence: LGPL
30018 */
30019
30020 /**
30021  * @class Roo.bootstrap.DocumentViewer
30022  * @extends Roo.bootstrap.Component
30023  * Bootstrap DocumentViewer class
30024  * @cfg {Boolean} showDownload (true|false) show download button (default true)
30025  * @cfg {Boolean} showTrash (true|false) show trash button (default true)
30026  * 
30027  * @constructor
30028  * Create a new DocumentViewer
30029  * @param {Object} config The config object
30030  */
30031
30032 Roo.bootstrap.DocumentViewer = function(config){
30033     Roo.bootstrap.DocumentViewer.superclass.constructor.call(this, config);
30034     
30035     this.addEvents({
30036         /**
30037          * @event initial
30038          * Fire after initEvent
30039          * @param {Roo.bootstrap.DocumentViewer} this
30040          */
30041         "initial" : true,
30042         /**
30043          * @event click
30044          * Fire after click
30045          * @param {Roo.bootstrap.DocumentViewer} this
30046          */
30047         "click" : true,
30048         /**
30049          * @event download
30050          * Fire after download button
30051          * @param {Roo.bootstrap.DocumentViewer} this
30052          */
30053         "download" : true,
30054         /**
30055          * @event trash
30056          * Fire after trash button
30057          * @param {Roo.bootstrap.DocumentViewer} this
30058          */
30059         "trash" : true
30060         
30061     });
30062 };
30063
30064 Roo.extend(Roo.bootstrap.DocumentViewer, Roo.bootstrap.Component,  {
30065     
30066     showDownload : true,
30067     
30068     showTrash : true,
30069     
30070     getAutoCreate : function()
30071     {
30072         var cfg = {
30073             tag : 'div',
30074             cls : 'roo-document-viewer',
30075             cn : [
30076                 {
30077                     tag : 'div',
30078                     cls : 'roo-document-viewer-body',
30079                     cn : [
30080                         {
30081                             tag : 'div',
30082                             cls : 'roo-document-viewer-thumb',
30083                             cn : [
30084                                 {
30085                                     tag : 'img',
30086                                     cls : 'roo-document-viewer-image'
30087                                 }
30088                             ]
30089                         }
30090                     ]
30091                 },
30092                 {
30093                     tag : 'div',
30094                     cls : 'roo-document-viewer-footer',
30095                     cn : {
30096                         tag : 'div',
30097                         cls : 'btn-group btn-group-justified roo-document-viewer-btn-group',
30098                         cn : [
30099                             {
30100                                 tag : 'div',
30101                                 cls : 'btn-group roo-document-viewer-download',
30102                                 cn : [
30103                                     {
30104                                         tag : 'button',
30105                                         cls : 'btn btn-default',
30106                                         html : '<i class="fa fa-download"></i>'
30107                                     }
30108                                 ]
30109                             },
30110                             {
30111                                 tag : 'div',
30112                                 cls : 'btn-group roo-document-viewer-trash',
30113                                 cn : [
30114                                     {
30115                                         tag : 'button',
30116                                         cls : 'btn btn-default',
30117                                         html : '<i class="fa fa-trash"></i>'
30118                                     }
30119                                 ]
30120                             }
30121                         ]
30122                     }
30123                 }
30124             ]
30125         };
30126         
30127         return cfg;
30128     },
30129     
30130     initEvents : function()
30131     {
30132         this.bodyEl = this.el.select('.roo-document-viewer-body', true).first();
30133         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
30134         
30135         this.thumbEl = this.el.select('.roo-document-viewer-thumb', true).first();
30136         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
30137         
30138         this.imageEl = this.el.select('.roo-document-viewer-image', true).first();
30139         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
30140         
30141         this.footerEl = this.el.select('.roo-document-viewer-footer', true).first();
30142         this.footerEl.setVisibilityMode(Roo.Element.DISPLAY);
30143         
30144         this.downloadBtn = this.el.select('.roo-document-viewer-download', true).first();
30145         this.downloadBtn.setVisibilityMode(Roo.Element.DISPLAY);
30146         
30147         this.trashBtn = this.el.select('.roo-document-viewer-trash', true).first();
30148         this.trashBtn.setVisibilityMode(Roo.Element.DISPLAY);
30149         
30150         this.bodyEl.on('click', this.onClick, this);
30151         this.downloadBtn.on('click', this.onDownload, this);
30152         this.trashBtn.on('click', this.onTrash, this);
30153         
30154         this.downloadBtn.hide();
30155         this.trashBtn.hide();
30156         
30157         if(this.showDownload){
30158             this.downloadBtn.show();
30159         }
30160         
30161         if(this.showTrash){
30162             this.trashBtn.show();
30163         }
30164         
30165         if(!this.showDownload && !this.showTrash) {
30166             this.footerEl.hide();
30167         }
30168         
30169     },
30170     
30171     initial : function()
30172     {
30173         this.fireEvent('initial', this);
30174         
30175     },
30176     
30177     onClick : function(e)
30178     {
30179         e.preventDefault();
30180         
30181         this.fireEvent('click', this);
30182     },
30183     
30184     onDownload : function(e)
30185     {
30186         e.preventDefault();
30187         
30188         this.fireEvent('download', this);
30189     },
30190     
30191     onTrash : function(e)
30192     {
30193         e.preventDefault();
30194         
30195         this.fireEvent('trash', this);
30196     }
30197     
30198 });
30199 /*
30200  * - LGPL
30201  *
30202  * nav progress bar
30203  * 
30204  */
30205
30206 /**
30207  * @class Roo.bootstrap.NavProgressBar
30208  * @extends Roo.bootstrap.Component
30209  * Bootstrap NavProgressBar class
30210  * 
30211  * @constructor
30212  * Create a new nav progress bar
30213  * @param {Object} config The config object
30214  */
30215
30216 Roo.bootstrap.NavProgressBar = function(config){
30217     Roo.bootstrap.NavProgressBar.superclass.constructor.call(this, config);
30218
30219     this.bullets = this.bullets || [];
30220    
30221 //    Roo.bootstrap.NavProgressBar.register(this);
30222      this.addEvents({
30223         /**
30224              * @event changed
30225              * Fires when the active item changes
30226              * @param {Roo.bootstrap.NavProgressBar} this
30227              * @param {Roo.bootstrap.NavProgressItem} selected The item selected
30228              * @param {Roo.bootstrap.NavProgressItem} prev The previously selected item 
30229          */
30230         'changed': true
30231      });
30232     
30233 };
30234
30235 Roo.extend(Roo.bootstrap.NavProgressBar, Roo.bootstrap.Component,  {
30236     
30237     bullets : [],
30238     barItems : [],
30239     
30240     getAutoCreate : function()
30241     {
30242         var cfg = Roo.apply({}, Roo.bootstrap.NavProgressBar.superclass.getAutoCreate.call(this));
30243         
30244         cfg = {
30245             tag : 'div',
30246             cls : 'roo-navigation-bar-group',
30247             cn : [
30248                 {
30249                     tag : 'div',
30250                     cls : 'roo-navigation-top-bar'
30251                 },
30252                 {
30253                     tag : 'div',
30254                     cls : 'roo-navigation-bullets-bar',
30255                     cn : [
30256                         {
30257                             tag : 'ul',
30258                             cls : 'roo-navigation-bar'
30259                         }
30260                     ]
30261                 },
30262                 
30263                 {
30264                     tag : 'div',
30265                     cls : 'roo-navigation-bottom-bar'
30266                 }
30267             ]
30268             
30269         };
30270         
30271         return cfg;
30272         
30273     },
30274     
30275     initEvents: function() 
30276     {
30277         
30278     },
30279     
30280     onRender : function(ct, position) 
30281     {
30282         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30283         
30284         if(this.bullets.length){
30285             Roo.each(this.bullets, function(b){
30286                this.addItem(b);
30287             }, this);
30288         }
30289         
30290         this.format();
30291         
30292     },
30293     
30294     addItem : function(cfg)
30295     {
30296         var item = new Roo.bootstrap.NavProgressItem(cfg);
30297         
30298         item.parentId = this.id;
30299         item.render(this.el.select('.roo-navigation-bar', true).first(), null);
30300         
30301         if(cfg.html){
30302             var top = new Roo.bootstrap.Element({
30303                 tag : 'div',
30304                 cls : 'roo-navigation-bar-text'
30305             });
30306             
30307             var bottom = new Roo.bootstrap.Element({
30308                 tag : 'div',
30309                 cls : 'roo-navigation-bar-text'
30310             });
30311             
30312             top.onRender(this.el.select('.roo-navigation-top-bar', true).first(), null);
30313             bottom.onRender(this.el.select('.roo-navigation-bottom-bar', true).first(), null);
30314             
30315             var topText = new Roo.bootstrap.Element({
30316                 tag : 'span',
30317                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? cfg.html : ''
30318             });
30319             
30320             var bottomText = new Roo.bootstrap.Element({
30321                 tag : 'span',
30322                 html : (typeof(cfg.position) != 'undefined' && cfg.position == 'top') ? '' : cfg.html
30323             });
30324             
30325             topText.onRender(top.el, null);
30326             bottomText.onRender(bottom.el, null);
30327             
30328             item.topEl = top;
30329             item.bottomEl = bottom;
30330         }
30331         
30332         this.barItems.push(item);
30333         
30334         return item;
30335     },
30336     
30337     getActive : function()
30338     {
30339         var active = false;
30340         
30341         Roo.each(this.barItems, function(v){
30342             
30343             if (!v.isActive()) {
30344                 return;
30345             }
30346             
30347             active = v;
30348             return false;
30349             
30350         });
30351         
30352         return active;
30353     },
30354     
30355     setActiveItem : function(item)
30356     {
30357         var prev = false;
30358         
30359         Roo.each(this.barItems, function(v){
30360             if (v.rid == item.rid) {
30361                 return ;
30362             }
30363             
30364             if (v.isActive()) {
30365                 v.setActive(false);
30366                 prev = v;
30367             }
30368         });
30369
30370         item.setActive(true);
30371         
30372         this.fireEvent('changed', this, item, prev);
30373     },
30374     
30375     getBarItem: function(rid)
30376     {
30377         var ret = false;
30378         
30379         Roo.each(this.barItems, function(e) {
30380             if (e.rid != rid) {
30381                 return;
30382             }
30383             
30384             ret =  e;
30385             return false;
30386         });
30387         
30388         return ret;
30389     },
30390     
30391     indexOfItem : function(item)
30392     {
30393         var index = false;
30394         
30395         Roo.each(this.barItems, function(v, i){
30396             
30397             if (v.rid != item.rid) {
30398                 return;
30399             }
30400             
30401             index = i;
30402             return false
30403         });
30404         
30405         return index;
30406     },
30407     
30408     setActiveNext : function()
30409     {
30410         var i = this.indexOfItem(this.getActive());
30411         
30412         if (i > this.barItems.length) {
30413             return;
30414         }
30415         
30416         this.setActiveItem(this.barItems[i+1]);
30417     },
30418     
30419     setActivePrev : function()
30420     {
30421         var i = this.indexOfItem(this.getActive());
30422         
30423         if (i  < 1) {
30424             return;
30425         }
30426         
30427         this.setActiveItem(this.barItems[i-1]);
30428     },
30429     
30430     format : function()
30431     {
30432         if(!this.barItems.length){
30433             return;
30434         }
30435      
30436         var width = 100 / this.barItems.length;
30437         
30438         Roo.each(this.barItems, function(i){
30439             i.el.setStyle('width', width + '%');
30440             i.topEl.el.setStyle('width', width + '%');
30441             i.bottomEl.el.setStyle('width', width + '%');
30442         }, this);
30443         
30444     }
30445     
30446 });
30447 /*
30448  * - LGPL
30449  *
30450  * Nav Progress Item
30451  * 
30452  */
30453
30454 /**
30455  * @class Roo.bootstrap.NavProgressItem
30456  * @extends Roo.bootstrap.Component
30457  * Bootstrap NavProgressItem class
30458  * @cfg {String} rid the reference id
30459  * @cfg {Boolean} active (true|false) Is item active default false
30460  * @cfg {Boolean} disabled (true|false) Is item active default false
30461  * @cfg {String} html
30462  * @cfg {String} position (top|bottom) text position default bottom
30463  * @cfg {String} icon show icon instead of number
30464  * 
30465  * @constructor
30466  * Create a new NavProgressItem
30467  * @param {Object} config The config object
30468  */
30469 Roo.bootstrap.NavProgressItem = function(config){
30470     Roo.bootstrap.NavProgressItem.superclass.constructor.call(this, config);
30471     this.addEvents({
30472         // raw events
30473         /**
30474          * @event click
30475          * The raw click event for the entire grid.
30476          * @param {Roo.bootstrap.NavProgressItem} this
30477          * @param {Roo.EventObject} e
30478          */
30479         "click" : true
30480     });
30481    
30482 };
30483
30484 Roo.extend(Roo.bootstrap.NavProgressItem, Roo.bootstrap.Component,  {
30485     
30486     rid : '',
30487     active : false,
30488     disabled : false,
30489     html : '',
30490     position : 'bottom',
30491     icon : false,
30492     
30493     getAutoCreate : function()
30494     {
30495         var iconCls = 'roo-navigation-bar-item-icon';
30496         
30497         iconCls += ((this.icon) ? (' ' + this.icon) : (' step-number')) ;
30498         
30499         var cfg = {
30500             tag: 'li',
30501             cls: 'roo-navigation-bar-item',
30502             cn : [
30503                 {
30504                     tag : 'i',
30505                     cls : iconCls
30506                 }
30507             ]
30508         };
30509         
30510         if(this.active){
30511             cfg.cls += ' active';
30512         }
30513         if(this.disabled){
30514             cfg.cls += ' disabled';
30515         }
30516         
30517         return cfg;
30518     },
30519     
30520     disable : function()
30521     {
30522         this.setDisabled(true);
30523     },
30524     
30525     enable : function()
30526     {
30527         this.setDisabled(false);
30528     },
30529     
30530     initEvents: function() 
30531     {
30532         this.iconEl = this.el.select('.roo-navigation-bar-item-icon', true).first();
30533         
30534         this.iconEl.on('click', this.onClick, this);
30535     },
30536     
30537     onClick : function(e)
30538     {
30539         e.preventDefault();
30540         
30541         if(this.disabled){
30542             return;
30543         }
30544         
30545         if(this.fireEvent('click', this, e) === false){
30546             return;
30547         };
30548         
30549         this.parent().setActiveItem(this);
30550     },
30551     
30552     isActive: function () 
30553     {
30554         return this.active;
30555     },
30556     
30557     setActive : function(state)
30558     {
30559         if(this.active == state){
30560             return;
30561         }
30562         
30563         this.active = state;
30564         
30565         if (state) {
30566             this.el.addClass('active');
30567             return;
30568         }
30569         
30570         this.el.removeClass('active');
30571         
30572         return;
30573     },
30574     
30575     setDisabled : function(state)
30576     {
30577         if(this.disabled == state){
30578             return;
30579         }
30580         
30581         this.disabled = state;
30582         
30583         if (state) {
30584             this.el.addClass('disabled');
30585             return;
30586         }
30587         
30588         this.el.removeClass('disabled');
30589     },
30590     
30591     tooltipEl : function()
30592     {
30593         return this.el.select('.roo-navigation-bar-item-icon', true).first();;
30594     }
30595 });
30596  
30597
30598  /*
30599  * - LGPL
30600  *
30601  * FieldLabel
30602  * 
30603  */
30604
30605 /**
30606  * @class Roo.bootstrap.FieldLabel
30607  * @extends Roo.bootstrap.Component
30608  * Bootstrap FieldLabel class
30609  * @cfg {String} html contents of the element
30610  * @cfg {String} tag tag of the element default label
30611  * @cfg {String} cls class of the element
30612  * @cfg {String} target label target 
30613  * @cfg {Boolean} allowBlank (true|false) target allowBlank default true
30614  * @cfg {String} invalidClass DEPRICATED - BS4 uses is-invalid
30615  * @cfg {String} validClass DEPRICATED - BS4 uses is-valid
30616  * @cfg {String} iconTooltip default "This field is required"
30617  * @cfg {String} indicatorpos (left|right) default left
30618  * 
30619  * @constructor
30620  * Create a new FieldLabel
30621  * @param {Object} config The config object
30622  */
30623
30624 Roo.bootstrap.FieldLabel = function(config){
30625     Roo.bootstrap.Element.superclass.constructor.call(this, config);
30626     
30627     this.addEvents({
30628             /**
30629              * @event invalid
30630              * Fires after the field has been marked as invalid.
30631              * @param {Roo.form.FieldLabel} this
30632              * @param {String} msg The validation message
30633              */
30634             invalid : true,
30635             /**
30636              * @event valid
30637              * Fires after the field has been validated with no errors.
30638              * @param {Roo.form.FieldLabel} this
30639              */
30640             valid : true
30641         });
30642 };
30643
30644 Roo.extend(Roo.bootstrap.FieldLabel, Roo.bootstrap.Component,  {
30645     
30646     tag: 'label',
30647     cls: '',
30648     html: '',
30649     target: '',
30650     allowBlank : true,
30651     invalidClass : 'has-warning',
30652     validClass : 'has-success',
30653     iconTooltip : 'This field is required',
30654     indicatorpos : 'left',
30655     
30656     getAutoCreate : function(){
30657         
30658         var cls = "";
30659         if (!this.allowBlank) {
30660             cls  = "visible";
30661         }
30662         
30663         var cfg = {
30664             tag : this.tag,
30665             cls : 'roo-bootstrap-field-label ' + this.cls,
30666             for : this.target,
30667             cn : [
30668                 {
30669                     tag : 'i',
30670                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star ' + cls,
30671                     tooltip : this.iconTooltip
30672                 },
30673                 {
30674                     tag : 'span',
30675                     html : this.html
30676                 }
30677             ] 
30678         };
30679         
30680         if(this.indicatorpos == 'right'){
30681             var cfg = {
30682                 tag : this.tag,
30683                 cls : 'roo-bootstrap-field-label ' + this.cls,
30684                 for : this.target,
30685                 cn : [
30686                     {
30687                         tag : 'span',
30688                         html : this.html
30689                     },
30690                     {
30691                         tag : 'i',
30692                         cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star '+ cls,
30693                         tooltip : this.iconTooltip
30694                     }
30695                 ] 
30696             };
30697         }
30698         
30699         return cfg;
30700     },
30701     
30702     initEvents: function() 
30703     {
30704         Roo.bootstrap.Element.superclass.initEvents.call(this);
30705         
30706         this.indicator = this.indicatorEl();
30707         
30708         if(this.indicator){
30709             this.indicator.removeClass('visible');
30710             this.indicator.addClass('invisible');
30711         }
30712         
30713         Roo.bootstrap.FieldLabel.register(this);
30714     },
30715     
30716     indicatorEl : function()
30717     {
30718         var indicator = this.el.select('i.roo-required-indicator',true).first();
30719         
30720         if(!indicator){
30721             return false;
30722         }
30723         
30724         return indicator;
30725         
30726     },
30727     
30728     /**
30729      * Mark this field as valid
30730      */
30731     markValid : function()
30732     {
30733         if(this.indicator){
30734             this.indicator.removeClass('visible');
30735             this.indicator.addClass('invisible');
30736         }
30737         if (Roo.bootstrap.version == 3) {
30738             this.el.removeClass(this.invalidClass);
30739             this.el.addClass(this.validClass);
30740         } else {
30741             this.el.removeClass('is-invalid');
30742             this.el.addClass('is-valid');
30743         }
30744         
30745         
30746         this.fireEvent('valid', this);
30747     },
30748     
30749     /**
30750      * Mark this field as invalid
30751      * @param {String} msg The validation message
30752      */
30753     markInvalid : function(msg)
30754     {
30755         if(this.indicator){
30756             this.indicator.removeClass('invisible');
30757             this.indicator.addClass('visible');
30758         }
30759           if (Roo.bootstrap.version == 3) {
30760             this.el.removeClass(this.validClass);
30761             this.el.addClass(this.invalidClass);
30762         } else {
30763             this.el.removeClass('is-valid');
30764             this.el.addClass('is-invalid');
30765         }
30766         
30767         
30768         this.fireEvent('invalid', this, msg);
30769     }
30770     
30771    
30772 });
30773
30774 Roo.apply(Roo.bootstrap.FieldLabel, {
30775     
30776     groups: {},
30777     
30778      /**
30779     * register a FieldLabel Group
30780     * @param {Roo.bootstrap.FieldLabel} the FieldLabel to add
30781     */
30782     register : function(label)
30783     {
30784         if(this.groups.hasOwnProperty(label.target)){
30785             return;
30786         }
30787      
30788         this.groups[label.target] = label;
30789         
30790     },
30791     /**
30792     * fetch a FieldLabel Group based on the target
30793     * @param {string} target
30794     * @returns {Roo.bootstrap.FieldLabel} the CheckBox group
30795     */
30796     get: function(target) {
30797         if (typeof(this.groups[target]) == 'undefined') {
30798             return false;
30799         }
30800         
30801         return this.groups[target] ;
30802     }
30803 });
30804
30805  
30806
30807  /*
30808  * - LGPL
30809  *
30810  * page DateSplitField.
30811  * 
30812  */
30813
30814
30815 /**
30816  * @class Roo.bootstrap.DateSplitField
30817  * @extends Roo.bootstrap.Component
30818  * Bootstrap DateSplitField class
30819  * @cfg {string} fieldLabel - the label associated
30820  * @cfg {Number} labelWidth set the width of label (0-12)
30821  * @cfg {String} labelAlign (top|left)
30822  * @cfg {Boolean} dayAllowBlank (true|false) default false
30823  * @cfg {Boolean} monthAllowBlank (true|false) default false
30824  * @cfg {Boolean} yearAllowBlank (true|false) default false
30825  * @cfg {string} dayPlaceholder 
30826  * @cfg {string} monthPlaceholder
30827  * @cfg {string} yearPlaceholder
30828  * @cfg {string} dayFormat default 'd'
30829  * @cfg {string} monthFormat default 'm'
30830  * @cfg {string} yearFormat default 'Y'
30831  * @cfg {Number} labellg set the width of label (1-12)
30832  * @cfg {Number} labelmd set the width of label (1-12)
30833  * @cfg {Number} labelsm set the width of label (1-12)
30834  * @cfg {Number} labelxs set the width of label (1-12)
30835
30836  *     
30837  * @constructor
30838  * Create a new DateSplitField
30839  * @param {Object} config The config object
30840  */
30841
30842 Roo.bootstrap.DateSplitField = function(config){
30843     Roo.bootstrap.DateSplitField.superclass.constructor.call(this, config);
30844     
30845     this.addEvents({
30846         // raw events
30847          /**
30848          * @event years
30849          * getting the data of years
30850          * @param {Roo.bootstrap.DateSplitField} this
30851          * @param {Object} years
30852          */
30853         "years" : true,
30854         /**
30855          * @event days
30856          * getting the data of days
30857          * @param {Roo.bootstrap.DateSplitField} this
30858          * @param {Object} days
30859          */
30860         "days" : true,
30861         /**
30862          * @event invalid
30863          * Fires after the field has been marked as invalid.
30864          * @param {Roo.form.Field} this
30865          * @param {String} msg The validation message
30866          */
30867         invalid : true,
30868        /**
30869          * @event valid
30870          * Fires after the field has been validated with no errors.
30871          * @param {Roo.form.Field} this
30872          */
30873         valid : true
30874     });
30875 };
30876
30877 Roo.extend(Roo.bootstrap.DateSplitField, Roo.bootstrap.Component,  {
30878     
30879     fieldLabel : '',
30880     labelAlign : 'top',
30881     labelWidth : 3,
30882     dayAllowBlank : false,
30883     monthAllowBlank : false,
30884     yearAllowBlank : false,
30885     dayPlaceholder : '',
30886     monthPlaceholder : '',
30887     yearPlaceholder : '',
30888     dayFormat : 'd',
30889     monthFormat : 'm',
30890     yearFormat : 'Y',
30891     isFormField : true,
30892     labellg : 0,
30893     labelmd : 0,
30894     labelsm : 0,
30895     labelxs : 0,
30896     
30897     getAutoCreate : function()
30898     {
30899         var cfg = {
30900             tag : 'div',
30901             cls : 'row roo-date-split-field-group',
30902             cn : [
30903                 {
30904                     tag : 'input',
30905                     type : 'hidden',
30906                     cls : 'form-hidden-field roo-date-split-field-group-value',
30907                     name : this.name
30908                 }
30909             ]
30910         };
30911         
30912         var labelCls = 'col-md-12';
30913         var contentCls = 'col-md-4';
30914         
30915         if(this.fieldLabel){
30916             
30917             var label = {
30918                 tag : 'div',
30919                 cls : 'column roo-date-split-field-label col-md-' + ((this.labelAlign == 'top') ? '12' : this.labelWidth),
30920                 cn : [
30921                     {
30922                         tag : 'label',
30923                         html : this.fieldLabel
30924                     }
30925                 ]
30926             };
30927             
30928             if(this.labelAlign == 'left'){
30929             
30930                 if(this.labelWidth > 12){
30931                     label.style = "width: " + this.labelWidth + 'px';
30932                 }
30933
30934                 if(this.labelWidth < 13 && this.labelmd == 0){
30935                     this.labelmd = this.labelWidth;
30936                 }
30937
30938                 if(this.labellg > 0){
30939                     labelCls = ' col-lg-' + this.labellg;
30940                     contentCls = ' col-lg-' + ((12 - this.labellg) / 3);
30941                 }
30942
30943                 if(this.labelmd > 0){
30944                     labelCls = ' col-md-' + this.labelmd;
30945                     contentCls = ' col-md-' + ((12 - this.labelmd) / 3);
30946                 }
30947
30948                 if(this.labelsm > 0){
30949                     labelCls = ' col-sm-' + this.labelsm;
30950                     contentCls = ' col-sm-' + ((12 - this.labelsm) / 3);
30951                 }
30952
30953                 if(this.labelxs > 0){
30954                     labelCls = ' col-xs-' + this.labelxs;
30955                     contentCls = ' col-xs-' + ((12 - this.labelxs) / 3);
30956                 }
30957             }
30958             
30959             label.cls += ' ' + labelCls;
30960             
30961             cfg.cn.push(label);
30962         }
30963         
30964         Roo.each(['day', 'month', 'year'], function(t){
30965             cfg.cn.push({
30966                 tag : 'div',
30967                 cls : 'column roo-date-split-field-' + t + ' ' + contentCls
30968             });
30969         }, this);
30970         
30971         return cfg;
30972     },
30973     
30974     inputEl: function ()
30975     {
30976         return this.el.select('.roo-date-split-field-group-value', true).first();
30977     },
30978     
30979     onRender : function(ct, position) 
30980     {
30981         var _this = this;
30982         
30983         Roo.bootstrap.NavProgressBar.superclass.onRender.call(this, ct, position);
30984         
30985         this.inputEl = this.el.select('.roo-date-split-field-group-value', true).first();
30986         
30987         this.dayField = new Roo.bootstrap.ComboBox({
30988             allowBlank : this.dayAllowBlank,
30989             alwaysQuery : true,
30990             displayField : 'value',
30991             editable : false,
30992             fieldLabel : '',
30993             forceSelection : true,
30994             mode : 'local',
30995             placeholder : this.dayPlaceholder,
30996             selectOnFocus : true,
30997             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
30998             triggerAction : 'all',
30999             typeAhead : true,
31000             valueField : 'value',
31001             store : new Roo.data.SimpleStore({
31002                 data : (function() {    
31003                     var days = [];
31004                     _this.fireEvent('days', _this, days);
31005                     return days;
31006                 })(),
31007                 fields : [ 'value' ]
31008             }),
31009             listeners : {
31010                 select : function (_self, record, index)
31011                 {
31012                     _this.setValue(_this.getValue());
31013                 }
31014             }
31015         });
31016
31017         this.dayField.render(this.el.select('.roo-date-split-field-day', true).first(), null);
31018         
31019         this.monthField = new Roo.bootstrap.MonthField({
31020             after : '<i class=\"fa fa-calendar\"></i>',
31021             allowBlank : this.monthAllowBlank,
31022             placeholder : this.monthPlaceholder,
31023             readOnly : true,
31024             listeners : {
31025                 render : function (_self)
31026                 {
31027                     this.el.select('span.input-group-addon', true).first().on('click', function(e){
31028                         e.preventDefault();
31029                         _self.focus();
31030                     });
31031                 },
31032                 select : function (_self, oldvalue, newvalue)
31033                 {
31034                     _this.setValue(_this.getValue());
31035                 }
31036             }
31037         });
31038         
31039         this.monthField.render(this.el.select('.roo-date-split-field-month', true).first(), null);
31040         
31041         this.yearField = new Roo.bootstrap.ComboBox({
31042             allowBlank : this.yearAllowBlank,
31043             alwaysQuery : true,
31044             displayField : 'value',
31045             editable : false,
31046             fieldLabel : '',
31047             forceSelection : true,
31048             mode : 'local',
31049             placeholder : this.yearPlaceholder,
31050             selectOnFocus : true,
31051             tpl : '<div class="roo-select2-result"><b>{value}</b></div>',
31052             triggerAction : 'all',
31053             typeAhead : true,
31054             valueField : 'value',
31055             store : new Roo.data.SimpleStore({
31056                 data : (function() {
31057                     var years = [];
31058                     _this.fireEvent('years', _this, years);
31059                     return years;
31060                 })(),
31061                 fields : [ 'value' ]
31062             }),
31063             listeners : {
31064                 select : function (_self, record, index)
31065                 {
31066                     _this.setValue(_this.getValue());
31067                 }
31068             }
31069         });
31070
31071         this.yearField.render(this.el.select('.roo-date-split-field-year', true).first(), null);
31072     },
31073     
31074     setValue : function(v, format)
31075     {
31076         this.inputEl.dom.value = v;
31077         
31078         var f = format || (this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat);
31079         
31080         var d = Date.parseDate(v, f);
31081         
31082         if(!d){
31083             this.validate();
31084             return;
31085         }
31086         
31087         this.setDay(d.format(this.dayFormat));
31088         this.setMonth(d.format(this.monthFormat));
31089         this.setYear(d.format(this.yearFormat));
31090         
31091         this.validate();
31092         
31093         return;
31094     },
31095     
31096     setDay : function(v)
31097     {
31098         this.dayField.setValue(v);
31099         this.inputEl.dom.value = this.getValue();
31100         this.validate();
31101         return;
31102     },
31103     
31104     setMonth : function(v)
31105     {
31106         this.monthField.setValue(v, true);
31107         this.inputEl.dom.value = this.getValue();
31108         this.validate();
31109         return;
31110     },
31111     
31112     setYear : function(v)
31113     {
31114         this.yearField.setValue(v);
31115         this.inputEl.dom.value = this.getValue();
31116         this.validate();
31117         return;
31118     },
31119     
31120     getDay : function()
31121     {
31122         return this.dayField.getValue();
31123     },
31124     
31125     getMonth : function()
31126     {
31127         return this.monthField.getValue();
31128     },
31129     
31130     getYear : function()
31131     {
31132         return this.yearField.getValue();
31133     },
31134     
31135     getValue : function()
31136     {
31137         var f = this.yearFormat + '-' + this.monthFormat + '-' + this.dayFormat;
31138         
31139         var date = this.yearField.getValue() + '-' + this.monthField.getValue() + '-' + this.dayField.getValue();
31140         
31141         return date;
31142     },
31143     
31144     reset : function()
31145     {
31146         this.setDay('');
31147         this.setMonth('');
31148         this.setYear('');
31149         this.inputEl.dom.value = '';
31150         this.validate();
31151         return;
31152     },
31153     
31154     validate : function()
31155     {
31156         var d = this.dayField.validate();
31157         var m = this.monthField.validate();
31158         var y = this.yearField.validate();
31159         
31160         var valid = true;
31161         
31162         if(
31163                 (!this.dayAllowBlank && !d) ||
31164                 (!this.monthAllowBlank && !m) ||
31165                 (!this.yearAllowBlank && !y)
31166         ){
31167             valid = false;
31168         }
31169         
31170         if(this.dayAllowBlank && this.monthAllowBlank && this.yearAllowBlank){
31171             return valid;
31172         }
31173         
31174         if(valid){
31175             this.markValid();
31176             return valid;
31177         }
31178         
31179         this.markInvalid();
31180         
31181         return valid;
31182     },
31183     
31184     markValid : function()
31185     {
31186         
31187         var label = this.el.select('label', true).first();
31188         var icon = this.el.select('i.fa-star', true).first();
31189
31190         if(label && icon){
31191             icon.remove();
31192         }
31193         
31194         this.fireEvent('valid', this);
31195     },
31196     
31197      /**
31198      * Mark this field as invalid
31199      * @param {String} msg The validation message
31200      */
31201     markInvalid : function(msg)
31202     {
31203         
31204         var label = this.el.select('label', true).first();
31205         var icon = this.el.select('i.fa-star', true).first();
31206
31207         if(label && !icon){
31208             this.el.select('.roo-date-split-field-label', true).createChild({
31209                 tag : 'i',
31210                 cls : 'text-danger fa fa-lg fa-star',
31211                 tooltip : 'This field is required',
31212                 style : 'margin-right:5px;'
31213             }, label, true);
31214         }
31215         
31216         this.fireEvent('invalid', this, msg);
31217     },
31218     
31219     clearInvalid : function()
31220     {
31221         var label = this.el.select('label', true).first();
31222         var icon = this.el.select('i.fa-star', true).first();
31223
31224         if(label && icon){
31225             icon.remove();
31226         }
31227         
31228         this.fireEvent('valid', this);
31229     },
31230     
31231     getName: function()
31232     {
31233         return this.name;
31234     }
31235     
31236 });
31237
31238  /**
31239  *
31240  * This is based on 
31241  * http://masonry.desandro.com
31242  *
31243  * The idea is to render all the bricks based on vertical width...
31244  *
31245  * The original code extends 'outlayer' - we might need to use that....
31246  * 
31247  */
31248
31249
31250 /**
31251  * @class Roo.bootstrap.LayoutMasonry
31252  * @extends Roo.bootstrap.Component
31253  * Bootstrap Layout Masonry class
31254  * 
31255  * @constructor
31256  * Create a new Element
31257  * @param {Object} config The config object
31258  */
31259
31260 Roo.bootstrap.LayoutMasonry = function(config){
31261     
31262     Roo.bootstrap.LayoutMasonry.superclass.constructor.call(this, config);
31263     
31264     this.bricks = [];
31265     
31266     Roo.bootstrap.LayoutMasonry.register(this);
31267     
31268     this.addEvents({
31269         // raw events
31270         /**
31271          * @event layout
31272          * Fire after layout the items
31273          * @param {Roo.bootstrap.LayoutMasonry} this
31274          * @param {Roo.EventObject} e
31275          */
31276         "layout" : true
31277     });
31278     
31279 };
31280
31281 Roo.extend(Roo.bootstrap.LayoutMasonry, Roo.bootstrap.Component,  {
31282     
31283     /**
31284      * @cfg {Boolean} isLayoutInstant = no animation?
31285      */   
31286     isLayoutInstant : false, // needed?
31287    
31288     /**
31289      * @cfg {Number} boxWidth  width of the columns
31290      */   
31291     boxWidth : 450,
31292     
31293       /**
31294      * @cfg {Number} boxHeight  - 0 for square, or fix it at a certian height
31295      */   
31296     boxHeight : 0,
31297     
31298     /**
31299      * @cfg {Number} padWidth padding below box..
31300      */   
31301     padWidth : 10, 
31302     
31303     /**
31304      * @cfg {Number} gutter gutter width..
31305      */   
31306     gutter : 10,
31307     
31308      /**
31309      * @cfg {Number} maxCols maximum number of columns
31310      */   
31311     
31312     maxCols: 0,
31313     
31314     /**
31315      * @cfg {Boolean} isAutoInitial defalut true
31316      */   
31317     isAutoInitial : true, 
31318     
31319     containerWidth: 0,
31320     
31321     /**
31322      * @cfg {Boolean} isHorizontal defalut false
31323      */   
31324     isHorizontal : false, 
31325
31326     currentSize : null,
31327     
31328     tag: 'div',
31329     
31330     cls: '',
31331     
31332     bricks: null, //CompositeElement
31333     
31334     cols : 1,
31335     
31336     _isLayoutInited : false,
31337     
31338 //    isAlternative : false, // only use for vertical layout...
31339     
31340     /**
31341      * @cfg {Number} alternativePadWidth padding below box..
31342      */   
31343     alternativePadWidth : 50,
31344     
31345     selectedBrick : [],
31346     
31347     getAutoCreate : function(){
31348         
31349         var cfg = Roo.apply({}, Roo.bootstrap.LayoutMasonry.superclass.getAutoCreate.call(this));
31350         
31351         var cfg = {
31352             tag: this.tag,
31353             cls: 'blog-masonary-wrapper ' + this.cls,
31354             cn : {
31355                 cls : 'mas-boxes masonary'
31356             }
31357         };
31358         
31359         return cfg;
31360     },
31361     
31362     getChildContainer: function( )
31363     {
31364         if (this.boxesEl) {
31365             return this.boxesEl;
31366         }
31367         
31368         this.boxesEl = this.el.select('.mas-boxes').first();
31369         
31370         return this.boxesEl;
31371     },
31372     
31373     
31374     initEvents : function()
31375     {
31376         var _this = this;
31377         
31378         if(this.isAutoInitial){
31379             Roo.log('hook children rendered');
31380             this.on('childrenrendered', function() {
31381                 Roo.log('children rendered');
31382                 _this.initial();
31383             } ,this);
31384         }
31385     },
31386     
31387     initial : function()
31388     {
31389         this.selectedBrick = [];
31390         
31391         this.currentSize = this.el.getBox(true);
31392         
31393         Roo.EventManager.onWindowResize(this.resize, this); 
31394
31395         if(!this.isAutoInitial){
31396             this.layout();
31397             return;
31398         }
31399         
31400         this.layout();
31401         
31402         return;
31403         //this.layout.defer(500,this);
31404         
31405     },
31406     
31407     resize : function()
31408     {
31409         var cs = this.el.getBox(true);
31410         
31411         if (
31412                 this.currentSize.width == cs.width && 
31413                 this.currentSize.x == cs.x && 
31414                 this.currentSize.height == cs.height && 
31415                 this.currentSize.y == cs.y 
31416         ) {
31417             Roo.log("no change in with or X or Y");
31418             return;
31419         }
31420         
31421         this.currentSize = cs;
31422         
31423         this.layout();
31424         
31425     },
31426     
31427     layout : function()
31428     {   
31429         this._resetLayout();
31430         
31431         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
31432         
31433         this.layoutItems( isInstant );
31434       
31435         this._isLayoutInited = true;
31436         
31437         this.fireEvent('layout', this);
31438         
31439     },
31440     
31441     _resetLayout : function()
31442     {
31443         if(this.isHorizontal){
31444             this.horizontalMeasureColumns();
31445             return;
31446         }
31447         
31448         this.verticalMeasureColumns();
31449         
31450     },
31451     
31452     verticalMeasureColumns : function()
31453     {
31454         this.getContainerWidth();
31455         
31456 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31457 //            this.colWidth = Math.floor(this.containerWidth * 0.8);
31458 //            return;
31459 //        }
31460         
31461         var boxWidth = this.boxWidth + this.padWidth;
31462         
31463         if(this.containerWidth < this.boxWidth){
31464             boxWidth = this.containerWidth
31465         }
31466         
31467         var containerWidth = this.containerWidth;
31468         
31469         var cols = Math.floor(containerWidth / boxWidth);
31470         
31471         this.cols = Math.max( cols, 1 );
31472         
31473         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
31474         
31475         var totalBoxWidth = this.cols * boxWidth - this.padWidth;
31476         
31477         var avail = Math.floor((containerWidth - totalBoxWidth) / this.cols);
31478         
31479         this.colWidth = boxWidth + avail - this.padWidth;
31480         
31481         this.unitWidth = Math.round((this.colWidth - (this.gutter * 2)) / 3);
31482         this.unitHeight = this.boxHeight > 0 ? this.boxHeight  : this.unitWidth;
31483     },
31484     
31485     horizontalMeasureColumns : function()
31486     {
31487         this.getContainerWidth();
31488         
31489         var boxWidth = this.boxWidth;
31490         
31491         if(this.containerWidth < boxWidth){
31492             boxWidth = this.containerWidth;
31493         }
31494         
31495         this.unitWidth = Math.floor((boxWidth - (this.gutter * 2)) / 3);
31496         
31497         this.el.setHeight(boxWidth);
31498         
31499     },
31500     
31501     getContainerWidth : function()
31502     {
31503         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
31504     },
31505     
31506     layoutItems : function( isInstant )
31507     {
31508         Roo.log(this.bricks);
31509         
31510         var items = Roo.apply([], this.bricks);
31511         
31512         if(this.isHorizontal){
31513             this._horizontalLayoutItems( items , isInstant );
31514             return;
31515         }
31516         
31517 //        if(Roo.lib.Dom.getViewWidth() < 768 && this.isAlternative){
31518 //            this._verticalAlternativeLayoutItems( items , isInstant );
31519 //            return;
31520 //        }
31521         
31522         this._verticalLayoutItems( items , isInstant );
31523         
31524     },
31525     
31526     _verticalLayoutItems : function ( items , isInstant)
31527     {
31528         if ( !items || !items.length ) {
31529             return;
31530         }
31531         
31532         var standard = [
31533             ['xs', 'xs', 'xs', 'tall'],
31534             ['xs', 'xs', 'tall'],
31535             ['xs', 'xs', 'sm'],
31536             ['xs', 'xs', 'xs'],
31537             ['xs', 'tall'],
31538             ['xs', 'sm'],
31539             ['xs', 'xs'],
31540             ['xs'],
31541             
31542             ['sm', 'xs', 'xs'],
31543             ['sm', 'xs'],
31544             ['sm'],
31545             
31546             ['tall', 'xs', 'xs', 'xs'],
31547             ['tall', 'xs', 'xs'],
31548             ['tall', 'xs'],
31549             ['tall']
31550             
31551         ];
31552         
31553         var queue = [];
31554         
31555         var boxes = [];
31556         
31557         var box = [];
31558         
31559         Roo.each(items, function(item, k){
31560             
31561             switch (item.size) {
31562                 // these layouts take up a full box,
31563                 case 'md' :
31564                 case 'md-left' :
31565                 case 'md-right' :
31566                 case 'wide' :
31567                     
31568                     if(box.length){
31569                         boxes.push(box);
31570                         box = [];
31571                     }
31572                     
31573                     boxes.push([item]);
31574                     
31575                     break;
31576                     
31577                 case 'xs' :
31578                 case 'sm' :
31579                 case 'tall' :
31580                     
31581                     box.push(item);
31582                     
31583                     break;
31584                 default :
31585                     break;
31586                     
31587             }
31588             
31589         }, this);
31590         
31591         if(box.length){
31592             boxes.push(box);
31593             box = [];
31594         }
31595         
31596         var filterPattern = function(box, length)
31597         {
31598             if(!box.length){
31599                 return;
31600             }
31601             
31602             var match = false;
31603             
31604             var pattern = box.slice(0, length);
31605             
31606             var format = [];
31607             
31608             Roo.each(pattern, function(i){
31609                 format.push(i.size);
31610             }, this);
31611             
31612             Roo.each(standard, function(s){
31613                 
31614                 if(String(s) != String(format)){
31615                     return;
31616                 }
31617                 
31618                 match = true;
31619                 return false;
31620                 
31621             }, this);
31622             
31623             if(!match && length == 1){
31624                 return;
31625             }
31626             
31627             if(!match){
31628                 filterPattern(box, length - 1);
31629                 return;
31630             }
31631                 
31632             queue.push(pattern);
31633
31634             box = box.slice(length, box.length);
31635
31636             filterPattern(box, 4);
31637
31638             return;
31639             
31640         }
31641         
31642         Roo.each(boxes, function(box, k){
31643             
31644             if(!box.length){
31645                 return;
31646             }
31647             
31648             if(box.length == 1){
31649                 queue.push(box);
31650                 return;
31651             }
31652             
31653             filterPattern(box, 4);
31654             
31655         }, this);
31656         
31657         this._processVerticalLayoutQueue( queue, isInstant );
31658         
31659     },
31660     
31661 //    _verticalAlternativeLayoutItems : function( items , isInstant )
31662 //    {
31663 //        if ( !items || !items.length ) {
31664 //            return;
31665 //        }
31666 //
31667 //        this._processVerticalAlternativeLayoutQueue( items, isInstant );
31668 //        
31669 //    },
31670     
31671     _horizontalLayoutItems : function ( items , isInstant)
31672     {
31673         if ( !items || !items.length || items.length < 3) {
31674             return;
31675         }
31676         
31677         items.reverse();
31678         
31679         var eItems = items.slice(0, 3);
31680         
31681         items = items.slice(3, items.length);
31682         
31683         var standard = [
31684             ['xs', 'xs', 'xs', 'wide'],
31685             ['xs', 'xs', 'wide'],
31686             ['xs', 'xs', 'sm'],
31687             ['xs', 'xs', 'xs'],
31688             ['xs', 'wide'],
31689             ['xs', 'sm'],
31690             ['xs', 'xs'],
31691             ['xs'],
31692             
31693             ['sm', 'xs', 'xs'],
31694             ['sm', 'xs'],
31695             ['sm'],
31696             
31697             ['wide', 'xs', 'xs', 'xs'],
31698             ['wide', 'xs', 'xs'],
31699             ['wide', 'xs'],
31700             ['wide'],
31701             
31702             ['wide-thin']
31703         ];
31704         
31705         var queue = [];
31706         
31707         var boxes = [];
31708         
31709         var box = [];
31710         
31711         Roo.each(items, function(item, k){
31712             
31713             switch (item.size) {
31714                 case 'md' :
31715                 case 'md-left' :
31716                 case 'md-right' :
31717                 case 'tall' :
31718                     
31719                     if(box.length){
31720                         boxes.push(box);
31721                         box = [];
31722                     }
31723                     
31724                     boxes.push([item]);
31725                     
31726                     break;
31727                     
31728                 case 'xs' :
31729                 case 'sm' :
31730                 case 'wide' :
31731                 case 'wide-thin' :
31732                     
31733                     box.push(item);
31734                     
31735                     break;
31736                 default :
31737                     break;
31738                     
31739             }
31740             
31741         }, this);
31742         
31743         if(box.length){
31744             boxes.push(box);
31745             box = [];
31746         }
31747         
31748         var filterPattern = function(box, length)
31749         {
31750             if(!box.length){
31751                 return;
31752             }
31753             
31754             var match = false;
31755             
31756             var pattern = box.slice(0, length);
31757             
31758             var format = [];
31759             
31760             Roo.each(pattern, function(i){
31761                 format.push(i.size);
31762             }, this);
31763             
31764             Roo.each(standard, function(s){
31765                 
31766                 if(String(s) != String(format)){
31767                     return;
31768                 }
31769                 
31770                 match = true;
31771                 return false;
31772                 
31773             }, this);
31774             
31775             if(!match && length == 1){
31776                 return;
31777             }
31778             
31779             if(!match){
31780                 filterPattern(box, length - 1);
31781                 return;
31782             }
31783                 
31784             queue.push(pattern);
31785
31786             box = box.slice(length, box.length);
31787
31788             filterPattern(box, 4);
31789
31790             return;
31791             
31792         }
31793         
31794         Roo.each(boxes, function(box, k){
31795             
31796             if(!box.length){
31797                 return;
31798             }
31799             
31800             if(box.length == 1){
31801                 queue.push(box);
31802                 return;
31803             }
31804             
31805             filterPattern(box, 4);
31806             
31807         }, this);
31808         
31809         
31810         var prune = [];
31811         
31812         var pos = this.el.getBox(true);
31813         
31814         var minX = pos.x;
31815         
31816         var maxX = pos.right - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
31817         
31818         var hit_end = false;
31819         
31820         Roo.each(queue, function(box){
31821             
31822             if(hit_end){
31823                 
31824                 Roo.each(box, function(b){
31825                 
31826                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31827                     b.el.hide();
31828
31829                 }, this);
31830
31831                 return;
31832             }
31833             
31834             var mx = 0;
31835             
31836             Roo.each(box, function(b){
31837                 
31838                 b.el.setVisibilityMode(Roo.Element.DISPLAY);
31839                 b.el.show();
31840
31841                 mx = Math.max(mx, b.x);
31842                 
31843             }, this);
31844             
31845             maxX = maxX - this.unitWidth * mx - this.gutter * (mx - 1) - this.padWidth;
31846             
31847             if(maxX < minX){
31848                 
31849                 Roo.each(box, function(b){
31850                 
31851                     b.el.setVisibilityMode(Roo.Element.DISPLAY);
31852                     b.el.hide();
31853                     
31854                 }, this);
31855                 
31856                 hit_end = true;
31857                 
31858                 return;
31859             }
31860             
31861             prune.push(box);
31862             
31863         }, this);
31864         
31865         this._processHorizontalLayoutQueue( prune, eItems, isInstant );
31866     },
31867     
31868     /** Sets position of item in DOM
31869     * @param {Element} item
31870     * @param {Number} x - horizontal position
31871     * @param {Number} y - vertical position
31872     * @param {Boolean} isInstant - disables transitions
31873     */
31874     _processVerticalLayoutQueue : function( queue, isInstant )
31875     {
31876         var pos = this.el.getBox(true);
31877         var x = pos.x;
31878         var y = pos.y;
31879         var maxY = [];
31880         
31881         for (var i = 0; i < this.cols; i++){
31882             maxY[i] = pos.y;
31883         }
31884         
31885         Roo.each(queue, function(box, k){
31886             
31887             var col = k % this.cols;
31888             
31889             Roo.each(box, function(b,kk){
31890                 
31891                 b.el.position('absolute');
31892                 
31893                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
31894                 var height = Math.floor(this.unitHeight * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
31895                 
31896                 if(b.size == 'md-left' || b.size == 'md-right'){
31897                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
31898                     height = Math.floor(this.unitHeight * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
31899                 }
31900                 
31901                 b.el.setWidth(width);
31902                 b.el.setHeight(height);
31903                 // iframe?
31904                 b.el.select('iframe',true).setSize(width,height);
31905                 
31906             }, this);
31907             
31908             for (var i = 0; i < this.cols; i++){
31909                 
31910                 if(maxY[i] < maxY[col]){
31911                     col = i;
31912                     continue;
31913                 }
31914                 
31915                 col = Math.min(col, i);
31916                 
31917             }
31918             
31919             x = pos.x + col * (this.colWidth + this.padWidth);
31920             
31921             y = maxY[col];
31922             
31923             var positions = [];
31924             
31925             switch (box.length){
31926                 case 1 :
31927                     positions = this.getVerticalOneBoxColPositions(x, y, box);
31928                     break;
31929                 case 2 :
31930                     positions = this.getVerticalTwoBoxColPositions(x, y, box);
31931                     break;
31932                 case 3 :
31933                     positions = this.getVerticalThreeBoxColPositions(x, y, box);
31934                     break;
31935                 case 4 :
31936                     positions = this.getVerticalFourBoxColPositions(x, y, box);
31937                     break;
31938                 default :
31939                     break;
31940             }
31941             
31942             Roo.each(box, function(b,kk){
31943                 
31944                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
31945                 
31946                 var sz = b.el.getSize();
31947                 
31948                 maxY[col] = Math.max(maxY[col], positions[kk].y + sz.height + this.padWidth);
31949                 
31950             }, this);
31951             
31952         }, this);
31953         
31954         var mY = 0;
31955         
31956         for (var i = 0; i < this.cols; i++){
31957             mY = Math.max(mY, maxY[i]);
31958         }
31959         
31960         this.el.setHeight(mY - pos.y);
31961         
31962     },
31963     
31964 //    _processVerticalAlternativeLayoutQueue : function( items, isInstant )
31965 //    {
31966 //        var pos = this.el.getBox(true);
31967 //        var x = pos.x;
31968 //        var y = pos.y;
31969 //        var maxX = pos.right;
31970 //        
31971 //        var maxHeight = 0;
31972 //        
31973 //        Roo.each(items, function(item, k){
31974 //            
31975 //            var c = k % 2;
31976 //            
31977 //            item.el.position('absolute');
31978 //                
31979 //            var width = Math.floor(this.colWidth + item.el.getPadding('lr'));
31980 //
31981 //            item.el.setWidth(width);
31982 //
31983 //            var height = Math.floor(this.colWidth * item.y / item.x + item.el.getPadding('tb'));
31984 //
31985 //            item.el.setHeight(height);
31986 //            
31987 //            if(c == 0){
31988 //                item.el.setXY([x, y], isInstant ? false : true);
31989 //            } else {
31990 //                item.el.setXY([maxX - width, y], isInstant ? false : true);
31991 //            }
31992 //            
31993 //            y = y + height + this.alternativePadWidth;
31994 //            
31995 //            maxHeight = maxHeight + height + this.alternativePadWidth;
31996 //            
31997 //        }, this);
31998 //        
31999 //        this.el.setHeight(maxHeight);
32000 //        
32001 //    },
32002     
32003     _processHorizontalLayoutQueue : function( queue, eItems, isInstant )
32004     {
32005         var pos = this.el.getBox(true);
32006         
32007         var minX = pos.x;
32008         var minY = pos.y;
32009         
32010         var maxX = pos.right;
32011         
32012         this._processHorizontalEndItem(eItems, maxX, minX, minY, isInstant);
32013         
32014         var maxX = maxX - this.unitWidth * 3 - this.gutter * 2 - this.padWidth;
32015         
32016         Roo.each(queue, function(box, k){
32017             
32018             Roo.each(box, function(b, kk){
32019                 
32020                 b.el.position('absolute');
32021                 
32022                 var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
32023                 var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
32024                 
32025                 if(b.size == 'md-left' || b.size == 'md-right'){
32026                     width = Math.floor(this.unitWidth * (b.x - 1) + (this.gutter * (b.x - 2)) + b.el.getPadding('lr'));
32027                     height = Math.floor(this.unitWidth * (b.y - 1) + (this.gutter * (b.y - 2)) + b.el.getPadding('tb'));
32028                 }
32029                 
32030                 b.el.setWidth(width);
32031                 b.el.setHeight(height);
32032                 
32033             }, this);
32034             
32035             if(!box.length){
32036                 return;
32037             }
32038             
32039             var positions = [];
32040             
32041             switch (box.length){
32042                 case 1 :
32043                     positions = this.getHorizontalOneBoxColPositions(maxX, minY, box);
32044                     break;
32045                 case 2 :
32046                     positions = this.getHorizontalTwoBoxColPositions(maxX, minY, box);
32047                     break;
32048                 case 3 :
32049                     positions = this.getHorizontalThreeBoxColPositions(maxX, minY, box);
32050                     break;
32051                 case 4 :
32052                     positions = this.getHorizontalFourBoxColPositions(maxX, minY, box);
32053                     break;
32054                 default :
32055                     break;
32056             }
32057             
32058             Roo.each(box, function(b,kk){
32059                 
32060                 b.el.setXY([positions[kk].x, positions[kk].y], isInstant ? false : true);
32061                 
32062                 maxX = Math.min(maxX, positions[kk].x - this.padWidth);
32063                 
32064             }, this);
32065             
32066         }, this);
32067         
32068     },
32069     
32070     _processHorizontalEndItem : function(eItems, maxX, minX, minY, isInstant)
32071     {
32072         Roo.each(eItems, function(b,k){
32073             
32074             b.size = (k == 0) ? 'sm' : 'xs';
32075             b.x = (k == 0) ? 2 : 1;
32076             b.y = (k == 0) ? 2 : 1;
32077             
32078             b.el.position('absolute');
32079             
32080             var width = Math.floor(this.unitWidth * b.x + (this.gutter * (b.x - 1)) + b.el.getPadding('lr'));
32081                 
32082             b.el.setWidth(width);
32083             
32084             var height = Math.floor(this.unitWidth * b.y + (this.gutter * (b.y - 1)) + b.el.getPadding('tb'));
32085             
32086             b.el.setHeight(height);
32087             
32088         }, this);
32089
32090         var positions = [];
32091         
32092         positions.push({
32093             x : maxX - this.unitWidth * 2 - this.gutter,
32094             y : minY
32095         });
32096         
32097         positions.push({
32098             x : maxX - this.unitWidth,
32099             y : minY + (this.unitWidth + this.gutter) * 2
32100         });
32101         
32102         positions.push({
32103             x : maxX - this.unitWidth * 3 - this.gutter * 2,
32104             y : minY
32105         });
32106         
32107         Roo.each(eItems, function(b,k){
32108             
32109             b.el.setXY([positions[k].x, positions[k].y], isInstant ? false : true);
32110
32111         }, this);
32112         
32113     },
32114     
32115     getVerticalOneBoxColPositions : function(x, y, box)
32116     {
32117         var pos = [];
32118         
32119         var rand = Math.floor(Math.random() * ((4 - box[0].x)));
32120         
32121         if(box[0].size == 'md-left'){
32122             rand = 0;
32123         }
32124         
32125         if(box[0].size == 'md-right'){
32126             rand = 1;
32127         }
32128         
32129         pos.push({
32130             x : x + (this.unitWidth + this.gutter) * rand,
32131             y : y
32132         });
32133         
32134         return pos;
32135     },
32136     
32137     getVerticalTwoBoxColPositions : function(x, y, box)
32138     {
32139         var pos = [];
32140         
32141         if(box[0].size == 'xs'){
32142             
32143             pos.push({
32144                 x : x,
32145                 y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[1].y))
32146             });
32147
32148             pos.push({
32149                 x : x + (this.unitWidth + this.gutter) * (3 - box[1].x),
32150                 y : y
32151             });
32152             
32153             return pos;
32154             
32155         }
32156         
32157         pos.push({
32158             x : x,
32159             y : y
32160         });
32161
32162         pos.push({
32163             x : x + (this.unitWidth + this.gutter) * 2,
32164             y : y + ((this.unitHeight + this.gutter) * Math.floor(Math.random() * box[0].y))
32165         });
32166         
32167         return pos;
32168         
32169     },
32170     
32171     getVerticalThreeBoxColPositions : function(x, y, box)
32172     {
32173         var pos = [];
32174         
32175         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32176             
32177             pos.push({
32178                 x : x,
32179                 y : y
32180             });
32181
32182             pos.push({
32183                 x : x + (this.unitWidth + this.gutter) * 1,
32184                 y : y
32185             });
32186             
32187             pos.push({
32188                 x : x + (this.unitWidth + this.gutter) * 2,
32189                 y : y
32190             });
32191             
32192             return pos;
32193             
32194         }
32195         
32196         if(box[0].size == 'xs' && box[1].size == 'xs'){
32197             
32198             pos.push({
32199                 x : x,
32200                 y : y
32201             });
32202
32203             pos.push({
32204                 x : x,
32205                 y : y + ((this.unitHeight + this.gutter) * (box[2].y - 1))
32206             });
32207             
32208             pos.push({
32209                 x : x + (this.unitWidth + this.gutter) * 1,
32210                 y : y
32211             });
32212             
32213             return pos;
32214             
32215         }
32216         
32217         pos.push({
32218             x : x,
32219             y : y
32220         });
32221
32222         pos.push({
32223             x : x + (this.unitWidth + this.gutter) * 2,
32224             y : y
32225         });
32226
32227         pos.push({
32228             x : x + (this.unitWidth + this.gutter) * 2,
32229             y : y + (this.unitHeight + this.gutter) * (box[0].y - 1)
32230         });
32231             
32232         return pos;
32233         
32234     },
32235     
32236     getVerticalFourBoxColPositions : function(x, y, box)
32237     {
32238         var pos = [];
32239         
32240         if(box[0].size == 'xs'){
32241             
32242             pos.push({
32243                 x : x,
32244                 y : y
32245             });
32246
32247             pos.push({
32248                 x : x,
32249                 y : y + (this.unitHeight + this.gutter) * 1
32250             });
32251             
32252             pos.push({
32253                 x : x,
32254                 y : y + (this.unitHeight + this.gutter) * 2
32255             });
32256             
32257             pos.push({
32258                 x : x + (this.unitWidth + this.gutter) * 1,
32259                 y : y
32260             });
32261             
32262             return pos;
32263             
32264         }
32265         
32266         pos.push({
32267             x : x,
32268             y : y
32269         });
32270
32271         pos.push({
32272             x : x + (this.unitWidth + this.gutter) * 2,
32273             y : y
32274         });
32275
32276         pos.push({
32277             x : x + (this.unitHeightunitWidth + this.gutter) * 2,
32278             y : y + (this.unitHeight + this.gutter) * 1
32279         });
32280
32281         pos.push({
32282             x : x + (this.unitWidth + this.gutter) * 2,
32283             y : y + (this.unitWidth + this.gutter) * 2
32284         });
32285
32286         return pos;
32287         
32288     },
32289     
32290     getHorizontalOneBoxColPositions : function(maxX, minY, box)
32291     {
32292         var pos = [];
32293         
32294         if(box[0].size == 'md-left'){
32295             pos.push({
32296                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32297                 y : minY
32298             });
32299             
32300             return pos;
32301         }
32302         
32303         if(box[0].size == 'md-right'){
32304             pos.push({
32305                 x : maxX - this.unitWidth * (box[0].x - 1) - this.gutter * (box[0].x - 2),
32306                 y : minY + (this.unitWidth + this.gutter) * 1
32307             });
32308             
32309             return pos;
32310         }
32311         
32312         var rand = Math.floor(Math.random() * (4 - box[0].y));
32313         
32314         pos.push({
32315             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32316             y : minY + (this.unitWidth + this.gutter) * rand
32317         });
32318         
32319         return pos;
32320         
32321     },
32322     
32323     getHorizontalTwoBoxColPositions : function(maxX, minY, box)
32324     {
32325         var pos = [];
32326         
32327         if(box[0].size == 'xs'){
32328             
32329             pos.push({
32330                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32331                 y : minY
32332             });
32333
32334             pos.push({
32335                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32336                 y : minY + (this.unitWidth + this.gutter) * (3 - box[1].y)
32337             });
32338             
32339             return pos;
32340             
32341         }
32342         
32343         pos.push({
32344             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32345             y : minY
32346         });
32347
32348         pos.push({
32349             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32350             y : minY + (this.unitWidth + this.gutter) * 2
32351         });
32352         
32353         return pos;
32354         
32355     },
32356     
32357     getHorizontalThreeBoxColPositions : function(maxX, minY, box)
32358     {
32359         var pos = [];
32360         
32361         if(box[0].size == 'xs' && box[1].size == 'xs' && box[2].size == 'xs'){
32362             
32363             pos.push({
32364                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32365                 y : minY
32366             });
32367
32368             pos.push({
32369                 x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32370                 y : minY + (this.unitWidth + this.gutter) * 1
32371             });
32372             
32373             pos.push({
32374                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32375                 y : minY + (this.unitWidth + this.gutter) * 2
32376             });
32377             
32378             return pos;
32379             
32380         }
32381         
32382         if(box[0].size == 'xs' && box[1].size == 'xs'){
32383             
32384             pos.push({
32385                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32386                 y : minY
32387             });
32388
32389             pos.push({
32390                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32391                 y : minY
32392             });
32393             
32394             pos.push({
32395                 x : maxX - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32396                 y : minY + (this.unitWidth + this.gutter) * 1
32397             });
32398             
32399             return pos;
32400             
32401         }
32402         
32403         pos.push({
32404             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32405             y : minY
32406         });
32407
32408         pos.push({
32409             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32410             y : minY + (this.unitWidth + this.gutter) * 2
32411         });
32412
32413         pos.push({
32414             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32415             y : minY + (this.unitWidth + this.gutter) * 2
32416         });
32417             
32418         return pos;
32419         
32420     },
32421     
32422     getHorizontalFourBoxColPositions : function(maxX, minY, box)
32423     {
32424         var pos = [];
32425         
32426         if(box[0].size == 'xs'){
32427             
32428             pos.push({
32429                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32430                 y : minY
32431             });
32432
32433             pos.push({
32434                 x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1) - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32435                 y : minY
32436             });
32437             
32438             pos.push({
32439                 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),
32440                 y : minY
32441             });
32442             
32443             pos.push({
32444                 x : maxX - this.unitWidth * box[3].x - this.gutter * (box[3].x - 1),
32445                 y : minY + (this.unitWidth + this.gutter) * 1
32446             });
32447             
32448             return pos;
32449             
32450         }
32451         
32452         pos.push({
32453             x : maxX - this.unitWidth * box[0].x - this.gutter * (box[0].x - 1),
32454             y : minY
32455         });
32456         
32457         pos.push({
32458             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1),
32459             y : minY + (this.unitWidth + this.gutter) * 2
32460         });
32461         
32462         pos.push({
32463             x : maxX - this.unitWidth * box[1].x - this.gutter * (box[1].x - 1) - this.unitWidth * box[2].x - this.gutter * (box[2].x - 1),
32464             y : minY + (this.unitWidth + this.gutter) * 2
32465         });
32466         
32467         pos.push({
32468             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),
32469             y : minY + (this.unitWidth + this.gutter) * 2
32470         });
32471
32472         return pos;
32473         
32474     },
32475     
32476     /**
32477     * remove a Masonry Brick
32478     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to remove
32479     */
32480     removeBrick : function(brick_id)
32481     {
32482         if (!brick_id) {
32483             return;
32484         }
32485         
32486         for (var i = 0; i<this.bricks.length; i++) {
32487             if (this.bricks[i].id == brick_id) {
32488                 this.bricks.splice(i,1);
32489                 this.el.dom.removeChild(Roo.get(brick_id).dom);
32490                 this.initial();
32491             }
32492         }
32493     },
32494     
32495     /**
32496     * adds a Masonry Brick
32497     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32498     */
32499     addBrick : function(cfg)
32500     {
32501         var cn = new Roo.bootstrap.MasonryBrick(cfg);
32502         //this.register(cn);
32503         cn.parentId = this.id;
32504         cn.render(this.el);
32505         return cn;
32506     },
32507     
32508     /**
32509     * register a Masonry Brick
32510     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
32511     */
32512     
32513     register : function(brick)
32514     {
32515         this.bricks.push(brick);
32516         brick.masonryId = this.id;
32517     },
32518     
32519     /**
32520     * clear all the Masonry Brick
32521     */
32522     clearAll : function()
32523     {
32524         this.bricks = [];
32525         //this.getChildContainer().dom.innerHTML = "";
32526         this.el.dom.innerHTML = '';
32527     },
32528     
32529     getSelected : function()
32530     {
32531         if (!this.selectedBrick) {
32532             return false;
32533         }
32534         
32535         return this.selectedBrick;
32536     }
32537 });
32538
32539 Roo.apply(Roo.bootstrap.LayoutMasonry, {
32540     
32541     groups: {},
32542      /**
32543     * register a Masonry Layout
32544     * @param {Roo.bootstrap.LayoutMasonry} the masonry layout to add
32545     */
32546     
32547     register : function(layout)
32548     {
32549         this.groups[layout.id] = layout;
32550     },
32551     /**
32552     * fetch a  Masonry Layout based on the masonry layout ID
32553     * @param {string} the masonry layout to add
32554     * @returns {Roo.bootstrap.LayoutMasonry} the masonry layout
32555     */
32556     
32557     get: function(layout_id) {
32558         if (typeof(this.groups[layout_id]) == 'undefined') {
32559             return false;
32560         }
32561         return this.groups[layout_id] ;
32562     }
32563     
32564     
32565     
32566 });
32567
32568  
32569
32570  /**
32571  *
32572  * This is based on 
32573  * http://masonry.desandro.com
32574  *
32575  * The idea is to render all the bricks based on vertical width...
32576  *
32577  * The original code extends 'outlayer' - we might need to use that....
32578  * 
32579  */
32580
32581
32582 /**
32583  * @class Roo.bootstrap.LayoutMasonryAuto
32584  * @extends Roo.bootstrap.Component
32585  * Bootstrap Layout Masonry class
32586  * 
32587  * @constructor
32588  * Create a new Element
32589  * @param {Object} config The config object
32590  */
32591
32592 Roo.bootstrap.LayoutMasonryAuto = function(config){
32593     Roo.bootstrap.LayoutMasonryAuto.superclass.constructor.call(this, config);
32594 };
32595
32596 Roo.extend(Roo.bootstrap.LayoutMasonryAuto, Roo.bootstrap.Component,  {
32597     
32598       /**
32599      * @cfg {Boolean} isFitWidth  - resize the width..
32600      */   
32601     isFitWidth : false,  // options..
32602     /**
32603      * @cfg {Boolean} isOriginLeft = left align?
32604      */   
32605     isOriginLeft : true,
32606     /**
32607      * @cfg {Boolean} isOriginTop = top align?
32608      */   
32609     isOriginTop : false,
32610     /**
32611      * @cfg {Boolean} isLayoutInstant = no animation?
32612      */   
32613     isLayoutInstant : false, // needed?
32614     /**
32615      * @cfg {Boolean} isResizingContainer = not sure if this is used..
32616      */   
32617     isResizingContainer : true,
32618     /**
32619      * @cfg {Number} columnWidth  width of the columns 
32620      */   
32621     
32622     columnWidth : 0,
32623     
32624     /**
32625      * @cfg {Number} maxCols maximum number of columns
32626      */   
32627     
32628     maxCols: 0,
32629     /**
32630      * @cfg {Number} padHeight padding below box..
32631      */   
32632     
32633     padHeight : 10, 
32634     
32635     /**
32636      * @cfg {Boolean} isAutoInitial defalut true
32637      */   
32638     
32639     isAutoInitial : true, 
32640     
32641     // private?
32642     gutter : 0,
32643     
32644     containerWidth: 0,
32645     initialColumnWidth : 0,
32646     currentSize : null,
32647     
32648     colYs : null, // array.
32649     maxY : 0,
32650     padWidth: 10,
32651     
32652     
32653     tag: 'div',
32654     cls: '',
32655     bricks: null, //CompositeElement
32656     cols : 0, // array?
32657     // element : null, // wrapped now this.el
32658     _isLayoutInited : null, 
32659     
32660     
32661     getAutoCreate : function(){
32662         
32663         var cfg = {
32664             tag: this.tag,
32665             cls: 'blog-masonary-wrapper ' + this.cls,
32666             cn : {
32667                 cls : 'mas-boxes masonary'
32668             }
32669         };
32670         
32671         return cfg;
32672     },
32673     
32674     getChildContainer: function( )
32675     {
32676         if (this.boxesEl) {
32677             return this.boxesEl;
32678         }
32679         
32680         this.boxesEl = this.el.select('.mas-boxes').first();
32681         
32682         return this.boxesEl;
32683     },
32684     
32685     
32686     initEvents : function()
32687     {
32688         var _this = this;
32689         
32690         if(this.isAutoInitial){
32691             Roo.log('hook children rendered');
32692             this.on('childrenrendered', function() {
32693                 Roo.log('children rendered');
32694                 _this.initial();
32695             } ,this);
32696         }
32697         
32698     },
32699     
32700     initial : function()
32701     {
32702         this.reloadItems();
32703
32704         this.currentSize = this.el.getBox(true);
32705
32706         /// was window resize... - let's see if this works..
32707         Roo.EventManager.onWindowResize(this.resize, this); 
32708
32709         if(!this.isAutoInitial){
32710             this.layout();
32711             return;
32712         }
32713         
32714         this.layout.defer(500,this);
32715     },
32716     
32717     reloadItems: function()
32718     {
32719         this.bricks = this.el.select('.masonry-brick', true);
32720         
32721         this.bricks.each(function(b) {
32722             //Roo.log(b.getSize());
32723             if (!b.attr('originalwidth')) {
32724                 b.attr('originalwidth',  b.getSize().width);
32725             }
32726             
32727         });
32728         
32729         Roo.log(this.bricks.elements.length);
32730     },
32731     
32732     resize : function()
32733     {
32734         Roo.log('resize');
32735         var cs = this.el.getBox(true);
32736         
32737         if (this.currentSize.width == cs.width && this.currentSize.x == cs.x ) {
32738             Roo.log("no change in with or X");
32739             return;
32740         }
32741         this.currentSize = cs;
32742         this.layout();
32743     },
32744     
32745     layout : function()
32746     {
32747          Roo.log('layout');
32748         this._resetLayout();
32749         //this._manageStamps();
32750       
32751         // don't animate first layout
32752         var isInstant = this.isLayoutInstant !== undefined ? this.isLayoutInstant : !this._isLayoutInited;
32753         this.layoutItems( isInstant );
32754       
32755         // flag for initalized
32756         this._isLayoutInited = true;
32757     },
32758     
32759     layoutItems : function( isInstant )
32760     {
32761         //var items = this._getItemsForLayout( this.items );
32762         // original code supports filtering layout items.. we just ignore it..
32763         
32764         this._layoutItems( this.bricks , isInstant );
32765       
32766         this._postLayout();
32767     },
32768     _layoutItems : function ( items , isInstant)
32769     {
32770        //this.fireEvent( 'layout', this, items );
32771     
32772
32773         if ( !items || !items.elements.length ) {
32774           // no items, emit event with empty array
32775             return;
32776         }
32777
32778         var queue = [];
32779         items.each(function(item) {
32780             Roo.log("layout item");
32781             Roo.log(item);
32782             // get x/y object from method
32783             var position = this._getItemLayoutPosition( item );
32784             // enqueue
32785             position.item = item;
32786             position.isInstant = isInstant; // || item.isLayoutInstant; << not set yet...
32787             queue.push( position );
32788         }, this);
32789       
32790         this._processLayoutQueue( queue );
32791     },
32792     /** Sets position of item in DOM
32793     * @param {Element} item
32794     * @param {Number} x - horizontal position
32795     * @param {Number} y - vertical position
32796     * @param {Boolean} isInstant - disables transitions
32797     */
32798     _processLayoutQueue : function( queue )
32799     {
32800         for ( var i=0, len = queue.length; i < len; i++ ) {
32801             var obj = queue[i];
32802             obj.item.position('absolute');
32803             obj.item.setXY([obj.x,obj.y], obj.isInstant ? false : true);
32804         }
32805     },
32806       
32807     
32808     /**
32809     * Any logic you want to do after each layout,
32810     * i.e. size the container
32811     */
32812     _postLayout : function()
32813     {
32814         this.resizeContainer();
32815     },
32816     
32817     resizeContainer : function()
32818     {
32819         if ( !this.isResizingContainer ) {
32820             return;
32821         }
32822         var size = this._getContainerSize();
32823         if ( size ) {
32824             this.el.setSize(size.width,size.height);
32825             this.boxesEl.setSize(size.width,size.height);
32826         }
32827     },
32828     
32829     
32830     
32831     _resetLayout : function()
32832     {
32833         //this.getSize();  // -- does not really do anything.. it probably applies left/right etc. to obuject but not used
32834         this.colWidth = this.el.getWidth();
32835         //this.gutter = this.el.getWidth(); 
32836         
32837         this.measureColumns();
32838
32839         // reset column Y
32840         var i = this.cols;
32841         this.colYs = [];
32842         while (i--) {
32843             this.colYs.push( 0 );
32844         }
32845     
32846         this.maxY = 0;
32847     },
32848
32849     measureColumns : function()
32850     {
32851         this.getContainerWidth();
32852       // if columnWidth is 0, default to outerWidth of first item
32853         if ( !this.columnWidth ) {
32854             var firstItem = this.bricks.first();
32855             Roo.log(firstItem);
32856             this.columnWidth  = this.containerWidth;
32857             if (firstItem && firstItem.attr('originalwidth') ) {
32858                 this.columnWidth = 1* (firstItem.attr('originalwidth') || firstItem.getWidth());
32859             }
32860             // columnWidth fall back to item of first element
32861             Roo.log("set column width?");
32862                         this.initialColumnWidth = this.columnWidth  ;
32863
32864             // if first elem has no width, default to size of container
32865             
32866         }
32867         
32868         
32869         if (this.initialColumnWidth) {
32870             this.columnWidth = this.initialColumnWidth;
32871         }
32872         
32873         
32874             
32875         // column width is fixed at the top - however if container width get's smaller we should
32876         // reduce it...
32877         
32878         // this bit calcs how man columns..
32879             
32880         var columnWidth = this.columnWidth += this.gutter;
32881       
32882         // calculate columns
32883         var containerWidth = this.containerWidth + this.gutter;
32884         
32885         var cols = (containerWidth - this.padWidth) / (columnWidth - this.padWidth);
32886         // fix rounding errors, typically with gutters
32887         var excess = columnWidth - containerWidth % columnWidth;
32888         
32889         
32890         // if overshoot is less than a pixel, round up, otherwise floor it
32891         var mathMethod = excess && excess < 1 ? 'round' : 'floor';
32892         cols = Math[ mathMethod ]( cols );
32893         this.cols = Math.max( cols, 1 );
32894         this.cols = this.maxCols > 0 ? Math.min( this.cols, this.maxCols ) : this.cols;
32895         
32896          // padding positioning..
32897         var totalColWidth = this.cols * this.columnWidth;
32898         var padavail = this.containerWidth - totalColWidth;
32899         // so for 2 columns - we need 3 'pads'
32900         
32901         var padNeeded = (1+this.cols) * this.padWidth;
32902         
32903         var padExtra = Math.floor((padavail - padNeeded) / this.cols);
32904         
32905         this.columnWidth += padExtra
32906         //this.padWidth = Math.floor(padavail /  ( this.cols));
32907         
32908         // adjust colum width so that padding is fixed??
32909         
32910         // we have 3 columns ... total = width * 3
32911         // we have X left over... that should be used by 
32912         
32913         //if (this.expandC) {
32914             
32915         //}
32916         
32917         
32918         
32919     },
32920     
32921     getContainerWidth : function()
32922     {
32923        /* // container is parent if fit width
32924         var container = this.isFitWidth ? this.element.parentNode : this.element;
32925         // check that this.size and size are there
32926         // IE8 triggers resize on body size change, so they might not be
32927         
32928         var size = getSize( container );  //FIXME
32929         this.containerWidth = size && size.innerWidth; //FIXME
32930         */
32931          
32932         this.containerWidth = this.el.getBox(true).width;  //maybe use getComputedWidth
32933         
32934     },
32935     
32936     _getItemLayoutPosition : function( item )  // what is item?
32937     {
32938         // we resize the item to our columnWidth..
32939       
32940         item.setWidth(this.columnWidth);
32941         item.autoBoxAdjust  = false;
32942         
32943         var sz = item.getSize();
32944  
32945         // how many columns does this brick span
32946         var remainder = this.containerWidth % this.columnWidth;
32947         
32948         var mathMethod = remainder && remainder < 1 ? 'round' : 'ceil';
32949         // round if off by 1 pixel, otherwise use ceil
32950         var colSpan = Math[ mathMethod ]( sz.width  / this.columnWidth );
32951         colSpan = Math.min( colSpan, this.cols );
32952         
32953         // normally this should be '1' as we dont' currently allow multi width columns..
32954         
32955         var colGroup = this._getColGroup( colSpan );
32956         // get the minimum Y value from the columns
32957         var minimumY = Math.min.apply( Math, colGroup );
32958         Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32959         
32960         var shortColIndex = colGroup.indexOf(  minimumY ); // broken on ie8..?? probably...
32961          
32962         // position the brick
32963         var position = {
32964             x: this.currentSize.x + (this.padWidth /2) + ((this.columnWidth + this.padWidth )* shortColIndex),
32965             y: this.currentSize.y + minimumY + this.padHeight
32966         };
32967         
32968         Roo.log(position);
32969         // apply setHeight to necessary columns
32970         var setHeight = minimumY + sz.height + this.padHeight;
32971         //Roo.log([ 'setHeight',  minimumY, sz.height, setHeight ]);
32972         
32973         var setSpan = this.cols + 1 - colGroup.length;
32974         for ( var i = 0; i < setSpan; i++ ) {
32975           this.colYs[ shortColIndex + i ] = setHeight ;
32976         }
32977       
32978         return position;
32979     },
32980     
32981     /**
32982      * @param {Number} colSpan - number of columns the element spans
32983      * @returns {Array} colGroup
32984      */
32985     _getColGroup : function( colSpan )
32986     {
32987         if ( colSpan < 2 ) {
32988           // if brick spans only one column, use all the column Ys
32989           return this.colYs;
32990         }
32991       
32992         var colGroup = [];
32993         // how many different places could this brick fit horizontally
32994         var groupCount = this.cols + 1 - colSpan;
32995         // for each group potential horizontal position
32996         for ( var i = 0; i < groupCount; i++ ) {
32997           // make an array of colY values for that one group
32998           var groupColYs = this.colYs.slice( i, i + colSpan );
32999           // and get the max value of the array
33000           colGroup[i] = Math.max.apply( Math, groupColYs );
33001         }
33002         return colGroup;
33003     },
33004     /*
33005     _manageStamp : function( stamp )
33006     {
33007         var stampSize =  stamp.getSize();
33008         var offset = stamp.getBox();
33009         // get the columns that this stamp affects
33010         var firstX = this.isOriginLeft ? offset.x : offset.right;
33011         var lastX = firstX + stampSize.width;
33012         var firstCol = Math.floor( firstX / this.columnWidth );
33013         firstCol = Math.max( 0, firstCol );
33014         
33015         var lastCol = Math.floor( lastX / this.columnWidth );
33016         // lastCol should not go over if multiple of columnWidth #425
33017         lastCol -= lastX % this.columnWidth ? 0 : 1;
33018         lastCol = Math.min( this.cols - 1, lastCol );
33019         
33020         // set colYs to bottom of the stamp
33021         var stampMaxY = ( this.isOriginTop ? offset.y : offset.bottom ) +
33022             stampSize.height;
33023             
33024         for ( var i = firstCol; i <= lastCol; i++ ) {
33025           this.colYs[i] = Math.max( stampMaxY, this.colYs[i] );
33026         }
33027     },
33028     */
33029     
33030     _getContainerSize : function()
33031     {
33032         this.maxY = Math.max.apply( Math, this.colYs );
33033         var size = {
33034             height: this.maxY
33035         };
33036       
33037         if ( this.isFitWidth ) {
33038             size.width = this._getContainerFitWidth();
33039         }
33040       
33041         return size;
33042     },
33043     
33044     _getContainerFitWidth : function()
33045     {
33046         var unusedCols = 0;
33047         // count unused columns
33048         var i = this.cols;
33049         while ( --i ) {
33050           if ( this.colYs[i] !== 0 ) {
33051             break;
33052           }
33053           unusedCols++;
33054         }
33055         // fit container to columns that have been used
33056         return ( this.cols - unusedCols ) * this.columnWidth - this.gutter;
33057     },
33058     
33059     needsResizeLayout : function()
33060     {
33061         var previousWidth = this.containerWidth;
33062         this.getContainerWidth();
33063         return previousWidth !== this.containerWidth;
33064     }
33065  
33066 });
33067
33068  
33069
33070  /*
33071  * - LGPL
33072  *
33073  * element
33074  * 
33075  */
33076
33077 /**
33078  * @class Roo.bootstrap.MasonryBrick
33079  * @extends Roo.bootstrap.Component
33080  * Bootstrap MasonryBrick class
33081  * 
33082  * @constructor
33083  * Create a new MasonryBrick
33084  * @param {Object} config The config object
33085  */
33086
33087 Roo.bootstrap.MasonryBrick = function(config){
33088     
33089     Roo.bootstrap.MasonryBrick.superclass.constructor.call(this, config);
33090     
33091     Roo.bootstrap.MasonryBrick.register(this);
33092     
33093     this.addEvents({
33094         // raw events
33095         /**
33096          * @event click
33097          * When a MasonryBrick is clcik
33098          * @param {Roo.bootstrap.MasonryBrick} this
33099          * @param {Roo.EventObject} e
33100          */
33101         "click" : true
33102     });
33103 };
33104
33105 Roo.extend(Roo.bootstrap.MasonryBrick, Roo.bootstrap.Component,  {
33106     
33107     /**
33108      * @cfg {String} title
33109      */   
33110     title : '',
33111     /**
33112      * @cfg {String} html
33113      */   
33114     html : '',
33115     /**
33116      * @cfg {String} bgimage
33117      */   
33118     bgimage : '',
33119     /**
33120      * @cfg {String} videourl
33121      */   
33122     videourl : '',
33123     /**
33124      * @cfg {String} cls
33125      */   
33126     cls : '',
33127     /**
33128      * @cfg {String} href
33129      */   
33130     href : '',
33131     /**
33132      * @cfg {String} size (xs|sm|md|md-left|md-right|tall|wide)
33133      */   
33134     size : 'xs',
33135     
33136     /**
33137      * @cfg {String} placetitle (center|bottom)
33138      */   
33139     placetitle : '',
33140     
33141     /**
33142      * @cfg {Boolean} isFitContainer defalut true
33143      */   
33144     isFitContainer : true, 
33145     
33146     /**
33147      * @cfg {Boolean} preventDefault defalut false
33148      */   
33149     preventDefault : false, 
33150     
33151     /**
33152      * @cfg {Boolean} inverse defalut false
33153      */   
33154     maskInverse : false, 
33155     
33156     getAutoCreate : function()
33157     {
33158         if(!this.isFitContainer){
33159             return this.getSplitAutoCreate();
33160         }
33161         
33162         var cls = 'masonry-brick masonry-brick-full';
33163         
33164         if(this.href.length){
33165             cls += ' masonry-brick-link';
33166         }
33167         
33168         if(this.bgimage.length){
33169             cls += ' masonry-brick-image';
33170         }
33171         
33172         if(this.maskInverse){
33173             cls += ' mask-inverse';
33174         }
33175         
33176         if(!this.html.length && !this.maskInverse && !this.videourl.length){
33177             cls += ' enable-mask';
33178         }
33179         
33180         if(this.size){
33181             cls += ' masonry-' + this.size + '-brick';
33182         }
33183         
33184         if(this.placetitle.length){
33185             
33186             switch (this.placetitle) {
33187                 case 'center' :
33188                     cls += ' masonry-center-title';
33189                     break;
33190                 case 'bottom' :
33191                     cls += ' masonry-bottom-title';
33192                     break;
33193                 default:
33194                     break;
33195             }
33196             
33197         } else {
33198             if(!this.html.length && !this.bgimage.length){
33199                 cls += ' masonry-center-title';
33200             }
33201
33202             if(!this.html.length && this.bgimage.length){
33203                 cls += ' masonry-bottom-title';
33204             }
33205         }
33206         
33207         if(this.cls){
33208             cls += ' ' + this.cls;
33209         }
33210         
33211         var cfg = {
33212             tag: (this.href.length) ? 'a' : 'div',
33213             cls: cls,
33214             cn: [
33215                 {
33216                     tag: 'div',
33217                     cls: 'masonry-brick-mask'
33218                 },
33219                 {
33220                     tag: 'div',
33221                     cls: 'masonry-brick-paragraph',
33222                     cn: []
33223                 }
33224             ]
33225         };
33226         
33227         if(this.href.length){
33228             cfg.href = this.href;
33229         }
33230         
33231         var cn = cfg.cn[1].cn;
33232         
33233         if(this.title.length){
33234             cn.push({
33235                 tag: 'h4',
33236                 cls: 'masonry-brick-title',
33237                 html: this.title
33238             });
33239         }
33240         
33241         if(this.html.length){
33242             cn.push({
33243                 tag: 'p',
33244                 cls: 'masonry-brick-text',
33245                 html: this.html
33246             });
33247         }
33248         
33249         if (!this.title.length && !this.html.length) {
33250             cfg.cn[1].cls += ' hide';
33251         }
33252         
33253         if(this.bgimage.length){
33254             cfg.cn.push({
33255                 tag: 'img',
33256                 cls: 'masonry-brick-image-view',
33257                 src: this.bgimage
33258             });
33259         }
33260         
33261         if(this.videourl.length){
33262             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33263             // youtube support only?
33264             cfg.cn.push({
33265                 tag: 'iframe',
33266                 cls: 'masonry-brick-image-view',
33267                 src: vurl,
33268                 frameborder : 0,
33269                 allowfullscreen : true
33270             });
33271         }
33272         
33273         return cfg;
33274         
33275     },
33276     
33277     getSplitAutoCreate : function()
33278     {
33279         var cls = 'masonry-brick masonry-brick-split';
33280         
33281         if(this.href.length){
33282             cls += ' masonry-brick-link';
33283         }
33284         
33285         if(this.bgimage.length){
33286             cls += ' masonry-brick-image';
33287         }
33288         
33289         if(this.size){
33290             cls += ' masonry-' + this.size + '-brick';
33291         }
33292         
33293         switch (this.placetitle) {
33294             case 'center' :
33295                 cls += ' masonry-center-title';
33296                 break;
33297             case 'bottom' :
33298                 cls += ' masonry-bottom-title';
33299                 break;
33300             default:
33301                 if(!this.bgimage.length){
33302                     cls += ' masonry-center-title';
33303                 }
33304
33305                 if(this.bgimage.length){
33306                     cls += ' masonry-bottom-title';
33307                 }
33308                 break;
33309         }
33310         
33311         if(this.cls){
33312             cls += ' ' + this.cls;
33313         }
33314         
33315         var cfg = {
33316             tag: (this.href.length) ? 'a' : 'div',
33317             cls: cls,
33318             cn: [
33319                 {
33320                     tag: 'div',
33321                     cls: 'masonry-brick-split-head',
33322                     cn: [
33323                         {
33324                             tag: 'div',
33325                             cls: 'masonry-brick-paragraph',
33326                             cn: []
33327                         }
33328                     ]
33329                 },
33330                 {
33331                     tag: 'div',
33332                     cls: 'masonry-brick-split-body',
33333                     cn: []
33334                 }
33335             ]
33336         };
33337         
33338         if(this.href.length){
33339             cfg.href = this.href;
33340         }
33341         
33342         if(this.title.length){
33343             cfg.cn[0].cn[0].cn.push({
33344                 tag: 'h4',
33345                 cls: 'masonry-brick-title',
33346                 html: this.title
33347             });
33348         }
33349         
33350         if(this.html.length){
33351             cfg.cn[1].cn.push({
33352                 tag: 'p',
33353                 cls: 'masonry-brick-text',
33354                 html: this.html
33355             });
33356         }
33357
33358         if(this.bgimage.length){
33359             cfg.cn[0].cn.push({
33360                 tag: 'img',
33361                 cls: 'masonry-brick-image-view',
33362                 src: this.bgimage
33363             });
33364         }
33365         
33366         if(this.videourl.length){
33367             var vurl = this.videourl.replace(/https:\/\/youtu\.be/, 'https://www.youtube.com/embed/');
33368             // youtube support only?
33369             cfg.cn[0].cn.cn.push({
33370                 tag: 'iframe',
33371                 cls: 'masonry-brick-image-view',
33372                 src: vurl,
33373                 frameborder : 0,
33374                 allowfullscreen : true
33375             });
33376         }
33377         
33378         return cfg;
33379     },
33380     
33381     initEvents: function() 
33382     {
33383         switch (this.size) {
33384             case 'xs' :
33385                 this.x = 1;
33386                 this.y = 1;
33387                 break;
33388             case 'sm' :
33389                 this.x = 2;
33390                 this.y = 2;
33391                 break;
33392             case 'md' :
33393             case 'md-left' :
33394             case 'md-right' :
33395                 this.x = 3;
33396                 this.y = 3;
33397                 break;
33398             case 'tall' :
33399                 this.x = 2;
33400                 this.y = 3;
33401                 break;
33402             case 'wide' :
33403                 this.x = 3;
33404                 this.y = 2;
33405                 break;
33406             case 'wide-thin' :
33407                 this.x = 3;
33408                 this.y = 1;
33409                 break;
33410                         
33411             default :
33412                 break;
33413         }
33414         
33415         if(Roo.isTouch){
33416             this.el.on('touchstart', this.onTouchStart, this);
33417             this.el.on('touchmove', this.onTouchMove, this);
33418             this.el.on('touchend', this.onTouchEnd, this);
33419             this.el.on('contextmenu', this.onContextMenu, this);
33420         } else {
33421             this.el.on('mouseenter'  ,this.enter, this);
33422             this.el.on('mouseleave', this.leave, this);
33423             this.el.on('click', this.onClick, this);
33424         }
33425         
33426         if (typeof(this.parent().bricks) == 'object' && this.parent().bricks != null) {
33427             this.parent().bricks.push(this);   
33428         }
33429         
33430     },
33431     
33432     onClick: function(e, el)
33433     {
33434         var time = this.endTimer - this.startTimer;
33435         // Roo.log(e.preventDefault());
33436         if(Roo.isTouch){
33437             if(time > 1000){
33438                 e.preventDefault();
33439                 return;
33440             }
33441         }
33442         
33443         if(!this.preventDefault){
33444             return;
33445         }
33446         
33447         e.preventDefault();
33448         
33449         if (this.activeClass != '') {
33450             this.selectBrick();
33451         }
33452         
33453         this.fireEvent('click', this, e);
33454     },
33455     
33456     enter: function(e, el)
33457     {
33458         e.preventDefault();
33459         
33460         if(!this.isFitContainer || this.maskInverse || this.videourl.length){
33461             return;
33462         }
33463         
33464         if(this.bgimage.length && this.html.length){
33465             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33466         }
33467     },
33468     
33469     leave: function(e, el)
33470     {
33471         e.preventDefault();
33472         
33473         if(!this.isFitContainer || this.maskInverse  || this.videourl.length){
33474             return;
33475         }
33476         
33477         if(this.bgimage.length && this.html.length){
33478             this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33479         }
33480     },
33481     
33482     onTouchStart: function(e, el)
33483     {
33484 //        e.preventDefault();
33485         
33486         this.touchmoved = false;
33487         
33488         if(!this.isFitContainer){
33489             return;
33490         }
33491         
33492         if(!this.bgimage.length || !this.html.length){
33493             return;
33494         }
33495         
33496         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0.9, true);
33497         
33498         this.timer = new Date().getTime();
33499         
33500     },
33501     
33502     onTouchMove: function(e, el)
33503     {
33504         this.touchmoved = true;
33505     },
33506     
33507     onContextMenu : function(e,el)
33508     {
33509         e.preventDefault();
33510         e.stopPropagation();
33511         return false;
33512     },
33513     
33514     onTouchEnd: function(e, el)
33515     {
33516 //        e.preventDefault();
33517         
33518         if((new Date().getTime() - this.timer > 1000) || !this.href.length || this.touchmoved){
33519         
33520             this.leave(e,el);
33521             
33522             return;
33523         }
33524         
33525         if(!this.bgimage.length || !this.html.length){
33526             
33527             if(this.href.length){
33528                 window.location.href = this.href;
33529             }
33530             
33531             return;
33532         }
33533         
33534         if(!this.isFitContainer){
33535             return;
33536         }
33537         
33538         this.el.select('.masonry-brick-paragraph', true).first().setOpacity(0, true);
33539         
33540         window.location.href = this.href;
33541     },
33542     
33543     //selection on single brick only
33544     selectBrick : function() {
33545         
33546         if (!this.parentId) {
33547             return;
33548         }
33549         
33550         var m = Roo.bootstrap.LayoutMasonry.get(this.parentId);
33551         var index = m.selectedBrick.indexOf(this.id);
33552         
33553         if ( index > -1) {
33554             m.selectedBrick.splice(index,1);
33555             this.el.removeClass(this.activeClass);
33556             return;
33557         }
33558         
33559         for(var i = 0; i < m.selectedBrick.length; i++) {
33560             var b = Roo.bootstrap.MasonryBrick.get(m.selectedBrick[i]);
33561             b.el.removeClass(b.activeClass);
33562         }
33563         
33564         m.selectedBrick = [];
33565         
33566         m.selectedBrick.push(this.id);
33567         this.el.addClass(this.activeClass);
33568         return;
33569     },
33570     
33571     isSelected : function(){
33572         return this.el.hasClass(this.activeClass);
33573         
33574     }
33575 });
33576
33577 Roo.apply(Roo.bootstrap.MasonryBrick, {
33578     
33579     //groups: {},
33580     groups : new Roo.util.MixedCollection(false, function(o) { return o.el.id; }),
33581      /**
33582     * register a Masonry Brick
33583     * @param {Roo.bootstrap.MasonryBrick} the masonry brick to add
33584     */
33585     
33586     register : function(brick)
33587     {
33588         //this.groups[brick.id] = brick;
33589         this.groups.add(brick.id, brick);
33590     },
33591     /**
33592     * fetch a  masonry brick based on the masonry brick ID
33593     * @param {string} the masonry brick to add
33594     * @returns {Roo.bootstrap.MasonryBrick} the masonry brick
33595     */
33596     
33597     get: function(brick_id) 
33598     {
33599         // if (typeof(this.groups[brick_id]) == 'undefined') {
33600         //     return false;
33601         // }
33602         // return this.groups[brick_id] ;
33603         
33604         if(this.groups.key(brick_id)) {
33605             return this.groups.key(brick_id);
33606         }
33607         
33608         return false;
33609     }
33610     
33611     
33612     
33613 });
33614
33615  /*
33616  * - LGPL
33617  *
33618  * element
33619  * 
33620  */
33621
33622 /**
33623  * @class Roo.bootstrap.Brick
33624  * @extends Roo.bootstrap.Component
33625  * Bootstrap Brick class
33626  * 
33627  * @constructor
33628  * Create a new Brick
33629  * @param {Object} config The config object
33630  */
33631
33632 Roo.bootstrap.Brick = function(config){
33633     Roo.bootstrap.Brick.superclass.constructor.call(this, config);
33634     
33635     this.addEvents({
33636         // raw events
33637         /**
33638          * @event click
33639          * When a Brick is click
33640          * @param {Roo.bootstrap.Brick} this
33641          * @param {Roo.EventObject} e
33642          */
33643         "click" : true
33644     });
33645 };
33646
33647 Roo.extend(Roo.bootstrap.Brick, Roo.bootstrap.Component,  {
33648     
33649     /**
33650      * @cfg {String} title
33651      */   
33652     title : '',
33653     /**
33654      * @cfg {String} html
33655      */   
33656     html : '',
33657     /**
33658      * @cfg {String} bgimage
33659      */   
33660     bgimage : '',
33661     /**
33662      * @cfg {String} cls
33663      */   
33664     cls : '',
33665     /**
33666      * @cfg {String} href
33667      */   
33668     href : '',
33669     /**
33670      * @cfg {String} video
33671      */   
33672     video : '',
33673     /**
33674      * @cfg {Boolean} square
33675      */   
33676     square : true,
33677     
33678     getAutoCreate : function()
33679     {
33680         var cls = 'roo-brick';
33681         
33682         if(this.href.length){
33683             cls += ' roo-brick-link';
33684         }
33685         
33686         if(this.bgimage.length){
33687             cls += ' roo-brick-image';
33688         }
33689         
33690         if(!this.html.length && !this.bgimage.length){
33691             cls += ' roo-brick-center-title';
33692         }
33693         
33694         if(!this.html.length && this.bgimage.length){
33695             cls += ' roo-brick-bottom-title';
33696         }
33697         
33698         if(this.cls){
33699             cls += ' ' + this.cls;
33700         }
33701         
33702         var cfg = {
33703             tag: (this.href.length) ? 'a' : 'div',
33704             cls: cls,
33705             cn: [
33706                 {
33707                     tag: 'div',
33708                     cls: 'roo-brick-paragraph',
33709                     cn: []
33710                 }
33711             ]
33712         };
33713         
33714         if(this.href.length){
33715             cfg.href = this.href;
33716         }
33717         
33718         var cn = cfg.cn[0].cn;
33719         
33720         if(this.title.length){
33721             cn.push({
33722                 tag: 'h4',
33723                 cls: 'roo-brick-title',
33724                 html: this.title
33725             });
33726         }
33727         
33728         if(this.html.length){
33729             cn.push({
33730                 tag: 'p',
33731                 cls: 'roo-brick-text',
33732                 html: this.html
33733             });
33734         } else {
33735             cn.cls += ' hide';
33736         }
33737         
33738         if(this.bgimage.length){
33739             cfg.cn.push({
33740                 tag: 'img',
33741                 cls: 'roo-brick-image-view',
33742                 src: this.bgimage
33743             });
33744         }
33745         
33746         return cfg;
33747     },
33748     
33749     initEvents: function() 
33750     {
33751         if(this.title.length || this.html.length){
33752             this.el.on('mouseenter'  ,this.enter, this);
33753             this.el.on('mouseleave', this.leave, this);
33754         }
33755         
33756         Roo.EventManager.onWindowResize(this.resize, this); 
33757         
33758         if(this.bgimage.length){
33759             this.imageEl = this.el.select('.roo-brick-image-view', true).first();
33760             this.imageEl.on('load', this.onImageLoad, this);
33761             return;
33762         }
33763         
33764         this.resize();
33765     },
33766     
33767     onImageLoad : function()
33768     {
33769         this.resize();
33770     },
33771     
33772     resize : function()
33773     {
33774         var paragraph = this.el.select('.roo-brick-paragraph', true).first();
33775         
33776         paragraph.setHeight(paragraph.getWidth() + paragraph.getPadding('tb'));
33777         
33778         if(this.bgimage.length){
33779             var image = this.el.select('.roo-brick-image-view', true).first();
33780             
33781             image.setWidth(paragraph.getWidth());
33782             
33783             if(this.square){
33784                 image.setHeight(paragraph.getWidth());
33785             }
33786             
33787             this.el.setHeight(image.getHeight());
33788             paragraph.setHeight(image.getHeight());
33789             
33790         }
33791         
33792     },
33793     
33794     enter: function(e, el)
33795     {
33796         e.preventDefault();
33797         
33798         if(this.bgimage.length){
33799             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0.9, true);
33800             this.el.select('.roo-brick-image-view', true).first().setOpacity(0.1, true);
33801         }
33802     },
33803     
33804     leave: function(e, el)
33805     {
33806         e.preventDefault();
33807         
33808         if(this.bgimage.length){
33809             this.el.select('.roo-brick-paragraph', true).first().setOpacity(0, true);
33810             this.el.select('.roo-brick-image-view', true).first().setOpacity(1, true);
33811         }
33812     }
33813     
33814 });
33815
33816  
33817
33818  /*
33819  * - LGPL
33820  *
33821  * Number field 
33822  */
33823
33824 /**
33825  * @class Roo.bootstrap.NumberField
33826  * @extends Roo.bootstrap.Input
33827  * Bootstrap NumberField class
33828  * 
33829  * 
33830  * 
33831  * 
33832  * @constructor
33833  * Create a new NumberField
33834  * @param {Object} config The config object
33835  */
33836
33837 Roo.bootstrap.NumberField = function(config){
33838     Roo.bootstrap.NumberField.superclass.constructor.call(this, config);
33839 };
33840
33841 Roo.extend(Roo.bootstrap.NumberField, Roo.bootstrap.Input, {
33842     
33843     /**
33844      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
33845      */
33846     allowDecimals : true,
33847     /**
33848      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
33849      */
33850     decimalSeparator : ".",
33851     /**
33852      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
33853      */
33854     decimalPrecision : 2,
33855     /**
33856      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
33857      */
33858     allowNegative : true,
33859     
33860     /**
33861      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
33862      */
33863     allowZero: true,
33864     /**
33865      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
33866      */
33867     minValue : Number.NEGATIVE_INFINITY,
33868     /**
33869      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
33870      */
33871     maxValue : Number.MAX_VALUE,
33872     /**
33873      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
33874      */
33875     minText : "The minimum value for this field is {0}",
33876     /**
33877      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
33878      */
33879     maxText : "The maximum value for this field is {0}",
33880     /**
33881      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
33882      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
33883      */
33884     nanText : "{0} is not a valid number",
33885     /**
33886      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
33887      */
33888     thousandsDelimiter : false,
33889     /**
33890      * @cfg {String} valueAlign alignment of value
33891      */
33892     valueAlign : "left",
33893
33894     getAutoCreate : function()
33895     {
33896         var hiddenInput = {
33897             tag: 'input',
33898             type: 'hidden',
33899             id: Roo.id(),
33900             cls: 'hidden-number-input'
33901         };
33902         
33903         if (this.name) {
33904             hiddenInput.name = this.name;
33905         }
33906         
33907         this.name = '';
33908         
33909         var cfg = Roo.bootstrap.NumberField.superclass.getAutoCreate.call(this);
33910         
33911         this.name = hiddenInput.name;
33912         
33913         if(cfg.cn.length > 0) {
33914             cfg.cn.push(hiddenInput);
33915         }
33916         
33917         return cfg;
33918     },
33919
33920     // private
33921     initEvents : function()
33922     {   
33923         Roo.bootstrap.NumberField.superclass.initEvents.call(this);
33924         
33925         var allowed = "0123456789";
33926         
33927         if(this.allowDecimals){
33928             allowed += this.decimalSeparator;
33929         }
33930         
33931         if(this.allowNegative){
33932             allowed += "-";
33933         }
33934         
33935         if(this.thousandsDelimiter) {
33936             allowed += ",";
33937         }
33938         
33939         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
33940         
33941         var keyPress = function(e){
33942             
33943             var k = e.getKey();
33944             
33945             var c = e.getCharCode();
33946             
33947             if(
33948                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
33949                     allowed.indexOf(String.fromCharCode(c)) === -1
33950             ){
33951                 e.stopEvent();
33952                 return;
33953             }
33954             
33955             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
33956                 return;
33957             }
33958             
33959             if(allowed.indexOf(String.fromCharCode(c)) === -1){
33960                 e.stopEvent();
33961             }
33962         };
33963         
33964         this.el.on("keypress", keyPress, this);
33965     },
33966     
33967     validateValue : function(value)
33968     {
33969         
33970         if(!Roo.bootstrap.NumberField.superclass.validateValue.call(this, value)){
33971             return false;
33972         }
33973         
33974         var num = this.parseValue(value);
33975         
33976         if(isNaN(num)){
33977             this.markInvalid(String.format(this.nanText, value));
33978             return false;
33979         }
33980         
33981         if(num < this.minValue){
33982             this.markInvalid(String.format(this.minText, this.minValue));
33983             return false;
33984         }
33985         
33986         if(num > this.maxValue){
33987             this.markInvalid(String.format(this.maxText, this.maxValue));
33988             return false;
33989         }
33990         
33991         return true;
33992     },
33993
33994     getValue : function()
33995     {
33996         var v = this.hiddenEl().getValue();
33997         
33998         return this.fixPrecision(this.parseValue(v));
33999     },
34000
34001     parseValue : function(value)
34002     {
34003         if(this.thousandsDelimiter) {
34004             value += "";
34005             r = new RegExp(",", "g");
34006             value = value.replace(r, "");
34007         }
34008         
34009         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
34010         return isNaN(value) ? '' : value;
34011     },
34012
34013     fixPrecision : function(value)
34014     {
34015         if(this.thousandsDelimiter) {
34016             value += "";
34017             r = new RegExp(",", "g");
34018             value = value.replace(r, "");
34019         }
34020         
34021         var nan = isNaN(value);
34022         
34023         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
34024             return nan ? '' : value;
34025         }
34026         return parseFloat(value).toFixed(this.decimalPrecision);
34027     },
34028
34029     setValue : function(v)
34030     {
34031         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
34032         
34033         this.value = v;
34034         
34035         if(this.rendered){
34036             
34037             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
34038             
34039             this.inputEl().dom.value = (v == '') ? '' :
34040                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
34041             
34042             if(!this.allowZero && v === '0') {
34043                 this.hiddenEl().dom.value = '';
34044                 this.inputEl().dom.value = '';
34045             }
34046             
34047             this.validate();
34048         }
34049     },
34050
34051     decimalPrecisionFcn : function(v)
34052     {
34053         return Math.floor(v);
34054     },
34055
34056     beforeBlur : function()
34057     {
34058         var v = this.parseValue(this.getRawValue());
34059         
34060         if(v || v === 0 || v === ''){
34061             this.setValue(v);
34062         }
34063     },
34064     
34065     hiddenEl : function()
34066     {
34067         return this.el.select('input.hidden-number-input',true).first();
34068     }
34069     
34070 });
34071
34072  
34073
34074 /*
34075 * Licence: LGPL
34076 */
34077
34078 /**
34079  * @class Roo.bootstrap.DocumentSlider
34080  * @extends Roo.bootstrap.Component
34081  * Bootstrap DocumentSlider class
34082  * 
34083  * @constructor
34084  * Create a new DocumentViewer
34085  * @param {Object} config The config object
34086  */
34087
34088 Roo.bootstrap.DocumentSlider = function(config){
34089     Roo.bootstrap.DocumentSlider.superclass.constructor.call(this, config);
34090     
34091     this.files = [];
34092     
34093     this.addEvents({
34094         /**
34095          * @event initial
34096          * Fire after initEvent
34097          * @param {Roo.bootstrap.DocumentSlider} this
34098          */
34099         "initial" : true,
34100         /**
34101          * @event update
34102          * Fire after update
34103          * @param {Roo.bootstrap.DocumentSlider} this
34104          */
34105         "update" : true,
34106         /**
34107          * @event click
34108          * Fire after click
34109          * @param {Roo.bootstrap.DocumentSlider} this
34110          */
34111         "click" : true
34112     });
34113 };
34114
34115 Roo.extend(Roo.bootstrap.DocumentSlider, Roo.bootstrap.Component,  {
34116     
34117     files : false,
34118     
34119     indicator : 0,
34120     
34121     getAutoCreate : function()
34122     {
34123         var cfg = {
34124             tag : 'div',
34125             cls : 'roo-document-slider',
34126             cn : [
34127                 {
34128                     tag : 'div',
34129                     cls : 'roo-document-slider-header',
34130                     cn : [
34131                         {
34132                             tag : 'div',
34133                             cls : 'roo-document-slider-header-title'
34134                         }
34135                     ]
34136                 },
34137                 {
34138                     tag : 'div',
34139                     cls : 'roo-document-slider-body',
34140                     cn : [
34141                         {
34142                             tag : 'div',
34143                             cls : 'roo-document-slider-prev',
34144                             cn : [
34145                                 {
34146                                     tag : 'i',
34147                                     cls : 'fa fa-chevron-left'
34148                                 }
34149                             ]
34150                         },
34151                         {
34152                             tag : 'div',
34153                             cls : 'roo-document-slider-thumb',
34154                             cn : [
34155                                 {
34156                                     tag : 'img',
34157                                     cls : 'roo-document-slider-image'
34158                                 }
34159                             ]
34160                         },
34161                         {
34162                             tag : 'div',
34163                             cls : 'roo-document-slider-next',
34164                             cn : [
34165                                 {
34166                                     tag : 'i',
34167                                     cls : 'fa fa-chevron-right'
34168                                 }
34169                             ]
34170                         }
34171                     ]
34172                 }
34173             ]
34174         };
34175         
34176         return cfg;
34177     },
34178     
34179     initEvents : function()
34180     {
34181         this.headerEl = this.el.select('.roo-document-slider-header', true).first();
34182         this.headerEl.setVisibilityMode(Roo.Element.DISPLAY);
34183         
34184         this.titleEl = this.el.select('.roo-document-slider-header .roo-document-slider-header-title', true).first();
34185         this.titleEl.setVisibilityMode(Roo.Element.DISPLAY);
34186         
34187         this.bodyEl = this.el.select('.roo-document-slider-body', true).first();
34188         this.bodyEl.setVisibilityMode(Roo.Element.DISPLAY);
34189         
34190         this.thumbEl = this.el.select('.roo-document-slider-thumb', true).first();
34191         this.thumbEl.setVisibilityMode(Roo.Element.DISPLAY);
34192         
34193         this.imageEl = this.el.select('.roo-document-slider-image', true).first();
34194         this.imageEl.setVisibilityMode(Roo.Element.DISPLAY);
34195         
34196         this.prevIndicator = this.el.select('.roo-document-slider-prev i', true).first();
34197         this.prevIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34198         
34199         this.nextIndicator = this.el.select('.roo-document-slider-next i', true).first();
34200         this.nextIndicator.setVisibilityMode(Roo.Element.DISPLAY);
34201         
34202         this.thumbEl.on('click', this.onClick, this);
34203         
34204         this.prevIndicator.on('click', this.prev, this);
34205         
34206         this.nextIndicator.on('click', this.next, this);
34207         
34208     },
34209     
34210     initial : function()
34211     {
34212         if(this.files.length){
34213             this.indicator = 1;
34214             this.update()
34215         }
34216         
34217         this.fireEvent('initial', this);
34218     },
34219     
34220     update : function()
34221     {
34222         this.imageEl.attr('src', this.files[this.indicator - 1]);
34223         
34224         this.titleEl.dom.innerHTML = String.format('{0} / {1}', this.indicator, this.files.length);
34225         
34226         this.prevIndicator.show();
34227         
34228         if(this.indicator == 1){
34229             this.prevIndicator.hide();
34230         }
34231         
34232         this.nextIndicator.show();
34233         
34234         if(this.indicator == this.files.length){
34235             this.nextIndicator.hide();
34236         }
34237         
34238         this.thumbEl.scrollTo('top');
34239         
34240         this.fireEvent('update', this);
34241     },
34242     
34243     onClick : function(e)
34244     {
34245         e.preventDefault();
34246         
34247         this.fireEvent('click', this);
34248     },
34249     
34250     prev : function(e)
34251     {
34252         e.preventDefault();
34253         
34254         this.indicator = Math.max(1, this.indicator - 1);
34255         
34256         this.update();
34257     },
34258     
34259     next : function(e)
34260     {
34261         e.preventDefault();
34262         
34263         this.indicator = Math.min(this.files.length, this.indicator + 1);
34264         
34265         this.update();
34266     }
34267 });
34268 /*
34269  * - LGPL
34270  *
34271  * RadioSet
34272  *
34273  *
34274  */
34275
34276 /**
34277  * @class Roo.bootstrap.RadioSet
34278  * @extends Roo.bootstrap.Input
34279  * Bootstrap RadioSet class
34280  * @cfg {String} indicatorpos (left|right) default left
34281  * @cfg {Boolean} inline (true|false) inline the element (default true)
34282  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the radio
34283  * @constructor
34284  * Create a new RadioSet
34285  * @param {Object} config The config object
34286  */
34287
34288 Roo.bootstrap.RadioSet = function(config){
34289     
34290     Roo.bootstrap.RadioSet.superclass.constructor.call(this, config);
34291     
34292     this.radioes = [];
34293     
34294     Roo.bootstrap.RadioSet.register(this);
34295     
34296     this.addEvents({
34297         /**
34298         * @event check
34299         * Fires when the element is checked or unchecked.
34300         * @param {Roo.bootstrap.RadioSet} this This radio
34301         * @param {Roo.bootstrap.Radio} item The checked item
34302         */
34303        check : true,
34304        /**
34305         * @event click
34306         * Fires when the element is click.
34307         * @param {Roo.bootstrap.RadioSet} this This radio set
34308         * @param {Roo.bootstrap.Radio} item The checked item
34309         * @param {Roo.EventObject} e The event object
34310         */
34311        click : true
34312     });
34313     
34314 };
34315
34316 Roo.extend(Roo.bootstrap.RadioSet, Roo.bootstrap.Input,  {
34317
34318     radioes : false,
34319     
34320     inline : true,
34321     
34322     weight : '',
34323     
34324     indicatorpos : 'left',
34325     
34326     getAutoCreate : function()
34327     {
34328         var label = {
34329             tag : 'label',
34330             cls : 'roo-radio-set-label',
34331             cn : [
34332                 {
34333                     tag : 'span',
34334                     html : this.fieldLabel
34335                 }
34336             ]
34337         };
34338         if (Roo.bootstrap.version == 3) {
34339             
34340             
34341             if(this.indicatorpos == 'left'){
34342                 label.cn.unshift({
34343                     tag : 'i',
34344                     cls : 'roo-required-indicator left-indicator text-danger fa fa-lg fa-star',
34345                     tooltip : 'This field is required'
34346                 });
34347             } else {
34348                 label.cn.push({
34349                     tag : 'i',
34350                     cls : 'roo-required-indicator right-indicator text-danger fa fa-lg fa-star',
34351                     tooltip : 'This field is required'
34352                 });
34353             }
34354         }
34355         var items = {
34356             tag : 'div',
34357             cls : 'roo-radio-set-items'
34358         };
34359         
34360         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
34361         
34362         if (align === 'left' && this.fieldLabel.length) {
34363             
34364             items = {
34365                 cls : "roo-radio-set-right", 
34366                 cn: [
34367                     items
34368                 ]
34369             };
34370             
34371             if(this.labelWidth > 12){
34372                 label.style = "width: " + this.labelWidth + 'px';
34373             }
34374             
34375             if(this.labelWidth < 13 && this.labelmd == 0){
34376                 this.labelmd = this.labelWidth;
34377             }
34378             
34379             if(this.labellg > 0){
34380                 label.cls += ' col-lg-' + this.labellg;
34381                 items.cls += ' col-lg-' + (12 - this.labellg);
34382             }
34383             
34384             if(this.labelmd > 0){
34385                 label.cls += ' col-md-' + this.labelmd;
34386                 items.cls += ' col-md-' + (12 - this.labelmd);
34387             }
34388             
34389             if(this.labelsm > 0){
34390                 label.cls += ' col-sm-' + this.labelsm;
34391                 items.cls += ' col-sm-' + (12 - this.labelsm);
34392             }
34393             
34394             if(this.labelxs > 0){
34395                 label.cls += ' col-xs-' + this.labelxs;
34396                 items.cls += ' col-xs-' + (12 - this.labelxs);
34397             }
34398         }
34399         
34400         var cfg = {
34401             tag : 'div',
34402             cls : 'roo-radio-set',
34403             cn : [
34404                 {
34405                     tag : 'input',
34406                     cls : 'roo-radio-set-input',
34407                     type : 'hidden',
34408                     name : this.name,
34409                     value : this.value ? this.value :  ''
34410                 },
34411                 label,
34412                 items
34413             ]
34414         };
34415         
34416         if(this.weight.length){
34417             cfg.cls += ' roo-radio-' + this.weight;
34418         }
34419         
34420         if(this.inline) {
34421             cfg.cls += ' roo-radio-set-inline';
34422         }
34423         
34424         var settings=this;
34425         ['xs','sm','md','lg'].map(function(size){
34426             if (settings[size]) {
34427                 cfg.cls += ' col-' + size + '-' + settings[size];
34428             }
34429         });
34430         
34431         return cfg;
34432         
34433     },
34434
34435     initEvents : function()
34436     {
34437         this.labelEl = this.el.select('.roo-radio-set-label', true).first();
34438         this.labelEl.setVisibilityMode(Roo.Element.DISPLAY);
34439         
34440         if(!this.fieldLabel.length){
34441             this.labelEl.hide();
34442         }
34443         
34444         this.itemsEl = this.el.select('.roo-radio-set-items', true).first();
34445         this.itemsEl.setVisibilityMode(Roo.Element.DISPLAY);
34446         
34447         this.indicator = this.indicatorEl();
34448         
34449         if(this.indicator){
34450             this.indicator.addClass('invisible');
34451         }
34452         
34453         this.originalValue = this.getValue();
34454         
34455     },
34456     
34457     inputEl: function ()
34458     {
34459         return this.el.select('.roo-radio-set-input', true).first();
34460     },
34461     
34462     getChildContainer : function()
34463     {
34464         return this.itemsEl;
34465     },
34466     
34467     register : function(item)
34468     {
34469         this.radioes.push(item);
34470         
34471     },
34472     
34473     validate : function()
34474     {   
34475         if(this.getVisibilityEl().hasClass('hidden')){
34476             return true;
34477         }
34478         
34479         var valid = false;
34480         
34481         Roo.each(this.radioes, function(i){
34482             if(!i.checked){
34483                 return;
34484             }
34485             
34486             valid = true;
34487             return false;
34488         });
34489         
34490         if(this.allowBlank) {
34491             return true;
34492         }
34493         
34494         if(this.disabled || valid){
34495             this.markValid();
34496             return true;
34497         }
34498         
34499         this.markInvalid();
34500         return false;
34501         
34502     },
34503     
34504     markValid : function()
34505     {
34506         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34507             this.indicatorEl().removeClass('visible');
34508             this.indicatorEl().addClass('invisible');
34509         }
34510         
34511         
34512         if (Roo.bootstrap.version == 3) {
34513             this.el.removeClass([this.invalidClass, this.validClass]);
34514             this.el.addClass(this.validClass);
34515         } else {
34516             this.el.removeClass(['is-invalid','is-valid']);
34517             this.el.addClass(['is-valid']);
34518         }
34519         this.fireEvent('valid', this);
34520     },
34521     
34522     markInvalid : function(msg)
34523     {
34524         if(this.allowBlank || this.disabled){
34525             return;
34526         }
34527         
34528         if(this.labelEl.isVisible(true) && this.indicatorEl()){
34529             this.indicatorEl().removeClass('invisible');
34530             this.indicatorEl().addClass('visible');
34531         }
34532         if (Roo.bootstrap.version == 3) {
34533             this.el.removeClass([this.invalidClass, this.validClass]);
34534             this.el.addClass(this.invalidClass);
34535         } else {
34536             this.el.removeClass(['is-invalid','is-valid']);
34537             this.el.addClass(['is-invalid']);
34538         }
34539         
34540         this.fireEvent('invalid', this, msg);
34541         
34542     },
34543     
34544     setValue : function(v, suppressEvent)
34545     {   
34546         if(this.value === v){
34547             return;
34548         }
34549         
34550         this.value = v;
34551         
34552         if(this.rendered){
34553             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
34554         }
34555         
34556         Roo.each(this.radioes, function(i){
34557             i.checked = false;
34558             i.el.removeClass('checked');
34559         });
34560         
34561         Roo.each(this.radioes, function(i){
34562             
34563             if(i.value === v || i.value.toString() === v.toString()){
34564                 i.checked = true;
34565                 i.el.addClass('checked');
34566                 
34567                 if(suppressEvent !== true){
34568                     this.fireEvent('check', this, i);
34569                 }
34570                 
34571                 return false;
34572             }
34573             
34574         }, this);
34575         
34576         this.validate();
34577     },
34578     
34579     clearInvalid : function(){
34580         
34581         if(!this.el || this.preventMark){
34582             return;
34583         }
34584         
34585         this.el.removeClass([this.invalidClass]);
34586         
34587         this.fireEvent('valid', this);
34588     }
34589     
34590 });
34591
34592 Roo.apply(Roo.bootstrap.RadioSet, {
34593     
34594     groups: {},
34595     
34596     register : function(set)
34597     {
34598         this.groups[set.name] = set;
34599     },
34600     
34601     get: function(name) 
34602     {
34603         if (typeof(this.groups[name]) == 'undefined') {
34604             return false;
34605         }
34606         
34607         return this.groups[name] ;
34608     }
34609     
34610 });
34611 /*
34612  * Based on:
34613  * Ext JS Library 1.1.1
34614  * Copyright(c) 2006-2007, Ext JS, LLC.
34615  *
34616  * Originally Released Under LGPL - original licence link has changed is not relivant.
34617  *
34618  * Fork - LGPL
34619  * <script type="text/javascript">
34620  */
34621
34622
34623 /**
34624  * @class Roo.bootstrap.SplitBar
34625  * @extends Roo.util.Observable
34626  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
34627  * <br><br>
34628  * Usage:
34629  * <pre><code>
34630 var split = new Roo.bootstrap.SplitBar("elementToDrag", "elementToSize",
34631                    Roo.bootstrap.SplitBar.HORIZONTAL, Roo.bootstrap.SplitBar.LEFT);
34632 split.setAdapter(new Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter("container"));
34633 split.minSize = 100;
34634 split.maxSize = 600;
34635 split.animate = true;
34636 split.on('moved', splitterMoved);
34637 </code></pre>
34638  * @constructor
34639  * Create a new SplitBar
34640  * @config {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
34641  * @config {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
34642  * @config {Number} orientation (optional) Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34643  * @config {Number} placement (optional) Either Roo.bootstrap.SplitBar.LEFT or Roo.bootstrap.SplitBar.RIGHT for horizontal or  
34644                         Roo.bootstrap.SplitBar.TOP or Roo.bootstrap.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
34645                         position of the SplitBar).
34646  */
34647 Roo.bootstrap.SplitBar = function(cfg){
34648     
34649     /** @private */
34650     
34651     //{
34652     //  dragElement : elm
34653     //  resizingElement: el,
34654         // optional..
34655     //    orientation : Either Roo.bootstrap.SplitBar.HORIZONTAL
34656     //    placement : Roo.bootstrap.SplitBar.LEFT  ,
34657         // existingProxy ???
34658     //}
34659     
34660     this.el = Roo.get(cfg.dragElement, true);
34661     this.el.dom.unselectable = "on";
34662     /** @private */
34663     this.resizingEl = Roo.get(cfg.resizingElement, true);
34664
34665     /**
34666      * @private
34667      * The orientation of the split. Either Roo.bootstrap.SplitBar.HORIZONTAL or Roo.bootstrap.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
34668      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
34669      * @type Number
34670      */
34671     this.orientation = cfg.orientation || Roo.bootstrap.SplitBar.HORIZONTAL;
34672     
34673     /**
34674      * The minimum size of the resizing element. (Defaults to 0)
34675      * @type Number
34676      */
34677     this.minSize = 0;
34678     
34679     /**
34680      * The maximum size of the resizing element. (Defaults to 2000)
34681      * @type Number
34682      */
34683     this.maxSize = 2000;
34684     
34685     /**
34686      * Whether to animate the transition to the new size
34687      * @type Boolean
34688      */
34689     this.animate = false;
34690     
34691     /**
34692      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
34693      * @type Boolean
34694      */
34695     this.useShim = false;
34696     
34697     /** @private */
34698     this.shim = null;
34699     
34700     if(!cfg.existingProxy){
34701         /** @private */
34702         this.proxy = Roo.bootstrap.SplitBar.createProxy(this.orientation);
34703     }else{
34704         this.proxy = Roo.get(cfg.existingProxy).dom;
34705     }
34706     /** @private */
34707     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
34708     
34709     /** @private */
34710     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
34711     
34712     /** @private */
34713     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
34714     
34715     /** @private */
34716     this.dragSpecs = {};
34717     
34718     /**
34719      * @private The adapter to use to positon and resize elements
34720      */
34721     this.adapter = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34722     this.adapter.init(this);
34723     
34724     if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34725         /** @private */
34726         this.placement = cfg.placement || (this.el.getX() > this.resizingEl.getX() ? Roo.bootstrap.SplitBar.LEFT : Roo.bootstrap.SplitBar.RIGHT);
34727         this.el.addClass("roo-splitbar-h");
34728     }else{
34729         /** @private */
34730         this.placement = cfg.placement || (this.el.getY() > this.resizingEl.getY() ? Roo.bootstrap.SplitBar.TOP : Roo.bootstrap.SplitBar.BOTTOM);
34731         this.el.addClass("roo-splitbar-v");
34732     }
34733     
34734     this.addEvents({
34735         /**
34736          * @event resize
34737          * Fires when the splitter is moved (alias for {@link #event-moved})
34738          * @param {Roo.bootstrap.SplitBar} this
34739          * @param {Number} newSize the new width or height
34740          */
34741         "resize" : true,
34742         /**
34743          * @event moved
34744          * Fires when the splitter is moved
34745          * @param {Roo.bootstrap.SplitBar} this
34746          * @param {Number} newSize the new width or height
34747          */
34748         "moved" : true,
34749         /**
34750          * @event beforeresize
34751          * Fires before the splitter is dragged
34752          * @param {Roo.bootstrap.SplitBar} this
34753          */
34754         "beforeresize" : true,
34755
34756         "beforeapply" : true
34757     });
34758
34759     Roo.util.Observable.call(this);
34760 };
34761
34762 Roo.extend(Roo.bootstrap.SplitBar, Roo.util.Observable, {
34763     onStartProxyDrag : function(x, y){
34764         this.fireEvent("beforeresize", this);
34765         if(!this.overlay){
34766             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "roo-drag-overlay", html: "&#160;"}, true);
34767             o.unselectable();
34768             o.enableDisplayMode("block");
34769             // all splitbars share the same overlay
34770             Roo.bootstrap.SplitBar.prototype.overlay = o;
34771         }
34772         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34773         this.overlay.show();
34774         Roo.get(this.proxy).setDisplayed("block");
34775         var size = this.adapter.getElementSize(this);
34776         this.activeMinSize = this.getMinimumSize();;
34777         this.activeMaxSize = this.getMaximumSize();;
34778         var c1 = size - this.activeMinSize;
34779         var c2 = Math.max(this.activeMaxSize - size, 0);
34780         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34781             this.dd.resetConstraints();
34782             this.dd.setXConstraint(
34783                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c1 : c2, 
34784                 this.placement == Roo.bootstrap.SplitBar.LEFT ? c2 : c1
34785             );
34786             this.dd.setYConstraint(0, 0);
34787         }else{
34788             this.dd.resetConstraints();
34789             this.dd.setXConstraint(0, 0);
34790             this.dd.setYConstraint(
34791                 this.placement == Roo.bootstrap.SplitBar.TOP ? c1 : c2, 
34792                 this.placement == Roo.bootstrap.SplitBar.TOP ? c2 : c1
34793             );
34794          }
34795         this.dragSpecs.startSize = size;
34796         this.dragSpecs.startPoint = [x, y];
34797         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
34798     },
34799     
34800     /** 
34801      * @private Called after the drag operation by the DDProxy
34802      */
34803     onEndProxyDrag : function(e){
34804         Roo.get(this.proxy).setDisplayed(false);
34805         var endPoint = Roo.lib.Event.getXY(e);
34806         if(this.overlay){
34807             this.overlay.hide();
34808         }
34809         var newSize;
34810         if(this.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34811             newSize = this.dragSpecs.startSize + 
34812                 (this.placement == Roo.bootstrap.SplitBar.LEFT ?
34813                     endPoint[0] - this.dragSpecs.startPoint[0] :
34814                     this.dragSpecs.startPoint[0] - endPoint[0]
34815                 );
34816         }else{
34817             newSize = this.dragSpecs.startSize + 
34818                 (this.placement == Roo.bootstrap.SplitBar.TOP ?
34819                     endPoint[1] - this.dragSpecs.startPoint[1] :
34820                     this.dragSpecs.startPoint[1] - endPoint[1]
34821                 );
34822         }
34823         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
34824         if(newSize != this.dragSpecs.startSize){
34825             if(this.fireEvent('beforeapply', this, newSize) !== false){
34826                 this.adapter.setElementSize(this, newSize);
34827                 this.fireEvent("moved", this, newSize);
34828                 this.fireEvent("resize", this, newSize);
34829             }
34830         }
34831     },
34832     
34833     /**
34834      * Get the adapter this SplitBar uses
34835      * @return The adapter object
34836      */
34837     getAdapter : function(){
34838         return this.adapter;
34839     },
34840     
34841     /**
34842      * Set the adapter this SplitBar uses
34843      * @param {Object} adapter A SplitBar adapter object
34844      */
34845     setAdapter : function(adapter){
34846         this.adapter = adapter;
34847         this.adapter.init(this);
34848     },
34849     
34850     /**
34851      * Gets the minimum size for the resizing element
34852      * @return {Number} The minimum size
34853      */
34854     getMinimumSize : function(){
34855         return this.minSize;
34856     },
34857     
34858     /**
34859      * Sets the minimum size for the resizing element
34860      * @param {Number} minSize The minimum size
34861      */
34862     setMinimumSize : function(minSize){
34863         this.minSize = minSize;
34864     },
34865     
34866     /**
34867      * Gets the maximum size for the resizing element
34868      * @return {Number} The maximum size
34869      */
34870     getMaximumSize : function(){
34871         return this.maxSize;
34872     },
34873     
34874     /**
34875      * Sets the maximum size for the resizing element
34876      * @param {Number} maxSize The maximum size
34877      */
34878     setMaximumSize : function(maxSize){
34879         this.maxSize = maxSize;
34880     },
34881     
34882     /**
34883      * Sets the initialize size for the resizing element
34884      * @param {Number} size The initial size
34885      */
34886     setCurrentSize : function(size){
34887         var oldAnimate = this.animate;
34888         this.animate = false;
34889         this.adapter.setElementSize(this, size);
34890         this.animate = oldAnimate;
34891     },
34892     
34893     /**
34894      * Destroy this splitbar. 
34895      * @param {Boolean} removeEl True to remove the element
34896      */
34897     destroy : function(removeEl){
34898         if(this.shim){
34899             this.shim.remove();
34900         }
34901         this.dd.unreg();
34902         this.proxy.parentNode.removeChild(this.proxy);
34903         if(removeEl){
34904             this.el.remove();
34905         }
34906     }
34907 });
34908
34909 /**
34910  * @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.
34911  */
34912 Roo.bootstrap.SplitBar.createProxy = function(dir){
34913     var proxy = new Roo.Element(document.createElement("div"));
34914     proxy.unselectable();
34915     var cls = 'roo-splitbar-proxy';
34916     proxy.addClass(cls + ' ' + (dir == Roo.bootstrap.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
34917     document.body.appendChild(proxy.dom);
34918     return proxy.dom;
34919 };
34920
34921 /** 
34922  * @class Roo.bootstrap.SplitBar.BasicLayoutAdapter
34923  * Default Adapter. It assumes the splitter and resizing element are not positioned
34924  * elements and only gets/sets the width of the element. Generally used for table based layouts.
34925  */
34926 Roo.bootstrap.SplitBar.BasicLayoutAdapter = function(){
34927 };
34928
34929 Roo.bootstrap.SplitBar.BasicLayoutAdapter.prototype = {
34930     // do nothing for now
34931     init : function(s){
34932     
34933     },
34934     /**
34935      * Called before drag operations to get the current size of the resizing element. 
34936      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34937      */
34938      getElementSize : function(s){
34939         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34940             return s.resizingEl.getWidth();
34941         }else{
34942             return s.resizingEl.getHeight();
34943         }
34944     },
34945     
34946     /**
34947      * Called after drag operations to set the size of the resizing element.
34948      * @param {Roo.bootstrap.SplitBar} s The SplitBar using this adapter
34949      * @param {Number} newSize The new size to set
34950      * @param {Function} onComplete A function to be invoked when resizing is complete
34951      */
34952     setElementSize : function(s, newSize, onComplete){
34953         if(s.orientation == Roo.bootstrap.SplitBar.HORIZONTAL){
34954             if(!s.animate){
34955                 s.resizingEl.setWidth(newSize);
34956                 if(onComplete){
34957                     onComplete(s, newSize);
34958                 }
34959             }else{
34960                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
34961             }
34962         }else{
34963             
34964             if(!s.animate){
34965                 s.resizingEl.setHeight(newSize);
34966                 if(onComplete){
34967                     onComplete(s, newSize);
34968                 }
34969             }else{
34970                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
34971             }
34972         }
34973     }
34974 };
34975
34976 /** 
34977  *@class Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter
34978  * @extends Roo.bootstrap.SplitBar.BasicLayoutAdapter
34979  * Adapter that  moves the splitter element to align with the resized sizing element. 
34980  * Used with an absolute positioned SplitBar.
34981  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
34982  * document.body, make sure you assign an id to the body element.
34983  */
34984 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter = function(container){
34985     this.basic = new Roo.bootstrap.SplitBar.BasicLayoutAdapter();
34986     this.container = Roo.get(container);
34987 };
34988
34989 Roo.bootstrap.SplitBar.AbsoluteLayoutAdapter.prototype = {
34990     init : function(s){
34991         this.basic.init(s);
34992     },
34993     
34994     getElementSize : function(s){
34995         return this.basic.getElementSize(s);
34996     },
34997     
34998     setElementSize : function(s, newSize, onComplete){
34999         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
35000     },
35001     
35002     moveSplitter : function(s){
35003         var yes = Roo.bootstrap.SplitBar;
35004         switch(s.placement){
35005             case yes.LEFT:
35006                 s.el.setX(s.resizingEl.getRight());
35007                 break;
35008             case yes.RIGHT:
35009                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
35010                 break;
35011             case yes.TOP:
35012                 s.el.setY(s.resizingEl.getBottom());
35013                 break;
35014             case yes.BOTTOM:
35015                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
35016                 break;
35017         }
35018     }
35019 };
35020
35021 /**
35022  * Orientation constant - Create a vertical SplitBar
35023  * @static
35024  * @type Number
35025  */
35026 Roo.bootstrap.SplitBar.VERTICAL = 1;
35027
35028 /**
35029  * Orientation constant - Create a horizontal SplitBar
35030  * @static
35031  * @type Number
35032  */
35033 Roo.bootstrap.SplitBar.HORIZONTAL = 2;
35034
35035 /**
35036  * Placement constant - The resizing element is to the left of the splitter element
35037  * @static
35038  * @type Number
35039  */
35040 Roo.bootstrap.SplitBar.LEFT = 1;
35041
35042 /**
35043  * Placement constant - The resizing element is to the right of the splitter element
35044  * @static
35045  * @type Number
35046  */
35047 Roo.bootstrap.SplitBar.RIGHT = 2;
35048
35049 /**
35050  * Placement constant - The resizing element is positioned above the splitter element
35051  * @static
35052  * @type Number
35053  */
35054 Roo.bootstrap.SplitBar.TOP = 3;
35055
35056 /**
35057  * Placement constant - The resizing element is positioned under splitter element
35058  * @static
35059  * @type Number
35060  */
35061 Roo.bootstrap.SplitBar.BOTTOM = 4;
35062 Roo.namespace("Roo.bootstrap.layout");/*
35063  * Based on:
35064  * Ext JS Library 1.1.1
35065  * Copyright(c) 2006-2007, Ext JS, LLC.
35066  *
35067  * Originally Released Under LGPL - original licence link has changed is not relivant.
35068  *
35069  * Fork - LGPL
35070  * <script type="text/javascript">
35071  */
35072
35073 /**
35074  * @class Roo.bootstrap.layout.Manager
35075  * @extends Roo.bootstrap.Component
35076  * Base class for layout managers.
35077  */
35078 Roo.bootstrap.layout.Manager = function(config)
35079 {
35080     Roo.bootstrap.layout.Manager.superclass.constructor.call(this,config);
35081
35082
35083
35084
35085
35086     /** false to disable window resize monitoring @type Boolean */
35087     this.monitorWindowResize = true;
35088     this.regions = {};
35089     this.addEvents({
35090         /**
35091          * @event layout
35092          * Fires when a layout is performed.
35093          * @param {Roo.LayoutManager} this
35094          */
35095         "layout" : true,
35096         /**
35097          * @event regionresized
35098          * Fires when the user resizes a region.
35099          * @param {Roo.LayoutRegion} region The resized region
35100          * @param {Number} newSize The new size (width for east/west, height for north/south)
35101          */
35102         "regionresized" : true,
35103         /**
35104          * @event regioncollapsed
35105          * Fires when a region is collapsed.
35106          * @param {Roo.LayoutRegion} region The collapsed region
35107          */
35108         "regioncollapsed" : true,
35109         /**
35110          * @event regionexpanded
35111          * Fires when a region is expanded.
35112          * @param {Roo.LayoutRegion} region The expanded region
35113          */
35114         "regionexpanded" : true
35115     });
35116     this.updating = false;
35117
35118     if (config.el) {
35119         this.el = Roo.get(config.el);
35120         this.initEvents();
35121     }
35122
35123 };
35124
35125 Roo.extend(Roo.bootstrap.layout.Manager, Roo.bootstrap.Component, {
35126
35127
35128     regions : null,
35129
35130     monitorWindowResize : true,
35131
35132
35133     updating : false,
35134
35135
35136     onRender : function(ct, position)
35137     {
35138         if(!this.el){
35139             this.el = Roo.get(ct);
35140             this.initEvents();
35141         }
35142         //this.fireEvent('render',this);
35143     },
35144
35145
35146     initEvents: function()
35147     {
35148
35149
35150         // ie scrollbar fix
35151         if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
35152             document.body.scroll = "no";
35153         }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
35154             this.el.position('relative');
35155         }
35156         this.id = this.el.id;
35157         this.el.addClass("roo-layout-container");
35158         Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
35159         if(this.el.dom != document.body ) {
35160             this.el.on('resize', this.layout,this);
35161             this.el.on('show', this.layout,this);
35162         }
35163
35164     },
35165
35166     /**
35167      * Returns true if this layout is currently being updated
35168      * @return {Boolean}
35169      */
35170     isUpdating : function(){
35171         return this.updating;
35172     },
35173
35174     /**
35175      * Suspend the LayoutManager from doing auto-layouts while
35176      * making multiple add or remove calls
35177      */
35178     beginUpdate : function(){
35179         this.updating = true;
35180     },
35181
35182     /**
35183      * Restore auto-layouts and optionally disable the manager from performing a layout
35184      * @param {Boolean} noLayout true to disable a layout update
35185      */
35186     endUpdate : function(noLayout){
35187         this.updating = false;
35188         if(!noLayout){
35189             this.layout();
35190         }
35191     },
35192
35193     layout: function(){
35194         // abstract...
35195     },
35196
35197     onRegionResized : function(region, newSize){
35198         this.fireEvent("regionresized", region, newSize);
35199         this.layout();
35200     },
35201
35202     onRegionCollapsed : function(region){
35203         this.fireEvent("regioncollapsed", region);
35204     },
35205
35206     onRegionExpanded : function(region){
35207         this.fireEvent("regionexpanded", region);
35208     },
35209
35210     /**
35211      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
35212      * performs box-model adjustments.
35213      * @return {Object} The size as an object {width: (the width), height: (the height)}
35214      */
35215     getViewSize : function()
35216     {
35217         var size;
35218         if(this.el.dom != document.body){
35219             size = this.el.getSize();
35220         }else{
35221             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
35222         }
35223         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
35224         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
35225         return size;
35226     },
35227
35228     /**
35229      * Returns the Element this layout is bound to.
35230      * @return {Roo.Element}
35231      */
35232     getEl : function(){
35233         return this.el;
35234     },
35235
35236     /**
35237      * Returns the specified region.
35238      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
35239      * @return {Roo.LayoutRegion}
35240      */
35241     getRegion : function(target){
35242         return this.regions[target.toLowerCase()];
35243     },
35244
35245     onWindowResize : function(){
35246         if(this.monitorWindowResize){
35247             this.layout();
35248         }
35249     }
35250 });
35251 /*
35252  * Based on:
35253  * Ext JS Library 1.1.1
35254  * Copyright(c) 2006-2007, Ext JS, LLC.
35255  *
35256  * Originally Released Under LGPL - original licence link has changed is not relivant.
35257  *
35258  * Fork - LGPL
35259  * <script type="text/javascript">
35260  */
35261 /**
35262  * @class Roo.bootstrap.layout.Border
35263  * @extends Roo.bootstrap.layout.Manager
35264  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
35265  * please see: examples/bootstrap/nested.html<br><br>
35266  
35267 <b>The container the layout is rendered into can be either the body element or any other element.
35268 If it is not the body element, the container needs to either be an absolute positioned element,
35269 or you will need to add "position:relative" to the css of the container.  You will also need to specify
35270 the container size if it is not the body element.</b>
35271
35272 * @constructor
35273 * Create a new Border
35274 * @param {Object} config Configuration options
35275  */
35276 Roo.bootstrap.layout.Border = function(config){
35277     config = config || {};
35278     Roo.bootstrap.layout.Border.superclass.constructor.call(this, config);
35279     
35280     
35281     
35282     Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35283         if(config[region]){
35284             config[region].region = region;
35285             this.addRegion(config[region]);
35286         }
35287     },this);
35288     
35289 };
35290
35291 Roo.bootstrap.layout.Border.regions =  ["north","south","east","west","center"];
35292
35293 Roo.extend(Roo.bootstrap.layout.Border, Roo.bootstrap.layout.Manager, {
35294     
35295     parent : false, // this might point to a 'nest' or a ???
35296     
35297     /**
35298      * Creates and adds a new region if it doesn't already exist.
35299      * @param {String} target The target region key (north, south, east, west or center).
35300      * @param {Object} config The regions config object
35301      * @return {BorderLayoutRegion} The new region
35302      */
35303     addRegion : function(config)
35304     {
35305         if(!this.regions[config.region]){
35306             var r = this.factory(config);
35307             this.bindRegion(r);
35308         }
35309         return this.regions[config.region];
35310     },
35311
35312     // private (kinda)
35313     bindRegion : function(r){
35314         this.regions[r.config.region] = r;
35315         
35316         r.on("visibilitychange",    this.layout, this);
35317         r.on("paneladded",          this.layout, this);
35318         r.on("panelremoved",        this.layout, this);
35319         r.on("invalidated",         this.layout, this);
35320         r.on("resized",             this.onRegionResized, this);
35321         r.on("collapsed",           this.onRegionCollapsed, this);
35322         r.on("expanded",            this.onRegionExpanded, this);
35323     },
35324
35325     /**
35326      * Performs a layout update.
35327      */
35328     layout : function()
35329     {
35330         if(this.updating) {
35331             return;
35332         }
35333         
35334         // render all the rebions if they have not been done alreayd?
35335         Roo.each(Roo.bootstrap.layout.Border.regions, function(region) {
35336             if(this.regions[region] && !this.regions[region].bodyEl){
35337                 this.regions[region].onRender(this.el)
35338             }
35339         },this);
35340         
35341         var size = this.getViewSize();
35342         var w = size.width;
35343         var h = size.height;
35344         var centerW = w;
35345         var centerH = h;
35346         var centerY = 0;
35347         var centerX = 0;
35348         //var x = 0, y = 0;
35349
35350         var rs = this.regions;
35351         var north = rs["north"];
35352         var south = rs["south"]; 
35353         var west = rs["west"];
35354         var east = rs["east"];
35355         var center = rs["center"];
35356         //if(this.hideOnLayout){ // not supported anymore
35357             //c.el.setStyle("display", "none");
35358         //}
35359         if(north && north.isVisible()){
35360             var b = north.getBox();
35361             var m = north.getMargins();
35362             b.width = w - (m.left+m.right);
35363             b.x = m.left;
35364             b.y = m.top;
35365             centerY = b.height + b.y + m.bottom;
35366             centerH -= centerY;
35367             north.updateBox(this.safeBox(b));
35368         }
35369         if(south && south.isVisible()){
35370             var b = south.getBox();
35371             var m = south.getMargins();
35372             b.width = w - (m.left+m.right);
35373             b.x = m.left;
35374             var totalHeight = (b.height + m.top + m.bottom);
35375             b.y = h - totalHeight + m.top;
35376             centerH -= totalHeight;
35377             south.updateBox(this.safeBox(b));
35378         }
35379         if(west && west.isVisible()){
35380             var b = west.getBox();
35381             var m = west.getMargins();
35382             b.height = centerH - (m.top+m.bottom);
35383             b.x = m.left;
35384             b.y = centerY + m.top;
35385             var totalWidth = (b.width + m.left + m.right);
35386             centerX += totalWidth;
35387             centerW -= totalWidth;
35388             west.updateBox(this.safeBox(b));
35389         }
35390         if(east && east.isVisible()){
35391             var b = east.getBox();
35392             var m = east.getMargins();
35393             b.height = centerH - (m.top+m.bottom);
35394             var totalWidth = (b.width + m.left + m.right);
35395             b.x = w - totalWidth + m.left;
35396             b.y = centerY + m.top;
35397             centerW -= totalWidth;
35398             east.updateBox(this.safeBox(b));
35399         }
35400         if(center){
35401             var m = center.getMargins();
35402             var centerBox = {
35403                 x: centerX + m.left,
35404                 y: centerY + m.top,
35405                 width: centerW - (m.left+m.right),
35406                 height: centerH - (m.top+m.bottom)
35407             };
35408             //if(this.hideOnLayout){
35409                 //center.el.setStyle("display", "block");
35410             //}
35411             center.updateBox(this.safeBox(centerBox));
35412         }
35413         this.el.repaint();
35414         this.fireEvent("layout", this);
35415     },
35416
35417     // private
35418     safeBox : function(box){
35419         box.width = Math.max(0, box.width);
35420         box.height = Math.max(0, box.height);
35421         return box;
35422     },
35423
35424     /**
35425      * Adds a ContentPanel (or subclass) to this layout.
35426      * @param {String} target The target region key (north, south, east, west or center).
35427      * @param {Roo.ContentPanel} panel The panel to add
35428      * @return {Roo.ContentPanel} The added panel
35429      */
35430     add : function(target, panel){
35431          
35432         target = target.toLowerCase();
35433         return this.regions[target].add(panel);
35434     },
35435
35436     /**
35437      * Remove a ContentPanel (or subclass) to this layout.
35438      * @param {String} target The target region key (north, south, east, west or center).
35439      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
35440      * @return {Roo.ContentPanel} The removed panel
35441      */
35442     remove : function(target, panel){
35443         target = target.toLowerCase();
35444         return this.regions[target].remove(panel);
35445     },
35446
35447     /**
35448      * Searches all regions for a panel with the specified id
35449      * @param {String} panelId
35450      * @return {Roo.ContentPanel} The panel or null if it wasn't found
35451      */
35452     findPanel : function(panelId){
35453         var rs = this.regions;
35454         for(var target in rs){
35455             if(typeof rs[target] != "function"){
35456                 var p = rs[target].getPanel(panelId);
35457                 if(p){
35458                     return p;
35459                 }
35460             }
35461         }
35462         return null;
35463     },
35464
35465     /**
35466      * Searches all regions for a panel with the specified id and activates (shows) it.
35467      * @param {String/ContentPanel} panelId The panels id or the panel itself
35468      * @return {Roo.ContentPanel} The shown panel or null
35469      */
35470     showPanel : function(panelId) {
35471       var rs = this.regions;
35472       for(var target in rs){
35473          var r = rs[target];
35474          if(typeof r != "function"){
35475             if(r.hasPanel(panelId)){
35476                return r.showPanel(panelId);
35477             }
35478          }
35479       }
35480       return null;
35481    },
35482
35483    /**
35484      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
35485      * @param {Roo.state.Provider} provider (optional) An alternate state provider
35486      */
35487    /*
35488     restoreState : function(provider){
35489         if(!provider){
35490             provider = Roo.state.Manager;
35491         }
35492         var sm = new Roo.LayoutStateManager();
35493         sm.init(this, provider);
35494     },
35495 */
35496  
35497  
35498     /**
35499      * Adds a xtype elements to the layout.
35500      * <pre><code>
35501
35502 layout.addxtype({
35503        xtype : 'ContentPanel',
35504        region: 'west',
35505        items: [ .... ]
35506    }
35507 );
35508
35509 layout.addxtype({
35510         xtype : 'NestedLayoutPanel',
35511         region: 'west',
35512         layout: {
35513            center: { },
35514            west: { }   
35515         },
35516         items : [ ... list of content panels or nested layout panels.. ]
35517    }
35518 );
35519 </code></pre>
35520      * @param {Object} cfg Xtype definition of item to add.
35521      */
35522     addxtype : function(cfg)
35523     {
35524         // basically accepts a pannel...
35525         // can accept a layout region..!?!?
35526         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
35527         
35528         
35529         // theory?  children can only be panels??
35530         
35531         //if (!cfg.xtype.match(/Panel$/)) {
35532         //    return false;
35533         //}
35534         var ret = false;
35535         
35536         if (typeof(cfg.region) == 'undefined') {
35537             Roo.log("Failed to add Panel, region was not set");
35538             Roo.log(cfg);
35539             return false;
35540         }
35541         var region = cfg.region;
35542         delete cfg.region;
35543         
35544           
35545         var xitems = [];
35546         if (cfg.items) {
35547             xitems = cfg.items;
35548             delete cfg.items;
35549         }
35550         var nb = false;
35551         
35552         if ( region == 'center') {
35553             Roo.log("Center: " + cfg.title);
35554         }
35555         
35556         
35557         switch(cfg.xtype) 
35558         {
35559             case 'Content':  // ContentPanel (el, cfg)
35560             case 'Scroll':  // ContentPanel (el, cfg)
35561             case 'View': 
35562                 cfg.autoCreate = cfg.autoCreate || true;
35563                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35564                 //} else {
35565                 //    var el = this.el.createChild();
35566                 //    ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
35567                 //}
35568                 
35569                 this.add(region, ret);
35570                 break;
35571             
35572             /*
35573             case 'TreePanel': // our new panel!
35574                 cfg.el = this.el.createChild();
35575                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35576                 this.add(region, ret);
35577                 break;
35578             */
35579             
35580             case 'Nest': 
35581                 // create a new Layout (which is  a Border Layout...
35582                 
35583                 var clayout = cfg.layout;
35584                 clayout.el  = this.el.createChild();
35585                 clayout.items   = clayout.items  || [];
35586                 
35587                 delete cfg.layout;
35588                 
35589                 // replace this exitems with the clayout ones..
35590                 xitems = clayout.items;
35591                  
35592                 // force background off if it's in center...
35593                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
35594                     cfg.background = false;
35595                 }
35596                 cfg.layout  = new Roo.bootstrap.layout.Border(clayout);
35597                 
35598                 
35599                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35600                 //console.log('adding nested layout panel '  + cfg.toSource());
35601                 this.add(region, ret);
35602                 nb = {}; /// find first...
35603                 break;
35604             
35605             case 'Grid':
35606                 
35607                 // needs grid and region
35608                 
35609                 //var el = this.getRegion(region).el.createChild();
35610                 /*
35611                  *var el = this.el.createChild();
35612                 // create the grid first...
35613                 cfg.grid.container = el;
35614                 cfg.grid = new cfg.grid.xns[cfg.grid.xtype](cfg.grid);
35615                 */
35616                 
35617                 if (region == 'center' && this.active ) {
35618                     cfg.background = false;
35619                 }
35620                 
35621                 ret = new cfg.xns[cfg.xtype](cfg); // new panel!!!!!
35622                 
35623                 this.add(region, ret);
35624                 /*
35625                 if (cfg.background) {
35626                     // render grid on panel activation (if panel background)
35627                     ret.on('activate', function(gp) {
35628                         if (!gp.grid.rendered) {
35629                     //        gp.grid.render(el);
35630                         }
35631                     });
35632                 } else {
35633                   //  cfg.grid.render(el);
35634                 }
35635                 */
35636                 break;
35637            
35638            
35639             case 'Border': // it can get called on it'self... - might need to check if this is fixed?
35640                 // it was the old xcomponent building that caused this before.
35641                 // espeically if border is the top element in the tree.
35642                 ret = this;
35643                 break; 
35644                 
35645                     
35646                 
35647                 
35648                 
35649             default:
35650                 /*
35651                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
35652                     
35653                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
35654                     this.add(region, ret);
35655                 } else {
35656                 */
35657                     Roo.log(cfg);
35658                     throw "Can not add '" + cfg.xtype + "' to Border";
35659                     return null;
35660              
35661                                 
35662              
35663         }
35664         this.beginUpdate();
35665         // add children..
35666         var region = '';
35667         var abn = {};
35668         Roo.each(xitems, function(i)  {
35669             region = nb && i.region ? i.region : false;
35670             
35671             var add = ret.addxtype(i);
35672            
35673             if (region) {
35674                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
35675                 if (!i.background) {
35676                     abn[region] = nb[region] ;
35677                 }
35678             }
35679             
35680         });
35681         this.endUpdate();
35682
35683         // make the last non-background panel active..
35684         //if (nb) { Roo.log(abn); }
35685         if (nb) {
35686             
35687             for(var r in abn) {
35688                 region = this.getRegion(r);
35689                 if (region) {
35690                     // tried using nb[r], but it does not work..
35691                      
35692                     region.showPanel(abn[r]);
35693                    
35694                 }
35695             }
35696         }
35697         return ret;
35698         
35699     },
35700     
35701     
35702 // private
35703     factory : function(cfg)
35704     {
35705         
35706         var validRegions = Roo.bootstrap.layout.Border.regions;
35707
35708         var target = cfg.region;
35709         cfg.mgr = this;
35710         
35711         var r = Roo.bootstrap.layout;
35712         Roo.log(target);
35713         switch(target){
35714             case "north":
35715                 return new r.North(cfg);
35716             case "south":
35717                 return new r.South(cfg);
35718             case "east":
35719                 return new r.East(cfg);
35720             case "west":
35721                 return new r.West(cfg);
35722             case "center":
35723                 return new r.Center(cfg);
35724         }
35725         throw 'Layout region "'+target+'" not supported.';
35726     }
35727     
35728     
35729 });
35730  /*
35731  * Based on:
35732  * Ext JS Library 1.1.1
35733  * Copyright(c) 2006-2007, Ext JS, LLC.
35734  *
35735  * Originally Released Under LGPL - original licence link has changed is not relivant.
35736  *
35737  * Fork - LGPL
35738  * <script type="text/javascript">
35739  */
35740  
35741 /**
35742  * @class Roo.bootstrap.layout.Basic
35743  * @extends Roo.util.Observable
35744  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
35745  * and does not have a titlebar, tabs or any other features. All it does is size and position 
35746  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
35747  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
35748  * @cfg {string}   region  the region that it inhabits..
35749  * @cfg {bool}   skipConfig skip config?
35750  * 
35751
35752  */
35753 Roo.bootstrap.layout.Basic = function(config){
35754     
35755     this.mgr = config.mgr;
35756     
35757     this.position = config.region;
35758     
35759     var skipConfig = config.skipConfig;
35760     
35761     this.events = {
35762         /**
35763          * @scope Roo.BasicLayoutRegion
35764          */
35765         
35766         /**
35767          * @event beforeremove
35768          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
35769          * @param {Roo.LayoutRegion} this
35770          * @param {Roo.ContentPanel} panel The panel
35771          * @param {Object} e The cancel event object
35772          */
35773         "beforeremove" : true,
35774         /**
35775          * @event invalidated
35776          * Fires when the layout for this region is changed.
35777          * @param {Roo.LayoutRegion} this
35778          */
35779         "invalidated" : true,
35780         /**
35781          * @event visibilitychange
35782          * Fires when this region is shown or hidden 
35783          * @param {Roo.LayoutRegion} this
35784          * @param {Boolean} visibility true or false
35785          */
35786         "visibilitychange" : true,
35787         /**
35788          * @event paneladded
35789          * Fires when a panel is added. 
35790          * @param {Roo.LayoutRegion} this
35791          * @param {Roo.ContentPanel} panel The panel
35792          */
35793         "paneladded" : true,
35794         /**
35795          * @event panelremoved
35796          * Fires when a panel is removed. 
35797          * @param {Roo.LayoutRegion} this
35798          * @param {Roo.ContentPanel} panel The panel
35799          */
35800         "panelremoved" : true,
35801         /**
35802          * @event beforecollapse
35803          * Fires when this region before collapse.
35804          * @param {Roo.LayoutRegion} this
35805          */
35806         "beforecollapse" : true,
35807         /**
35808          * @event collapsed
35809          * Fires when this region is collapsed.
35810          * @param {Roo.LayoutRegion} this
35811          */
35812         "collapsed" : true,
35813         /**
35814          * @event expanded
35815          * Fires when this region is expanded.
35816          * @param {Roo.LayoutRegion} this
35817          */
35818         "expanded" : true,
35819         /**
35820          * @event slideshow
35821          * Fires when this region is slid into view.
35822          * @param {Roo.LayoutRegion} this
35823          */
35824         "slideshow" : true,
35825         /**
35826          * @event slidehide
35827          * Fires when this region slides out of view. 
35828          * @param {Roo.LayoutRegion} this
35829          */
35830         "slidehide" : true,
35831         /**
35832          * @event panelactivated
35833          * Fires when a panel is activated. 
35834          * @param {Roo.LayoutRegion} this
35835          * @param {Roo.ContentPanel} panel The activated panel
35836          */
35837         "panelactivated" : true,
35838         /**
35839          * @event resized
35840          * Fires when the user resizes this region. 
35841          * @param {Roo.LayoutRegion} this
35842          * @param {Number} newSize The new size (width for east/west, height for north/south)
35843          */
35844         "resized" : true
35845     };
35846     /** A collection of panels in this region. @type Roo.util.MixedCollection */
35847     this.panels = new Roo.util.MixedCollection();
35848     this.panels.getKey = this.getPanelId.createDelegate(this);
35849     this.box = null;
35850     this.activePanel = null;
35851     // ensure listeners are added...
35852     
35853     if (config.listeners || config.events) {
35854         Roo.bootstrap.layout.Basic.superclass.constructor.call(this, {
35855             listeners : config.listeners || {},
35856             events : config.events || {}
35857         });
35858     }
35859     
35860     if(skipConfig !== true){
35861         this.applyConfig(config);
35862     }
35863 };
35864
35865 Roo.extend(Roo.bootstrap.layout.Basic, Roo.util.Observable,
35866 {
35867     getPanelId : function(p){
35868         return p.getId();
35869     },
35870     
35871     applyConfig : function(config){
35872         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
35873         this.config = config;
35874         
35875     },
35876     
35877     /**
35878      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
35879      * the width, for horizontal (north, south) the height.
35880      * @param {Number} newSize The new width or height
35881      */
35882     resizeTo : function(newSize){
35883         var el = this.el ? this.el :
35884                  (this.activePanel ? this.activePanel.getEl() : null);
35885         if(el){
35886             switch(this.position){
35887                 case "east":
35888                 case "west":
35889                     el.setWidth(newSize);
35890                     this.fireEvent("resized", this, newSize);
35891                 break;
35892                 case "north":
35893                 case "south":
35894                     el.setHeight(newSize);
35895                     this.fireEvent("resized", this, newSize);
35896                 break;                
35897             }
35898         }
35899     },
35900     
35901     getBox : function(){
35902         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
35903     },
35904     
35905     getMargins : function(){
35906         return this.margins;
35907     },
35908     
35909     updateBox : function(box){
35910         this.box = box;
35911         var el = this.activePanel.getEl();
35912         el.dom.style.left = box.x + "px";
35913         el.dom.style.top = box.y + "px";
35914         this.activePanel.setSize(box.width, box.height);
35915     },
35916     
35917     /**
35918      * Returns the container element for this region.
35919      * @return {Roo.Element}
35920      */
35921     getEl : function(){
35922         return this.activePanel;
35923     },
35924     
35925     /**
35926      * Returns true if this region is currently visible.
35927      * @return {Boolean}
35928      */
35929     isVisible : function(){
35930         return this.activePanel ? true : false;
35931     },
35932     
35933     setActivePanel : function(panel){
35934         panel = this.getPanel(panel);
35935         if(this.activePanel && this.activePanel != panel){
35936             this.activePanel.setActiveState(false);
35937             this.activePanel.getEl().setLeftTop(-10000,-10000);
35938         }
35939         this.activePanel = panel;
35940         panel.setActiveState(true);
35941         if(this.box){
35942             panel.setSize(this.box.width, this.box.height);
35943         }
35944         this.fireEvent("panelactivated", this, panel);
35945         this.fireEvent("invalidated");
35946     },
35947     
35948     /**
35949      * Show the specified panel.
35950      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
35951      * @return {Roo.ContentPanel} The shown panel or null
35952      */
35953     showPanel : function(panel){
35954         panel = this.getPanel(panel);
35955         if(panel){
35956             this.setActivePanel(panel);
35957         }
35958         return panel;
35959     },
35960     
35961     /**
35962      * Get the active panel for this region.
35963      * @return {Roo.ContentPanel} The active panel or null
35964      */
35965     getActivePanel : function(){
35966         return this.activePanel;
35967     },
35968     
35969     /**
35970      * Add the passed ContentPanel(s)
35971      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
35972      * @return {Roo.ContentPanel} The panel added (if only one was added)
35973      */
35974     add : function(panel){
35975         if(arguments.length > 1){
35976             for(var i = 0, len = arguments.length; i < len; i++) {
35977                 this.add(arguments[i]);
35978             }
35979             return null;
35980         }
35981         if(this.hasPanel(panel)){
35982             this.showPanel(panel);
35983             return panel;
35984         }
35985         var el = panel.getEl();
35986         if(el.dom.parentNode != this.mgr.el.dom){
35987             this.mgr.el.dom.appendChild(el.dom);
35988         }
35989         if(panel.setRegion){
35990             panel.setRegion(this);
35991         }
35992         this.panels.add(panel);
35993         el.setStyle("position", "absolute");
35994         if(!panel.background){
35995             this.setActivePanel(panel);
35996             if(this.config.initialSize && this.panels.getCount()==1){
35997                 this.resizeTo(this.config.initialSize);
35998             }
35999         }
36000         this.fireEvent("paneladded", this, panel);
36001         return panel;
36002     },
36003     
36004     /**
36005      * Returns true if the panel is in this region.
36006      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
36007      * @return {Boolean}
36008      */
36009     hasPanel : function(panel){
36010         if(typeof panel == "object"){ // must be panel obj
36011             panel = panel.getId();
36012         }
36013         return this.getPanel(panel) ? true : false;
36014     },
36015     
36016     /**
36017      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
36018      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
36019      * @param {Boolean} preservePanel Overrides the config preservePanel option
36020      * @return {Roo.ContentPanel} The panel that was removed
36021      */
36022     remove : function(panel, preservePanel){
36023         panel = this.getPanel(panel);
36024         if(!panel){
36025             return null;
36026         }
36027         var e = {};
36028         this.fireEvent("beforeremove", this, panel, e);
36029         if(e.cancel === true){
36030             return null;
36031         }
36032         var panelId = panel.getId();
36033         this.panels.removeKey(panelId);
36034         return panel;
36035     },
36036     
36037     /**
36038      * Returns the panel specified or null if it's not in this region.
36039      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
36040      * @return {Roo.ContentPanel}
36041      */
36042     getPanel : function(id){
36043         if(typeof id == "object"){ // must be panel obj
36044             return id;
36045         }
36046         return this.panels.get(id);
36047     },
36048     
36049     /**
36050      * Returns this regions position (north/south/east/west/center).
36051      * @return {String} 
36052      */
36053     getPosition: function(){
36054         return this.position;    
36055     }
36056 });/*
36057  * Based on:
36058  * Ext JS Library 1.1.1
36059  * Copyright(c) 2006-2007, Ext JS, LLC.
36060  *
36061  * Originally Released Under LGPL - original licence link has changed is not relivant.
36062  *
36063  * Fork - LGPL
36064  * <script type="text/javascript">
36065  */
36066  
36067 /**
36068  * @class Roo.bootstrap.layout.Region
36069  * @extends Roo.bootstrap.layout.Basic
36070  * This class represents a region in a layout manager.
36071  
36072  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
36073  * @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})
36074  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
36075  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
36076  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
36077  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
36078  * @cfg {String}    title           The title for the region (overrides panel titles)
36079  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
36080  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
36081  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
36082  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
36083  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
36084  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
36085  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
36086  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
36087  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
36088  * @cfg {String}    overflow       (hidden|visible) if you have menus in the region, then you need to set this to visible.
36089
36090  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
36091  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
36092  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
36093  * @cfg {Number}    width           For East/West panels
36094  * @cfg {Number}    height          For North/South panels
36095  * @cfg {Boolean}   split           To show the splitter
36096  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
36097  * 
36098  * @cfg {string}   cls             Extra CSS classes to add to region
36099  * 
36100  * @cfg {Roo.bootstrap.layout.Manager}   mgr The manager
36101  * @cfg {string}   region  the region that it inhabits..
36102  *
36103
36104  * @xxxcfg {Boolean}   collapsible     DISABLED False to disable collapsing (defaults to true)
36105  * @xxxcfg {Boolean}   collapsed       DISABLED True to set the initial display to collapsed (defaults to false)
36106
36107  * @xxxcfg {String}    collapsedTitle  DISABLED Optional string message to display in the collapsed block of a north or south region
36108  * @xxxxcfg {Boolean}   floatable       DISABLED False to disable floating (defaults to true)
36109  * @xxxxcfg {Boolean}   showPin         True to show a pin button NOT SUPPORTED YET
36110  */
36111 Roo.bootstrap.layout.Region = function(config)
36112 {
36113     this.applyConfig(config);
36114
36115     var mgr = config.mgr;
36116     var pos = config.region;
36117     config.skipConfig = true;
36118     Roo.bootstrap.layout.Region.superclass.constructor.call(this, config);
36119     
36120     if (mgr.el) {
36121         this.onRender(mgr.el);   
36122     }
36123      
36124     this.visible = true;
36125     this.collapsed = false;
36126     this.unrendered_panels = [];
36127 };
36128
36129 Roo.extend(Roo.bootstrap.layout.Region, Roo.bootstrap.layout.Basic, {
36130
36131     position: '', // set by wrapper (eg. north/south etc..)
36132     unrendered_panels : null,  // unrendered panels.
36133     
36134     tabPosition : false,
36135     
36136     mgr: false, // points to 'Border'
36137     
36138     
36139     createBody : function(){
36140         /** This region's body element 
36141         * @type Roo.Element */
36142         this.bodyEl = this.el.createChild({
36143                 tag: "div",
36144                 cls: "roo-layout-panel-body tab-content" // bootstrap added...
36145         });
36146     },
36147
36148     onRender: function(ctr, pos)
36149     {
36150         var dh = Roo.DomHelper;
36151         /** This region's container element 
36152         * @type Roo.Element */
36153         this.el = dh.append(ctr.dom, {
36154                 tag: "div",
36155                 cls: (this.config.cls || '') + " roo-layout-region roo-layout-panel roo-layout-panel-" + this.position
36156             }, true);
36157         /** This region's title element 
36158         * @type Roo.Element */
36159     
36160         this.titleEl = dh.append(this.el.dom,  {
36161                 tag: "div",
36162                 unselectable: "on",
36163                 cls: "roo-unselectable roo-layout-panel-hd breadcrumb roo-layout-title-" + this.position,
36164                 children:[
36165                     {tag: "span", cls: "roo-unselectable roo-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
36166                     {tag: "div", cls: "roo-unselectable roo-layout-panel-hd-tools", unselectable: "on"}
36167                 ]
36168             }, true);
36169         
36170         this.titleEl.enableDisplayMode();
36171         /** This region's title text element 
36172         * @type HTMLElement */
36173         this.titleTextEl = this.titleEl.dom.firstChild;
36174         this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
36175         /*
36176         this.closeBtn = this.createTool(this.tools.dom, "roo-layout-close");
36177         this.closeBtn.enableDisplayMode();
36178         this.closeBtn.on("click", this.closeClicked, this);
36179         this.closeBtn.hide();
36180     */
36181         this.createBody(this.config);
36182         if(this.config.hideWhenEmpty){
36183             this.hide();
36184             this.on("paneladded", this.validateVisibility, this);
36185             this.on("panelremoved", this.validateVisibility, this);
36186         }
36187         if(this.autoScroll){
36188             this.bodyEl.setStyle("overflow", "auto");
36189         }else{
36190             this.bodyEl.setStyle("overflow", this.config.overflow || 'hidden');
36191         }
36192         //if(c.titlebar !== false){
36193             if((!this.config.titlebar && !this.config.title) || this.config.titlebar === false){
36194                 this.titleEl.hide();
36195             }else{
36196                 this.titleEl.show();
36197                 if(this.config.title){
36198                     this.titleTextEl.innerHTML = this.config.title;
36199                 }
36200             }
36201         //}
36202         if(this.config.collapsed){
36203             this.collapse(true);
36204         }
36205         if(this.config.hidden){
36206             this.hide();
36207         }
36208         
36209         if (this.unrendered_panels && this.unrendered_panels.length) {
36210             for (var i =0;i< this.unrendered_panels.length; i++) {
36211                 this.add(this.unrendered_panels[i]);
36212             }
36213             this.unrendered_panels = null;
36214             
36215         }
36216         
36217     },
36218     
36219     applyConfig : function(c)
36220     {
36221         /*
36222          *if(c.collapsible && this.position != "center" && !this.collapsedEl){
36223             var dh = Roo.DomHelper;
36224             if(c.titlebar !== false){
36225                 this.collapseBtn = this.createTool(this.tools.dom, "roo-layout-collapse-"+this.position);
36226                 this.collapseBtn.on("click", this.collapse, this);
36227                 this.collapseBtn.enableDisplayMode();
36228                 /*
36229                 if(c.showPin === true || this.showPin){
36230                     this.stickBtn = this.createTool(this.tools.dom, "roo-layout-stick");
36231                     this.stickBtn.enableDisplayMode();
36232                     this.stickBtn.on("click", this.expand, this);
36233                     this.stickBtn.hide();
36234                 }
36235                 
36236             }
36237             */
36238             /** This region's collapsed element
36239             * @type Roo.Element */
36240             /*
36241              *
36242             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
36243                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
36244             ]}, true);
36245             
36246             if(c.floatable !== false){
36247                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
36248                this.collapsedEl.on("click", this.collapseClick, this);
36249             }
36250
36251             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
36252                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
36253                    id: "message", unselectable: "on", style:{"float":"left"}});
36254                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
36255              }
36256             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
36257             this.expandBtn.on("click", this.expand, this);
36258             
36259         }
36260         
36261         if(this.collapseBtn){
36262             this.collapseBtn.setVisible(c.collapsible == true);
36263         }
36264         
36265         this.cmargins = c.cmargins || this.cmargins ||
36266                          (this.position == "west" || this.position == "east" ?
36267                              {top: 0, left: 2, right:2, bottom: 0} :
36268                              {top: 2, left: 0, right:0, bottom: 2});
36269         */
36270         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
36271         
36272         
36273         this.tabPosition = [ 'top','bottom', 'west'].indexOf(c.tabPosition) > -1 ? c.tabPosition : "top";
36274         
36275         this.autoScroll = c.autoScroll || false;
36276         
36277         
36278        
36279         
36280         this.duration = c.duration || .30;
36281         this.slideDuration = c.slideDuration || .45;
36282         this.config = c;
36283        
36284     },
36285     /**
36286      * Returns true if this region is currently visible.
36287      * @return {Boolean}
36288      */
36289     isVisible : function(){
36290         return this.visible;
36291     },
36292
36293     /**
36294      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
36295      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
36296      */
36297     //setCollapsedTitle : function(title){
36298     //    title = title || "&#160;";
36299      //   if(this.collapsedTitleTextEl){
36300       //      this.collapsedTitleTextEl.innerHTML = title;
36301        // }
36302     //},
36303
36304     getBox : function(){
36305         var b;
36306       //  if(!this.collapsed){
36307             b = this.el.getBox(false, true);
36308        // }else{
36309           //  b = this.collapsedEl.getBox(false, true);
36310         //}
36311         return b;
36312     },
36313
36314     getMargins : function(){
36315         return this.margins;
36316         //return this.collapsed ? this.cmargins : this.margins;
36317     },
36318 /*
36319     highlight : function(){
36320         this.el.addClass("x-layout-panel-dragover");
36321     },
36322
36323     unhighlight : function(){
36324         this.el.removeClass("x-layout-panel-dragover");
36325     },
36326 */
36327     updateBox : function(box)
36328     {
36329         if (!this.bodyEl) {
36330             return; // not rendered yet..
36331         }
36332         
36333         this.box = box;
36334         if(!this.collapsed){
36335             this.el.dom.style.left = box.x + "px";
36336             this.el.dom.style.top = box.y + "px";
36337             this.updateBody(box.width, box.height);
36338         }else{
36339             this.collapsedEl.dom.style.left = box.x + "px";
36340             this.collapsedEl.dom.style.top = box.y + "px";
36341             this.collapsedEl.setSize(box.width, box.height);
36342         }
36343         if(this.tabs){
36344             this.tabs.autoSizeTabs();
36345         }
36346     },
36347
36348     updateBody : function(w, h)
36349     {
36350         if(w !== null){
36351             this.el.setWidth(w);
36352             w -= this.el.getBorderWidth("rl");
36353             if(this.config.adjustments){
36354                 w += this.config.adjustments[0];
36355             }
36356         }
36357         if(h !== null && h > 0){
36358             this.el.setHeight(h);
36359             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
36360             h -= this.el.getBorderWidth("tb");
36361             if(this.config.adjustments){
36362                 h += this.config.adjustments[1];
36363             }
36364             this.bodyEl.setHeight(h);
36365             if(this.tabs){
36366                 h = this.tabs.syncHeight(h);
36367             }
36368         }
36369         if(this.panelSize){
36370             w = w !== null ? w : this.panelSize.width;
36371             h = h !== null ? h : this.panelSize.height;
36372         }
36373         if(this.activePanel){
36374             var el = this.activePanel.getEl();
36375             w = w !== null ? w : el.getWidth();
36376             h = h !== null ? h : el.getHeight();
36377             this.panelSize = {width: w, height: h};
36378             this.activePanel.setSize(w, h);
36379         }
36380         if(Roo.isIE && this.tabs){
36381             this.tabs.el.repaint();
36382         }
36383     },
36384
36385     /**
36386      * Returns the container element for this region.
36387      * @return {Roo.Element}
36388      */
36389     getEl : function(){
36390         return this.el;
36391     },
36392
36393     /**
36394      * Hides this region.
36395      */
36396     hide : function(){
36397         //if(!this.collapsed){
36398             this.el.dom.style.left = "-2000px";
36399             this.el.hide();
36400         //}else{
36401          //   this.collapsedEl.dom.style.left = "-2000px";
36402          //   this.collapsedEl.hide();
36403        // }
36404         this.visible = false;
36405         this.fireEvent("visibilitychange", this, false);
36406     },
36407
36408     /**
36409      * Shows this region if it was previously hidden.
36410      */
36411     show : function(){
36412         //if(!this.collapsed){
36413             this.el.show();
36414         //}else{
36415         //    this.collapsedEl.show();
36416        // }
36417         this.visible = true;
36418         this.fireEvent("visibilitychange", this, true);
36419     },
36420 /*
36421     closeClicked : function(){
36422         if(this.activePanel){
36423             this.remove(this.activePanel);
36424         }
36425     },
36426
36427     collapseClick : function(e){
36428         if(this.isSlid){
36429            e.stopPropagation();
36430            this.slideIn();
36431         }else{
36432            e.stopPropagation();
36433            this.slideOut();
36434         }
36435     },
36436 */
36437     /**
36438      * Collapses this region.
36439      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
36440      */
36441     /*
36442     collapse : function(skipAnim, skipCheck = false){
36443         if(this.collapsed) {
36444             return;
36445         }
36446         
36447         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
36448             
36449             this.collapsed = true;
36450             if(this.split){
36451                 this.split.el.hide();
36452             }
36453             if(this.config.animate && skipAnim !== true){
36454                 this.fireEvent("invalidated", this);
36455                 this.animateCollapse();
36456             }else{
36457                 this.el.setLocation(-20000,-20000);
36458                 this.el.hide();
36459                 this.collapsedEl.show();
36460                 this.fireEvent("collapsed", this);
36461                 this.fireEvent("invalidated", this);
36462             }
36463         }
36464         
36465     },
36466 */
36467     animateCollapse : function(){
36468         // overridden
36469     },
36470
36471     /**
36472      * Expands this region if it was previously collapsed.
36473      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
36474      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
36475      */
36476     /*
36477     expand : function(e, skipAnim){
36478         if(e) {
36479             e.stopPropagation();
36480         }
36481         if(!this.collapsed || this.el.hasActiveFx()) {
36482             return;
36483         }
36484         if(this.isSlid){
36485             this.afterSlideIn();
36486             skipAnim = true;
36487         }
36488         this.collapsed = false;
36489         if(this.config.animate && skipAnim !== true){
36490             this.animateExpand();
36491         }else{
36492             this.el.show();
36493             if(this.split){
36494                 this.split.el.show();
36495             }
36496             this.collapsedEl.setLocation(-2000,-2000);
36497             this.collapsedEl.hide();
36498             this.fireEvent("invalidated", this);
36499             this.fireEvent("expanded", this);
36500         }
36501     },
36502 */
36503     animateExpand : function(){
36504         // overridden
36505     },
36506
36507     initTabs : function()
36508     {
36509         //this.bodyEl.setStyle("overflow", "hidden"); -- this is set in render?
36510         
36511         var ts = new Roo.bootstrap.panel.Tabs({
36512             el: this.bodyEl.dom,
36513             region : this,
36514             tabPosition: this.tabPosition ? this.tabPosition  : 'top',
36515             disableTooltips: this.config.disableTabTips,
36516             toolbar : this.config.toolbar
36517         });
36518         
36519         if(this.config.hideTabs){
36520             ts.stripWrap.setDisplayed(false);
36521         }
36522         this.tabs = ts;
36523         ts.resizeTabs = this.config.resizeTabs === true;
36524         ts.minTabWidth = this.config.minTabWidth || 40;
36525         ts.maxTabWidth = this.config.maxTabWidth || 250;
36526         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
36527         ts.monitorResize = false;
36528         //ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden"); // this is set in render?
36529         ts.bodyEl.addClass('roo-layout-tabs-body');
36530         this.panels.each(this.initPanelAsTab, this);
36531     },
36532
36533     initPanelAsTab : function(panel){
36534         var ti = this.tabs.addTab(
36535             panel.getEl().id,
36536             panel.getTitle(),
36537             null,
36538             this.config.closeOnTab && panel.isClosable(),
36539             panel.tpl
36540         );
36541         if(panel.tabTip !== undefined){
36542             ti.setTooltip(panel.tabTip);
36543         }
36544         ti.on("activate", function(){
36545               this.setActivePanel(panel);
36546         }, this);
36547         
36548         if(this.config.closeOnTab){
36549             ti.on("beforeclose", function(t, e){
36550                 e.cancel = true;
36551                 this.remove(panel);
36552             }, this);
36553         }
36554         
36555         panel.tabItem = ti;
36556         
36557         return ti;
36558     },
36559
36560     updatePanelTitle : function(panel, title)
36561     {
36562         if(this.activePanel == panel){
36563             this.updateTitle(title);
36564         }
36565         if(this.tabs){
36566             var ti = this.tabs.getTab(panel.getEl().id);
36567             ti.setText(title);
36568             if(panel.tabTip !== undefined){
36569                 ti.setTooltip(panel.tabTip);
36570             }
36571         }
36572     },
36573
36574     updateTitle : function(title){
36575         if(this.titleTextEl && !this.config.title){
36576             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
36577         }
36578     },
36579
36580     setActivePanel : function(panel)
36581     {
36582         panel = this.getPanel(panel);
36583         if(this.activePanel && this.activePanel != panel){
36584             if(this.activePanel.setActiveState(false) === false){
36585                 return;
36586             }
36587         }
36588         this.activePanel = panel;
36589         panel.setActiveState(true);
36590         if(this.panelSize){
36591             panel.setSize(this.panelSize.width, this.panelSize.height);
36592         }
36593         if(this.closeBtn){
36594             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
36595         }
36596         this.updateTitle(panel.getTitle());
36597         if(this.tabs){
36598             this.fireEvent("invalidated", this);
36599         }
36600         this.fireEvent("panelactivated", this, panel);
36601     },
36602
36603     /**
36604      * Shows the specified panel.
36605      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
36606      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
36607      */
36608     showPanel : function(panel)
36609     {
36610         panel = this.getPanel(panel);
36611         if(panel){
36612             if(this.tabs){
36613                 var tab = this.tabs.getTab(panel.getEl().id);
36614                 if(tab.isHidden()){
36615                     this.tabs.unhideTab(tab.id);
36616                 }
36617                 tab.activate();
36618             }else{
36619                 this.setActivePanel(panel);
36620             }
36621         }
36622         return panel;
36623     },
36624
36625     /**
36626      * Get the active panel for this region.
36627      * @return {Roo.ContentPanel} The active panel or null
36628      */
36629     getActivePanel : function(){
36630         return this.activePanel;
36631     },
36632
36633     validateVisibility : function(){
36634         if(this.panels.getCount() < 1){
36635             this.updateTitle("&#160;");
36636             this.closeBtn.hide();
36637             this.hide();
36638         }else{
36639             if(!this.isVisible()){
36640                 this.show();
36641             }
36642         }
36643     },
36644
36645     /**
36646      * Adds the passed ContentPanel(s) to this region.
36647      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
36648      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
36649      */
36650     add : function(panel)
36651     {
36652         if(arguments.length > 1){
36653             for(var i = 0, len = arguments.length; i < len; i++) {
36654                 this.add(arguments[i]);
36655             }
36656             return null;
36657         }
36658         
36659         // if we have not been rendered yet, then we can not really do much of this..
36660         if (!this.bodyEl) {
36661             this.unrendered_panels.push(panel);
36662             return panel;
36663         }
36664         
36665         
36666         
36667         
36668         if(this.hasPanel(panel)){
36669             this.showPanel(panel);
36670             return panel;
36671         }
36672         panel.setRegion(this);
36673         this.panels.add(panel);
36674        /* if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
36675             // sinle panel - no tab...?? would it not be better to render it with the tabs,
36676             // and hide them... ???
36677             this.bodyEl.dom.appendChild(panel.getEl().dom);
36678             if(panel.background !== true){
36679                 this.setActivePanel(panel);
36680             }
36681             this.fireEvent("paneladded", this, panel);
36682             return panel;
36683         }
36684         */
36685         if(!this.tabs){
36686             this.initTabs();
36687         }else{
36688             this.initPanelAsTab(panel);
36689         }
36690         
36691         
36692         if(panel.background !== true){
36693             this.tabs.activate(panel.getEl().id);
36694         }
36695         this.fireEvent("paneladded", this, panel);
36696         return panel;
36697     },
36698
36699     /**
36700      * Hides the tab for the specified panel.
36701      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36702      */
36703     hidePanel : function(panel){
36704         if(this.tabs && (panel = this.getPanel(panel))){
36705             this.tabs.hideTab(panel.getEl().id);
36706         }
36707     },
36708
36709     /**
36710      * Unhides the tab for a previously hidden panel.
36711      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36712      */
36713     unhidePanel : function(panel){
36714         if(this.tabs && (panel = this.getPanel(panel))){
36715             this.tabs.unhideTab(panel.getEl().id);
36716         }
36717     },
36718
36719     clearPanels : function(){
36720         while(this.panels.getCount() > 0){
36721              this.remove(this.panels.first());
36722         }
36723     },
36724
36725     /**
36726      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
36727      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
36728      * @param {Boolean} preservePanel Overrides the config preservePanel option
36729      * @return {Roo.ContentPanel} The panel that was removed
36730      */
36731     remove : function(panel, preservePanel)
36732     {
36733         panel = this.getPanel(panel);
36734         if(!panel){
36735             return null;
36736         }
36737         var e = {};
36738         this.fireEvent("beforeremove", this, panel, e);
36739         if(e.cancel === true){
36740             return null;
36741         }
36742         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
36743         var panelId = panel.getId();
36744         this.panels.removeKey(panelId);
36745         if(preservePanel){
36746             document.body.appendChild(panel.getEl().dom);
36747         }
36748         if(this.tabs){
36749             this.tabs.removeTab(panel.getEl().id);
36750         }else if (!preservePanel){
36751             this.bodyEl.dom.removeChild(panel.getEl().dom);
36752         }
36753         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
36754             var p = this.panels.first();
36755             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
36756             tempEl.appendChild(p.getEl().dom);
36757             this.bodyEl.update("");
36758             this.bodyEl.dom.appendChild(p.getEl().dom);
36759             tempEl = null;
36760             this.updateTitle(p.getTitle());
36761             this.tabs = null;
36762             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
36763             this.setActivePanel(p);
36764         }
36765         panel.setRegion(null);
36766         if(this.activePanel == panel){
36767             this.activePanel = null;
36768         }
36769         if(this.config.autoDestroy !== false && preservePanel !== true){
36770             try{panel.destroy();}catch(e){}
36771         }
36772         this.fireEvent("panelremoved", this, panel);
36773         return panel;
36774     },
36775
36776     /**
36777      * Returns the TabPanel component used by this region
36778      * @return {Roo.TabPanel}
36779      */
36780     getTabs : function(){
36781         return this.tabs;
36782     },
36783
36784     createTool : function(parentEl, className){
36785         var btn = Roo.DomHelper.append(parentEl, {
36786             tag: "div",
36787             cls: "x-layout-tools-button",
36788             children: [ {
36789                 tag: "div",
36790                 cls: "roo-layout-tools-button-inner " + className,
36791                 html: "&#160;"
36792             }]
36793         }, true);
36794         btn.addClassOnOver("roo-layout-tools-button-over");
36795         return btn;
36796     }
36797 });/*
36798  * Based on:
36799  * Ext JS Library 1.1.1
36800  * Copyright(c) 2006-2007, Ext JS, LLC.
36801  *
36802  * Originally Released Under LGPL - original licence link has changed is not relivant.
36803  *
36804  * Fork - LGPL
36805  * <script type="text/javascript">
36806  */
36807  
36808
36809
36810 /**
36811  * @class Roo.SplitLayoutRegion
36812  * @extends Roo.LayoutRegion
36813  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
36814  */
36815 Roo.bootstrap.layout.Split = function(config){
36816     this.cursor = config.cursor;
36817     Roo.bootstrap.layout.Split.superclass.constructor.call(this, config);
36818 };
36819
36820 Roo.extend(Roo.bootstrap.layout.Split, Roo.bootstrap.layout.Region,
36821 {
36822     splitTip : "Drag to resize.",
36823     collapsibleSplitTip : "Drag to resize. Double click to hide.",
36824     useSplitTips : false,
36825
36826     applyConfig : function(config){
36827         Roo.bootstrap.layout.Split.superclass.applyConfig.call(this, config);
36828     },
36829     
36830     onRender : function(ctr,pos) {
36831         
36832         Roo.bootstrap.layout.Split.superclass.onRender.call(this, ctr,pos);
36833         if(!this.config.split){
36834             return;
36835         }
36836         if(!this.split){
36837             
36838             var splitEl = Roo.DomHelper.append(ctr.dom,  {
36839                             tag: "div",
36840                             id: this.el.id + "-split",
36841                             cls: "roo-layout-split roo-layout-split-"+this.position,
36842                             html: "&#160;"
36843             });
36844             /** The SplitBar for this region 
36845             * @type Roo.SplitBar */
36846             // does not exist yet...
36847             Roo.log([this.position, this.orientation]);
36848             
36849             this.split = new Roo.bootstrap.SplitBar({
36850                 dragElement : splitEl,
36851                 resizingElement: this.el,
36852                 orientation : this.orientation
36853             });
36854             
36855             this.split.on("moved", this.onSplitMove, this);
36856             this.split.useShim = this.config.useShim === true;
36857             this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
36858             if(this.useSplitTips){
36859                 this.split.el.dom.title = this.config.collapsible ? this.collapsibleSplitTip : this.splitTip;
36860             }
36861             //if(config.collapsible){
36862             //    this.split.el.on("dblclick", this.collapse,  this);
36863             //}
36864         }
36865         if(typeof this.config.minSize != "undefined"){
36866             this.split.minSize = this.config.minSize;
36867         }
36868         if(typeof this.config.maxSize != "undefined"){
36869             this.split.maxSize = this.config.maxSize;
36870         }
36871         if(this.config.hideWhenEmpty || this.config.hidden || this.config.collapsed){
36872             this.hideSplitter();
36873         }
36874         
36875     },
36876
36877     getHMaxSize : function(){
36878          var cmax = this.config.maxSize || 10000;
36879          var center = this.mgr.getRegion("center");
36880          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
36881     },
36882
36883     getVMaxSize : function(){
36884          var cmax = this.config.maxSize || 10000;
36885          var center = this.mgr.getRegion("center");
36886          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
36887     },
36888
36889     onSplitMove : function(split, newSize){
36890         this.fireEvent("resized", this, newSize);
36891     },
36892     
36893     /** 
36894      * Returns the {@link Roo.SplitBar} for this region.
36895      * @return {Roo.SplitBar}
36896      */
36897     getSplitBar : function(){
36898         return this.split;
36899     },
36900     
36901     hide : function(){
36902         this.hideSplitter();
36903         Roo.bootstrap.layout.Split.superclass.hide.call(this);
36904     },
36905
36906     hideSplitter : function(){
36907         if(this.split){
36908             this.split.el.setLocation(-2000,-2000);
36909             this.split.el.hide();
36910         }
36911     },
36912
36913     show : function(){
36914         if(this.split){
36915             this.split.el.show();
36916         }
36917         Roo.bootstrap.layout.Split.superclass.show.call(this);
36918     },
36919     
36920     beforeSlide: function(){
36921         if(Roo.isGecko){// firefox overflow auto bug workaround
36922             this.bodyEl.clip();
36923             if(this.tabs) {
36924                 this.tabs.bodyEl.clip();
36925             }
36926             if(this.activePanel){
36927                 this.activePanel.getEl().clip();
36928                 
36929                 if(this.activePanel.beforeSlide){
36930                     this.activePanel.beforeSlide();
36931                 }
36932             }
36933         }
36934     },
36935     
36936     afterSlide : function(){
36937         if(Roo.isGecko){// firefox overflow auto bug workaround
36938             this.bodyEl.unclip();
36939             if(this.tabs) {
36940                 this.tabs.bodyEl.unclip();
36941             }
36942             if(this.activePanel){
36943                 this.activePanel.getEl().unclip();
36944                 if(this.activePanel.afterSlide){
36945                     this.activePanel.afterSlide();
36946                 }
36947             }
36948         }
36949     },
36950
36951     initAutoHide : function(){
36952         if(this.autoHide !== false){
36953             if(!this.autoHideHd){
36954                 var st = new Roo.util.DelayedTask(this.slideIn, this);
36955                 this.autoHideHd = {
36956                     "mouseout": function(e){
36957                         if(!e.within(this.el, true)){
36958                             st.delay(500);
36959                         }
36960                     },
36961                     "mouseover" : function(e){
36962                         st.cancel();
36963                     },
36964                     scope : this
36965                 };
36966             }
36967             this.el.on(this.autoHideHd);
36968         }
36969     },
36970
36971     clearAutoHide : function(){
36972         if(this.autoHide !== false){
36973             this.el.un("mouseout", this.autoHideHd.mouseout);
36974             this.el.un("mouseover", this.autoHideHd.mouseover);
36975         }
36976     },
36977
36978     clearMonitor : function(){
36979         Roo.get(document).un("click", this.slideInIf, this);
36980     },
36981
36982     // these names are backwards but not changed for compat
36983     slideOut : function(){
36984         if(this.isSlid || this.el.hasActiveFx()){
36985             return;
36986         }
36987         this.isSlid = true;
36988         if(this.collapseBtn){
36989             this.collapseBtn.hide();
36990         }
36991         this.closeBtnState = this.closeBtn.getStyle('display');
36992         this.closeBtn.hide();
36993         if(this.stickBtn){
36994             this.stickBtn.show();
36995         }
36996         this.el.show();
36997         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
36998         this.beforeSlide();
36999         this.el.setStyle("z-index", 10001);
37000         this.el.slideIn(this.getSlideAnchor(), {
37001             callback: function(){
37002                 this.afterSlide();
37003                 this.initAutoHide();
37004                 Roo.get(document).on("click", this.slideInIf, this);
37005                 this.fireEvent("slideshow", this);
37006             },
37007             scope: this,
37008             block: true
37009         });
37010     },
37011
37012     afterSlideIn : function(){
37013         this.clearAutoHide();
37014         this.isSlid = false;
37015         this.clearMonitor();
37016         this.el.setStyle("z-index", "");
37017         if(this.collapseBtn){
37018             this.collapseBtn.show();
37019         }
37020         this.closeBtn.setStyle('display', this.closeBtnState);
37021         if(this.stickBtn){
37022             this.stickBtn.hide();
37023         }
37024         this.fireEvent("slidehide", this);
37025     },
37026
37027     slideIn : function(cb){
37028         if(!this.isSlid || this.el.hasActiveFx()){
37029             Roo.callback(cb);
37030             return;
37031         }
37032         this.isSlid = false;
37033         this.beforeSlide();
37034         this.el.slideOut(this.getSlideAnchor(), {
37035             callback: function(){
37036                 this.el.setLeftTop(-10000, -10000);
37037                 this.afterSlide();
37038                 this.afterSlideIn();
37039                 Roo.callback(cb);
37040             },
37041             scope: this,
37042             block: true
37043         });
37044     },
37045     
37046     slideInIf : function(e){
37047         if(!e.within(this.el)){
37048             this.slideIn();
37049         }
37050     },
37051
37052     animateCollapse : function(){
37053         this.beforeSlide();
37054         this.el.setStyle("z-index", 20000);
37055         var anchor = this.getSlideAnchor();
37056         this.el.slideOut(anchor, {
37057             callback : function(){
37058                 this.el.setStyle("z-index", "");
37059                 this.collapsedEl.slideIn(anchor, {duration:.3});
37060                 this.afterSlide();
37061                 this.el.setLocation(-10000,-10000);
37062                 this.el.hide();
37063                 this.fireEvent("collapsed", this);
37064             },
37065             scope: this,
37066             block: true
37067         });
37068     },
37069
37070     animateExpand : function(){
37071         this.beforeSlide();
37072         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
37073         this.el.setStyle("z-index", 20000);
37074         this.collapsedEl.hide({
37075             duration:.1
37076         });
37077         this.el.slideIn(this.getSlideAnchor(), {
37078             callback : function(){
37079                 this.el.setStyle("z-index", "");
37080                 this.afterSlide();
37081                 if(this.split){
37082                     this.split.el.show();
37083                 }
37084                 this.fireEvent("invalidated", this);
37085                 this.fireEvent("expanded", this);
37086             },
37087             scope: this,
37088             block: true
37089         });
37090     },
37091
37092     anchors : {
37093         "west" : "left",
37094         "east" : "right",
37095         "north" : "top",
37096         "south" : "bottom"
37097     },
37098
37099     sanchors : {
37100         "west" : "l",
37101         "east" : "r",
37102         "north" : "t",
37103         "south" : "b"
37104     },
37105
37106     canchors : {
37107         "west" : "tl-tr",
37108         "east" : "tr-tl",
37109         "north" : "tl-bl",
37110         "south" : "bl-tl"
37111     },
37112
37113     getAnchor : function(){
37114         return this.anchors[this.position];
37115     },
37116
37117     getCollapseAnchor : function(){
37118         return this.canchors[this.position];
37119     },
37120
37121     getSlideAnchor : function(){
37122         return this.sanchors[this.position];
37123     },
37124
37125     getAlignAdj : function(){
37126         var cm = this.cmargins;
37127         switch(this.position){
37128             case "west":
37129                 return [0, 0];
37130             break;
37131             case "east":
37132                 return [0, 0];
37133             break;
37134             case "north":
37135                 return [0, 0];
37136             break;
37137             case "south":
37138                 return [0, 0];
37139             break;
37140         }
37141     },
37142
37143     getExpandAdj : function(){
37144         var c = this.collapsedEl, cm = this.cmargins;
37145         switch(this.position){
37146             case "west":
37147                 return [-(cm.right+c.getWidth()+cm.left), 0];
37148             break;
37149             case "east":
37150                 return [cm.right+c.getWidth()+cm.left, 0];
37151             break;
37152             case "north":
37153                 return [0, -(cm.top+cm.bottom+c.getHeight())];
37154             break;
37155             case "south":
37156                 return [0, cm.top+cm.bottom+c.getHeight()];
37157             break;
37158         }
37159     }
37160 });/*
37161  * Based on:
37162  * Ext JS Library 1.1.1
37163  * Copyright(c) 2006-2007, Ext JS, LLC.
37164  *
37165  * Originally Released Under LGPL - original licence link has changed is not relivant.
37166  *
37167  * Fork - LGPL
37168  * <script type="text/javascript">
37169  */
37170 /*
37171  * These classes are private internal classes
37172  */
37173 Roo.bootstrap.layout.Center = function(config){
37174     config.region = "center";
37175     Roo.bootstrap.layout.Region.call(this, config);
37176     this.visible = true;
37177     this.minWidth = config.minWidth || 20;
37178     this.minHeight = config.minHeight || 20;
37179 };
37180
37181 Roo.extend(Roo.bootstrap.layout.Center, Roo.bootstrap.layout.Region, {
37182     hide : function(){
37183         // center panel can't be hidden
37184     },
37185     
37186     show : function(){
37187         // center panel can't be hidden
37188     },
37189     
37190     getMinWidth: function(){
37191         return this.minWidth;
37192     },
37193     
37194     getMinHeight: function(){
37195         return this.minHeight;
37196     }
37197 });
37198
37199
37200
37201
37202  
37203
37204
37205
37206
37207
37208
37209 Roo.bootstrap.layout.North = function(config)
37210 {
37211     config.region = 'north';
37212     config.cursor = 'n-resize';
37213     
37214     Roo.bootstrap.layout.Split.call(this, config);
37215     
37216     
37217     if(this.split){
37218         this.split.placement = Roo.bootstrap.SplitBar.TOP;
37219         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37220         this.split.el.addClass("roo-layout-split-v");
37221     }
37222     var size = config.initialSize || config.height;
37223     if(typeof size != "undefined"){
37224         this.el.setHeight(size);
37225     }
37226 };
37227 Roo.extend(Roo.bootstrap.layout.North, Roo.bootstrap.layout.Split,
37228 {
37229     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37230     
37231     
37232     
37233     getBox : function(){
37234         if(this.collapsed){
37235             return this.collapsedEl.getBox();
37236         }
37237         var box = this.el.getBox();
37238         if(this.split){
37239             box.height += this.split.el.getHeight();
37240         }
37241         return box;
37242     },
37243     
37244     updateBox : function(box){
37245         if(this.split && !this.collapsed){
37246             box.height -= this.split.el.getHeight();
37247             this.split.el.setLeft(box.x);
37248             this.split.el.setTop(box.y+box.height);
37249             this.split.el.setWidth(box.width);
37250         }
37251         if(this.collapsed){
37252             this.updateBody(box.width, null);
37253         }
37254         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37255     }
37256 });
37257
37258
37259
37260
37261
37262 Roo.bootstrap.layout.South = function(config){
37263     config.region = 'south';
37264     config.cursor = 's-resize';
37265     Roo.bootstrap.layout.Split.call(this, config);
37266     if(this.split){
37267         this.split.placement = Roo.bootstrap.SplitBar.BOTTOM;
37268         this.split.orientation = Roo.bootstrap.SplitBar.VERTICAL;
37269         this.split.el.addClass("roo-layout-split-v");
37270     }
37271     var size = config.initialSize || config.height;
37272     if(typeof size != "undefined"){
37273         this.el.setHeight(size);
37274     }
37275 };
37276
37277 Roo.extend(Roo.bootstrap.layout.South, Roo.bootstrap.layout.Split, {
37278     orientation: Roo.bootstrap.SplitBar.VERTICAL,
37279     getBox : function(){
37280         if(this.collapsed){
37281             return this.collapsedEl.getBox();
37282         }
37283         var box = this.el.getBox();
37284         if(this.split){
37285             var sh = this.split.el.getHeight();
37286             box.height += sh;
37287             box.y -= sh;
37288         }
37289         return box;
37290     },
37291     
37292     updateBox : function(box){
37293         if(this.split && !this.collapsed){
37294             var sh = this.split.el.getHeight();
37295             box.height -= sh;
37296             box.y += sh;
37297             this.split.el.setLeft(box.x);
37298             this.split.el.setTop(box.y-sh);
37299             this.split.el.setWidth(box.width);
37300         }
37301         if(this.collapsed){
37302             this.updateBody(box.width, null);
37303         }
37304         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37305     }
37306 });
37307
37308 Roo.bootstrap.layout.East = function(config){
37309     config.region = "east";
37310     config.cursor = "e-resize";
37311     Roo.bootstrap.layout.Split.call(this, config);
37312     if(this.split){
37313         this.split.placement = Roo.bootstrap.SplitBar.RIGHT;
37314         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37315         this.split.el.addClass("roo-layout-split-h");
37316     }
37317     var size = config.initialSize || config.width;
37318     if(typeof size != "undefined"){
37319         this.el.setWidth(size);
37320     }
37321 };
37322 Roo.extend(Roo.bootstrap.layout.East, Roo.bootstrap.layout.Split, {
37323     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37324     getBox : function(){
37325         if(this.collapsed){
37326             return this.collapsedEl.getBox();
37327         }
37328         var box = this.el.getBox();
37329         if(this.split){
37330             var sw = this.split.el.getWidth();
37331             box.width += sw;
37332             box.x -= sw;
37333         }
37334         return box;
37335     },
37336
37337     updateBox : function(box){
37338         if(this.split && !this.collapsed){
37339             var sw = this.split.el.getWidth();
37340             box.width -= sw;
37341             this.split.el.setLeft(box.x);
37342             this.split.el.setTop(box.y);
37343             this.split.el.setHeight(box.height);
37344             box.x += sw;
37345         }
37346         if(this.collapsed){
37347             this.updateBody(null, box.height);
37348         }
37349         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37350     }
37351 });
37352
37353 Roo.bootstrap.layout.West = function(config){
37354     config.region = "west";
37355     config.cursor = "w-resize";
37356     
37357     Roo.bootstrap.layout.Split.call(this, config);
37358     if(this.split){
37359         this.split.placement = Roo.bootstrap.SplitBar.LEFT;
37360         this.split.orientation = Roo.bootstrap.SplitBar.HORIZONTAL;
37361         this.split.el.addClass("roo-layout-split-h");
37362     }
37363     
37364 };
37365 Roo.extend(Roo.bootstrap.layout.West, Roo.bootstrap.layout.Split, {
37366     orientation: Roo.bootstrap.SplitBar.HORIZONTAL,
37367     
37368     onRender: function(ctr, pos)
37369     {
37370         Roo.bootstrap.layout.West.superclass.onRender.call(this, ctr,pos);
37371         var size = this.config.initialSize || this.config.width;
37372         if(typeof size != "undefined"){
37373             this.el.setWidth(size);
37374         }
37375     },
37376     
37377     getBox : function(){
37378         if(this.collapsed){
37379             return this.collapsedEl.getBox();
37380         }
37381         var box = this.el.getBox();
37382         if(this.split){
37383             box.width += this.split.el.getWidth();
37384         }
37385         return box;
37386     },
37387     
37388     updateBox : function(box){
37389         if(this.split && !this.collapsed){
37390             var sw = this.split.el.getWidth();
37391             box.width -= sw;
37392             this.split.el.setLeft(box.x+box.width);
37393             this.split.el.setTop(box.y);
37394             this.split.el.setHeight(box.height);
37395         }
37396         if(this.collapsed){
37397             this.updateBody(null, box.height);
37398         }
37399         Roo.bootstrap.layout.Region.prototype.updateBox.call(this, box);
37400     }
37401 });Roo.namespace("Roo.bootstrap.panel");/*
37402  * Based on:
37403  * Ext JS Library 1.1.1
37404  * Copyright(c) 2006-2007, Ext JS, LLC.
37405  *
37406  * Originally Released Under LGPL - original licence link has changed is not relivant.
37407  *
37408  * Fork - LGPL
37409  * <script type="text/javascript">
37410  */
37411 /**
37412  * @class Roo.ContentPanel
37413  * @extends Roo.util.Observable
37414  * A basic ContentPanel element.
37415  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
37416  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
37417  * @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
37418  * @cfg {Boolean}   closable      True if the panel can be closed/removed
37419  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
37420  * @cfg {String/HTMLElement/Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
37421  * @cfg {Toolbar}   toolbar       A toolbar for this panel
37422  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
37423  * @cfg {String} title          The title for this panel
37424  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
37425  * @cfg {String} url            Calls {@link #setUrl} with this value
37426  * @cfg {String} region         (center|north|south|east|west) which region to put this panel on (when used with xtype constructors)
37427  * @cfg {String/Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
37428  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
37429  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
37430  * @cfg {Boolean} badges render the badges
37431
37432  * @constructor
37433  * Create a new ContentPanel.
37434  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
37435  * @param {String/Object} config A string to set only the title or a config object
37436  * @param {String} content (optional) Set the HTML content for this panel
37437  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
37438  */
37439 Roo.bootstrap.panel.Content = function( config){
37440     
37441     this.tpl = config.tpl || false;
37442     
37443     var el = config.el;
37444     var content = config.content;
37445
37446     if(config.autoCreate){ // xtype is available if this is called from factory
37447         el = Roo.id();
37448     }
37449     this.el = Roo.get(el);
37450     if(!this.el && config && config.autoCreate){
37451         if(typeof config.autoCreate == "object"){
37452             if(!config.autoCreate.id){
37453                 config.autoCreate.id = config.id||el;
37454             }
37455             this.el = Roo.DomHelper.append(document.body,
37456                         config.autoCreate, true);
37457         }else{
37458             var elcfg =  {   tag: "div",
37459                             cls: "roo-layout-inactive-content",
37460                             id: config.id||el
37461                             };
37462             if (config.html) {
37463                 elcfg.html = config.html;
37464                 
37465             }
37466                         
37467             this.el = Roo.DomHelper.append(document.body, elcfg , true);
37468         }
37469     } 
37470     this.closable = false;
37471     this.loaded = false;
37472     this.active = false;
37473    
37474       
37475     if (config.toolbar && !config.toolbar.el && config.toolbar.xtype) {
37476         
37477         this.toolbar = new config.toolbar.xns[config.toolbar.xtype](config.toolbar);
37478         
37479         this.wrapEl = this.el; //this.el.wrap();
37480         var ti = [];
37481         if (config.toolbar.items) {
37482             ti = config.toolbar.items ;
37483             delete config.toolbar.items ;
37484         }
37485         
37486         var nitems = [];
37487         this.toolbar.render(this.wrapEl, 'before');
37488         for(var i =0;i < ti.length;i++) {
37489           //  Roo.log(['add child', items[i]]);
37490             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37491         }
37492         this.toolbar.items = nitems;
37493         this.toolbar.el.insertBefore(this.wrapEl.dom.firstChild);
37494         delete config.toolbar;
37495         
37496     }
37497     /*
37498     // xtype created footer. - not sure if will work as we normally have to render first..
37499     if (this.footer && !this.footer.el && this.footer.xtype) {
37500         if (!this.wrapEl) {
37501             this.wrapEl = this.el.wrap();
37502         }
37503     
37504         this.footer.container = this.wrapEl.createChild();
37505          
37506         this.footer = Roo.factory(this.footer, Roo);
37507         
37508     }
37509     */
37510     
37511      if(typeof config == "string"){
37512         this.title = config;
37513     }else{
37514         Roo.apply(this, config);
37515     }
37516     
37517     if(this.resizeEl){
37518         this.resizeEl = Roo.get(this.resizeEl, true);
37519     }else{
37520         this.resizeEl = this.el;
37521     }
37522     // handle view.xtype
37523     
37524  
37525     
37526     
37527     this.addEvents({
37528         /**
37529          * @event activate
37530          * Fires when this panel is activated. 
37531          * @param {Roo.ContentPanel} this
37532          */
37533         "activate" : true,
37534         /**
37535          * @event deactivate
37536          * Fires when this panel is activated. 
37537          * @param {Roo.ContentPanel} this
37538          */
37539         "deactivate" : true,
37540
37541         /**
37542          * @event resize
37543          * Fires when this panel is resized if fitToFrame is true.
37544          * @param {Roo.ContentPanel} this
37545          * @param {Number} width The width after any component adjustments
37546          * @param {Number} height The height after any component adjustments
37547          */
37548         "resize" : true,
37549         
37550          /**
37551          * @event render
37552          * Fires when this tab is created
37553          * @param {Roo.ContentPanel} this
37554          */
37555         "render" : true
37556         
37557         
37558         
37559     });
37560     
37561
37562     
37563     
37564     if(this.autoScroll){
37565         this.resizeEl.setStyle("overflow", "auto");
37566     } else {
37567         // fix randome scrolling
37568         //this.el.on('scroll', function() {
37569         //    Roo.log('fix random scolling');
37570         //    this.scrollTo('top',0); 
37571         //});
37572     }
37573     content = content || this.content;
37574     if(content){
37575         this.setContent(content);
37576     }
37577     if(config && config.url){
37578         this.setUrl(this.url, this.params, this.loadOnce);
37579     }
37580     
37581     
37582     
37583     Roo.bootstrap.panel.Content.superclass.constructor.call(this);
37584     
37585     if (this.view && typeof(this.view.xtype) != 'undefined') {
37586         this.view.el = this.el.appendChild(document.createElement("div"));
37587         this.view = Roo.factory(this.view); 
37588         this.view.render  &&  this.view.render(false, '');  
37589     }
37590     
37591     
37592     this.fireEvent('render', this);
37593 };
37594
37595 Roo.extend(Roo.bootstrap.panel.Content, Roo.bootstrap.Component, {
37596     
37597     tabTip : '',
37598     
37599     setRegion : function(region){
37600         this.region = region;
37601         this.setActiveClass(region && !this.background);
37602     },
37603     
37604     
37605     setActiveClass: function(state)
37606     {
37607         if(state){
37608            this.el.replaceClass("roo-layout-inactive-content", "roo-layout-active-content");
37609            this.el.setStyle('position','relative');
37610         }else{
37611            this.el.replaceClass("roo-layout-active-content", "roo-layout-inactive-content");
37612            this.el.setStyle('position', 'absolute');
37613         } 
37614     },
37615     
37616     /**
37617      * Returns the toolbar for this Panel if one was configured. 
37618      * @return {Roo.Toolbar} 
37619      */
37620     getToolbar : function(){
37621         return this.toolbar;
37622     },
37623     
37624     setActiveState : function(active)
37625     {
37626         this.active = active;
37627         this.setActiveClass(active);
37628         if(!active){
37629             if(this.fireEvent("deactivate", this) === false){
37630                 return false;
37631             }
37632             return true;
37633         }
37634         this.fireEvent("activate", this);
37635         return true;
37636     },
37637     /**
37638      * Updates this panel's element
37639      * @param {String} content The new content
37640      * @param {Boolean} loadScripts (optional) true to look for and process scripts
37641     */
37642     setContent : function(content, loadScripts){
37643         this.el.update(content, loadScripts);
37644     },
37645
37646     ignoreResize : function(w, h){
37647         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
37648             return true;
37649         }else{
37650             this.lastSize = {width: w, height: h};
37651             return false;
37652         }
37653     },
37654     /**
37655      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
37656      * @return {Roo.UpdateManager} The UpdateManager
37657      */
37658     getUpdateManager : function(){
37659         return this.el.getUpdateManager();
37660     },
37661      /**
37662      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
37663      * @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:
37664 <pre><code>
37665 panel.load({
37666     url: "your-url.php",
37667     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
37668     callback: yourFunction,
37669     scope: yourObject, //(optional scope)
37670     discardUrl: false,
37671     nocache: false,
37672     text: "Loading...",
37673     timeout: 30,
37674     scripts: false
37675 });
37676 </code></pre>
37677      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
37678      * 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.
37679      * @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}
37680      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
37681      * @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.
37682      * @return {Roo.ContentPanel} this
37683      */
37684     load : function(){
37685         var um = this.el.getUpdateManager();
37686         um.update.apply(um, arguments);
37687         return this;
37688     },
37689
37690
37691     /**
37692      * 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.
37693      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
37694      * @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)
37695      * @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)
37696      * @return {Roo.UpdateManager} The UpdateManager
37697      */
37698     setUrl : function(url, params, loadOnce){
37699         if(this.refreshDelegate){
37700             this.removeListener("activate", this.refreshDelegate);
37701         }
37702         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
37703         this.on("activate", this.refreshDelegate);
37704         return this.el.getUpdateManager();
37705     },
37706     
37707     _handleRefresh : function(url, params, loadOnce){
37708         if(!loadOnce || !this.loaded){
37709             var updater = this.el.getUpdateManager();
37710             updater.update(url, params, this._setLoaded.createDelegate(this));
37711         }
37712     },
37713     
37714     _setLoaded : function(){
37715         this.loaded = true;
37716     }, 
37717     
37718     /**
37719      * Returns this panel's id
37720      * @return {String} 
37721      */
37722     getId : function(){
37723         return this.el.id;
37724     },
37725     
37726     /** 
37727      * Returns this panel's element - used by regiosn to add.
37728      * @return {Roo.Element} 
37729      */
37730     getEl : function(){
37731         return this.wrapEl || this.el;
37732     },
37733     
37734    
37735     
37736     adjustForComponents : function(width, height)
37737     {
37738         //Roo.log('adjustForComponents ');
37739         if(this.resizeEl != this.el){
37740             width -= this.el.getFrameWidth('lr');
37741             height -= this.el.getFrameWidth('tb');
37742         }
37743         if(this.toolbar){
37744             var te = this.toolbar.getEl();
37745             te.setWidth(width);
37746             height -= te.getHeight();
37747         }
37748         if(this.footer){
37749             var te = this.footer.getEl();
37750             te.setWidth(width);
37751             height -= te.getHeight();
37752         }
37753         
37754         
37755         if(this.adjustments){
37756             width += this.adjustments[0];
37757             height += this.adjustments[1];
37758         }
37759         return {"width": width, "height": height};
37760     },
37761     
37762     setSize : function(width, height){
37763         if(this.fitToFrame && !this.ignoreResize(width, height)){
37764             if(this.fitContainer && this.resizeEl != this.el){
37765                 this.el.setSize(width, height);
37766             }
37767             var size = this.adjustForComponents(width, height);
37768             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
37769             this.fireEvent('resize', this, size.width, size.height);
37770         }
37771     },
37772     
37773     /**
37774      * Returns this panel's title
37775      * @return {String} 
37776      */
37777     getTitle : function(){
37778         
37779         if (typeof(this.title) != 'object') {
37780             return this.title;
37781         }
37782         
37783         var t = '';
37784         for (var k in this.title) {
37785             if (!this.title.hasOwnProperty(k)) {
37786                 continue;
37787             }
37788             
37789             if (k.indexOf('-') >= 0) {
37790                 var s = k.split('-');
37791                 for (var i = 0; i<s.length; i++) {
37792                     t += "<span class='visible-"+s[i]+"'>"+this.title[k]+"</span>";
37793                 }
37794             } else {
37795                 t += "<span class='visible-"+k+"'>"+this.title[k]+"</span>";
37796             }
37797         }
37798         return t;
37799     },
37800     
37801     /**
37802      * Set this panel's title
37803      * @param {String} title
37804      */
37805     setTitle : function(title){
37806         this.title = title;
37807         if(this.region){
37808             this.region.updatePanelTitle(this, title);
37809         }
37810     },
37811     
37812     /**
37813      * Returns true is this panel was configured to be closable
37814      * @return {Boolean} 
37815      */
37816     isClosable : function(){
37817         return this.closable;
37818     },
37819     
37820     beforeSlide : function(){
37821         this.el.clip();
37822         this.resizeEl.clip();
37823     },
37824     
37825     afterSlide : function(){
37826         this.el.unclip();
37827         this.resizeEl.unclip();
37828     },
37829     
37830     /**
37831      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
37832      *   Will fail silently if the {@link #setUrl} method has not been called.
37833      *   This does not activate the panel, just updates its content.
37834      */
37835     refresh : function(){
37836         if(this.refreshDelegate){
37837            this.loaded = false;
37838            this.refreshDelegate();
37839         }
37840     },
37841     
37842     /**
37843      * Destroys this panel
37844      */
37845     destroy : function(){
37846         this.el.removeAllListeners();
37847         var tempEl = document.createElement("span");
37848         tempEl.appendChild(this.el.dom);
37849         tempEl.innerHTML = "";
37850         this.el.remove();
37851         this.el = null;
37852     },
37853     
37854     /**
37855      * form - if the content panel contains a form - this is a reference to it.
37856      * @type {Roo.form.Form}
37857      */
37858     form : false,
37859     /**
37860      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
37861      *    This contains a reference to it.
37862      * @type {Roo.View}
37863      */
37864     view : false,
37865     
37866       /**
37867      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
37868      * <pre><code>
37869
37870 layout.addxtype({
37871        xtype : 'Form',
37872        items: [ .... ]
37873    }
37874 );
37875
37876 </code></pre>
37877      * @param {Object} cfg Xtype definition of item to add.
37878      */
37879     
37880     
37881     getChildContainer: function () {
37882         return this.getEl();
37883     }
37884     
37885     
37886     /*
37887         var  ret = new Roo.factory(cfg);
37888         return ret;
37889         
37890         
37891         // add form..
37892         if (cfg.xtype.match(/^Form$/)) {
37893             
37894             var el;
37895             //if (this.footer) {
37896             //    el = this.footer.container.insertSibling(false, 'before');
37897             //} else {
37898                 el = this.el.createChild();
37899             //}
37900
37901             this.form = new  Roo.form.Form(cfg);
37902             
37903             
37904             if ( this.form.allItems.length) {
37905                 this.form.render(el.dom);
37906             }
37907             return this.form;
37908         }
37909         // should only have one of theses..
37910         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
37911             // views.. should not be just added - used named prop 'view''
37912             
37913             cfg.el = this.el.appendChild(document.createElement("div"));
37914             // factory?
37915             
37916             var ret = new Roo.factory(cfg);
37917              
37918              ret.render && ret.render(false, ''); // render blank..
37919             this.view = ret;
37920             return ret;
37921         }
37922         return false;
37923     }
37924     \*/
37925 });
37926  
37927 /**
37928  * @class Roo.bootstrap.panel.Grid
37929  * @extends Roo.bootstrap.panel.Content
37930  * @constructor
37931  * Create a new GridPanel.
37932  * @cfg {Roo.bootstrap.Table} grid The grid for this panel
37933  * @param {Object} config A the config object
37934   
37935  */
37936
37937
37938
37939 Roo.bootstrap.panel.Grid = function(config)
37940 {
37941     
37942       
37943     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
37944         {tag: "div", cls: "roo-layout-grid-wrapper roo-layout-inactive-content"}, true);
37945
37946     config.el = this.wrapper;
37947     //this.el = this.wrapper;
37948     
37949       if (config.container) {
37950         // ctor'ed from a Border/panel.grid
37951         
37952         
37953         this.wrapper.setStyle("overflow", "hidden");
37954         this.wrapper.addClass('roo-grid-container');
37955
37956     }
37957     
37958     
37959     if(config.toolbar){
37960         var tool_el = this.wrapper.createChild();    
37961         this.toolbar = Roo.factory(config.toolbar);
37962         var ti = [];
37963         if (config.toolbar.items) {
37964             ti = config.toolbar.items ;
37965             delete config.toolbar.items ;
37966         }
37967         
37968         var nitems = [];
37969         this.toolbar.render(tool_el);
37970         for(var i =0;i < ti.length;i++) {
37971           //  Roo.log(['add child', items[i]]);
37972             nitems.push(this.toolbar.addxtype(Roo.apply({}, ti[i])));
37973         }
37974         this.toolbar.items = nitems;
37975         
37976         delete config.toolbar;
37977     }
37978     
37979     Roo.bootstrap.panel.Grid.superclass.constructor.call(this, config);
37980     config.grid.scrollBody = true;;
37981     config.grid.monitorWindowResize = false; // turn off autosizing
37982     config.grid.autoHeight = false;
37983     config.grid.autoWidth = false;
37984     
37985     this.grid = new config.grid.xns[config.grid.xtype](config.grid);
37986     
37987     if (config.background) {
37988         // render grid on panel activation (if panel background)
37989         this.on('activate', function(gp) {
37990             if (!gp.grid.rendered) {
37991                 gp.grid.render(this.wrapper);
37992                 gp.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");   
37993             }
37994         });
37995             
37996     } else {
37997         this.grid.render(this.wrapper);
37998         this.grid.getGridEl().replaceClass("roo-layout-inactive-content", "roo-layout-component-panel");               
37999
38000     }
38001     //this.wrapper.dom.appendChild(config.grid.getGridEl().dom);
38002     // ??? needed ??? config.el = this.wrapper;
38003     
38004     
38005     
38006   
38007     // xtype created footer. - not sure if will work as we normally have to render first..
38008     if (this.footer && !this.footer.el && this.footer.xtype) {
38009         
38010         var ctr = this.grid.getView().getFooterPanel(true);
38011         this.footer.dataSource = this.grid.dataSource;
38012         this.footer = Roo.factory(this.footer, Roo);
38013         this.footer.render(ctr);
38014         
38015     }
38016     
38017     
38018     
38019     
38020      
38021 };
38022
38023 Roo.extend(Roo.bootstrap.panel.Grid, Roo.bootstrap.panel.Content, {
38024     getId : function(){
38025         return this.grid.id;
38026     },
38027     
38028     /**
38029      * Returns the grid for this panel
38030      * @return {Roo.bootstrap.Table} 
38031      */
38032     getGrid : function(){
38033         return this.grid;    
38034     },
38035     
38036     setSize : function(width, height){
38037         if(!this.ignoreResize(width, height)){
38038             var grid = this.grid;
38039             var size = this.adjustForComponents(width, height);
38040             var gridel = grid.getGridEl();
38041             gridel.setSize(size.width, size.height);
38042             /*
38043             var thd = grid.getGridEl().select('thead',true).first();
38044             var tbd = grid.getGridEl().select('tbody', true).first();
38045             if (tbd) {
38046                 tbd.setSize(width, height - thd.getHeight());
38047             }
38048             */
38049             grid.autoSize();
38050         }
38051     },
38052      
38053     
38054     
38055     beforeSlide : function(){
38056         this.grid.getView().scroller.clip();
38057     },
38058     
38059     afterSlide : function(){
38060         this.grid.getView().scroller.unclip();
38061     },
38062     
38063     destroy : function(){
38064         this.grid.destroy();
38065         delete this.grid;
38066         Roo.bootstrap.panel.Grid.superclass.destroy.call(this); 
38067     }
38068 });
38069
38070 /**
38071  * @class Roo.bootstrap.panel.Nest
38072  * @extends Roo.bootstrap.panel.Content
38073  * @constructor
38074  * Create a new Panel, that can contain a layout.Border.
38075  * 
38076  * 
38077  * @param {Roo.BorderLayout} layout The layout for this panel
38078  * @param {String/Object} config A string to set only the title or a config object
38079  */
38080 Roo.bootstrap.panel.Nest = function(config)
38081 {
38082     // construct with only one argument..
38083     /* FIXME - implement nicer consturctors
38084     if (layout.layout) {
38085         config = layout;
38086         layout = config.layout;
38087         delete config.layout;
38088     }
38089     if (layout.xtype && !layout.getEl) {
38090         // then layout needs constructing..
38091         layout = Roo.factory(layout, Roo);
38092     }
38093     */
38094     
38095     config.el =  config.layout.getEl();
38096     
38097     Roo.bootstrap.panel.Nest.superclass.constructor.call(this, config);
38098     
38099     config.layout.monitorWindowResize = false; // turn off autosizing
38100     this.layout = config.layout;
38101     this.layout.getEl().addClass("roo-layout-nested-layout");
38102     this.layout.parent = this;
38103     
38104     
38105     
38106     
38107 };
38108
38109 Roo.extend(Roo.bootstrap.panel.Nest, Roo.bootstrap.panel.Content, {
38110
38111     setSize : function(width, height){
38112         if(!this.ignoreResize(width, height)){
38113             var size = this.adjustForComponents(width, height);
38114             var el = this.layout.getEl();
38115             if (size.height < 1) {
38116                 el.setWidth(size.width);   
38117             } else {
38118                 el.setSize(size.width, size.height);
38119             }
38120             var touch = el.dom.offsetWidth;
38121             this.layout.layout();
38122             // ie requires a double layout on the first pass
38123             if(Roo.isIE && !this.initialized){
38124                 this.initialized = true;
38125                 this.layout.layout();
38126             }
38127         }
38128     },
38129     
38130     // activate all subpanels if not currently active..
38131     
38132     setActiveState : function(active){
38133         this.active = active;
38134         this.setActiveClass(active);
38135         
38136         if(!active){
38137             this.fireEvent("deactivate", this);
38138             return;
38139         }
38140         
38141         this.fireEvent("activate", this);
38142         // not sure if this should happen before or after..
38143         if (!this.layout) {
38144             return; // should not happen..
38145         }
38146         var reg = false;
38147         for (var r in this.layout.regions) {
38148             reg = this.layout.getRegion(r);
38149             if (reg.getActivePanel()) {
38150                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
38151                 reg.setActivePanel(reg.getActivePanel());
38152                 continue;
38153             }
38154             if (!reg.panels.length) {
38155                 continue;
38156             }
38157             reg.showPanel(reg.getPanel(0));
38158         }
38159         
38160         
38161         
38162         
38163     },
38164     
38165     /**
38166      * Returns the nested BorderLayout for this panel
38167      * @return {Roo.BorderLayout} 
38168      */
38169     getLayout : function(){
38170         return this.layout;
38171     },
38172     
38173      /**
38174      * Adds a xtype elements to the layout of the nested panel
38175      * <pre><code>
38176
38177 panel.addxtype({
38178        xtype : 'ContentPanel',
38179        region: 'west',
38180        items: [ .... ]
38181    }
38182 );
38183
38184 panel.addxtype({
38185         xtype : 'NestedLayoutPanel',
38186         region: 'west',
38187         layout: {
38188            center: { },
38189            west: { }   
38190         },
38191         items : [ ... list of content panels or nested layout panels.. ]
38192    }
38193 );
38194 </code></pre>
38195      * @param {Object} cfg Xtype definition of item to add.
38196      */
38197     addxtype : function(cfg) {
38198         return this.layout.addxtype(cfg);
38199     
38200     }
38201 });/*
38202  * Based on:
38203  * Ext JS Library 1.1.1
38204  * Copyright(c) 2006-2007, Ext JS, LLC.
38205  *
38206  * Originally Released Under LGPL - original licence link has changed is not relivant.
38207  *
38208  * Fork - LGPL
38209  * <script type="text/javascript">
38210  */
38211 /**
38212  * @class Roo.TabPanel
38213  * @extends Roo.util.Observable
38214  * A lightweight tab container.
38215  * <br><br>
38216  * Usage:
38217  * <pre><code>
38218 // basic tabs 1, built from existing content
38219 var tabs = new Roo.TabPanel("tabs1");
38220 tabs.addTab("script", "View Script");
38221 tabs.addTab("markup", "View Markup");
38222 tabs.activate("script");
38223
38224 // more advanced tabs, built from javascript
38225 var jtabs = new Roo.TabPanel("jtabs");
38226 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
38227
38228 // set up the UpdateManager
38229 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
38230 var updater = tab2.getUpdateManager();
38231 updater.setDefaultUrl("ajax1.htm");
38232 tab2.on('activate', updater.refresh, updater, true);
38233
38234 // Use setUrl for Ajax loading
38235 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
38236 tab3.setUrl("ajax2.htm", null, true);
38237
38238 // Disabled tab
38239 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
38240 tab4.disable();
38241
38242 jtabs.activate("jtabs-1");
38243  * </code></pre>
38244  * @constructor
38245  * Create a new TabPanel.
38246  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
38247  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
38248  */
38249 Roo.bootstrap.panel.Tabs = function(config){
38250     /**
38251     * The container element for this TabPanel.
38252     * @type Roo.Element
38253     */
38254     this.el = Roo.get(config.el);
38255     delete config.el;
38256     if(config){
38257         if(typeof config == "boolean"){
38258             this.tabPosition = config ? "bottom" : "top";
38259         }else{
38260             Roo.apply(this, config);
38261         }
38262     }
38263     
38264     if(this.tabPosition == "bottom"){
38265         // if tabs are at the bottom = create the body first.
38266         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38267         this.el.addClass("roo-tabs-bottom");
38268     }
38269     // next create the tabs holders
38270     
38271     if (this.tabPosition == "west"){
38272         
38273         var reg = this.region; // fake it..
38274         while (reg) {
38275             if (!reg.mgr.parent) {
38276                 break;
38277             }
38278             reg = reg.mgr.parent.region;
38279         }
38280         Roo.log("got nest?");
38281         Roo.log(reg);
38282         if (reg.mgr.getRegion('west')) {
38283             var ctrdom = reg.mgr.getRegion('west').bodyEl.dom;
38284             this.stripWrap = Roo.get(this.createStrip(ctrdom ), true);
38285             this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38286             this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38287             this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38288         
38289             
38290         }
38291         
38292         
38293     } else {
38294      
38295         this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
38296         this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
38297         this.stripEl.setVisibilityMode(Roo.Element.DISPLAY);
38298         this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
38299     }
38300     
38301     
38302     if(Roo.isIE){
38303         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
38304     }
38305     
38306     // finally - if tabs are at the top, then create the body last..
38307     if(this.tabPosition != "bottom"){
38308         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
38309          * @type Roo.Element
38310          */
38311         this.bodyEl = Roo.get(this.createBody(this.el.dom));
38312         this.el.addClass("roo-tabs-top");
38313     }
38314     this.items = [];
38315
38316     this.bodyEl.setStyle("position", "relative");
38317
38318     this.active = null;
38319     this.activateDelegate = this.activate.createDelegate(this);
38320
38321     this.addEvents({
38322         /**
38323          * @event tabchange
38324          * Fires when the active tab changes
38325          * @param {Roo.TabPanel} this
38326          * @param {Roo.TabPanelItem} activePanel The new active tab
38327          */
38328         "tabchange": true,
38329         /**
38330          * @event beforetabchange
38331          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
38332          * @param {Roo.TabPanel} this
38333          * @param {Object} e Set cancel to true on this object to cancel the tab change
38334          * @param {Roo.TabPanelItem} tab The tab being changed to
38335          */
38336         "beforetabchange" : true
38337     });
38338
38339     Roo.EventManager.onWindowResize(this.onResize, this);
38340     this.cpad = this.el.getPadding("lr");
38341     this.hiddenCount = 0;
38342
38343
38344     // toolbar on the tabbar support...
38345     if (this.toolbar) {
38346         alert("no toolbar support yet");
38347         this.toolbar  = false;
38348         /*
38349         var tcfg = this.toolbar;
38350         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
38351         this.toolbar = new Roo.Toolbar(tcfg);
38352         if (Roo.isSafari) {
38353             var tbl = tcfg.container.child('table', true);
38354             tbl.setAttribute('width', '100%');
38355         }
38356         */
38357         
38358     }
38359    
38360
38361
38362     Roo.bootstrap.panel.Tabs.superclass.constructor.call(this);
38363 };
38364
38365 Roo.extend(Roo.bootstrap.panel.Tabs, Roo.util.Observable, {
38366     /*
38367      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
38368      */
38369     tabPosition : "top",
38370     /*
38371      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
38372      */
38373     currentTabWidth : 0,
38374     /*
38375      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
38376      */
38377     minTabWidth : 40,
38378     /*
38379      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
38380      */
38381     maxTabWidth : 250,
38382     /*
38383      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
38384      */
38385     preferredTabWidth : 175,
38386     /*
38387      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
38388      */
38389     resizeTabs : false,
38390     /*
38391      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
38392      */
38393     monitorResize : true,
38394     /*
38395      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
38396      */
38397     toolbar : false,  // set by caller..
38398     
38399     region : false, /// set by caller
38400     
38401     disableTooltips : true, // not used yet...
38402
38403     /**
38404      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
38405      * @param {String} id The id of the div to use <b>or create</b>
38406      * @param {String} text The text for the tab
38407      * @param {String} content (optional) Content to put in the TabPanelItem body
38408      * @param {Boolean} closable (optional) True to create a close icon on the tab
38409      * @return {Roo.TabPanelItem} The created TabPanelItem
38410      */
38411     addTab : function(id, text, content, closable, tpl)
38412     {
38413         var item = new Roo.bootstrap.panel.TabItem({
38414             panel: this,
38415             id : id,
38416             text : text,
38417             closable : closable,
38418             tpl : tpl
38419         });
38420         this.addTabItem(item);
38421         if(content){
38422             item.setContent(content);
38423         }
38424         return item;
38425     },
38426
38427     /**
38428      * Returns the {@link Roo.TabPanelItem} with the specified id/index
38429      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
38430      * @return {Roo.TabPanelItem}
38431      */
38432     getTab : function(id){
38433         return this.items[id];
38434     },
38435
38436     /**
38437      * Hides the {@link Roo.TabPanelItem} with the specified id/index
38438      * @param {String/Number} id The id or index of the TabPanelItem to hide.
38439      */
38440     hideTab : function(id){
38441         var t = this.items[id];
38442         if(!t.isHidden()){
38443            t.setHidden(true);
38444            this.hiddenCount++;
38445            this.autoSizeTabs();
38446         }
38447     },
38448
38449     /**
38450      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
38451      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
38452      */
38453     unhideTab : function(id){
38454         var t = this.items[id];
38455         if(t.isHidden()){
38456            t.setHidden(false);
38457            this.hiddenCount--;
38458            this.autoSizeTabs();
38459         }
38460     },
38461
38462     /**
38463      * Adds an existing {@link Roo.TabPanelItem}.
38464      * @param {Roo.TabPanelItem} item The TabPanelItem to add
38465      */
38466     addTabItem : function(item)
38467     {
38468         this.items[item.id] = item;
38469         this.items.push(item);
38470         this.autoSizeTabs();
38471       //  if(this.resizeTabs){
38472     //       item.setWidth(this.currentTabWidth || this.preferredTabWidth);
38473   //         this.autoSizeTabs();
38474 //        }else{
38475 //            item.autoSize();
38476        // }
38477     },
38478
38479     /**
38480      * Removes a {@link Roo.TabPanelItem}.
38481      * @param {String/Number} id The id or index of the TabPanelItem to remove.
38482      */
38483     removeTab : function(id){
38484         var items = this.items;
38485         var tab = items[id];
38486         if(!tab) { return; }
38487         var index = items.indexOf(tab);
38488         if(this.active == tab && items.length > 1){
38489             var newTab = this.getNextAvailable(index);
38490             if(newTab) {
38491                 newTab.activate();
38492             }
38493         }
38494         this.stripEl.dom.removeChild(tab.pnode.dom);
38495         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
38496             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
38497         }
38498         items.splice(index, 1);
38499         delete this.items[tab.id];
38500         tab.fireEvent("close", tab);
38501         tab.purgeListeners();
38502         this.autoSizeTabs();
38503     },
38504
38505     getNextAvailable : function(start){
38506         var items = this.items;
38507         var index = start;
38508         // look for a next tab that will slide over to
38509         // replace the one being removed
38510         while(index < items.length){
38511             var item = items[++index];
38512             if(item && !item.isHidden()){
38513                 return item;
38514             }
38515         }
38516         // if one isn't found select the previous tab (on the left)
38517         index = start;
38518         while(index >= 0){
38519             var item = items[--index];
38520             if(item && !item.isHidden()){
38521                 return item;
38522             }
38523         }
38524         return null;
38525     },
38526
38527     /**
38528      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
38529      * @param {String/Number} id The id or index of the TabPanelItem to disable.
38530      */
38531     disableTab : function(id){
38532         var tab = this.items[id];
38533         if(tab && this.active != tab){
38534             tab.disable();
38535         }
38536     },
38537
38538     /**
38539      * Enables a {@link Roo.TabPanelItem} that is disabled.
38540      * @param {String/Number} id The id or index of the TabPanelItem to enable.
38541      */
38542     enableTab : function(id){
38543         var tab = this.items[id];
38544         tab.enable();
38545     },
38546
38547     /**
38548      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
38549      * @param {String/Number} id The id or index of the TabPanelItem to activate.
38550      * @return {Roo.TabPanelItem} The TabPanelItem.
38551      */
38552     activate : function(id)
38553     {
38554         //Roo.log('activite:'  + id);
38555         
38556         var tab = this.items[id];
38557         if(!tab){
38558             return null;
38559         }
38560         if(tab == this.active || tab.disabled){
38561             return tab;
38562         }
38563         var e = {};
38564         this.fireEvent("beforetabchange", this, e, tab);
38565         if(e.cancel !== true && !tab.disabled){
38566             if(this.active){
38567                 this.active.hide();
38568             }
38569             this.active = this.items[id];
38570             this.active.show();
38571             this.fireEvent("tabchange", this, this.active);
38572         }
38573         return tab;
38574     },
38575
38576     /**
38577      * Gets the active {@link Roo.TabPanelItem}.
38578      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
38579      */
38580     getActiveTab : function(){
38581         return this.active;
38582     },
38583
38584     /**
38585      * Updates the tab body element to fit the height of the container element
38586      * for overflow scrolling
38587      * @param {Number} targetHeight (optional) Override the starting height from the elements height
38588      */
38589     syncHeight : function(targetHeight){
38590         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
38591         var bm = this.bodyEl.getMargins();
38592         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
38593         this.bodyEl.setHeight(newHeight);
38594         return newHeight;
38595     },
38596
38597     onResize : function(){
38598         if(this.monitorResize){
38599             this.autoSizeTabs();
38600         }
38601     },
38602
38603     /**
38604      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
38605      */
38606     beginUpdate : function(){
38607         this.updating = true;
38608     },
38609
38610     /**
38611      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
38612      */
38613     endUpdate : function(){
38614         this.updating = false;
38615         this.autoSizeTabs();
38616     },
38617
38618     /**
38619      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
38620      */
38621     autoSizeTabs : function()
38622     {
38623         var count = this.items.length;
38624         var vcount = count - this.hiddenCount;
38625         
38626         if (vcount < 2) {
38627             this.stripEl.hide();
38628         } else {
38629             this.stripEl.show();
38630         }
38631         
38632         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
38633             return;
38634         }
38635         
38636         
38637         var w = Math.max(this.el.getWidth() - this.cpad, 10);
38638         var availWidth = Math.floor(w / vcount);
38639         var b = this.stripBody;
38640         if(b.getWidth() > w){
38641             var tabs = this.items;
38642             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
38643             if(availWidth < this.minTabWidth){
38644                 /*if(!this.sleft){    // incomplete scrolling code
38645                     this.createScrollButtons();
38646                 }
38647                 this.showScroll();
38648                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
38649             }
38650         }else{
38651             if(this.currentTabWidth < this.preferredTabWidth){
38652                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
38653             }
38654         }
38655     },
38656
38657     /**
38658      * Returns the number of tabs in this TabPanel.
38659      * @return {Number}
38660      */
38661      getCount : function(){
38662          return this.items.length;
38663      },
38664
38665     /**
38666      * Resizes all the tabs to the passed width
38667      * @param {Number} The new width
38668      */
38669     setTabWidth : function(width){
38670         this.currentTabWidth = width;
38671         for(var i = 0, len = this.items.length; i < len; i++) {
38672                 if(!this.items[i].isHidden()) {
38673                 this.items[i].setWidth(width);
38674             }
38675         }
38676     },
38677
38678     /**
38679      * Destroys this TabPanel
38680      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
38681      */
38682     destroy : function(removeEl){
38683         Roo.EventManager.removeResizeListener(this.onResize, this);
38684         for(var i = 0, len = this.items.length; i < len; i++){
38685             this.items[i].purgeListeners();
38686         }
38687         if(removeEl === true){
38688             this.el.update("");
38689             this.el.remove();
38690         }
38691     },
38692     
38693     createStrip : function(container)
38694     {
38695         var strip = document.createElement("nav");
38696         strip.className = Roo.bootstrap.version == 4 ?
38697             "navbar-light bg-light" : 
38698             "navbar navbar-default"; //"x-tabs-wrap";
38699         container.appendChild(strip);
38700         return strip;
38701     },
38702     
38703     createStripList : function(strip)
38704     {
38705         // div wrapper for retard IE
38706         // returns the "tr" element.
38707         strip.innerHTML = '<ul class="nav nav-tabs" role="tablist"></ul>';
38708         //'<div class="x-tabs-strip-wrap">'+
38709           //  '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
38710           //  '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
38711         return strip.firstChild; //.firstChild.firstChild.firstChild;
38712     },
38713     createBody : function(container)
38714     {
38715         var body = document.createElement("div");
38716         Roo.id(body, "tab-body");
38717         //Roo.fly(body).addClass("x-tabs-body");
38718         Roo.fly(body).addClass("tab-content");
38719         container.appendChild(body);
38720         return body;
38721     },
38722     createItemBody :function(bodyEl, id){
38723         var body = Roo.getDom(id);
38724         if(!body){
38725             body = document.createElement("div");
38726             body.id = id;
38727         }
38728         //Roo.fly(body).addClass("x-tabs-item-body");
38729         Roo.fly(body).addClass("tab-pane");
38730          bodyEl.insertBefore(body, bodyEl.firstChild);
38731         return body;
38732     },
38733     /** @private */
38734     createStripElements :  function(stripEl, text, closable, tpl)
38735     {
38736         var td = document.createElement("li"); // was td..
38737         td.className = 'nav-item';
38738         
38739         //stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
38740         
38741         
38742         stripEl.appendChild(td);
38743         /*if(closable){
38744             td.className = "x-tabs-closable";
38745             if(!this.closeTpl){
38746                 this.closeTpl = new Roo.Template(
38747                    '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38748                    '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
38749                    '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
38750                 );
38751             }
38752             var el = this.closeTpl.overwrite(td, {"text": text});
38753             var close = el.getElementsByTagName("div")[0];
38754             var inner = el.getElementsByTagName("em")[0];
38755             return {"el": el, "close": close, "inner": inner};
38756         } else {
38757         */
38758         // not sure what this is..
38759 //            if(!this.tabTpl){
38760                 //this.tabTpl = new Roo.Template(
38761                 //   '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
38762                 //   '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
38763                 //);
38764 //                this.tabTpl = new Roo.Template(
38765 //                   '<a href="#">' +
38766 //                   '<span unselectable="on"' +
38767 //                            (this.disableTooltips ? '' : ' title="{text}"') +
38768 //                            ' >{text}</span></a>'
38769 //                );
38770 //                
38771 //            }
38772
38773
38774             var template = tpl || this.tabTpl || false;
38775             
38776             if(!template){
38777                 template =  new Roo.Template(
38778                         Roo.bootstrap.version == 4 ? 
38779                             (
38780                                 '<a class="nav-link" href="#" unselectable="on"' +
38781                                      (this.disableTooltips ? '' : ' title="{text}"') +
38782                                      ' >{text}</a>'
38783                             ) : (
38784                                 '<a class="nav-link" href="#">' +
38785                                 '<span unselectable="on"' +
38786                                          (this.disableTooltips ? '' : ' title="{text}"') +
38787                                     ' >{text}</span></a>'
38788                             )
38789                 );
38790             }
38791             
38792             switch (typeof(template)) {
38793                 case 'object' :
38794                     break;
38795                 case 'string' :
38796                     template = new Roo.Template(template);
38797                     break;
38798                 default :
38799                     break;
38800             }
38801             
38802             var el = template.overwrite(td, {"text": text});
38803             
38804             var inner = el.getElementsByTagName("span")[0];
38805             
38806             return {"el": el, "inner": inner};
38807             
38808     }
38809         
38810     
38811 });
38812
38813 /**
38814  * @class Roo.TabPanelItem
38815  * @extends Roo.util.Observable
38816  * Represents an individual item (tab plus body) in a TabPanel.
38817  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
38818  * @param {String} id The id of this TabPanelItem
38819  * @param {String} text The text for the tab of this TabPanelItem
38820  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
38821  */
38822 Roo.bootstrap.panel.TabItem = function(config){
38823     /**
38824      * The {@link Roo.TabPanel} this TabPanelItem belongs to
38825      * @type Roo.TabPanel
38826      */
38827     this.tabPanel = config.panel;
38828     /**
38829      * The id for this TabPanelItem
38830      * @type String
38831      */
38832     this.id = config.id;
38833     /** @private */
38834     this.disabled = false;
38835     /** @private */
38836     this.text = config.text;
38837     /** @private */
38838     this.loaded = false;
38839     this.closable = config.closable;
38840
38841     /**
38842      * The body element for this TabPanelItem.
38843      * @type Roo.Element
38844      */
38845     this.bodyEl = Roo.get(this.tabPanel.createItemBody(this.tabPanel.bodyEl.dom, config.id));
38846     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
38847     this.bodyEl.setStyle("display", "block");
38848     this.bodyEl.setStyle("zoom", "1");
38849     //this.hideAction();
38850
38851     var els = this.tabPanel.createStripElements(this.tabPanel.stripEl.dom, config.text, config.closable, config.tpl);
38852     /** @private */
38853     this.el = Roo.get(els.el);
38854     this.inner = Roo.get(els.inner, true);
38855      this.textEl = Roo.bootstrap.version == 4 ?
38856         this.el : Roo.get(this.el.dom.firstChild, true);
38857
38858     this.pnode = this.linode = Roo.get(els.el.parentNode, true);
38859     this.status_node = Roo.bootstrap.version == 4 ? this.el : this.linode;
38860
38861     
38862 //    this.el.on("mousedown", this.onTabMouseDown, this);
38863     this.el.on("click", this.onTabClick, this);
38864     /** @private */
38865     if(config.closable){
38866         var c = Roo.get(els.close, true);
38867         c.dom.title = this.closeText;
38868         c.addClassOnOver("close-over");
38869         c.on("click", this.closeClick, this);
38870      }
38871
38872     this.addEvents({
38873          /**
38874          * @event activate
38875          * Fires when this tab becomes the active tab.
38876          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38877          * @param {Roo.TabPanelItem} this
38878          */
38879         "activate": true,
38880         /**
38881          * @event beforeclose
38882          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
38883          * @param {Roo.TabPanelItem} this
38884          * @param {Object} e Set cancel to true on this object to cancel the close.
38885          */
38886         "beforeclose": true,
38887         /**
38888          * @event close
38889          * Fires when this tab is closed.
38890          * @param {Roo.TabPanelItem} this
38891          */
38892          "close": true,
38893         /**
38894          * @event deactivate
38895          * Fires when this tab is no longer the active tab.
38896          * @param {Roo.TabPanel} tabPanel The parent TabPanel
38897          * @param {Roo.TabPanelItem} this
38898          */
38899          "deactivate" : true
38900     });
38901     this.hidden = false;
38902
38903     Roo.bootstrap.panel.TabItem.superclass.constructor.call(this);
38904 };
38905
38906 Roo.extend(Roo.bootstrap.panel.TabItem, Roo.util.Observable,
38907            {
38908     purgeListeners : function(){
38909        Roo.util.Observable.prototype.purgeListeners.call(this);
38910        this.el.removeAllListeners();
38911     },
38912     /**
38913      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
38914      */
38915     show : function(){
38916         this.status_node.addClass("active");
38917         this.showAction();
38918         if(Roo.isOpera){
38919             this.tabPanel.stripWrap.repaint();
38920         }
38921         this.fireEvent("activate", this.tabPanel, this);
38922     },
38923
38924     /**
38925      * Returns true if this tab is the active tab.
38926      * @return {Boolean}
38927      */
38928     isActive : function(){
38929         return this.tabPanel.getActiveTab() == this;
38930     },
38931
38932     /**
38933      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
38934      */
38935     hide : function(){
38936         this.status_node.removeClass("active");
38937         this.hideAction();
38938         this.fireEvent("deactivate", this.tabPanel, this);
38939     },
38940
38941     hideAction : function(){
38942         this.bodyEl.hide();
38943         this.bodyEl.setStyle("position", "absolute");
38944         this.bodyEl.setLeft("-20000px");
38945         this.bodyEl.setTop("-20000px");
38946     },
38947
38948     showAction : function(){
38949         this.bodyEl.setStyle("position", "relative");
38950         this.bodyEl.setTop("");
38951         this.bodyEl.setLeft("");
38952         this.bodyEl.show();
38953     },
38954
38955     /**
38956      * Set the tooltip for the tab.
38957      * @param {String} tooltip The tab's tooltip
38958      */
38959     setTooltip : function(text){
38960         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
38961             this.textEl.dom.qtip = text;
38962             this.textEl.dom.removeAttribute('title');
38963         }else{
38964             this.textEl.dom.title = text;
38965         }
38966     },
38967
38968     onTabClick : function(e){
38969         e.preventDefault();
38970         this.tabPanel.activate(this.id);
38971     },
38972
38973     onTabMouseDown : function(e){
38974         e.preventDefault();
38975         this.tabPanel.activate(this.id);
38976     },
38977 /*
38978     getWidth : function(){
38979         return this.inner.getWidth();
38980     },
38981
38982     setWidth : function(width){
38983         var iwidth = width - this.linode.getPadding("lr");
38984         this.inner.setWidth(iwidth);
38985         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
38986         this.linode.setWidth(width);
38987     },
38988 */
38989     /**
38990      * Show or hide the tab
38991      * @param {Boolean} hidden True to hide or false to show.
38992      */
38993     setHidden : function(hidden){
38994         this.hidden = hidden;
38995         this.linode.setStyle("display", hidden ? "none" : "");
38996     },
38997
38998     /**
38999      * Returns true if this tab is "hidden"
39000      * @return {Boolean}
39001      */
39002     isHidden : function(){
39003         return this.hidden;
39004     },
39005
39006     /**
39007      * Returns the text for this tab
39008      * @return {String}
39009      */
39010     getText : function(){
39011         return this.text;
39012     },
39013     /*
39014     autoSize : function(){
39015         //this.el.beginMeasure();
39016         this.textEl.setWidth(1);
39017         /*
39018          *  #2804 [new] Tabs in Roojs
39019          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
39020          */
39021         //this.setWidth(this.textEl.dom.scrollWidth+this.linode.getPadding("lr")+this.inner.getPadding("lr") + 2);
39022         //this.el.endMeasure();
39023     //},
39024
39025     /**
39026      * Sets the text for the tab (Note: this also sets the tooltip text)
39027      * @param {String} text The tab's text and tooltip
39028      */
39029     setText : function(text){
39030         this.text = text;
39031         this.textEl.update(text);
39032         this.setTooltip(text);
39033         //if(!this.tabPanel.resizeTabs){
39034         //    this.autoSize();
39035         //}
39036     },
39037     /**
39038      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
39039      */
39040     activate : function(){
39041         this.tabPanel.activate(this.id);
39042     },
39043
39044     /**
39045      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
39046      */
39047     disable : function(){
39048         if(this.tabPanel.active != this){
39049             this.disabled = true;
39050             this.status_node.addClass("disabled");
39051         }
39052     },
39053
39054     /**
39055      * Enables this TabPanelItem if it was previously disabled.
39056      */
39057     enable : function(){
39058         this.disabled = false;
39059         this.status_node.removeClass("disabled");
39060     },
39061
39062     /**
39063      * Sets the content for this TabPanelItem.
39064      * @param {String} content The content
39065      * @param {Boolean} loadScripts true to look for and load scripts
39066      */
39067     setContent : function(content, loadScripts){
39068         this.bodyEl.update(content, loadScripts);
39069     },
39070
39071     /**
39072      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
39073      * @return {Roo.UpdateManager} The UpdateManager
39074      */
39075     getUpdateManager : function(){
39076         return this.bodyEl.getUpdateManager();
39077     },
39078
39079     /**
39080      * Set a URL to be used to load the content for this TabPanelItem.
39081      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
39082      * @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)
39083      * @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)
39084      * @return {Roo.UpdateManager} The UpdateManager
39085      */
39086     setUrl : function(url, params, loadOnce){
39087         if(this.refreshDelegate){
39088             this.un('activate', this.refreshDelegate);
39089         }
39090         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
39091         this.on("activate", this.refreshDelegate);
39092         return this.bodyEl.getUpdateManager();
39093     },
39094
39095     /** @private */
39096     _handleRefresh : function(url, params, loadOnce){
39097         if(!loadOnce || !this.loaded){
39098             var updater = this.bodyEl.getUpdateManager();
39099             updater.update(url, params, this._setLoaded.createDelegate(this));
39100         }
39101     },
39102
39103     /**
39104      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
39105      *   Will fail silently if the setUrl method has not been called.
39106      *   This does not activate the panel, just updates its content.
39107      */
39108     refresh : function(){
39109         if(this.refreshDelegate){
39110            this.loaded = false;
39111            this.refreshDelegate();
39112         }
39113     },
39114
39115     /** @private */
39116     _setLoaded : function(){
39117         this.loaded = true;
39118     },
39119
39120     /** @private */
39121     closeClick : function(e){
39122         var o = {};
39123         e.stopEvent();
39124         this.fireEvent("beforeclose", this, o);
39125         if(o.cancel !== true){
39126             this.tabPanel.removeTab(this.id);
39127         }
39128     },
39129     /**
39130      * The text displayed in the tooltip for the close icon.
39131      * @type String
39132      */
39133     closeText : "Close this tab"
39134 });
39135 /**
39136 *    This script refer to:
39137 *    Title: International Telephone Input
39138 *    Author: Jack O'Connor
39139 *    Code version:  v12.1.12
39140 *    Availability: https://github.com/jackocnr/intl-tel-input.git
39141 **/
39142
39143 Roo.bootstrap.PhoneInputData = function() {
39144     var d = [
39145       [
39146         "Afghanistan (‫افغانستان‬‎)",
39147         "af",
39148         "93"
39149       ],
39150       [
39151         "Albania (Shqipëri)",
39152         "al",
39153         "355"
39154       ],
39155       [
39156         "Algeria (‫الجزائر‬‎)",
39157         "dz",
39158         "213"
39159       ],
39160       [
39161         "American Samoa",
39162         "as",
39163         "1684"
39164       ],
39165       [
39166         "Andorra",
39167         "ad",
39168         "376"
39169       ],
39170       [
39171         "Angola",
39172         "ao",
39173         "244"
39174       ],
39175       [
39176         "Anguilla",
39177         "ai",
39178         "1264"
39179       ],
39180       [
39181         "Antigua and Barbuda",
39182         "ag",
39183         "1268"
39184       ],
39185       [
39186         "Argentina",
39187         "ar",
39188         "54"
39189       ],
39190       [
39191         "Armenia (Հայաստան)",
39192         "am",
39193         "374"
39194       ],
39195       [
39196         "Aruba",
39197         "aw",
39198         "297"
39199       ],
39200       [
39201         "Australia",
39202         "au",
39203         "61",
39204         0
39205       ],
39206       [
39207         "Austria (Österreich)",
39208         "at",
39209         "43"
39210       ],
39211       [
39212         "Azerbaijan (Azərbaycan)",
39213         "az",
39214         "994"
39215       ],
39216       [
39217         "Bahamas",
39218         "bs",
39219         "1242"
39220       ],
39221       [
39222         "Bahrain (‫البحرين‬‎)",
39223         "bh",
39224         "973"
39225       ],
39226       [
39227         "Bangladesh (বাংলাদেশ)",
39228         "bd",
39229         "880"
39230       ],
39231       [
39232         "Barbados",
39233         "bb",
39234         "1246"
39235       ],
39236       [
39237         "Belarus (Беларусь)",
39238         "by",
39239         "375"
39240       ],
39241       [
39242         "Belgium (België)",
39243         "be",
39244         "32"
39245       ],
39246       [
39247         "Belize",
39248         "bz",
39249         "501"
39250       ],
39251       [
39252         "Benin (Bénin)",
39253         "bj",
39254         "229"
39255       ],
39256       [
39257         "Bermuda",
39258         "bm",
39259         "1441"
39260       ],
39261       [
39262         "Bhutan (འབྲུག)",
39263         "bt",
39264         "975"
39265       ],
39266       [
39267         "Bolivia",
39268         "bo",
39269         "591"
39270       ],
39271       [
39272         "Bosnia and Herzegovina (Босна и Херцеговина)",
39273         "ba",
39274         "387"
39275       ],
39276       [
39277         "Botswana",
39278         "bw",
39279         "267"
39280       ],
39281       [
39282         "Brazil (Brasil)",
39283         "br",
39284         "55"
39285       ],
39286       [
39287         "British Indian Ocean Territory",
39288         "io",
39289         "246"
39290       ],
39291       [
39292         "British Virgin Islands",
39293         "vg",
39294         "1284"
39295       ],
39296       [
39297         "Brunei",
39298         "bn",
39299         "673"
39300       ],
39301       [
39302         "Bulgaria (България)",
39303         "bg",
39304         "359"
39305       ],
39306       [
39307         "Burkina Faso",
39308         "bf",
39309         "226"
39310       ],
39311       [
39312         "Burundi (Uburundi)",
39313         "bi",
39314         "257"
39315       ],
39316       [
39317         "Cambodia (កម្ពុជា)",
39318         "kh",
39319         "855"
39320       ],
39321       [
39322         "Cameroon (Cameroun)",
39323         "cm",
39324         "237"
39325       ],
39326       [
39327         "Canada",
39328         "ca",
39329         "1",
39330         1,
39331         ["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"]
39332       ],
39333       [
39334         "Cape Verde (Kabu Verdi)",
39335         "cv",
39336         "238"
39337       ],
39338       [
39339         "Caribbean Netherlands",
39340         "bq",
39341         "599",
39342         1
39343       ],
39344       [
39345         "Cayman Islands",
39346         "ky",
39347         "1345"
39348       ],
39349       [
39350         "Central African Republic (République centrafricaine)",
39351         "cf",
39352         "236"
39353       ],
39354       [
39355         "Chad (Tchad)",
39356         "td",
39357         "235"
39358       ],
39359       [
39360         "Chile",
39361         "cl",
39362         "56"
39363       ],
39364       [
39365         "China (中国)",
39366         "cn",
39367         "86"
39368       ],
39369       [
39370         "Christmas Island",
39371         "cx",
39372         "61",
39373         2
39374       ],
39375       [
39376         "Cocos (Keeling) Islands",
39377         "cc",
39378         "61",
39379         1
39380       ],
39381       [
39382         "Colombia",
39383         "co",
39384         "57"
39385       ],
39386       [
39387         "Comoros (‫جزر القمر‬‎)",
39388         "km",
39389         "269"
39390       ],
39391       [
39392         "Congo (DRC) (Jamhuri ya Kidemokrasia ya Kongo)",
39393         "cd",
39394         "243"
39395       ],
39396       [
39397         "Congo (Republic) (Congo-Brazzaville)",
39398         "cg",
39399         "242"
39400       ],
39401       [
39402         "Cook Islands",
39403         "ck",
39404         "682"
39405       ],
39406       [
39407         "Costa Rica",
39408         "cr",
39409         "506"
39410       ],
39411       [
39412         "Côte d’Ivoire",
39413         "ci",
39414         "225"
39415       ],
39416       [
39417         "Croatia (Hrvatska)",
39418         "hr",
39419         "385"
39420       ],
39421       [
39422         "Cuba",
39423         "cu",
39424         "53"
39425       ],
39426       [
39427         "Curaçao",
39428         "cw",
39429         "599",
39430         0
39431       ],
39432       [
39433         "Cyprus (Κύπρος)",
39434         "cy",
39435         "357"
39436       ],
39437       [
39438         "Czech Republic (Česká republika)",
39439         "cz",
39440         "420"
39441       ],
39442       [
39443         "Denmark (Danmark)",
39444         "dk",
39445         "45"
39446       ],
39447       [
39448         "Djibouti",
39449         "dj",
39450         "253"
39451       ],
39452       [
39453         "Dominica",
39454         "dm",
39455         "1767"
39456       ],
39457       [
39458         "Dominican Republic (República Dominicana)",
39459         "do",
39460         "1",
39461         2,
39462         ["809", "829", "849"]
39463       ],
39464       [
39465         "Ecuador",
39466         "ec",
39467         "593"
39468       ],
39469       [
39470         "Egypt (‫مصر‬‎)",
39471         "eg",
39472         "20"
39473       ],
39474       [
39475         "El Salvador",
39476         "sv",
39477         "503"
39478       ],
39479       [
39480         "Equatorial Guinea (Guinea Ecuatorial)",
39481         "gq",
39482         "240"
39483       ],
39484       [
39485         "Eritrea",
39486         "er",
39487         "291"
39488       ],
39489       [
39490         "Estonia (Eesti)",
39491         "ee",
39492         "372"
39493       ],
39494       [
39495         "Ethiopia",
39496         "et",
39497         "251"
39498       ],
39499       [
39500         "Falkland Islands (Islas Malvinas)",
39501         "fk",
39502         "500"
39503       ],
39504       [
39505         "Faroe Islands (Føroyar)",
39506         "fo",
39507         "298"
39508       ],
39509       [
39510         "Fiji",
39511         "fj",
39512         "679"
39513       ],
39514       [
39515         "Finland (Suomi)",
39516         "fi",
39517         "358",
39518         0
39519       ],
39520       [
39521         "France",
39522         "fr",
39523         "33"
39524       ],
39525       [
39526         "French Guiana (Guyane française)",
39527         "gf",
39528         "594"
39529       ],
39530       [
39531         "French Polynesia (Polynésie française)",
39532         "pf",
39533         "689"
39534       ],
39535       [
39536         "Gabon",
39537         "ga",
39538         "241"
39539       ],
39540       [
39541         "Gambia",
39542         "gm",
39543         "220"
39544       ],
39545       [
39546         "Georgia (საქართველო)",
39547         "ge",
39548         "995"
39549       ],
39550       [
39551         "Germany (Deutschland)",
39552         "de",
39553         "49"
39554       ],
39555       [
39556         "Ghana (Gaana)",
39557         "gh",
39558         "233"
39559       ],
39560       [
39561         "Gibraltar",
39562         "gi",
39563         "350"
39564       ],
39565       [
39566         "Greece (Ελλάδα)",
39567         "gr",
39568         "30"
39569       ],
39570       [
39571         "Greenland (Kalaallit Nunaat)",
39572         "gl",
39573         "299"
39574       ],
39575       [
39576         "Grenada",
39577         "gd",
39578         "1473"
39579       ],
39580       [
39581         "Guadeloupe",
39582         "gp",
39583         "590",
39584         0
39585       ],
39586       [
39587         "Guam",
39588         "gu",
39589         "1671"
39590       ],
39591       [
39592         "Guatemala",
39593         "gt",
39594         "502"
39595       ],
39596       [
39597         "Guernsey",
39598         "gg",
39599         "44",
39600         1
39601       ],
39602       [
39603         "Guinea (Guinée)",
39604         "gn",
39605         "224"
39606       ],
39607       [
39608         "Guinea-Bissau (Guiné Bissau)",
39609         "gw",
39610         "245"
39611       ],
39612       [
39613         "Guyana",
39614         "gy",
39615         "592"
39616       ],
39617       [
39618         "Haiti",
39619         "ht",
39620         "509"
39621       ],
39622       [
39623         "Honduras",
39624         "hn",
39625         "504"
39626       ],
39627       [
39628         "Hong Kong (香港)",
39629         "hk",
39630         "852"
39631       ],
39632       [
39633         "Hungary (Magyarország)",
39634         "hu",
39635         "36"
39636       ],
39637       [
39638         "Iceland (Ísland)",
39639         "is",
39640         "354"
39641       ],
39642       [
39643         "India (भारत)",
39644         "in",
39645         "91"
39646       ],
39647       [
39648         "Indonesia",
39649         "id",
39650         "62"
39651       ],
39652       [
39653         "Iran (‫ایران‬‎)",
39654         "ir",
39655         "98"
39656       ],
39657       [
39658         "Iraq (‫العراق‬‎)",
39659         "iq",
39660         "964"
39661       ],
39662       [
39663         "Ireland",
39664         "ie",
39665         "353"
39666       ],
39667       [
39668         "Isle of Man",
39669         "im",
39670         "44",
39671         2
39672       ],
39673       [
39674         "Israel (‫ישראל‬‎)",
39675         "il",
39676         "972"
39677       ],
39678       [
39679         "Italy (Italia)",
39680         "it",
39681         "39",
39682         0
39683       ],
39684       [
39685         "Jamaica",
39686         "jm",
39687         "1876"
39688       ],
39689       [
39690         "Japan (日本)",
39691         "jp",
39692         "81"
39693       ],
39694       [
39695         "Jersey",
39696         "je",
39697         "44",
39698         3
39699       ],
39700       [
39701         "Jordan (‫الأردن‬‎)",
39702         "jo",
39703         "962"
39704       ],
39705       [
39706         "Kazakhstan (Казахстан)",
39707         "kz",
39708         "7",
39709         1
39710       ],
39711       [
39712         "Kenya",
39713         "ke",
39714         "254"
39715       ],
39716       [
39717         "Kiribati",
39718         "ki",
39719         "686"
39720       ],
39721       [
39722         "Kosovo",
39723         "xk",
39724         "383"
39725       ],
39726       [
39727         "Kuwait (‫الكويت‬‎)",
39728         "kw",
39729         "965"
39730       ],
39731       [
39732         "Kyrgyzstan (Кыргызстан)",
39733         "kg",
39734         "996"
39735       ],
39736       [
39737         "Laos (ລາວ)",
39738         "la",
39739         "856"
39740       ],
39741       [
39742         "Latvia (Latvija)",
39743         "lv",
39744         "371"
39745       ],
39746       [
39747         "Lebanon (‫لبنان‬‎)",
39748         "lb",
39749         "961"
39750       ],
39751       [
39752         "Lesotho",
39753         "ls",
39754         "266"
39755       ],
39756       [
39757         "Liberia",
39758         "lr",
39759         "231"
39760       ],
39761       [
39762         "Libya (‫ليبيا‬‎)",
39763         "ly",
39764         "218"
39765       ],
39766       [
39767         "Liechtenstein",
39768         "li",
39769         "423"
39770       ],
39771       [
39772         "Lithuania (Lietuva)",
39773         "lt",
39774         "370"
39775       ],
39776       [
39777         "Luxembourg",
39778         "lu",
39779         "352"
39780       ],
39781       [
39782         "Macau (澳門)",
39783         "mo",
39784         "853"
39785       ],
39786       [
39787         "Macedonia (FYROM) (Македонија)",
39788         "mk",
39789         "389"
39790       ],
39791       [
39792         "Madagascar (Madagasikara)",
39793         "mg",
39794         "261"
39795       ],
39796       [
39797         "Malawi",
39798         "mw",
39799         "265"
39800       ],
39801       [
39802         "Malaysia",
39803         "my",
39804         "60"
39805       ],
39806       [
39807         "Maldives",
39808         "mv",
39809         "960"
39810       ],
39811       [
39812         "Mali",
39813         "ml",
39814         "223"
39815       ],
39816       [
39817         "Malta",
39818         "mt",
39819         "356"
39820       ],
39821       [
39822         "Marshall Islands",
39823         "mh",
39824         "692"
39825       ],
39826       [
39827         "Martinique",
39828         "mq",
39829         "596"
39830       ],
39831       [
39832         "Mauritania (‫موريتانيا‬‎)",
39833         "mr",
39834         "222"
39835       ],
39836       [
39837         "Mauritius (Moris)",
39838         "mu",
39839         "230"
39840       ],
39841       [
39842         "Mayotte",
39843         "yt",
39844         "262",
39845         1
39846       ],
39847       [
39848         "Mexico (México)",
39849         "mx",
39850         "52"
39851       ],
39852       [
39853         "Micronesia",
39854         "fm",
39855         "691"
39856       ],
39857       [
39858         "Moldova (Republica Moldova)",
39859         "md",
39860         "373"
39861       ],
39862       [
39863         "Monaco",
39864         "mc",
39865         "377"
39866       ],
39867       [
39868         "Mongolia (Монгол)",
39869         "mn",
39870         "976"
39871       ],
39872       [
39873         "Montenegro (Crna Gora)",
39874         "me",
39875         "382"
39876       ],
39877       [
39878         "Montserrat",
39879         "ms",
39880         "1664"
39881       ],
39882       [
39883         "Morocco (‫المغرب‬‎)",
39884         "ma",
39885         "212",
39886         0
39887       ],
39888       [
39889         "Mozambique (Moçambique)",
39890         "mz",
39891         "258"
39892       ],
39893       [
39894         "Myanmar (Burma) (မြန်မာ)",
39895         "mm",
39896         "95"
39897       ],
39898       [
39899         "Namibia (Namibië)",
39900         "na",
39901         "264"
39902       ],
39903       [
39904         "Nauru",
39905         "nr",
39906         "674"
39907       ],
39908       [
39909         "Nepal (नेपाल)",
39910         "np",
39911         "977"
39912       ],
39913       [
39914         "Netherlands (Nederland)",
39915         "nl",
39916         "31"
39917       ],
39918       [
39919         "New Caledonia (Nouvelle-Calédonie)",
39920         "nc",
39921         "687"
39922       ],
39923       [
39924         "New Zealand",
39925         "nz",
39926         "64"
39927       ],
39928       [
39929         "Nicaragua",
39930         "ni",
39931         "505"
39932       ],
39933       [
39934         "Niger (Nijar)",
39935         "ne",
39936         "227"
39937       ],
39938       [
39939         "Nigeria",
39940         "ng",
39941         "234"
39942       ],
39943       [
39944         "Niue",
39945         "nu",
39946         "683"
39947       ],
39948       [
39949         "Norfolk Island",
39950         "nf",
39951         "672"
39952       ],
39953       [
39954         "North Korea (조선 민주주의 인민 공화국)",
39955         "kp",
39956         "850"
39957       ],
39958       [
39959         "Northern Mariana Islands",
39960         "mp",
39961         "1670"
39962       ],
39963       [
39964         "Norway (Norge)",
39965         "no",
39966         "47",
39967         0
39968       ],
39969       [
39970         "Oman (‫عُمان‬‎)",
39971         "om",
39972         "968"
39973       ],
39974       [
39975         "Pakistan (‫پاکستان‬‎)",
39976         "pk",
39977         "92"
39978       ],
39979       [
39980         "Palau",
39981         "pw",
39982         "680"
39983       ],
39984       [
39985         "Palestine (‫فلسطين‬‎)",
39986         "ps",
39987         "970"
39988       ],
39989       [
39990         "Panama (Panamá)",
39991         "pa",
39992         "507"
39993       ],
39994       [
39995         "Papua New Guinea",
39996         "pg",
39997         "675"
39998       ],
39999       [
40000         "Paraguay",
40001         "py",
40002         "595"
40003       ],
40004       [
40005         "Peru (Perú)",
40006         "pe",
40007         "51"
40008       ],
40009       [
40010         "Philippines",
40011         "ph",
40012         "63"
40013       ],
40014       [
40015         "Poland (Polska)",
40016         "pl",
40017         "48"
40018       ],
40019       [
40020         "Portugal",
40021         "pt",
40022         "351"
40023       ],
40024       [
40025         "Puerto Rico",
40026         "pr",
40027         "1",
40028         3,
40029         ["787", "939"]
40030       ],
40031       [
40032         "Qatar (‫قطر‬‎)",
40033         "qa",
40034         "974"
40035       ],
40036       [
40037         "Réunion (La Réunion)",
40038         "re",
40039         "262",
40040         0
40041       ],
40042       [
40043         "Romania (România)",
40044         "ro",
40045         "40"
40046       ],
40047       [
40048         "Russia (Россия)",
40049         "ru",
40050         "7",
40051         0
40052       ],
40053       [
40054         "Rwanda",
40055         "rw",
40056         "250"
40057       ],
40058       [
40059         "Saint Barthélemy",
40060         "bl",
40061         "590",
40062         1
40063       ],
40064       [
40065         "Saint Helena",
40066         "sh",
40067         "290"
40068       ],
40069       [
40070         "Saint Kitts and Nevis",
40071         "kn",
40072         "1869"
40073       ],
40074       [
40075         "Saint Lucia",
40076         "lc",
40077         "1758"
40078       ],
40079       [
40080         "Saint Martin (Saint-Martin (partie française))",
40081         "mf",
40082         "590",
40083         2
40084       ],
40085       [
40086         "Saint Pierre and Miquelon (Saint-Pierre-et-Miquelon)",
40087         "pm",
40088         "508"
40089       ],
40090       [
40091         "Saint Vincent and the Grenadines",
40092         "vc",
40093         "1784"
40094       ],
40095       [
40096         "Samoa",
40097         "ws",
40098         "685"
40099       ],
40100       [
40101         "San Marino",
40102         "sm",
40103         "378"
40104       ],
40105       [
40106         "São Tomé and Príncipe (São Tomé e Príncipe)",
40107         "st",
40108         "239"
40109       ],
40110       [
40111         "Saudi Arabia (‫المملكة العربية السعودية‬‎)",
40112         "sa",
40113         "966"
40114       ],
40115       [
40116         "Senegal (Sénégal)",
40117         "sn",
40118         "221"
40119       ],
40120       [
40121         "Serbia (Србија)",
40122         "rs",
40123         "381"
40124       ],
40125       [
40126         "Seychelles",
40127         "sc",
40128         "248"
40129       ],
40130       [
40131         "Sierra Leone",
40132         "sl",
40133         "232"
40134       ],
40135       [
40136         "Singapore",
40137         "sg",
40138         "65"
40139       ],
40140       [
40141         "Sint Maarten",
40142         "sx",
40143         "1721"
40144       ],
40145       [
40146         "Slovakia (Slovensko)",
40147         "sk",
40148         "421"
40149       ],
40150       [
40151         "Slovenia (Slovenija)",
40152         "si",
40153         "386"
40154       ],
40155       [
40156         "Solomon Islands",
40157         "sb",
40158         "677"
40159       ],
40160       [
40161         "Somalia (Soomaaliya)",
40162         "so",
40163         "252"
40164       ],
40165       [
40166         "South Africa",
40167         "za",
40168         "27"
40169       ],
40170       [
40171         "South Korea (대한민국)",
40172         "kr",
40173         "82"
40174       ],
40175       [
40176         "South Sudan (‫جنوب السودان‬‎)",
40177         "ss",
40178         "211"
40179       ],
40180       [
40181         "Spain (España)",
40182         "es",
40183         "34"
40184       ],
40185       [
40186         "Sri Lanka (ශ්‍රී ලංකාව)",
40187         "lk",
40188         "94"
40189       ],
40190       [
40191         "Sudan (‫السودان‬‎)",
40192         "sd",
40193         "249"
40194       ],
40195       [
40196         "Suriname",
40197         "sr",
40198         "597"
40199       ],
40200       [
40201         "Svalbard and Jan Mayen",
40202         "sj",
40203         "47",
40204         1
40205       ],
40206       [
40207         "Swaziland",
40208         "sz",
40209         "268"
40210       ],
40211       [
40212         "Sweden (Sverige)",
40213         "se",
40214         "46"
40215       ],
40216       [
40217         "Switzerland (Schweiz)",
40218         "ch",
40219         "41"
40220       ],
40221       [
40222         "Syria (‫سوريا‬‎)",
40223         "sy",
40224         "963"
40225       ],
40226       [
40227         "Taiwan (台灣)",
40228         "tw",
40229         "886"
40230       ],
40231       [
40232         "Tajikistan",
40233         "tj",
40234         "992"
40235       ],
40236       [
40237         "Tanzania",
40238         "tz",
40239         "255"
40240       ],
40241       [
40242         "Thailand (ไทย)",
40243         "th",
40244         "66"
40245       ],
40246       [
40247         "Timor-Leste",
40248         "tl",
40249         "670"
40250       ],
40251       [
40252         "Togo",
40253         "tg",
40254         "228"
40255       ],
40256       [
40257         "Tokelau",
40258         "tk",
40259         "690"
40260       ],
40261       [
40262         "Tonga",
40263         "to",
40264         "676"
40265       ],
40266       [
40267         "Trinidad and Tobago",
40268         "tt",
40269         "1868"
40270       ],
40271       [
40272         "Tunisia (‫تونس‬‎)",
40273         "tn",
40274         "216"
40275       ],
40276       [
40277         "Turkey (Türkiye)",
40278         "tr",
40279         "90"
40280       ],
40281       [
40282         "Turkmenistan",
40283         "tm",
40284         "993"
40285       ],
40286       [
40287         "Turks and Caicos Islands",
40288         "tc",
40289         "1649"
40290       ],
40291       [
40292         "Tuvalu",
40293         "tv",
40294         "688"
40295       ],
40296       [
40297         "U.S. Virgin Islands",
40298         "vi",
40299         "1340"
40300       ],
40301       [
40302         "Uganda",
40303         "ug",
40304         "256"
40305       ],
40306       [
40307         "Ukraine (Україна)",
40308         "ua",
40309         "380"
40310       ],
40311       [
40312         "United Arab Emirates (‫الإمارات العربية المتحدة‬‎)",
40313         "ae",
40314         "971"
40315       ],
40316       [
40317         "United Kingdom",
40318         "gb",
40319         "44",
40320         0
40321       ],
40322       [
40323         "United States",
40324         "us",
40325         "1",
40326         0
40327       ],
40328       [
40329         "Uruguay",
40330         "uy",
40331         "598"
40332       ],
40333       [
40334         "Uzbekistan (Oʻzbekiston)",
40335         "uz",
40336         "998"
40337       ],
40338       [
40339         "Vanuatu",
40340         "vu",
40341         "678"
40342       ],
40343       [
40344         "Vatican City (Città del Vaticano)",
40345         "va",
40346         "39",
40347         1
40348       ],
40349       [
40350         "Venezuela",
40351         "ve",
40352         "58"
40353       ],
40354       [
40355         "Vietnam (Việt Nam)",
40356         "vn",
40357         "84"
40358       ],
40359       [
40360         "Wallis and Futuna (Wallis-et-Futuna)",
40361         "wf",
40362         "681"
40363       ],
40364       [
40365         "Western Sahara (‫الصحراء الغربية‬‎)",
40366         "eh",
40367         "212",
40368         1
40369       ],
40370       [
40371         "Yemen (‫اليمن‬‎)",
40372         "ye",
40373         "967"
40374       ],
40375       [
40376         "Zambia",
40377         "zm",
40378         "260"
40379       ],
40380       [
40381         "Zimbabwe",
40382         "zw",
40383         "263"
40384       ],
40385       [
40386         "Åland Islands",
40387         "ax",
40388         "358",
40389         1
40390       ]
40391   ];
40392   
40393   return d;
40394 }/**
40395 *    This script refer to:
40396 *    Title: International Telephone Input
40397 *    Author: Jack O'Connor
40398 *    Code version:  v12.1.12
40399 *    Availability: https://github.com/jackocnr/intl-tel-input.git
40400 **/
40401
40402 /**
40403  * @class Roo.bootstrap.PhoneInput
40404  * @extends Roo.bootstrap.TriggerField
40405  * An input with International dial-code selection
40406  
40407  * @cfg {String} defaultDialCode default '+852'
40408  * @cfg {Array} preferedCountries default []
40409   
40410  * @constructor
40411  * Create a new PhoneInput.
40412  * @param {Object} config Configuration options
40413  */
40414
40415 Roo.bootstrap.PhoneInput = function(config) {
40416     Roo.bootstrap.PhoneInput.superclass.constructor.call(this, config);
40417 };
40418
40419 Roo.extend(Roo.bootstrap.PhoneInput, Roo.bootstrap.TriggerField, {
40420         
40421         listWidth: undefined,
40422         
40423         selectedClass: 'active',
40424         
40425         invalidClass : "has-warning",
40426         
40427         validClass: 'has-success',
40428         
40429         allowed: '0123456789',
40430         
40431         max_length: 15,
40432         
40433         /**
40434          * @cfg {String} defaultDialCode The default dial code when initializing the input
40435          */
40436         defaultDialCode: '+852',
40437         
40438         /**
40439          * @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
40440          */
40441         preferedCountries: false,
40442         
40443         getAutoCreate : function()
40444         {
40445             var data = Roo.bootstrap.PhoneInputData();
40446             var align = this.labelAlign || this.parentLabelAlign();
40447             var id = Roo.id();
40448             
40449             this.allCountries = [];
40450             this.dialCodeMapping = [];
40451             
40452             for (var i = 0; i < data.length; i++) {
40453               var c = data[i];
40454               this.allCountries[i] = {
40455                 name: c[0],
40456                 iso2: c[1],
40457                 dialCode: c[2],
40458                 priority: c[3] || 0,
40459                 areaCodes: c[4] || null
40460               };
40461               this.dialCodeMapping[c[2]] = {
40462                   name: c[0],
40463                   iso2: c[1],
40464                   priority: c[3] || 0,
40465                   areaCodes: c[4] || null
40466               };
40467             }
40468             
40469             var cfg = {
40470                 cls: 'form-group',
40471                 cn: []
40472             };
40473             
40474             var input =  {
40475                 tag: 'input',
40476                 id : id,
40477                 // type: 'number', -- do not use number - we get the flaky up/down arrows.
40478                 maxlength: this.max_length,
40479                 cls : 'form-control tel-input',
40480                 autocomplete: 'new-password'
40481             };
40482             
40483             var hiddenInput = {
40484                 tag: 'input',
40485                 type: 'hidden',
40486                 cls: 'hidden-tel-input'
40487             };
40488             
40489             if (this.name) {
40490                 hiddenInput.name = this.name;
40491             }
40492             
40493             if (this.disabled) {
40494                 input.disabled = true;
40495             }
40496             
40497             var flag_container = {
40498                 tag: 'div',
40499                 cls: 'flag-box',
40500                 cn: [
40501                     {
40502                         tag: 'div',
40503                         cls: 'flag'
40504                     },
40505                     {
40506                         tag: 'div',
40507                         cls: 'caret'
40508                     }
40509                 ]
40510             };
40511             
40512             var box = {
40513                 tag: 'div',
40514                 cls: this.hasFeedback ? 'has-feedback' : '',
40515                 cn: [
40516                     hiddenInput,
40517                     input,
40518                     {
40519                         tag: 'input',
40520                         cls: 'dial-code-holder',
40521                         disabled: true
40522                     }
40523                 ]
40524             };
40525             
40526             var container = {
40527                 cls: 'roo-select2-container input-group',
40528                 cn: [
40529                     flag_container,
40530                     box
40531                 ]
40532             };
40533             
40534             if (this.fieldLabel.length) {
40535                 var indicator = {
40536                     tag: 'i',
40537                     tooltip: 'This field is required'
40538                 };
40539                 
40540                 var label = {
40541                     tag: 'label',
40542                     'for':  id,
40543                     cls: 'control-label',
40544                     cn: []
40545                 };
40546                 
40547                 var label_text = {
40548                     tag: 'span',
40549                     html: this.fieldLabel
40550                 };
40551                 
40552                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
40553                 label.cn = [
40554                     indicator,
40555                     label_text
40556                 ];
40557                 
40558                 if(this.indicatorpos == 'right') {
40559                     indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
40560                     label.cn = [
40561                         label_text,
40562                         indicator
40563                     ];
40564                 }
40565                 
40566                 if(align == 'left') {
40567                     container = {
40568                         tag: 'div',
40569                         cn: [
40570                             container
40571                         ]
40572                     };
40573                     
40574                     if(this.labelWidth > 12){
40575                         label.style = "width: " + this.labelWidth + 'px';
40576                     }
40577                     if(this.labelWidth < 13 && this.labelmd == 0){
40578                         this.labelmd = this.labelWidth;
40579                     }
40580                     if(this.labellg > 0){
40581                         label.cls += ' col-lg-' + this.labellg;
40582                         input.cls += ' col-lg-' + (12 - this.labellg);
40583                     }
40584                     if(this.labelmd > 0){
40585                         label.cls += ' col-md-' + this.labelmd;
40586                         container.cls += ' col-md-' + (12 - this.labelmd);
40587                     }
40588                     if(this.labelsm > 0){
40589                         label.cls += ' col-sm-' + this.labelsm;
40590                         container.cls += ' col-sm-' + (12 - this.labelsm);
40591                     }
40592                     if(this.labelxs > 0){
40593                         label.cls += ' col-xs-' + this.labelxs;
40594                         container.cls += ' col-xs-' + (12 - this.labelxs);
40595                     }
40596                 }
40597             }
40598             
40599             cfg.cn = [
40600                 label,
40601                 container
40602             ];
40603             
40604             var settings = this;
40605             
40606             ['xs','sm','md','lg'].map(function(size){
40607                 if (settings[size]) {
40608                     cfg.cls += ' col-' + size + '-' + settings[size];
40609                 }
40610             });
40611             
40612             this.store = new Roo.data.Store({
40613                 proxy : new Roo.data.MemoryProxy({}),
40614                 reader : new Roo.data.JsonReader({
40615                     fields : [
40616                         {
40617                             'name' : 'name',
40618                             'type' : 'string'
40619                         },
40620                         {
40621                             'name' : 'iso2',
40622                             'type' : 'string'
40623                         },
40624                         {
40625                             'name' : 'dialCode',
40626                             'type' : 'string'
40627                         },
40628                         {
40629                             'name' : 'priority',
40630                             'type' : 'string'
40631                         },
40632                         {
40633                             'name' : 'areaCodes',
40634                             'type' : 'string'
40635                         }
40636                     ]
40637                 })
40638             });
40639             
40640             if(!this.preferedCountries) {
40641                 this.preferedCountries = [
40642                     'hk',
40643                     'gb',
40644                     'us'
40645                 ];
40646             }
40647             
40648             var p = this.preferedCountries.reverse();
40649             
40650             if(p) {
40651                 for (var i = 0; i < p.length; i++) {
40652                     for (var j = 0; j < this.allCountries.length; j++) {
40653                         if(this.allCountries[j].iso2 == p[i]) {
40654                             var t = this.allCountries[j];
40655                             this.allCountries.splice(j,1);
40656                             this.allCountries.unshift(t);
40657                         }
40658                     } 
40659                 }
40660             }
40661             
40662             this.store.proxy.data = {
40663                 success: true,
40664                 data: this.allCountries
40665             };
40666             
40667             return cfg;
40668         },
40669         
40670         initEvents : function()
40671         {
40672             this.createList();
40673             Roo.bootstrap.PhoneInput.superclass.initEvents.call(this);
40674             
40675             this.indicator = this.indicatorEl();
40676             this.flag = this.flagEl();
40677             this.dialCodeHolder = this.dialCodeHolderEl();
40678             
40679             this.trigger = this.el.select('div.flag-box',true).first();
40680             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
40681             
40682             var _this = this;
40683             
40684             (function(){
40685                 var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
40686                 _this.list.setWidth(lw);
40687             }).defer(100);
40688             
40689             this.list.on('mouseover', this.onViewOver, this);
40690             this.list.on('mousemove', this.onViewMove, this);
40691             this.inputEl().on("keyup", this.onKeyUp, this);
40692             this.inputEl().on("keypress", this.onKeyPress, this);
40693             
40694             this.tpl = '<li><a href="#"><div class="flag {iso2}"></div>{name} <span class="dial-code">+{dialCode}</span></a></li>';
40695
40696             this.view = new Roo.View(this.list, this.tpl, {
40697                 singleSelect:true, store: this.store, selectedClass: this.selectedClass
40698             });
40699             
40700             this.view.on('click', this.onViewClick, this);
40701             this.setValue(this.defaultDialCode);
40702         },
40703         
40704         onTriggerClick : function(e)
40705         {
40706             Roo.log('trigger click');
40707             if(this.disabled){
40708                 return;
40709             }
40710             
40711             if(this.isExpanded()){
40712                 this.collapse();
40713                 this.hasFocus = false;
40714             }else {
40715                 this.store.load({});
40716                 this.hasFocus = true;
40717                 this.expand();
40718             }
40719         },
40720         
40721         isExpanded : function()
40722         {
40723             return this.list.isVisible();
40724         },
40725         
40726         collapse : function()
40727         {
40728             if(!this.isExpanded()){
40729                 return;
40730             }
40731             this.list.hide();
40732             Roo.get(document).un('mousedown', this.collapseIf, this);
40733             Roo.get(document).un('mousewheel', this.collapseIf, this);
40734             this.fireEvent('collapse', this);
40735             this.validate();
40736         },
40737         
40738         expand : function()
40739         {
40740             Roo.log('expand');
40741
40742             if(this.isExpanded() || !this.hasFocus){
40743                 return;
40744             }
40745             
40746             var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
40747             this.list.setWidth(lw);
40748             
40749             this.list.show();
40750             this.restrictHeight();
40751             
40752             Roo.get(document).on('mousedown', this.collapseIf, this);
40753             Roo.get(document).on('mousewheel', this.collapseIf, this);
40754             
40755             this.fireEvent('expand', this);
40756         },
40757         
40758         restrictHeight : function()
40759         {
40760             this.list.alignTo(this.inputEl(), this.listAlign);
40761             this.list.alignTo(this.inputEl(), this.listAlign);
40762         },
40763         
40764         onViewOver : function(e, t)
40765         {
40766             if(this.inKeyMode){
40767                 return;
40768             }
40769             var item = this.view.findItemFromChild(t);
40770             
40771             if(item){
40772                 var index = this.view.indexOf(item);
40773                 this.select(index, false);
40774             }
40775         },
40776
40777         // private
40778         onViewClick : function(view, doFocus, el, e)
40779         {
40780             var index = this.view.getSelectedIndexes()[0];
40781             
40782             var r = this.store.getAt(index);
40783             
40784             if(r){
40785                 this.onSelect(r, index);
40786             }
40787             if(doFocus !== false && !this.blockFocus){
40788                 this.inputEl().focus();
40789             }
40790         },
40791         
40792         onViewMove : function(e, t)
40793         {
40794             this.inKeyMode = false;
40795         },
40796         
40797         select : function(index, scrollIntoView)
40798         {
40799             this.selectedIndex = index;
40800             this.view.select(index);
40801             if(scrollIntoView !== false){
40802                 var el = this.view.getNode(index);
40803                 if(el){
40804                     this.list.scrollChildIntoView(el, false);
40805                 }
40806             }
40807         },
40808         
40809         createList : function()
40810         {
40811             this.list = Roo.get(document.body).createChild({
40812                 tag: 'ul',
40813                 cls: 'typeahead typeahead-long dropdown-menu tel-list',
40814                 style: 'display:none'
40815             });
40816             
40817             this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
40818         },
40819         
40820         collapseIf : function(e)
40821         {
40822             var in_combo  = e.within(this.el);
40823             var in_list =  e.within(this.list);
40824             var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
40825             
40826             if (in_combo || in_list || is_list) {
40827                 return;
40828             }
40829             this.collapse();
40830         },
40831         
40832         onSelect : function(record, index)
40833         {
40834             if(this.fireEvent('beforeselect', this, record, index) !== false){
40835                 
40836                 this.setFlagClass(record.data.iso2);
40837                 this.setDialCode(record.data.dialCode);
40838                 this.hasFocus = false;
40839                 this.collapse();
40840                 this.fireEvent('select', this, record, index);
40841             }
40842         },
40843         
40844         flagEl : function()
40845         {
40846             var flag = this.el.select('div.flag',true).first();
40847             if(!flag){
40848                 return false;
40849             }
40850             return flag;
40851         },
40852         
40853         dialCodeHolderEl : function()
40854         {
40855             var d = this.el.select('input.dial-code-holder',true).first();
40856             if(!d){
40857                 return false;
40858             }
40859             return d;
40860         },
40861         
40862         setDialCode : function(v)
40863         {
40864             this.dialCodeHolder.dom.value = '+'+v;
40865         },
40866         
40867         setFlagClass : function(n)
40868         {
40869             this.flag.dom.className = 'flag '+n;
40870         },
40871         
40872         getValue : function()
40873         {
40874             var v = this.inputEl().getValue();
40875             if(this.dialCodeHolder) {
40876                 v = this.dialCodeHolder.dom.value+this.inputEl().getValue();
40877             }
40878             return v;
40879         },
40880         
40881         setValue : function(v)
40882         {
40883             var d = this.getDialCode(v);
40884             
40885             //invalid dial code
40886             if(v.length == 0 || !d || d.length == 0) {
40887                 if(this.rendered){
40888                     this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
40889                     this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
40890                 }
40891                 return;
40892             }
40893             
40894             //valid dial code
40895             this.setFlagClass(this.dialCodeMapping[d].iso2);
40896             this.setDialCode(d);
40897             this.inputEl().dom.value = v.replace('+'+d,'');
40898             this.hiddenEl().dom.value = this.getValue();
40899             
40900             this.validate();
40901         },
40902         
40903         getDialCode : function(v)
40904         {
40905             v = v ||  '';
40906             
40907             if (v.length == 0) {
40908                 return this.dialCodeHolder.dom.value;
40909             }
40910             
40911             var dialCode = "";
40912             if (v.charAt(0) != "+") {
40913                 return false;
40914             }
40915             var numericChars = "";
40916             for (var i = 1; i < v.length; i++) {
40917               var c = v.charAt(i);
40918               if (!isNaN(c)) {
40919                 numericChars += c;
40920                 if (this.dialCodeMapping[numericChars]) {
40921                   dialCode = v.substr(1, i);
40922                 }
40923                 if (numericChars.length == 4) {
40924                   break;
40925                 }
40926               }
40927             }
40928             return dialCode;
40929         },
40930         
40931         reset : function()
40932         {
40933             this.setValue(this.defaultDialCode);
40934             this.validate();
40935         },
40936         
40937         hiddenEl : function()
40938         {
40939             return this.el.select('input.hidden-tel-input',true).first();
40940         },
40941         
40942         // after setting val
40943         onKeyUp : function(e){
40944             this.setValue(this.getValue());
40945         },
40946         
40947         onKeyPress : function(e){
40948             if(this.allowed.indexOf(String.fromCharCode(e.getCharCode())) === -1){
40949                 e.stopEvent();
40950             }
40951         }
40952         
40953 });
40954 /**
40955  * @class Roo.bootstrap.MoneyField
40956  * @extends Roo.bootstrap.ComboBox
40957  * Bootstrap MoneyField class
40958  * 
40959  * @constructor
40960  * Create a new MoneyField.
40961  * @param {Object} config Configuration options
40962  */
40963
40964 Roo.bootstrap.MoneyField = function(config) {
40965     
40966     Roo.bootstrap.MoneyField.superclass.constructor.call(this, config);
40967     
40968 };
40969
40970 Roo.extend(Roo.bootstrap.MoneyField, Roo.bootstrap.ComboBox, {
40971     
40972     /**
40973      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
40974      */
40975     allowDecimals : true,
40976     /**
40977      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
40978      */
40979     decimalSeparator : ".",
40980     /**
40981      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
40982      */
40983     decimalPrecision : 0,
40984     /**
40985      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
40986      */
40987     allowNegative : true,
40988     /**
40989      * @cfg {Boolean} allowZero False to blank out if the user enters '0' (defaults to true)
40990      */
40991     allowZero: true,
40992     /**
40993      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
40994      */
40995     minValue : Number.NEGATIVE_INFINITY,
40996     /**
40997      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
40998      */
40999     maxValue : Number.MAX_VALUE,
41000     /**
41001      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
41002      */
41003     minText : "The minimum value for this field is {0}",
41004     /**
41005      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
41006      */
41007     maxText : "The maximum value for this field is {0}",
41008     /**
41009      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
41010      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
41011      */
41012     nanText : "{0} is not a valid number",
41013     /**
41014      * @cfg {Boolean} castInt (true|false) cast int if true (defalut true)
41015      */
41016     castInt : true,
41017     /**
41018      * @cfg {String} defaults currency of the MoneyField
41019      * value should be in lkey
41020      */
41021     defaultCurrency : false,
41022     /**
41023      * @cfg {String} thousandsDelimiter Symbol of thousandsDelimiter
41024      */
41025     thousandsDelimiter : false,
41026     /**
41027      * @cfg {Number} max_length Maximum input field length allowed (defaults to Number.MAX_VALUE)
41028      */
41029     max_length: false,
41030     
41031     inputlg : 9,
41032     inputmd : 9,
41033     inputsm : 9,
41034     inputxs : 6,
41035     
41036     store : false,
41037     
41038     getAutoCreate : function()
41039     {
41040         var align = this.labelAlign || this.parentLabelAlign();
41041         
41042         var id = Roo.id();
41043
41044         var cfg = {
41045             cls: 'form-group',
41046             cn: []
41047         };
41048
41049         var input =  {
41050             tag: 'input',
41051             id : id,
41052             cls : 'form-control roo-money-amount-input',
41053             autocomplete: 'new-password'
41054         };
41055         
41056         var hiddenInput = {
41057             tag: 'input',
41058             type: 'hidden',
41059             id: Roo.id(),
41060             cls: 'hidden-number-input'
41061         };
41062         
41063         if(this.max_length) {
41064             input.maxlength = this.max_length; 
41065         }
41066         
41067         if (this.name) {
41068             hiddenInput.name = this.name;
41069         }
41070
41071         if (this.disabled) {
41072             input.disabled = true;
41073         }
41074
41075         var clg = 12 - this.inputlg;
41076         var cmd = 12 - this.inputmd;
41077         var csm = 12 - this.inputsm;
41078         var cxs = 12 - this.inputxs;
41079         
41080         var container = {
41081             tag : 'div',
41082             cls : 'row roo-money-field',
41083             cn : [
41084                 {
41085                     tag : 'div',
41086                     cls : 'roo-money-currency column col-lg-' + clg + ' col-md-' + cmd + ' col-sm-' + csm + ' col-xs-' + cxs,
41087                     cn : [
41088                         {
41089                             tag : 'div',
41090                             cls: 'roo-select2-container input-group',
41091                             cn: [
41092                                 {
41093                                     tag : 'input',
41094                                     cls : 'form-control roo-money-currency-input',
41095                                     autocomplete: 'new-password',
41096                                     readOnly : 1,
41097                                     name : this.currencyName
41098                                 },
41099                                 {
41100                                     tag :'span',
41101                                     cls : 'input-group-addon',
41102                                     cn : [
41103                                         {
41104                                             tag: 'span',
41105                                             cls: 'caret'
41106                                         }
41107                                     ]
41108                                 }
41109                             ]
41110                         }
41111                     ]
41112                 },
41113                 {
41114                     tag : 'div',
41115                     cls : 'roo-money-amount column col-lg-' + this.inputlg + ' col-md-' + this.inputmd + ' col-sm-' + this.inputsm + ' col-xs-' + this.inputxs,
41116                     cn : [
41117                         {
41118                             tag: 'div',
41119                             cls: this.hasFeedback ? 'has-feedback' : '',
41120                             cn: [
41121                                 input
41122                             ]
41123                         }
41124                     ]
41125                 }
41126             ]
41127             
41128         };
41129         
41130         if (this.fieldLabel.length) {
41131             var indicator = {
41132                 tag: 'i',
41133                 tooltip: 'This field is required'
41134             };
41135
41136             var label = {
41137                 tag: 'label',
41138                 'for':  id,
41139                 cls: 'control-label',
41140                 cn: []
41141             };
41142
41143             var label_text = {
41144                 tag: 'span',
41145                 html: this.fieldLabel
41146             };
41147
41148             indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star left-indicator';
41149             label.cn = [
41150                 indicator,
41151                 label_text
41152             ];
41153
41154             if(this.indicatorpos == 'right') {
41155                 indicator.cls = 'roo-required-indicator text-danger fa fa-lg fa-star right-indicator';
41156                 label.cn = [
41157                     label_text,
41158                     indicator
41159                 ];
41160             }
41161
41162             if(align == 'left') {
41163                 container = {
41164                     tag: 'div',
41165                     cn: [
41166                         container
41167                     ]
41168                 };
41169
41170                 if(this.labelWidth > 12){
41171                     label.style = "width: " + this.labelWidth + 'px';
41172                 }
41173                 if(this.labelWidth < 13 && this.labelmd == 0){
41174                     this.labelmd = this.labelWidth;
41175                 }
41176                 if(this.labellg > 0){
41177                     label.cls += ' col-lg-' + this.labellg;
41178                     input.cls += ' col-lg-' + (12 - this.labellg);
41179                 }
41180                 if(this.labelmd > 0){
41181                     label.cls += ' col-md-' + this.labelmd;
41182                     container.cls += ' col-md-' + (12 - this.labelmd);
41183                 }
41184                 if(this.labelsm > 0){
41185                     label.cls += ' col-sm-' + this.labelsm;
41186                     container.cls += ' col-sm-' + (12 - this.labelsm);
41187                 }
41188                 if(this.labelxs > 0){
41189                     label.cls += ' col-xs-' + this.labelxs;
41190                     container.cls += ' col-xs-' + (12 - this.labelxs);
41191                 }
41192             }
41193         }
41194
41195         cfg.cn = [
41196             label,
41197             container,
41198             hiddenInput
41199         ];
41200         
41201         var settings = this;
41202
41203         ['xs','sm','md','lg'].map(function(size){
41204             if (settings[size]) {
41205                 cfg.cls += ' col-' + size + '-' + settings[size];
41206             }
41207         });
41208         
41209         return cfg;
41210     },
41211     
41212     initEvents : function()
41213     {
41214         this.indicator = this.indicatorEl();
41215         
41216         this.initCurrencyEvent();
41217         
41218         this.initNumberEvent();
41219     },
41220     
41221     initCurrencyEvent : function()
41222     {
41223         if (!this.store) {
41224             throw "can not find store for combo";
41225         }
41226         
41227         this.store = Roo.factory(this.store, Roo.data);
41228         this.store.parent = this;
41229         
41230         this.createList();
41231         
41232         this.triggerEl = this.el.select('.input-group-addon', true).first();
41233         
41234         this.triggerEl.on("click", this.onTriggerClick, this, { preventDefault : true });
41235         
41236         var _this = this;
41237         
41238         (function(){
41239             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
41240             _this.list.setWidth(lw);
41241         }).defer(100);
41242         
41243         this.list.on('mouseover', this.onViewOver, this);
41244         this.list.on('mousemove', this.onViewMove, this);
41245         this.list.on('scroll', this.onViewScroll, this);
41246         
41247         if(!this.tpl){
41248             this.tpl = '<li><a href="#">{' + this.currencyField + '}</a></li>';
41249         }
41250         
41251         this.view = new Roo.View(this.list, this.tpl, {
41252             singleSelect:true, store: this.store, selectedClass: this.selectedClass
41253         });
41254         
41255         this.view.on('click', this.onViewClick, this);
41256         
41257         this.store.on('beforeload', this.onBeforeLoad, this);
41258         this.store.on('load', this.onLoad, this);
41259         this.store.on('loadexception', this.onLoadException, this);
41260         
41261         this.keyNav = new Roo.KeyNav(this.currencyEl(), {
41262             "up" : function(e){
41263                 this.inKeyMode = true;
41264                 this.selectPrev();
41265             },
41266
41267             "down" : function(e){
41268                 if(!this.isExpanded()){
41269                     this.onTriggerClick();
41270                 }else{
41271                     this.inKeyMode = true;
41272                     this.selectNext();
41273                 }
41274             },
41275
41276             "enter" : function(e){
41277                 this.collapse();
41278                 
41279                 if(this.fireEvent("specialkey", this, e)){
41280                     this.onViewClick(false);
41281                 }
41282                 
41283                 return true;
41284             },
41285
41286             "esc" : function(e){
41287                 this.collapse();
41288             },
41289
41290             "tab" : function(e){
41291                 this.collapse();
41292                 
41293                 if(this.fireEvent("specialkey", this, e)){
41294                     this.onViewClick(false);
41295                 }
41296                 
41297                 return true;
41298             },
41299
41300             scope : this,
41301
41302             doRelay : function(foo, bar, hname){
41303                 if(hname == 'down' || this.scope.isExpanded()){
41304                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
41305                 }
41306                 return true;
41307             },
41308
41309             forceKeyDown: true
41310         });
41311         
41312         this.currencyEl().on("click", this.onTriggerClick, this, { preventDefault : true });
41313         
41314     },
41315     
41316     initNumberEvent : function(e)
41317     {
41318         this.inputEl().on("keydown" , this.fireKey,  this);
41319         this.inputEl().on("focus", this.onFocus,  this);
41320         this.inputEl().on("blur", this.onBlur,  this);
41321         
41322         this.inputEl().relayEvent('keyup', this);
41323         
41324         if(this.indicator){
41325             this.indicator.addClass('invisible');
41326         }
41327  
41328         this.originalValue = this.getValue();
41329         
41330         if(this.validationEvent == 'keyup'){
41331             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
41332             this.inputEl().on('keyup', this.filterValidation, this);
41333         }
41334         else if(this.validationEvent !== false){
41335             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
41336         }
41337         
41338         if(this.selectOnFocus){
41339             this.on("focus", this.preFocus, this);
41340             
41341         }
41342         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
41343             this.inputEl().on("keypress", this.filterKeys, this);
41344         } else {
41345             this.inputEl().relayEvent('keypress', this);
41346         }
41347         
41348         var allowed = "0123456789";
41349         
41350         if(this.allowDecimals){
41351             allowed += this.decimalSeparator;
41352         }
41353         
41354         if(this.allowNegative){
41355             allowed += "-";
41356         }
41357         
41358         if(this.thousandsDelimiter) {
41359             allowed += ",";
41360         }
41361         
41362         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
41363         
41364         var keyPress = function(e){
41365             
41366             var k = e.getKey();
41367             
41368             var c = e.getCharCode();
41369             
41370             if(
41371                     (String.fromCharCode(c) == '.' || String.fromCharCode(c) == '-') &&
41372                     allowed.indexOf(String.fromCharCode(c)) === -1
41373             ){
41374                 e.stopEvent();
41375                 return;
41376             }
41377             
41378             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
41379                 return;
41380             }
41381             
41382             if(allowed.indexOf(String.fromCharCode(c)) === -1){
41383                 e.stopEvent();
41384             }
41385         };
41386         
41387         this.inputEl().on("keypress", keyPress, this);
41388         
41389     },
41390     
41391     onTriggerClick : function(e)
41392     {   
41393         if(this.disabled){
41394             return;
41395         }
41396         
41397         this.page = 0;
41398         this.loadNext = false;
41399         
41400         if(this.isExpanded()){
41401             this.collapse();
41402             return;
41403         }
41404         
41405         this.hasFocus = true;
41406         
41407         if(this.triggerAction == 'all') {
41408             this.doQuery(this.allQuery, true);
41409             return;
41410         }
41411         
41412         this.doQuery(this.getRawValue());
41413     },
41414     
41415     getCurrency : function()
41416     {   
41417         var v = this.currencyEl().getValue();
41418         
41419         return v;
41420     },
41421     
41422     restrictHeight : function()
41423     {
41424         this.list.alignTo(this.currencyEl(), this.listAlign);
41425         this.list.alignTo(this.currencyEl(), this.listAlign);
41426     },
41427     
41428     onViewClick : function(view, doFocus, el, e)
41429     {
41430         var index = this.view.getSelectedIndexes()[0];
41431         
41432         var r = this.store.getAt(index);
41433         
41434         if(r){
41435             this.onSelect(r, index);
41436         }
41437     },
41438     
41439     onSelect : function(record, index){
41440         
41441         if(this.fireEvent('beforeselect', this, record, index) !== false){
41442         
41443             this.setFromCurrencyData(index > -1 ? record.data : false);
41444             
41445             this.collapse();
41446             
41447             this.fireEvent('select', this, record, index);
41448         }
41449     },
41450     
41451     setFromCurrencyData : function(o)
41452     {
41453         var currency = '';
41454         
41455         this.lastCurrency = o;
41456         
41457         if (this.currencyField) {
41458             currency = !o || typeof(o[this.currencyField]) == 'undefined' ? '' : o[this.currencyField];
41459         } else {
41460             Roo.log('no  currencyField value set for '+ (this.name ? this.name : this.id));
41461         }
41462         
41463         this.lastSelectionText = currency;
41464         
41465         //setting default currency
41466         if(o[this.currencyField] * 1 == 0 && this.defaultCurrency) {
41467             this.setCurrency(this.defaultCurrency);
41468             return;
41469         }
41470         
41471         this.setCurrency(currency);
41472     },
41473     
41474     setFromData : function(o)
41475     {
41476         var c = {};
41477         
41478         c[this.currencyField] = !o || typeof(o[this.currencyName]) == 'undefined' ? '' : o[this.currencyName];
41479         
41480         this.setFromCurrencyData(c);
41481         
41482         var value = '';
41483         
41484         if (this.name) {
41485             value = !o || typeof(o[this.name]) == 'undefined' ? '' : o[this.name];
41486         } else {
41487             Roo.log('no value set for '+ (this.name ? this.name : this.id));
41488         }
41489         
41490         this.setValue(value);
41491         
41492     },
41493     
41494     setCurrency : function(v)
41495     {   
41496         this.currencyValue = v;
41497         
41498         if(this.rendered){
41499             this.currencyEl().dom.value = (v === null || v === undefined ? '' : v);
41500             this.validate();
41501         }
41502     },
41503     
41504     setValue : function(v)
41505     {
41506         v = String(this.fixPrecision(v)).replace(".", this.decimalSeparator);
41507         
41508         this.value = v;
41509         
41510         if(this.rendered){
41511             
41512             this.hiddenEl().dom.value = (v === null || v === undefined ? '' : v);
41513             
41514             this.inputEl().dom.value = (v == '') ? '' :
41515                 Roo.util.Format.number(v, this.decimalPrecision, this.thousandsDelimiter || '');
41516             
41517             if(!this.allowZero && v === '0') {
41518                 this.hiddenEl().dom.value = '';
41519                 this.inputEl().dom.value = '';
41520             }
41521             
41522             this.validate();
41523         }
41524     },
41525     
41526     getRawValue : function()
41527     {
41528         var v = this.inputEl().getValue();
41529         
41530         return v;
41531     },
41532     
41533     getValue : function()
41534     {
41535         return this.fixPrecision(this.parseValue(this.getRawValue()));
41536     },
41537     
41538     parseValue : function(value)
41539     {
41540         if(this.thousandsDelimiter) {
41541             value += "";
41542             r = new RegExp(",", "g");
41543             value = value.replace(r, "");
41544         }
41545         
41546         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
41547         return isNaN(value) ? '' : value;
41548         
41549     },
41550     
41551     fixPrecision : function(value)
41552     {
41553         if(this.thousandsDelimiter) {
41554             value += "";
41555             r = new RegExp(",", "g");
41556             value = value.replace(r, "");
41557         }
41558         
41559         var nan = isNaN(value);
41560         
41561         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
41562             return nan ? '' : value;
41563         }
41564         return parseFloat(value).toFixed(this.decimalPrecision);
41565     },
41566     
41567     decimalPrecisionFcn : function(v)
41568     {
41569         return Math.floor(v);
41570     },
41571     
41572     validateValue : function(value)
41573     {
41574         if(!Roo.bootstrap.MoneyField.superclass.validateValue.call(this, value)){
41575             return false;
41576         }
41577         
41578         var num = this.parseValue(value);
41579         
41580         if(isNaN(num)){
41581             this.markInvalid(String.format(this.nanText, value));
41582             return false;
41583         }
41584         
41585         if(num < this.minValue){
41586             this.markInvalid(String.format(this.minText, this.minValue));
41587             return false;
41588         }
41589         
41590         if(num > this.maxValue){
41591             this.markInvalid(String.format(this.maxText, this.maxValue));
41592             return false;
41593         }
41594         
41595         return true;
41596     },
41597     
41598     validate : function()
41599     {
41600         if(this.disabled || this.allowBlank){
41601             this.markValid();
41602             return true;
41603         }
41604         
41605         var currency = this.getCurrency();
41606         
41607         if(this.validateValue(this.getRawValue()) && currency.length){
41608             this.markValid();
41609             return true;
41610         }
41611         
41612         this.markInvalid();
41613         return false;
41614     },
41615     
41616     getName: function()
41617     {
41618         return this.name;
41619     },
41620     
41621     beforeBlur : function()
41622     {
41623         if(!this.castInt){
41624             return;
41625         }
41626         
41627         var v = this.parseValue(this.getRawValue());
41628         
41629         if(v || v == 0){
41630             this.setValue(v);
41631         }
41632     },
41633     
41634     onBlur : function()
41635     {
41636         this.beforeBlur();
41637         
41638         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
41639             //this.el.removeClass(this.focusClass);
41640         }
41641         
41642         this.hasFocus = false;
41643         
41644         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
41645             this.validate();
41646         }
41647         
41648         var v = this.getValue();
41649         
41650         if(String(v) !== String(this.startValue)){
41651             this.fireEvent('change', this, v, this.startValue);
41652         }
41653         
41654         this.fireEvent("blur", this);
41655     },
41656     
41657     inputEl : function()
41658     {
41659         return this.el.select('.roo-money-amount-input', true).first();
41660     },
41661     
41662     currencyEl : function()
41663     {
41664         return this.el.select('.roo-money-currency-input', true).first();
41665     },
41666     
41667     hiddenEl : function()
41668     {
41669         return this.el.select('input.hidden-number-input',true).first();
41670     }
41671     
41672 });/**
41673  * @class Roo.bootstrap.BezierSignature
41674  * @extends Roo.bootstrap.Component
41675  * Bootstrap BezierSignature class
41676  * This script refer to:
41677  *    Title: Signature Pad
41678  *    Author: szimek
41679  *    Availability: https://github.com/szimek/signature_pad
41680  *
41681  * @constructor
41682  * Create a new BezierSignature
41683  * @param {Object} config The config object
41684  */
41685
41686 Roo.bootstrap.BezierSignature = function(config){
41687     Roo.bootstrap.BezierSignature.superclass.constructor.call(this, config);
41688     this.addEvents({
41689         "resize" : true
41690     });
41691 };
41692
41693 Roo.extend(Roo.bootstrap.BezierSignature, Roo.bootstrap.Component,
41694 {
41695      
41696     curve_data: [],
41697     
41698     is_empty: true,
41699     
41700     mouse_btn_down: true,
41701     
41702     /**
41703      * @cfg {int} canvas height
41704      */
41705     canvas_height: '200px',
41706     
41707     /**
41708      * @cfg {float|function} Radius of a single dot.
41709      */ 
41710     dot_size: false,
41711     
41712     /**
41713      * @cfg {float} Minimum width of a line. Defaults to 0.5.
41714      */
41715     min_width: 0.5,
41716     
41717     /**
41718      * @cfg {float} Maximum width of a line. Defaults to 2.5.
41719      */
41720     max_width: 2.5,
41721     
41722     /**
41723      * @cfg {integer} Draw the next point at most once per every x milliseconds. Set it to 0 to turn off throttling. Defaults to 16.
41724      */
41725     throttle: 16,
41726     
41727     /**
41728      * @cfg {integer} Add the next point only if the previous one is farther than x pixels. Defaults to 5.
41729      */
41730     min_distance: 5,
41731     
41732     /**
41733      * @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.
41734      */
41735     bg_color: 'rgba(0, 0, 0, 0)',
41736     
41737     /**
41738      * @cfg {string} Color used to draw the lines. Can be any color format accepted by context.fillStyle. Defaults to "black".
41739      */
41740     dot_color: 'black',
41741     
41742     /**
41743      * @cfg {float} Weight used to modify new velocity based on the previous velocity. Defaults to 0.7.
41744      */ 
41745     velocity_filter_weight: 0.7,
41746     
41747     /**
41748      * @cfg {function} Callback when stroke begin. 
41749      */
41750     onBegin: false,
41751     
41752     /**
41753      * @cfg {function} Callback when stroke end.
41754      */
41755     onEnd: false,
41756     
41757     getAutoCreate : function()
41758     {
41759         var cls = 'roo-signature column';
41760         
41761         if(this.cls){
41762             cls += ' ' + this.cls;
41763         }
41764         
41765         var col_sizes = [
41766             'lg',
41767             'md',
41768             'sm',
41769             'xs'
41770         ];
41771         
41772         for(var i = 0; i < col_sizes.length; i++) {
41773             if(this[col_sizes[i]]) {
41774                 cls += " col-"+col_sizes[i]+"-"+this[col_sizes[i]];
41775             }
41776         }
41777         
41778         var cfg = {
41779             tag: 'div',
41780             cls: cls,
41781             cn: [
41782                 {
41783                     tag: 'div',
41784                     cls: 'roo-signature-body',
41785                     cn: [
41786                         {
41787                             tag: 'canvas',
41788                             cls: 'roo-signature-body-canvas',
41789                             height: this.canvas_height,
41790                             width: this.canvas_width
41791                         }
41792                     ]
41793                 },
41794                 {
41795                     tag: 'input',
41796                     type: 'file',
41797                     style: 'display: none'
41798                 }
41799             ]
41800         };
41801         
41802         return cfg;
41803     },
41804     
41805     initEvents: function() 
41806     {
41807         Roo.bootstrap.BezierSignature.superclass.initEvents.call(this);
41808         
41809         var canvas = this.canvasEl();
41810         
41811         // mouse && touch event swapping...
41812         canvas.dom.style.touchAction = 'none';
41813         canvas.dom.style.msTouchAction = 'none';
41814         
41815         this.mouse_btn_down = false;
41816         canvas.on('mousedown', this._handleMouseDown, this);
41817         canvas.on('mousemove', this._handleMouseMove, this);
41818         Roo.select('html').first().on('mouseup', this._handleMouseUp, this);
41819         
41820         if (window.PointerEvent) {
41821             canvas.on('pointerdown', this._handleMouseDown, this);
41822             canvas.on('pointermove', this._handleMouseMove, this);
41823             Roo.select('html').first().on('pointerup', this._handleMouseUp, this);
41824         }
41825         
41826         if ('ontouchstart' in window) {
41827             canvas.on('touchstart', this._handleTouchStart, this);
41828             canvas.on('touchmove', this._handleTouchMove, this);
41829             canvas.on('touchend', this._handleTouchEnd, this);
41830         }
41831         
41832         Roo.EventManager.onWindowResize(this.resize, this, true);
41833         
41834         // file input event
41835         this.fileEl().on('change', this.uploadImage, this);
41836         
41837         this.clear();
41838         
41839         this.resize();
41840     },
41841     
41842     resize: function(){
41843         
41844         var canvas = this.canvasEl().dom;
41845         var ctx = this.canvasElCtx();
41846         var img_data = false;
41847         
41848         if(canvas.width > 0) {
41849             var img_data = ctx.getImageData(0, 0, canvas.width, canvas.height);
41850         }
41851         // setting canvas width will clean img data
41852         canvas.width = 0;
41853         
41854         var style = window.getComputedStyle ? 
41855             getComputedStyle(this.el.dom, null) : this.el.dom.currentStyle;
41856             
41857         var padding_left = parseInt(style.paddingLeft) || 0;
41858         var padding_right = parseInt(style.paddingRight) || 0;
41859         
41860         canvas.width = this.el.dom.clientWidth - padding_left - padding_right;
41861         
41862         if(img_data) {
41863             ctx.putImageData(img_data, 0, 0);
41864         }
41865     },
41866     
41867     _handleMouseDown: function(e)
41868     {
41869         if (e.browserEvent.which === 1) {
41870             this.mouse_btn_down = true;
41871             this.strokeBegin(e);
41872         }
41873     },
41874     
41875     _handleMouseMove: function (e)
41876     {
41877         if (this.mouse_btn_down) {
41878             this.strokeMoveUpdate(e);
41879         }
41880     },
41881     
41882     _handleMouseUp: function (e)
41883     {
41884         if (e.browserEvent.which === 1 && this.mouse_btn_down) {
41885             this.mouse_btn_down = false;
41886             this.strokeEnd(e);
41887         }
41888     },
41889     
41890     _handleTouchStart: function (e) {
41891         
41892         e.preventDefault();
41893         if (e.browserEvent.targetTouches.length === 1) {
41894             // var touch = e.browserEvent.changedTouches[0];
41895             // this.strokeBegin(touch);
41896             
41897              this.strokeBegin(e); // assume e catching the correct xy...
41898         }
41899     },
41900     
41901     _handleTouchMove: function (e) {
41902         e.preventDefault();
41903         // var touch = event.targetTouches[0];
41904         // _this._strokeMoveUpdate(touch);
41905         this.strokeMoveUpdate(e);
41906     },
41907     
41908     _handleTouchEnd: function (e) {
41909         var wasCanvasTouched = e.target === this.canvasEl().dom;
41910         if (wasCanvasTouched) {
41911             e.preventDefault();
41912             // var touch = event.changedTouches[0];
41913             // _this._strokeEnd(touch);
41914             this.strokeEnd(e);
41915         }
41916     },
41917     
41918     reset: function () {
41919         this._lastPoints = [];
41920         this._lastVelocity = 0;
41921         this._lastWidth = (this.min_width + this.max_width) / 2;
41922         this.canvasElCtx().fillStyle = this.dot_color;
41923     },
41924     
41925     strokeMoveUpdate: function(e)
41926     {
41927         this.strokeUpdate(e);
41928         
41929         if (this.throttle) {
41930             this.throttleStroke(this.strokeUpdate, this.throttle);
41931         }
41932         else {
41933             this.strokeUpdate(e);
41934         }
41935     },
41936     
41937     strokeBegin: function(e)
41938     {
41939         var newPointGroup = {
41940             color: this.dot_color,
41941             points: []
41942         };
41943         
41944         if (typeof this.onBegin === 'function') {
41945             this.onBegin(e);
41946         }
41947         
41948         this.curve_data.push(newPointGroup);
41949         this.reset();
41950         this.strokeUpdate(e);
41951     },
41952     
41953     strokeUpdate: function(e)
41954     {
41955         var rect = this.canvasEl().dom.getBoundingClientRect();
41956         var point = new this.Point(e.xy[0] - rect.left, e.xy[1] - rect.top, new Date().getTime());
41957         var lastPointGroup = this.curve_data[this.curve_data.length - 1];
41958         var lastPoints = lastPointGroup.points;
41959         var lastPoint = lastPoints.length > 0 && lastPoints[lastPoints.length - 1];
41960         var isLastPointTooClose = lastPoint
41961             ? point.distanceTo(lastPoint) <= this.min_distance
41962             : false;
41963         var color = lastPointGroup.color;
41964         if (!lastPoint || !(lastPoint && isLastPointTooClose)) {
41965             var curve = this.addPoint(point);
41966             if (!lastPoint) {
41967                 this.drawDot({color: color, point: point});
41968             }
41969             else if (curve) {
41970                 this.drawCurve({color: color, curve: curve});
41971             }
41972             lastPoints.push({
41973                 time: point.time,
41974                 x: point.x,
41975                 y: point.y
41976             });
41977         }
41978     },
41979     
41980     strokeEnd: function(e)
41981     {
41982         this.strokeUpdate(e);
41983         if (typeof this.onEnd === 'function') {
41984             this.onEnd(e);
41985         }
41986     },
41987     
41988     addPoint:  function (point) {
41989         var _lastPoints = this._lastPoints;
41990         _lastPoints.push(point);
41991         if (_lastPoints.length > 2) {
41992             if (_lastPoints.length === 3) {
41993                 _lastPoints.unshift(_lastPoints[0]);
41994             }
41995             var widths = this.calculateCurveWidths(_lastPoints[1], _lastPoints[2]);
41996             var curve = this.Bezier.fromPoints(_lastPoints, widths, this);
41997             _lastPoints.shift();
41998             return curve;
41999         }
42000         return null;
42001     },
42002     
42003     calculateCurveWidths: function (startPoint, endPoint) {
42004         var velocity = this.velocity_filter_weight * endPoint.velocityFrom(startPoint) +
42005             (1 - this.velocity_filter_weight) * this._lastVelocity;
42006
42007         var newWidth = Math.max(this.max_width / (velocity + 1), this.min_width);
42008         var widths = {
42009             end: newWidth,
42010             start: this._lastWidth
42011         };
42012         
42013         this._lastVelocity = velocity;
42014         this._lastWidth = newWidth;
42015         return widths;
42016     },
42017     
42018     drawDot: function (_a) {
42019         var color = _a.color, point = _a.point;
42020         var ctx = this.canvasElCtx();
42021         var width = typeof this.dot_size === 'function' ? this.dot_size() : this.dot_size;
42022         ctx.beginPath();
42023         this.drawCurveSegment(point.x, point.y, width);
42024         ctx.closePath();
42025         ctx.fillStyle = color;
42026         ctx.fill();
42027     },
42028     
42029     drawCurve: function (_a) {
42030         var color = _a.color, curve = _a.curve;
42031         var ctx = this.canvasElCtx();
42032         var widthDelta = curve.endWidth - curve.startWidth;
42033         var drawSteps = Math.floor(curve.length()) * 2;
42034         ctx.beginPath();
42035         ctx.fillStyle = color;
42036         for (var i = 0; i < drawSteps; i += 1) {
42037         var t = i / drawSteps;
42038         var tt = t * t;
42039         var ttt = tt * t;
42040         var u = 1 - t;
42041         var uu = u * u;
42042         var uuu = uu * u;
42043         var x = uuu * curve.startPoint.x;
42044         x += 3 * uu * t * curve.control1.x;
42045         x += 3 * u * tt * curve.control2.x;
42046         x += ttt * curve.endPoint.x;
42047         var y = uuu * curve.startPoint.y;
42048         y += 3 * uu * t * curve.control1.y;
42049         y += 3 * u * tt * curve.control2.y;
42050         y += ttt * curve.endPoint.y;
42051         var width = curve.startWidth + ttt * widthDelta;
42052         this.drawCurveSegment(x, y, width);
42053         }
42054         ctx.closePath();
42055         ctx.fill();
42056     },
42057     
42058     drawCurveSegment: function (x, y, width) {
42059         var ctx = this.canvasElCtx();
42060         ctx.moveTo(x, y);
42061         ctx.arc(x, y, width, 0, 2 * Math.PI, false);
42062         this.is_empty = false;
42063     },
42064     
42065     clear: function()
42066     {
42067         var ctx = this.canvasElCtx();
42068         var canvas = this.canvasEl().dom;
42069         ctx.fillStyle = this.bg_color;
42070         ctx.clearRect(0, 0, canvas.width, canvas.height);
42071         ctx.fillRect(0, 0, canvas.width, canvas.height);
42072         this.curve_data = [];
42073         this.reset();
42074         this.is_empty = true;
42075     },
42076     
42077     fileEl: function()
42078     {
42079         return  this.el.select('input',true).first();
42080     },
42081     
42082     canvasEl: function()
42083     {
42084         return this.el.select('canvas',true).first();
42085     },
42086     
42087     canvasElCtx: function()
42088     {
42089         return this.el.select('canvas',true).first().dom.getContext('2d');
42090     },
42091     
42092     getImage: function(type)
42093     {
42094         if(this.is_empty) {
42095             return false;
42096         }
42097         
42098         // encryption ?
42099         return this.canvasEl().dom.toDataURL('image/'+type, 1);
42100     },
42101     
42102     drawFromImage: function(img_src)
42103     {
42104         var img = new Image();
42105         
42106         img.onload = function(){
42107             this.canvasElCtx().drawImage(img, 0, 0);
42108         }.bind(this);
42109         
42110         img.src = img_src;
42111         
42112         this.is_empty = false;
42113     },
42114     
42115     selectImage: function()
42116     {
42117         this.fileEl().dom.click();
42118     },
42119     
42120     uploadImage: function(e)
42121     {
42122         var reader = new FileReader();
42123         
42124         reader.onload = function(e){
42125             var img = new Image();
42126             img.onload = function(){
42127                 this.reset();
42128                 this.canvasElCtx().drawImage(img, 0, 0);
42129             }.bind(this);
42130             img.src = e.target.result;
42131         }.bind(this);
42132         
42133         reader.readAsDataURL(e.target.files[0]);
42134     },
42135     
42136     // Bezier Point Constructor
42137     Point: (function () {
42138         function Point(x, y, time) {
42139             this.x = x;
42140             this.y = y;
42141             this.time = time || Date.now();
42142         }
42143         Point.prototype.distanceTo = function (start) {
42144             return Math.sqrt(Math.pow(this.x - start.x, 2) + Math.pow(this.y - start.y, 2));
42145         };
42146         Point.prototype.equals = function (other) {
42147             return this.x === other.x && this.y === other.y && this.time === other.time;
42148         };
42149         Point.prototype.velocityFrom = function (start) {
42150             return this.time !== start.time
42151             ? this.distanceTo(start) / (this.time - start.time)
42152             : 0;
42153         };
42154         return Point;
42155     }()),
42156     
42157     
42158     // Bezier Constructor
42159     Bezier: (function () {
42160         function Bezier(startPoint, control2, control1, endPoint, startWidth, endWidth) {
42161             this.startPoint = startPoint;
42162             this.control2 = control2;
42163             this.control1 = control1;
42164             this.endPoint = endPoint;
42165             this.startWidth = startWidth;
42166             this.endWidth = endWidth;
42167         }
42168         Bezier.fromPoints = function (points, widths, scope) {
42169             var c2 = this.calculateControlPoints(points[0], points[1], points[2], scope).c2;
42170             var c3 = this.calculateControlPoints(points[1], points[2], points[3], scope).c1;
42171             return new Bezier(points[1], c2, c3, points[2], widths.start, widths.end);
42172         };
42173         Bezier.calculateControlPoints = function (s1, s2, s3, scope) {
42174             var dx1 = s1.x - s2.x;
42175             var dy1 = s1.y - s2.y;
42176             var dx2 = s2.x - s3.x;
42177             var dy2 = s2.y - s3.y;
42178             var m1 = { x: (s1.x + s2.x) / 2.0, y: (s1.y + s2.y) / 2.0 };
42179             var m2 = { x: (s2.x + s3.x) / 2.0, y: (s2.y + s3.y) / 2.0 };
42180             var l1 = Math.sqrt(dx1 * dx1 + dy1 * dy1);
42181             var l2 = Math.sqrt(dx2 * dx2 + dy2 * dy2);
42182             var dxm = m1.x - m2.x;
42183             var dym = m1.y - m2.y;
42184             var k = l2 / (l1 + l2);
42185             var cm = { x: m2.x + dxm * k, y: m2.y + dym * k };
42186             var tx = s2.x - cm.x;
42187             var ty = s2.y - cm.y;
42188             return {
42189                 c1: new scope.Point(m1.x + tx, m1.y + ty),
42190                 c2: new scope.Point(m2.x + tx, m2.y + ty)
42191             };
42192         };
42193         Bezier.prototype.length = function () {
42194             var steps = 10;
42195             var length = 0;
42196             var px;
42197             var py;
42198             for (var i = 0; i <= steps; i += 1) {
42199                 var t = i / steps;
42200                 var cx = this.point(t, this.startPoint.x, this.control1.x, this.control2.x, this.endPoint.x);
42201                 var cy = this.point(t, this.startPoint.y, this.control1.y, this.control2.y, this.endPoint.y);
42202                 if (i > 0) {
42203                     var xdiff = cx - px;
42204                     var ydiff = cy - py;
42205                     length += Math.sqrt(xdiff * xdiff + ydiff * ydiff);
42206                 }
42207                 px = cx;
42208                 py = cy;
42209             }
42210             return length;
42211         };
42212         Bezier.prototype.point = function (t, start, c1, c2, end) {
42213             return (start * (1.0 - t) * (1.0 - t) * (1.0 - t))
42214             + (3.0 * c1 * (1.0 - t) * (1.0 - t) * t)
42215             + (3.0 * c2 * (1.0 - t) * t * t)
42216             + (end * t * t * t);
42217         };
42218         return Bezier;
42219     }()),
42220     
42221     throttleStroke: function(fn, wait) {
42222       if (wait === void 0) { wait = 250; }
42223       var previous = 0;
42224       var timeout = null;
42225       var result;
42226       var storedContext;
42227       var storedArgs;
42228       var later = function () {
42229           previous = Date.now();
42230           timeout = null;
42231           result = fn.apply(storedContext, storedArgs);
42232           if (!timeout) {
42233               storedContext = null;
42234               storedArgs = [];
42235           }
42236       };
42237       return function wrapper() {
42238           var args = [];
42239           for (var _i = 0; _i < arguments.length; _i++) {
42240               args[_i] = arguments[_i];
42241           }
42242           var now = Date.now();
42243           var remaining = wait - (now - previous);
42244           storedContext = this;
42245           storedArgs = args;
42246           if (remaining <= 0 || remaining > wait) {
42247               if (timeout) {
42248                   clearTimeout(timeout);
42249                   timeout = null;
42250               }
42251               previous = now;
42252               result = fn.apply(storedContext, storedArgs);
42253               if (!timeout) {
42254                   storedContext = null;
42255                   storedArgs = [];
42256               }
42257           }
42258           else if (!timeout) {
42259               timeout = window.setTimeout(later, remaining);
42260           }
42261           return result;
42262       };
42263   }
42264   
42265 });
42266
42267  
42268
42269