Merge branch 'master' of http://git.roojs.com/roojs1
[roojs1] / roojs-bootstrap-debug.js
1 /*
2  * - LGPL
3  *
4  * base class for bootstrap elements.
5  * 
6  */
7
8 Roo.bootstrap = Roo.bootstrap || {};
9 /**
10  * @class Roo.bootstrap.Component
11  * @extends Roo.Component
12  * Bootstrap Component base class
13  * @cfg {String} cls css class
14  * @cfg {String} style any extra css
15  * @cfg {Object} xattr extra attributes to add to 'element' (used by builder to store stuff.)
16  * @cfg {Boolean} can_build_overlaid  True if element can be rebuild from a HTML page
17  * @cfg {string} dataId cutomer id
18  * @cfg {string} name Specifies name attribute
19  * 
20  * @constructor
21  * Do not use directly - it does not do anything..
22  * @param {Object} config The config object
23  */
24
25
26
27 Roo.bootstrap.Component = function(config){
28     Roo.bootstrap.Component.superclass.constructor.call(this, config);
29 };
30
31 Roo.extend(Roo.bootstrap.Component, Roo.BoxComponent,  {
32     
33     
34     allowDomMove : false, // to stop relocations in parent onRender...
35     
36     cls : false,
37     
38     style : false,
39     
40     autoCreate : false,
41     
42     initEvents : function() {  },
43     
44     xattr : false,
45     
46     parentId : false,
47     
48     can_build_overlaid : true,
49     
50     dataId : false,
51     
52     name : false,
53     
54     parent: function() {
55         // returns the parent component..
56         return Roo.ComponentMgr.get(this.parentId)
57         
58         
59     },
60     
61     // private
62     onRender : function(ct, position)
63     {
64        // Roo.log("Call onRender: " + this.xtype);
65         
66         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
67         
68         if(this.el){
69             if (this.el.attr('xtype')) {
70                 this.el.attr('xtypex', this.el.attr('xtype'));
71                 this.el.dom.removeAttribute('xtype');
72                 
73                 this.initEvents();
74             }
75             
76             return;
77         }
78         
79          
80         
81         var cfg = Roo.apply({},  this.getAutoCreate());
82         cfg.id = Roo.id();
83         
84         // fill in the extra attributes 
85         if (this.xattr && typeof(this.xattr) =='object') {
86             for (var i in this.xattr) {
87                 cfg[i] = this.xattr[i];
88             }
89         }
90         
91         if(this.dataId){
92             cfg.dataId = this.dataId;
93         }
94         
95         if (this.cls) {
96             cfg.cls = (typeof(cfg.cls) == 'undefined') ? this.cls : cfg.cls + ' ' + this.cls;
97         }
98         
99         if (this.style) { // fixme needs to support more complex style data.
100             cfg.style = this.style;
101         }
102         
103         if(this.name){
104             cfg.name = this.name;
105         }
106         
107         this.el = ct.createChild(cfg, position);
108         
109         if(this.tabIndex !== undefined){
110             this.el.dom.setAttribute('tabIndex', this.tabIndex);
111         }
112         this.initEvents();
113         
114         
115     },
116     
117     getChildContainer : function()
118     {
119         return this.el;
120     },
121     
122     
123     addxtype  : function(tree,cntr)
124     {
125         var cn = this;
126         
127         cn = Roo.factory(tree);
128            
129         cn.parentType = this.xtype; //??
130         cn.parentId = this.id;
131         
132         cntr = (typeof(cntr) == 'undefined' ) ? 'getChildContainer' : cntr;
133         
134         var has_flexy_each =  (typeof(tree['flexy:foreach']) != 'undefined');
135         
136         var has_flexy_if =  (typeof(tree['flexy:if']) != 'undefined');
137         
138         var build_from_html =  Roo.XComponent.build_from_html;
139           
140         var is_body  = (tree.xtype == 'Body') ;
141           
142         var page_has_body = (Roo.get(document.body).attr('xtype') == 'Roo.bootstrap.Body');
143           
144         var self_cntr_el = Roo.get(this[cntr](false));
145         
146         if (!has_flexy_each || !build_from_html || is_body || !page_has_body) {
147             if(!has_flexy_if || typeof(tree.name) == 'undefined' || !build_from_html || is_body || !page_has_body){
148                 return this.addxtypeChild(tree,cntr);
149             }
150             
151             var echild =self_cntr_el ? self_cntr_el.child('>*[name=' + tree.name + ']') : false;
152                 
153             if(echild){
154                 return this.addxtypeChild(Roo.apply({}, tree),cntr);
155             }
156             
157             Roo.log('skipping render');
158             return cn;
159             
160         }
161         
162         var ret = false;
163         
164         while (true) {
165             var echild =self_cntr_el ? self_cntr_el.child('>*[xtype]') : false;
166             
167             if (!echild) {
168                 break;
169             }
170             
171             if (echild && echild.attr('xtype').split('.').pop() != cn.xtype) {
172                 break;
173             }
174             
175             ret = this.addxtypeChild(Roo.apply({}, tree),cntr);
176         }
177         return ret;
178     },
179     
180     addxtypeChild : function (tree, cntr)
181     {
182         Roo.log('addxtypeChild:' + cntr);
183         var cn = this;
184         cntr = (typeof(cntr) == 'undefined' ) ? 'getChildContainer' : cntr;
185         
186         
187         var has_flexy = (typeof(tree['flexy:if']) != 'undefined') ||
188                     (typeof(tree['flexy:foreach']) != 'undefined');
189           
190         
191         
192         
193         // render the element if it's not BODY.
194         if (tree.xtype != 'Body') {
195            
196             cn = Roo.factory(tree);
197            
198             cn.parentType = this.xtype; //??
199             cn.parentId = this.id;
200             
201             var build_from_html =  Roo.XComponent.build_from_html;
202             
203             
204             // does the container contain child eleemnts with 'xtype' attributes.
205             // that match this xtype..
206             // note - when we render we create these as well..
207             // so we should check to see if body has xtype set.
208             if (Roo.get(document.body).attr('xtype') == 'Roo.bootstrap.Body') {
209                
210                 var self_cntr_el = Roo.get(this[cntr](false));
211                 var echild =self_cntr_el ? self_cntr_el.child('>*[xtype]') : false;
212                 
213                 if (echild && echild.attr('xtype').split('.').pop() == cn.xtype) {
214                   //  Roo.log("found child for " + this.xtype +": " + echild.attr('xtype') );
215                   
216                   
217                   
218                     cn.el = echild;
219                   //  Roo.log("GOT");
220                     //echild.dom.removeAttribute('xtype');
221                 } else {
222                     Roo.log("MISSING " + cn.xtype + " on child of " + (this.el ? this.el.attr('xbuilderid') : 'no parent'));
223                    
224                 }
225             }
226            
227             
228                
229             // if object has flexy:if - then it may or may not be rendered.
230             if (build_from_html && has_flexy && !cn.el &&  cn.can_build_overlaid) {
231                 // skip a flexy if element.
232                 Roo.log('skipping render');
233              } else {
234                  
235                 // actually if flexy:foreach is found, we really want to create 
236                 // multiple copies here...
237                 //Roo.log('render');
238                 //Roo.log(this[cntr]());
239                 cn.render(this[cntr](true));
240              }
241             // then add the element..
242         }
243         
244         
245         // handle the kids..
246         
247         var nitems = [];
248         /*
249         if (typeof (tree.menu) != 'undefined') {
250             tree.menu.parentType = cn.xtype;
251             tree.menu.triggerEl = cn.el;
252             nitems.push(cn.addxtype(Roo.apply({}, tree.menu)));
253             
254         }
255         */
256         if (!tree.items || !tree.items.length) {
257             cn.items = nitems;
258             return cn;
259         }
260         var items = tree.items;
261         delete tree.items;
262         
263         //Roo.log(items.length);
264             // add the items..
265         for(var i =0;i < items.length;i++) {
266             nitems.push(cn.addxtype(Roo.apply({}, items[i])));
267         }
268         
269         cn.items = nitems;
270         
271         return cn;
272     }
273     
274     
275     
276     
277 });
278
279  /*
280  * - LGPL
281  *
282  * Body
283  * 
284  */
285
286 /**
287  * @class Roo.bootstrap.Body
288  * @extends Roo.bootstrap.Component
289  * Bootstrap Body class
290  * 
291  * @constructor
292  * Create a new body
293  * @param {Object} config The config object
294  */
295
296 Roo.bootstrap.Body = function(config){
297     Roo.bootstrap.Body.superclass.constructor.call(this, config);
298     this.el = Roo.get(document.body);
299     if (this.cls && this.cls.length) {
300         Roo.get(document.body).addClass(this.cls);
301     }
302 };
303
304 Roo.extend(Roo.bootstrap.Body, Roo.bootstrap.Component,  {
305       
306         autoCreate : {
307         cls: 'container'
308     },
309     onRender : function(ct, position)
310     {
311        /* Roo.log("Roo.bootstrap.Body - onRender");
312         if (this.cls && this.cls.length) {
313             Roo.get(document.body).addClass(this.cls);
314         }
315         // style??? xttr???
316         */
317     }
318     
319     
320  
321    
322 });
323
324  /*
325  * - LGPL
326  *
327  * button group
328  * 
329  */
330
331
332 /**
333  * @class Roo.bootstrap.ButtonGroup
334  * @extends Roo.bootstrap.Component
335  * Bootstrap ButtonGroup class
336  * @cfg {String} size lg | sm | xs (default empty normal)
337  * @cfg {String} align vertical | justified  (default none)
338  * @cfg {String} direction up | down (default down)
339  * @cfg {Boolean} toolbar false | true
340  * @cfg {Boolean} btn true | false
341  * 
342  * 
343  * @constructor
344  * Create a new Input
345  * @param {Object} config The config object
346  */
347
348 Roo.bootstrap.ButtonGroup = function(config){
349     Roo.bootstrap.ButtonGroup.superclass.constructor.call(this, config);
350 };
351
352 Roo.extend(Roo.bootstrap.ButtonGroup, Roo.bootstrap.Component,  {
353     
354     size: '',
355     align: '',
356     direction: '',
357     toolbar: false,
358     btn: true,
359
360     getAutoCreate : function(){
361         var cfg = {
362             cls: 'btn-group',
363             html : null
364         }
365         
366         cfg.html = this.html || cfg.html;
367         
368         if (this.toolbar) {
369             cfg = {
370                 cls: 'btn-toolbar',
371                 html: null
372             }
373             
374             return cfg;
375         }
376         
377         if (['vertical','justified'].indexOf(this.align)!==-1) {
378             cfg.cls = 'btn-group-' + this.align;
379             
380             if (this.align == 'justified') {
381                 console.log(this.items);
382             }
383         }
384         
385         if (['lg','sm','xs'].indexOf(this.size)!==-1) {
386             cfg.cls += ' btn-group-' + this.size;
387         }
388         
389         if (this.direction == 'up') {
390             cfg.cls += ' dropup' ;
391         }
392         
393         return cfg;
394     }
395    
396 });
397
398  /*
399  * - LGPL
400  *
401  * button
402  * 
403  */
404
405 /**
406  * @class Roo.bootstrap.Button
407  * @extends Roo.bootstrap.Component
408  * Bootstrap Button class
409  * @cfg {String} html The button content
410  * @cfg {String} weight default (or empty) | primary | success | info | warning | danger | link
411  * @cfg {String} size empty | lg | sm | xs
412  * @cfg {String} tag empty | a | input | submit
413  * @cfg {String} href empty or href
414  * @cfg {Boolean} disabled false | true
415  * @cfg {Boolean} isClose false | true
416  * @cfg {String} glyphicon empty | adjust | align-center | align-justify | align-left | align-right | arrow-down | arrow-left | arrow-right | arrow-up | asterisk | backward | ban-circle | barcode | bell | bold | book | bookmark | briefcase | bullhorn | calendar | camera | certificate | check | chevron-down | chevron-left | chevron-right | chevron-up | circle-arrow-down | circle-arrow-left | circle-arrow-right | circle-arrow-up | cloud | cloud-download | cloud-upload | cog | collapse-down | collapse-up | comment | compressed | copyright-mark | credit-card | cutlery | dashboard | download | download-alt | earphone | edit | eject | envelope | euro | exclamation-sign | expand | export | eye-close | eye-open | facetime-video | fast-backward | fast-forward | file | film | filter | fire | flag | flash | floppy-disk | floppy-open | floppy-remove | floppy-save | floppy-saved | folder-close | folder-open | font | forward | fullscreen | gbp | gift | glass | globe | hand-down | hand-left | hand-right | hand-up | hd-video | hdd | header | headphones | heart | heart-empty | home | import | inbox | indent-left | indent-right | info-sign | italic | leaf | link | list | list-alt | lock | log-in | log-out | magnet | map-marker | minus | minus-sign | move | music | new-window | off | ok | ok-circle | ok-sign | open | paperclip | pause | pencil | phone | phone-alt | picture | plane | play | play-circle | plus | plus-sign | print | pushpin | qrcode | question-sign | random | record | refresh | registration-mark | remove | remove-circle | remove-sign | repeat | resize-full | resize-horizontal | resize-small | resize-vertical | retweet | road | save | saved | screenshot | sd-video | search | send | share | share-alt | shopping-cart | signal | sort | sort-by-alphabet | sort-by-alphabet-alt | sort-by-attributes | sort-by-attributes-alt | sort-by-order | sort-by-order-alt | sound-5-1 | sound-6-1 | sound-7-1 | sound-dolby | sound-stereo | star | star-empty | stats | step-backward | step-forward | stop | subtitles | tag | tags | tasks | text-height | text-width | th | th-large | th-list | thumbs-down | thumbs-up | time | tint | tower | transfer | trash | tree-conifer | tree-deciduous | unchecked | upload | usd | user | volume-down | volume-off | volume-up | warning-sign | wrench | zoom-in | zoom-out
417  * @cfg {String} badge text for badge
418  * @cfg {String} theme default (or empty) | glow
419  * @cfg {Boolean} inverse false | true
420  * @cfg {Boolean} toggle false | true
421  * @cfg {String} ontext text for on toggle state
422  * @cfg {String} offtext text for off toggle state
423  * @cfg {Boolean} defaulton true | false
424  * @cfg {Boolean} preventDefault (true | false) default true
425  * @cfg {Boolean} removeClass true | false remove the standard class..
426  * @cfg {String} target (_self|_blank|_parent|_top)target for a href.
427  * 
428  * @constructor
429  * Create a new button
430  * @param {Object} config The config object
431  */
432
433
434 Roo.bootstrap.Button = function(config){
435     Roo.bootstrap.Button.superclass.constructor.call(this, config);
436     this.addEvents({
437         // raw events
438         /**
439          * @event click
440          * When a butotn is pressed
441          * @param {Roo.EventObject} e
442          */
443         "click" : true,
444          /**
445          * @event toggle
446          * After the button has been toggles
447          * @param {Roo.EventObject} e
448          * @param {boolean} pressed (also available as button.pressed)
449          */
450         "toggle" : true
451     });
452 };
453
454 Roo.extend(Roo.bootstrap.Button, Roo.bootstrap.Component,  {
455     html: false,
456     active: false,
457     weight: '',
458     size: '',
459     tag: 'button',
460     href: '',
461     disabled: false,
462     isClose: false,
463     glyphicon: '',
464     badge: '',
465     theme: 'default',
466     inverse: false,
467     
468     toggle: false,
469     ontext: 'ON',
470     offtext: 'OFF',
471     defaulton: true,
472     preventDefault: true,
473     removeClass: false,
474     name: false,
475     target: false,
476     
477     
478     pressed : null,
479      
480     
481     getAutoCreate : function(){
482         
483         var cfg = {
484             tag : 'button',
485             cls : 'roo-button',
486             html: ''
487         };
488         
489         if (['a', 'button', 'input', 'submit'].indexOf(this.tag) < 0) {
490             throw "Invalid value for tag: " + this.tag + ". must be a, button, input or submit.";
491             this.tag = 'button';
492         } else {
493             cfg.tag = this.tag;
494         }
495         cfg.html = '<span class="roo-button-text">' + (this.html || cfg.html) + '</span>';
496         
497         if (this.toggle == true) {
498             cfg={
499                 tag: 'div',
500                 cls: 'slider-frame roo-button',
501                 cn: [
502                     {
503                         tag: 'span',
504                         'data-on-text':'ON',
505                         'data-off-text':'OFF',
506                         cls: 'slider-button',
507                         html: this.offtext
508                     }
509                 ]
510             };
511             
512             if (['default', 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
513                 cfg.cls += ' '+this.weight;
514             }
515             
516             return cfg;
517         }
518         
519         if (this.isClose) {
520             cfg.cls += ' close';
521             
522             cfg["aria-hidden"] = true;
523             
524             cfg.html = "&times;";
525             
526             return cfg;
527         }
528         
529          
530         if (this.theme==='default') {
531             cfg.cls = 'btn roo-button';
532             
533             //if (this.parentType != 'Navbar') {
534             this.weight = this.weight.length ?  this.weight : 'default';
535             //}
536             if (['default', 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
537                 
538                 cfg.cls += ' btn-' + this.weight;
539             }
540         } else if (this.theme==='glow') {
541             
542             cfg.tag = 'a';
543             cfg.cls = 'btn-glow roo-button';
544             
545             if (['default', 'primary', 'success', 'info', 'warning', 'danger', 'link'].indexOf(this.weight) > -1) {
546                 
547                 cfg.cls += ' ' + this.weight;
548             }
549         }
550    
551         
552         if (this.inverse) {
553             this.cls += ' inverse';
554         }
555         
556         
557         if (this.active) {
558             cfg.cls += ' active';
559         }
560         
561         if (this.disabled) {
562             cfg.disabled = 'disabled';
563         }
564         
565         if (this.items) {
566             Roo.log('changing to ul' );
567             cfg.tag = 'ul';
568             this.glyphicon = 'caret';
569         }
570         
571         cfg.cls += this.size.length ? (' btn-' + this.size) : '';
572          
573         //gsRoo.log(this.parentType);
574         if (this.parentType === 'Navbar' && !this.parent().bar) {
575             Roo.log('changing to li?');
576             
577             cfg.tag = 'li';
578             
579             cfg.cls = '';
580             cfg.cn =  [{
581                 tag : 'a',
582                 cls : 'roo-button',
583                 html : this.html,
584                 href : this.href || '#'
585             }];
586             if (this.menu) {
587                 cfg.cn[0].html = this.html  + ' <span class="caret"></span>';
588                 cfg.cls += ' dropdown';
589             }   
590             
591             delete cfg.html;
592             
593         }
594         
595        cfg.cls += this.parentType === 'Navbar' ?  ' navbar-btn' : '';
596         
597         if (this.glyphicon) {
598             cfg.html = ' ' + cfg.html;
599             
600             cfg.cn = [
601                 {
602                     tag: 'span',
603                     cls: 'glyphicon glyphicon-' + this.glyphicon
604                 }
605             ];
606         }
607         
608         if (this.badge) {
609             cfg.html += ' ';
610             
611             cfg.tag = 'a';
612             
613 //            cfg.cls='btn roo-button';
614             
615             cfg.href=this.href;
616             
617             var value = cfg.html;
618             
619             if(this.glyphicon){
620                 value = {
621                             tag: 'span',
622                             cls: 'glyphicon glyphicon-' + this.glyphicon,
623                             html: this.html
624                         };
625                 
626             }
627             
628             cfg.cn = [
629                 value,
630                 {
631                     tag: 'span',
632                     cls: 'badge',
633                     html: this.badge
634                 }
635             ];
636             
637             cfg.html='';
638         }
639         
640         if (this.menu) {
641             cfg.cls += ' dropdown';
642             cfg.html = typeof(cfg.html) != 'undefined' ? cfg.html + ' <span class="caret"></span>' : '<span class="caret"></span>';
643         }
644         
645         if (cfg.tag !== 'a' && this.href !== '') {
646             throw "Tag must be a to set href.";
647         } else if (this.href.length > 0) {
648             cfg.href = this.href;
649         }
650         
651         if(this.removeClass){
652             cfg.cls = '';
653         }
654         
655         if(this.target){
656             cfg.target = this.target;
657         }
658         
659         return cfg;
660     },
661     initEvents: function() {
662        // Roo.log('init events?');
663 //        Roo.log(this.el.dom);
664         // add the menu...
665         
666         if (typeof (this.menu) != 'undefined') {
667             this.menu.parentType = this.xtype;
668             this.menu.triggerEl = this.el;
669             this.addxtype(Roo.apply({}, this.menu));
670         }
671
672
673        if (this.el.hasClass('roo-button')) {
674             this.el.on('click', this.onClick, this);
675        } else {
676             this.el.select('.roo-button').on('click', this.onClick, this);
677        }
678        
679        if(this.removeClass){
680            this.el.on('click', this.onClick, this);
681        }
682        
683        this.el.enableDisplayMode();
684         
685     },
686     onClick : function(e)
687     {
688         if (this.disabled) {
689             return;
690         }
691         
692         Roo.log('button on click ');
693         if(this.preventDefault){
694             e.preventDefault();
695         }
696         if (this.pressed === true || this.pressed === false) {
697             this.pressed = !this.pressed;
698             this.el[this.pressed ? 'addClass' : 'removeClass']('active');
699             this.fireEvent('toggle', this, e, this.pressed);
700         }
701         
702         
703         this.fireEvent('click', this, e);
704     },
705     
706     /**
707      * Enables this button
708      */
709     enable : function()
710     {
711         this.disabled = false;
712         this.el.removeClass('disabled');
713     },
714     
715     /**
716      * Disable this button
717      */
718     disable : function()
719     {
720         this.disabled = true;
721         this.el.addClass('disabled');
722     },
723      /**
724      * sets the active state on/off, 
725      * @param {Boolean} state (optional) Force a particular state
726      */
727     setActive : function(v) {
728         
729         this.el[v ? 'addClass' : 'removeClass']('active');
730     },
731      /**
732      * toggles the current active state 
733      */
734     toggleActive : function()
735     {
736        var active = this.el.hasClass('active');
737        this.setActive(!active);
738        
739         
740     },
741     setText : function(str)
742     {
743         this.el.select('.roo-button-text',true).first().dom.innerHTML = str;
744     },
745     getText : function()
746     {
747         return this.el.select('.roo-button-text',true).first().dom.innerHTML;
748     },
749     hide: function() {
750        
751      
752         this.el.hide();   
753     },
754     show: function() {
755        
756         this.el.show();   
757     }
758     
759     
760 });
761
762  /*
763  * - LGPL
764  *
765  * column
766  * 
767  */
768
769 /**
770  * @class Roo.bootstrap.Column
771  * @extends Roo.bootstrap.Component
772  * Bootstrap Column class
773  * @cfg {Number} xs colspan out of 12 for mobile-sized screens or 0 for hidden
774  * @cfg {Number} sm colspan out of 12 for tablet-sized screens or 0 for hidden
775  * @cfg {Number} md colspan out of 12 for computer-sized screens or 0 for hidden
776  * @cfg {Number} lg colspan out of 12 for large computer-sized screens or 0 for hidden
777  * @cfg {String} html content of column.
778  * 
779  * @constructor
780  * Create a new Column
781  * @param {Object} config The config object
782  */
783
784 Roo.bootstrap.Column = function(config){
785     Roo.bootstrap.Column.superclass.constructor.call(this, config);
786 };
787
788 Roo.extend(Roo.bootstrap.Column, Roo.bootstrap.Component,  {
789     
790     xs: false,
791     sm: false,
792     md: false,
793     lg: false,
794     html: '',
795     offset: 0,
796     
797     getAutoCreate : function(){
798         var cfg = Roo.apply({}, Roo.bootstrap.Column.superclass.getAutoCreate.call(this));
799         
800         cfg = {
801             tag: 'div',
802             cls: 'column'
803         };
804         
805         var settings=this;
806         ['xs','sm','md','lg'].map(function(size){
807             if (settings[size] !== false) {
808                 if (!settings[size]) { // 0 = hidden
809                     cfg.cls += ' hidden-' + size;
810                     return;
811                 }
812                 cfg.cls += ' col-' + size + '-' + settings[size];
813             }
814         });
815         if (this.html.length) {
816             cfg.html = this.html;
817         }
818         
819         return cfg;
820     }
821    
822 });
823
824  
825
826  /*
827  * - LGPL
828  *
829  * page container.
830  * 
831  */
832
833
834 /**
835  * @class Roo.bootstrap.Container
836  * @extends Roo.bootstrap.Component
837  * Bootstrap Container class
838  * @cfg {Boolean} jumbotron is it a jumbotron element
839  * @cfg {String} html content of element
840  * @cfg {String} well (lg|sm|md) a well, large, small or medium.
841  * @cfg {String} panel (primary|success|info|warning|danger) render as a panel.
842  * @cfg {String} header content of header (for panel)
843  * @cfg {String} footer content of footer (for panel)
844  * @cfg {String} sticky (footer|wrap|push) block to use as footer or body- needs css-bootstrap/sticky-footer.css
845  * @cfg {String} tag (header|aside|section) type of HTML tag.
846
847  *     
848  * @constructor
849  * Create a new Container
850  * @param {Object} config The config object
851  */
852
853 Roo.bootstrap.Container = function(config){
854     Roo.bootstrap.Container.superclass.constructor.call(this, config);
855 };
856
857 Roo.extend(Roo.bootstrap.Container, Roo.bootstrap.Component,  {
858     
859     jumbotron : false,
860     well: '',
861     panel : '',
862     header: '',
863     footer : '',
864     sticky: '',
865     tag : false,
866   
867      
868     getChildContainer : function() {
869         
870         if(!this.el){
871             return false;
872         }
873         
874         if (this.panel.length) {
875             return this.el.select('.panel-body',true).first();
876         }
877         
878         return this.el;
879     },
880     
881     
882     getAutoCreate : function(){
883         
884         var cfg = {
885             tag : this.tag || 'div',
886             html : '',
887             cls : ''
888         };
889         if (this.jumbotron) {
890             cfg.cls = 'jumbotron';
891         }
892         // - this is applied by the parent..
893         //if (this.cls) {
894         //    cfg.cls = this.cls + '';
895         //}
896         
897         if (this.sticky.length) {
898             
899             var bd = Roo.get(document.body);
900             if (!bd.hasClass('bootstrap-sticky')) {
901                 bd.addClass('bootstrap-sticky');
902                 Roo.select('html',true).setStyle('height', '100%');
903             }
904              
905             cfg.cls += 'bootstrap-sticky-' + this.sticky;
906         }
907         
908         
909         if (this.well.length) {
910             switch (this.well) {
911                 case 'lg':
912                 case 'sm':
913                     cfg.cls +=' well well-' +this.well;
914                     break;
915                 default:
916                     cfg.cls +=' well';
917                     break;
918             }
919         }
920         
921         var body = cfg;
922         
923         if (this.panel.length) {
924             cfg.cls += ' panel panel-' + this.panel;
925             cfg.cn = [];
926             if (this.header.length) {
927                 cfg.cn.push({
928                     
929                     cls : 'panel-heading',
930                     cn : [{
931                         tag: 'h3',
932                         cls : 'panel-title',
933                         html : this.header
934                     }]
935                     
936                 });
937             }
938             body = false;
939             cfg.cn.push({
940                 cls : 'panel-body',
941                 html : this.html
942             });
943             
944             
945             if (this.footer.length) {
946                 cfg.cn.push({
947                     cls : 'panel-footer',
948                     html : this.footer
949                     
950                 });
951             }
952             
953         }
954         
955         if (body) {
956             body.html = this.html || cfg.html;
957         }
958         if ((!this.cls || !this.cls.length) && (!cfg.cls || !cfg.cls.length)) {
959             cfg.cls =  'container';
960         }
961         
962         return cfg;
963     },
964     
965     titleEl : function()
966     {
967         if(!this.el || !this.panel.length || !this.header.length){
968             return;
969         }
970         
971         return this.el.select('.panel-title',true).first();
972     },
973     
974     setTitle : function(v)
975     {
976         var titleEl = this.titleEl();
977         
978         if(!titleEl){
979             return;
980         }
981         
982         titleEl.dom.innerHTML = v;
983     },
984     
985     getTitle : function()
986     {
987         
988         var titleEl = this.titleEl();
989         
990         if(!titleEl){
991             return '';
992         }
993         
994         return titleEl.dom.innerHTML;
995     }
996    
997 });
998
999  /*
1000  * - LGPL
1001  *
1002  * image
1003  * 
1004  */
1005
1006
1007 /**
1008  * @class Roo.bootstrap.Img
1009  * @extends Roo.bootstrap.Component
1010  * Bootstrap Img class
1011  * @cfg {Boolean} imgResponsive false | true
1012  * @cfg {String} border rounded | circle | thumbnail
1013  * @cfg {String} src image source
1014  * @cfg {String} alt image alternative text
1015  * @cfg {String} href a tag href
1016  * @cfg {String} target (_self|_blank|_parent|_top)target for a href.
1017  * 
1018  * @constructor
1019  * Create a new Input
1020  * @param {Object} config The config object
1021  */
1022
1023 Roo.bootstrap.Img = function(config){
1024     Roo.bootstrap.Img.superclass.constructor.call(this, config);
1025     
1026     this.addEvents({
1027         // img events
1028         /**
1029          * @event click
1030          * The img click event for the img.
1031          * @param {Roo.EventObject} e
1032          */
1033         "click" : true
1034     });
1035 };
1036
1037 Roo.extend(Roo.bootstrap.Img, Roo.bootstrap.Component,  {
1038     
1039     imgResponsive: true,
1040     border: '',
1041     src: '',
1042     href: false,
1043     target: false,
1044
1045     getAutoCreate : function(){
1046         
1047         var cfg = {
1048             tag: 'img',
1049             cls: (this.imgResponsive) ? 'img-responsive' : '',
1050             html : null
1051         }
1052         
1053         cfg.html = this.html || cfg.html;
1054         
1055         cfg.src = this.src || cfg.src;
1056         
1057         if (['rounded','circle','thumbnail'].indexOf(this.border)>-1) {
1058             cfg.cls += ' img-' + this.border;
1059         }
1060         
1061         if(this.alt){
1062             cfg.alt = this.alt;
1063         }
1064         
1065         if(this.href){
1066             var a = {
1067                 tag: 'a',
1068                 href: this.href,
1069                 cn: [
1070                     cfg
1071                 ]
1072             }
1073             
1074             if(this.target){
1075                 a.target = this.target;
1076             }
1077             
1078         }
1079         
1080         
1081         return (this.href) ? a : cfg;
1082     },
1083     
1084     initEvents: function() {
1085         
1086         if(!this.href){
1087             this.el.on('click', this.onClick, this);
1088         }
1089     },
1090     
1091     onClick : function(e)
1092     {
1093         Roo.log('img onclick');
1094         this.fireEvent('click', this, e);
1095     }
1096    
1097 });
1098
1099  /*
1100  * - LGPL
1101  *
1102  * image
1103  * 
1104  */
1105
1106
1107 /**
1108  * @class Roo.bootstrap.Link
1109  * @extends Roo.bootstrap.Component
1110  * Bootstrap Link Class
1111  * @cfg {String} alt image alternative text
1112  * @cfg {String} href a tag href
1113  * @cfg {String} target (_self|_blank|_parent|_top) target for a href.
1114  * @cfg {String} html the content of the link.
1115  * @cfg {Boolean} preventDefault (true | false) default false
1116
1117  * 
1118  * @constructor
1119  * Create a new Input
1120  * @param {Object} config The config object
1121  */
1122
1123 Roo.bootstrap.Link = function(config){
1124     Roo.bootstrap.Link.superclass.constructor.call(this, config);
1125     
1126     this.addEvents({
1127         // img events
1128         /**
1129          * @event click
1130          * The img click event for the img.
1131          * @param {Roo.EventObject} e
1132          */
1133         "click" : true
1134     });
1135 };
1136
1137 Roo.extend(Roo.bootstrap.Link, Roo.bootstrap.Component,  {
1138     
1139     href: false,
1140     target: false,
1141     preventDefault: false,
1142
1143     getAutoCreate : function(){
1144         
1145         var cfg = {
1146             tag: 'a',
1147             html : this.html || 'html-missing'
1148         }
1149         
1150         
1151         if(this.alt){
1152             cfg.alt = this.alt;
1153         }
1154         cfg.href = this.href || '#';
1155         if(this.target){
1156             cfg.target = this.target;
1157         }
1158         
1159         return cfg;
1160     },
1161     
1162     initEvents: function() {
1163         
1164         if(!this.href || this.preventDefault){
1165             this.el.on('click', this.onClick, this);
1166         }
1167     },
1168     
1169     onClick : function(e)
1170     {
1171         if(this.preventDefault){
1172             e.preventDefault();
1173         }
1174         //Roo.log('img onclick');
1175         this.fireEvent('click', this, e);
1176     }
1177    
1178 });
1179
1180  /*
1181  * - LGPL
1182  *
1183  * header
1184  * 
1185  */
1186
1187 /**
1188  * @class Roo.bootstrap.Header
1189  * @extends Roo.bootstrap.Component
1190  * Bootstrap Header class
1191  * @cfg {String} html content of header
1192  * @cfg {Number} level (1|2|3|4|5|6) default 1
1193  * 
1194  * @constructor
1195  * Create a new Header
1196  * @param {Object} config The config object
1197  */
1198
1199
1200 Roo.bootstrap.Header  = function(config){
1201     Roo.bootstrap.Header.superclass.constructor.call(this, config);
1202 };
1203
1204 Roo.extend(Roo.bootstrap.Header, Roo.bootstrap.Component,  {
1205     
1206     //href : false,
1207     html : false,
1208     level : 1,
1209     
1210     
1211     
1212     getAutoCreate : function(){
1213         
1214         var cfg = {
1215             tag: 'h' + (1 *this.level),
1216             html: this.html || 'fill in html'
1217         } ;
1218         
1219         return cfg;
1220     }
1221    
1222 });
1223
1224  
1225
1226  /*
1227  * Based on:
1228  * Ext JS Library 1.1.1
1229  * Copyright(c) 2006-2007, Ext JS, LLC.
1230  *
1231  * Originally Released Under LGPL - original licence link has changed is not relivant.
1232  *
1233  * Fork - LGPL
1234  * <script type="text/javascript">
1235  */
1236  
1237 /**
1238  * @class Roo.bootstrap.MenuMgr
1239  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
1240  * @singleton
1241  */
1242 Roo.bootstrap.MenuMgr = function(){
1243    var menus, active, groups = {}, attached = false, lastShow = new Date();
1244
1245    // private - called when first menu is created
1246    function init(){
1247        menus = {};
1248        active = new Roo.util.MixedCollection();
1249        Roo.get(document).addKeyListener(27, function(){
1250            if(active.length > 0){
1251                hideAll();
1252            }
1253        });
1254    }
1255
1256    // private
1257    function hideAll(){
1258        if(active && active.length > 0){
1259            var c = active.clone();
1260            c.each(function(m){
1261                m.hide();
1262            });
1263        }
1264    }
1265
1266    // private
1267    function onHide(m){
1268        active.remove(m);
1269        if(active.length < 1){
1270            Roo.get(document).un("mouseup", onMouseDown);
1271             
1272            attached = false;
1273        }
1274    }
1275
1276    // private
1277    function onShow(m){
1278        var last = active.last();
1279        lastShow = new Date();
1280        active.add(m);
1281        if(!attached){
1282           Roo.get(document).on("mouseup", onMouseDown);
1283            
1284            attached = true;
1285        }
1286        if(m.parentMenu){
1287           //m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
1288           m.parentMenu.activeChild = m;
1289        }else if(last && last.isVisible()){
1290           //m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
1291        }
1292    }
1293
1294    // private
1295    function onBeforeHide(m){
1296        if(m.activeChild){
1297            m.activeChild.hide();
1298        }
1299        if(m.autoHideTimer){
1300            clearTimeout(m.autoHideTimer);
1301            delete m.autoHideTimer;
1302        }
1303    }
1304
1305    // private
1306    function onBeforeShow(m){
1307        var pm = m.parentMenu;
1308        if(!pm && !m.allowOtherMenus){
1309            hideAll();
1310        }else if(pm && pm.activeChild && active != m){
1311            pm.activeChild.hide();
1312        }
1313    }
1314
1315    // private
1316    function onMouseDown(e){
1317         Roo.log("on MouseDown");
1318         if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
1319            hideAll();
1320         }
1321         
1322         
1323    }
1324
1325    // private
1326    function onBeforeCheck(mi, state){
1327        if(state){
1328            var g = groups[mi.group];
1329            for(var i = 0, l = g.length; i < l; i++){
1330                if(g[i] != mi){
1331                    g[i].setChecked(false);
1332                }
1333            }
1334        }
1335    }
1336
1337    return {
1338
1339        /**
1340         * Hides all menus that are currently visible
1341         */
1342        hideAll : function(){
1343             hideAll();  
1344        },
1345
1346        // private
1347        register : function(menu){
1348            if(!menus){
1349                init();
1350            }
1351            menus[menu.id] = menu;
1352            menu.on("beforehide", onBeforeHide);
1353            menu.on("hide", onHide);
1354            menu.on("beforeshow", onBeforeShow);
1355            menu.on("show", onShow);
1356            var g = menu.group;
1357            if(g && menu.events["checkchange"]){
1358                if(!groups[g]){
1359                    groups[g] = [];
1360                }
1361                groups[g].push(menu);
1362                menu.on("checkchange", onCheck);
1363            }
1364        },
1365
1366         /**
1367          * Returns a {@link Roo.menu.Menu} object
1368          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
1369          * be used to generate and return a new Menu instance.
1370          */
1371        get : function(menu){
1372            if(typeof menu == "string"){ // menu id
1373                return menus[menu];
1374            }else if(menu.events){  // menu instance
1375                return menu;
1376            }
1377            /*else if(typeof menu.length == 'number'){ // array of menu items?
1378                return new Roo.bootstrap.Menu({items:menu});
1379            }else{ // otherwise, must be a config
1380                return new Roo.bootstrap.Menu(menu);
1381            }
1382            */
1383            return false;
1384        },
1385
1386        // private
1387        unregister : function(menu){
1388            delete menus[menu.id];
1389            menu.un("beforehide", onBeforeHide);
1390            menu.un("hide", onHide);
1391            menu.un("beforeshow", onBeforeShow);
1392            menu.un("show", onShow);
1393            var g = menu.group;
1394            if(g && menu.events["checkchange"]){
1395                groups[g].remove(menu);
1396                menu.un("checkchange", onCheck);
1397            }
1398        },
1399
1400        // private
1401        registerCheckable : function(menuItem){
1402            var g = menuItem.group;
1403            if(g){
1404                if(!groups[g]){
1405                    groups[g] = [];
1406                }
1407                groups[g].push(menuItem);
1408                menuItem.on("beforecheckchange", onBeforeCheck);
1409            }
1410        },
1411
1412        // private
1413        unregisterCheckable : function(menuItem){
1414            var g = menuItem.group;
1415            if(g){
1416                groups[g].remove(menuItem);
1417                menuItem.un("beforecheckchange", onBeforeCheck);
1418            }
1419        }
1420    };
1421 }();/*
1422  * - LGPL
1423  *
1424  * menu
1425  * 
1426  */
1427
1428 /**
1429  * @class Roo.bootstrap.Menu
1430  * @extends Roo.bootstrap.Component
1431  * Bootstrap Menu class - container for MenuItems
1432  * @cfg {String} type (dropdown|treeview|submenu) type of menu
1433  * 
1434  * @constructor
1435  * Create a new Menu
1436  * @param {Object} config The config object
1437  */
1438
1439
1440 Roo.bootstrap.Menu = function(config){
1441     Roo.bootstrap.Menu.superclass.constructor.call(this, config);
1442     if (this.registerMenu) {
1443         Roo.bootstrap.MenuMgr.register(this);
1444     }
1445     this.addEvents({
1446         /**
1447          * @event beforeshow
1448          * Fires before this menu is displayed
1449          * @param {Roo.menu.Menu} this
1450          */
1451         beforeshow : true,
1452         /**
1453          * @event beforehide
1454          * Fires before this menu is hidden
1455          * @param {Roo.menu.Menu} this
1456          */
1457         beforehide : true,
1458         /**
1459          * @event show
1460          * Fires after this menu is displayed
1461          * @param {Roo.menu.Menu} this
1462          */
1463         show : true,
1464         /**
1465          * @event hide
1466          * Fires after this menu is hidden
1467          * @param {Roo.menu.Menu} this
1468          */
1469         hide : true,
1470         /**
1471          * @event click
1472          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
1473          * @param {Roo.menu.Menu} this
1474          * @param {Roo.menu.Item} menuItem The menu item that was clicked
1475          * @param {Roo.EventObject} e
1476          */
1477         click : true,
1478         /**
1479          * @event mouseover
1480          * Fires when the mouse is hovering over this menu
1481          * @param {Roo.menu.Menu} this
1482          * @param {Roo.EventObject} e
1483          * @param {Roo.menu.Item} menuItem The menu item that was clicked
1484          */
1485         mouseover : true,
1486         /**
1487          * @event mouseout
1488          * Fires when the mouse exits this menu
1489          * @param {Roo.menu.Menu} this
1490          * @param {Roo.EventObject} e
1491          * @param {Roo.menu.Item} menuItem The menu item that was clicked
1492          */
1493         mouseout : true,
1494         /**
1495          * @event itemclick
1496          * Fires when a menu item contained in this menu is clicked
1497          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
1498          * @param {Roo.EventObject} e
1499          */
1500         itemclick: true
1501     });
1502     this.menuitems = new Roo.util.MixedCollection(false, function(o) { return o.el.id; });
1503 };
1504
1505 Roo.extend(Roo.bootstrap.Menu, Roo.bootstrap.Component,  {
1506     
1507    /// html : false,
1508     //align : '',
1509     triggerEl : false,  // is this set by component builder? -- it should really be fetched from parent()???
1510     type: false,
1511     /**
1512      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
1513      */
1514     registerMenu : true,
1515     
1516     menuItems :false, // stores the menu items..
1517     
1518     hidden:true,
1519     
1520     parentMenu : false,
1521     
1522     getChildContainer : function() {
1523         return this.el;  
1524     },
1525     
1526     getAutoCreate : function(){
1527          
1528         //if (['right'].indexOf(this.align)!==-1) {
1529         //    cfg.cn[1].cls += ' pull-right'
1530         //}
1531         
1532         
1533         var cfg = {
1534             tag : 'ul',
1535             cls : 'dropdown-menu' ,
1536             style : 'z-index:1000'
1537             
1538         }
1539         
1540         if (this.type === 'submenu') {
1541             cfg.cls = 'submenu active';
1542         }
1543         if (this.type === 'treeview') {
1544             cfg.cls = 'treeview-menu';
1545         }
1546         
1547         return cfg;
1548     },
1549     initEvents : function() {
1550         
1551        // Roo.log("ADD event");
1552        // Roo.log(this.triggerEl.dom);
1553         this.triggerEl.on('click', this.onTriggerPress, this);
1554         this.triggerEl.addClass('dropdown-toggle');
1555         this.el.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
1556
1557         this.el.on("mouseover", this.onMouseOver, this);
1558         this.el.on("mouseout", this.onMouseOut, this);
1559         
1560         
1561     },
1562     findTargetItem : function(e){
1563         var t = e.getTarget(".dropdown-menu-item", this.el,  true);
1564         if(!t){
1565             return false;
1566         }
1567         //Roo.log(t);         Roo.log(t.id);
1568         if(t && t.id){
1569             //Roo.log(this.menuitems);
1570             return this.menuitems.get(t.id);
1571             
1572             //return this.items.get(t.menuItemId);
1573         }
1574         
1575         return false;
1576     },
1577     onClick : function(e){
1578         Roo.log("menu.onClick");
1579         var t = this.findTargetItem(e);
1580         if(!t){
1581             return;
1582         }
1583         Roo.log(e);
1584         /*
1585         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
1586             if(t == this.activeItem && t.shouldDeactivate(e)){
1587                 this.activeItem.deactivate();
1588                 delete this.activeItem;
1589                 return;
1590             }
1591             if(t.canActivate){
1592                 this.setActiveItem(t, true);
1593             }
1594             return;
1595             
1596             
1597         }
1598         */
1599         Roo.log('pass click event');
1600         
1601         t.onClick(e);
1602         
1603         this.fireEvent("click", this, t, e);
1604         
1605         this.hide();
1606     },
1607      onMouseOver : function(e){
1608         var t  = this.findTargetItem(e);
1609         //Roo.log(t);
1610         //if(t){
1611         //    if(t.canActivate && !t.disabled){
1612         //        this.setActiveItem(t, true);
1613         //    }
1614         //}
1615         
1616         this.fireEvent("mouseover", this, e, t);
1617     },
1618     isVisible : function(){
1619         return !this.hidden;
1620     },
1621      onMouseOut : function(e){
1622         var t  = this.findTargetItem(e);
1623         
1624         //if(t ){
1625         //    if(t == this.activeItem && t.shouldDeactivate(e)){
1626         //        this.activeItem.deactivate();
1627         //        delete this.activeItem;
1628         //    }
1629         //}
1630         this.fireEvent("mouseout", this, e, t);
1631     },
1632     
1633     
1634     /**
1635      * Displays this menu relative to another element
1636      * @param {String/HTMLElement/Roo.Element} element The element to align to
1637      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
1638      * the element (defaults to this.defaultAlign)
1639      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
1640      */
1641     show : function(el, pos, parentMenu){
1642         this.parentMenu = parentMenu;
1643         if(!this.el){
1644             this.render();
1645         }
1646         this.fireEvent("beforeshow", this);
1647         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
1648     },
1649      /**
1650      * Displays this menu at a specific xy position
1651      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
1652      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
1653      */
1654     showAt : function(xy, parentMenu, /* private: */_e){
1655         this.parentMenu = parentMenu;
1656         if(!this.el){
1657             this.render();
1658         }
1659         if(_e !== false){
1660             this.fireEvent("beforeshow", this);
1661             
1662             //xy = this.el.adjustForConstraints(xy);
1663         }
1664         //this.el.setXY(xy);
1665         //this.el.show();
1666         this.hideMenuItems();
1667         this.hidden = false;
1668         this.triggerEl.addClass('open');
1669         this.focus();
1670         this.fireEvent("show", this);
1671     },
1672     
1673     focus : function(){
1674         return;
1675         if(!this.hidden){
1676             this.doFocus.defer(50, this);
1677         }
1678     },
1679
1680     doFocus : function(){
1681         if(!this.hidden){
1682             this.focusEl.focus();
1683         }
1684     },
1685
1686     /**
1687      * Hides this menu and optionally all parent menus
1688      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
1689      */
1690     hide : function(deep){
1691         
1692         this.hideMenuItems();
1693         if(this.el && this.isVisible()){
1694             this.fireEvent("beforehide", this);
1695             if(this.activeItem){
1696                 this.activeItem.deactivate();
1697                 this.activeItem = null;
1698             }
1699             this.triggerEl.removeClass('open');;
1700             this.hidden = true;
1701             this.fireEvent("hide", this);
1702         }
1703         if(deep === true && this.parentMenu){
1704             this.parentMenu.hide(true);
1705         }
1706     },
1707     
1708     onTriggerPress  : function(e)
1709     {
1710         
1711         Roo.log('trigger press');
1712         //Roo.log(e.getTarget());
1713        // Roo.log(this.triggerEl.dom);
1714         if (Roo.get(e.getTarget()).findParent('.dropdown-menu')) {
1715             return;
1716         }
1717         if (this.isVisible()) {
1718             Roo.log('hide');
1719             this.hide();
1720         } else {
1721             this.show(this.triggerEl, false, false);
1722         }
1723         
1724         
1725     },
1726     
1727          
1728        
1729     
1730     hideMenuItems : function()
1731     {
1732         //$(backdrop).remove()
1733         Roo.select('.open',true).each(function(aa) {
1734             
1735             aa.removeClass('open');
1736           //var parent = getParent($(this))
1737           //var relatedTarget = { relatedTarget: this }
1738           
1739            //$parent.trigger(e = $.Event('hide.bs.dropdown', relatedTarget))
1740           //if (e.isDefaultPrevented()) return
1741            //$parent.removeClass('open').trigger('hidden.bs.dropdown', relatedTarget)
1742         })
1743     },
1744     addxtypeChild : function (tree, cntr) {
1745         var comp= Roo.bootstrap.Menu.superclass.addxtypeChild.call(this, tree, cntr);
1746           
1747         this.menuitems.add(comp);
1748         return comp;
1749
1750     },
1751     getEl : function()
1752     {
1753         Roo.log(this.el);
1754         return this.el;
1755     }
1756 });
1757
1758  
1759  /*
1760  * - LGPL
1761  *
1762  * menu item
1763  * 
1764  */
1765
1766
1767 /**
1768  * @class Roo.bootstrap.MenuItem
1769  * @extends Roo.bootstrap.Component
1770  * Bootstrap MenuItem class
1771  * @cfg {String} html the menu label
1772  * @cfg {String} href the link
1773  * @cfg {Boolean} preventDefault (true | false) default true
1774  * 
1775  * 
1776  * @constructor
1777  * Create a new MenuItem
1778  * @param {Object} config The config object
1779  */
1780
1781
1782 Roo.bootstrap.MenuItem = function(config){
1783     Roo.bootstrap.MenuItem.superclass.constructor.call(this, config);
1784     this.addEvents({
1785         // raw events
1786         /**
1787          * @event click
1788          * The raw click event for the entire grid.
1789          * @param {Roo.EventObject} e
1790          */
1791         "click" : true
1792     });
1793 };
1794
1795 Roo.extend(Roo.bootstrap.MenuItem, Roo.bootstrap.Component,  {
1796     
1797     href : false,
1798     html : false,
1799     preventDefault: true,
1800     
1801     getAutoCreate : function(){
1802         var cfg= {
1803             tag: 'li',
1804             cls: 'dropdown-menu-item',
1805             cn: [
1806                     {
1807                         tag : 'a',
1808                         href : '#',
1809                         html : 'Link'
1810                     }
1811                 ]
1812         };
1813         if (this.parent().type == 'treeview') {
1814             cfg.cls = 'treeview-menu';
1815         }
1816         
1817         cfg.cn[0].href = this.href || cfg.cn[0].href ;
1818         cfg.cn[0].html = this.html || cfg.cn[0].html ;
1819         return cfg;
1820     },
1821     
1822     initEvents: function() {
1823         
1824         //this.el.select('a').on('click', this.onClick, this);
1825         
1826     },
1827     onClick : function(e)
1828     {
1829         Roo.log('item on click ');
1830         //if(this.preventDefault){
1831         //    e.preventDefault();
1832         //}
1833         //this.parent().hideMenuItems();
1834         
1835         this.fireEvent('click', this, e);
1836     },
1837     getEl : function()
1838     {
1839         return this.el;
1840     }
1841 });
1842
1843  
1844
1845  /*
1846  * - LGPL
1847  *
1848  * menu separator
1849  * 
1850  */
1851
1852
1853 /**
1854  * @class Roo.bootstrap.MenuSeparator
1855  * @extends Roo.bootstrap.Component
1856  * Bootstrap MenuSeparator class
1857  * 
1858  * @constructor
1859  * Create a new MenuItem
1860  * @param {Object} config The config object
1861  */
1862
1863
1864 Roo.bootstrap.MenuSeparator = function(config){
1865     Roo.bootstrap.MenuSeparator.superclass.constructor.call(this, config);
1866 };
1867
1868 Roo.extend(Roo.bootstrap.MenuSeparator, Roo.bootstrap.Component,  {
1869     
1870     getAutoCreate : function(){
1871         var cfg = {
1872             cls: 'divider',
1873             tag : 'li'
1874         };
1875         
1876         return cfg;
1877     }
1878    
1879 });
1880
1881  
1882
1883  
1884 /*
1885 <div class="modal fade">
1886   <div class="modal-dialog">
1887     <div class="modal-content">
1888       <div class="modal-header">
1889         <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
1890         <h4 class="modal-title">Modal title</h4>
1891       </div>
1892       <div class="modal-body">
1893         <p>One fine body&hellip;</p>
1894       </div>
1895       <div class="modal-footer">
1896         <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
1897         <button type="button" class="btn btn-primary">Save changes</button>
1898       </div>
1899     </div><!-- /.modal-content -->
1900   </div><!-- /.modal-dialog -->
1901 </div><!-- /.modal -->
1902 */
1903 /*
1904  * - LGPL
1905  *
1906  * page contgainer.
1907  * 
1908  */
1909
1910 /**
1911  * @class Roo.bootstrap.Modal
1912  * @extends Roo.bootstrap.Component
1913  * Bootstrap Modal class
1914  * @cfg {String} title Title of dialog
1915  * @cfg {Boolean} specificTitle (true|false) default false
1916  * @cfg {Array} buttons Array of buttons or standard button set..
1917  * @cfg {String} buttonPosition (left|right|center) default right
1918  * 
1919  * @constructor
1920  * Create a new Modal Dialog
1921  * @param {Object} config The config object
1922  */
1923
1924 Roo.bootstrap.Modal = function(config){
1925     Roo.bootstrap.Modal.superclass.constructor.call(this, config);
1926     this.addEvents({
1927         // raw events
1928         /**
1929          * @event btnclick
1930          * The raw btnclick event for the button
1931          * @param {Roo.EventObject} e
1932          */
1933         "btnclick" : true
1934     });
1935     this.buttons = this.buttons || [];
1936 };
1937
1938 Roo.extend(Roo.bootstrap.Modal, Roo.bootstrap.Component,  {
1939     
1940     title : 'test dialog',
1941    
1942     buttons : false,
1943     
1944     // set on load...
1945     body:  false,
1946     
1947     specificTitle: false,
1948     
1949     buttonPosition: 'right',
1950     
1951     onRender : function(ct, position)
1952     {
1953         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
1954      
1955         if(!this.el){
1956             var cfg = Roo.apply({},  this.getAutoCreate());
1957             cfg.id = Roo.id();
1958             //if(!cfg.name){
1959             //    cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
1960             //}
1961             //if (!cfg.name.length) {
1962             //    delete cfg.name;
1963            // }
1964             if (this.cls) {
1965                 cfg.cls += ' ' + this.cls;
1966             }
1967             if (this.style) {
1968                 cfg.style = this.style;
1969             }
1970             this.el = Roo.get(document.body).createChild(cfg, position);
1971         }
1972         //var type = this.el.dom.type;
1973         
1974         if(this.tabIndex !== undefined){
1975             this.el.dom.setAttribute('tabIndex', this.tabIndex);
1976         }
1977         
1978         
1979         
1980         this.maskEl = Roo.DomHelper.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
1981         this.maskEl.enableDisplayMode("block");
1982         this.maskEl.hide();
1983         //this.el.addClass("x-dlg-modal");
1984     
1985         if (this.buttons.length) {
1986             Roo.each(this.buttons, function(bb) {
1987                 b = Roo.apply({}, bb);
1988                 b.xns = b.xns || Roo.bootstrap;
1989                 b.xtype = b.xtype || 'Button';
1990                 if (typeof(b.listeners) == 'undefined') {
1991                     b.listeners = { click : this.onButtonClick.createDelegate(this)  };
1992                 }
1993                 
1994                 var btn = Roo.factory(b);
1995                 
1996                 btn.onRender(this.el.select('.modal-footer div').first());
1997                 
1998             },this);
1999         }
2000         // render the children.
2001         var nitems = [];
2002         
2003         if(typeof(this.items) != 'undefined'){
2004             var items = this.items;
2005             delete this.items;
2006
2007             for(var i =0;i < items.length;i++) {
2008                 nitems.push(this.addxtype(Roo.apply({}, items[i])));
2009             }
2010         }
2011         
2012         this.items = nitems;
2013         
2014         this.body = this.el.select('.modal-body',true).first();
2015         this.close = this.el.select('.modal-header .close', true).first();
2016         this.footer = this.el.select('.modal-footer',true).first();
2017         this.initEvents();
2018         //this.el.addClass([this.fieldClass, this.cls]);
2019         
2020     },
2021     getAutoCreate : function(){
2022         
2023         
2024         var bdy = {
2025                 cls : 'modal-body',
2026                 html : this.html || ''
2027         };
2028         
2029         var title = {
2030             tag: 'h4',
2031             cls : 'modal-title',
2032             html : this.title
2033         };
2034         
2035         if(this.specificTitle){
2036             title = this.title;
2037         };
2038         
2039         return modal = {
2040             cls: "modal fade",
2041             style : 'display: none',
2042             cn : [
2043                 {
2044                     cls: "modal-dialog",
2045                     cn : [
2046                         {
2047                             cls : "modal-content",
2048                             cn : [
2049                                 {
2050                                     cls : 'modal-header',
2051                                     cn : [
2052                                         {
2053                                             tag: 'button',
2054                                             cls : 'close',
2055                                             html : '&times'
2056                                         },
2057                                         title
2058                                     ]
2059                                 },
2060                                 bdy,
2061                                 {
2062                                     cls : 'modal-footer',
2063                                     cn : [
2064                                         {
2065                                             tag: 'div',
2066                                             cls: 'btn-' + this.buttonPosition
2067                                         }
2068                                     ]
2069                                     
2070                                 }
2071                                 
2072                                 
2073                             ]
2074                             
2075                         }
2076                     ]
2077                         
2078                 }
2079             ]
2080             
2081             
2082         };
2083           
2084     },
2085     getChildContainer : function() {
2086          
2087          return this.el.select('.modal-body',true).first();
2088         
2089     },
2090     getButtonContainer : function() {
2091          return this.el.select('.modal-footer div',true).first();
2092         
2093     },
2094     initEvents : function()
2095     {
2096         this.el.select('.modal-header .close').on('click', this.hide, this);
2097 //        
2098 //        this.addxtype(this);
2099     },
2100     show : function() {
2101         
2102         if (!this.rendered) {
2103             this.render();
2104         }
2105        
2106         this.el.addClass('on');
2107         this.el.removeClass('fade');
2108         this.el.setStyle('display', 'block');
2109         Roo.get(document.body).addClass("x-body-masked");
2110         this.maskEl.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
2111         this.maskEl.show();
2112         this.el.setStyle('zIndex', '10001');
2113         this.fireEvent('show', this);
2114         
2115         
2116     },
2117     hide : function()
2118     {
2119         Roo.log('Modal hide?!');
2120         this.maskEl.hide();
2121         Roo.get(document.body).removeClass("x-body-masked");
2122         this.el.removeClass('on');
2123         this.el.addClass('fade');
2124         this.el.setStyle('display', 'none');
2125         this.fireEvent('hide', this);
2126     },
2127     
2128     addButton : function(str, cb)
2129     {
2130          
2131         
2132         var b = Roo.apply({}, { html : str } );
2133         b.xns = b.xns || Roo.bootstrap;
2134         b.xtype = b.xtype || 'Button';
2135         if (typeof(b.listeners) == 'undefined') {
2136             b.listeners = { click : cb.createDelegate(this)  };
2137         }
2138         
2139         var btn = Roo.factory(b);
2140            
2141         btn.onRender(this.el.select('.modal-footer div').first());
2142         
2143         return btn;   
2144        
2145     },
2146     
2147     setDefaultButton : function(btn)
2148     {
2149         //this.el.select('.modal-footer').()
2150     },
2151     resizeTo: function(w,h)
2152     {
2153         // skip..
2154     },
2155     setContentSize  : function(w, h)
2156     {
2157         
2158     },
2159     onButtonClick: function(btn,e)
2160     {
2161         //Roo.log([a,b,c]);
2162         this.fireEvent('btnclick', btn.name, e);
2163     },
2164     setTitle: function(str) {
2165         this.el.select('.modal-title',true).first().dom.innerHTML = str;
2166         
2167     }
2168 });
2169
2170
2171 Roo.apply(Roo.bootstrap.Modal,  {
2172     /**
2173          * Button config that displays a single OK button
2174          * @type Object
2175          */
2176         OK :  [{
2177             name : 'ok',
2178             weight : 'primary',
2179             html : 'OK'
2180         }], 
2181         /**
2182          * Button config that displays Yes and No buttons
2183          * @type Object
2184          */
2185         YESNO : [
2186             {
2187                 name  : 'no',
2188                 html : 'No'
2189             },
2190             {
2191                 name  :'yes',
2192                 weight : 'primary',
2193                 html : 'Yes'
2194             }
2195         ],
2196         
2197         /**
2198          * Button config that displays OK and Cancel buttons
2199          * @type Object
2200          */
2201         OKCANCEL : [
2202             {
2203                name : 'cancel',
2204                 html : 'Cancel'
2205             },
2206             {
2207                 name : 'ok',
2208                 weight : 'primary',
2209                 html : 'OK'
2210             }
2211         ],
2212         /**
2213          * Button config that displays Yes, No and Cancel buttons
2214          * @type Object
2215          */
2216         YESNOCANCEL : [
2217             {
2218                 name : 'yes',
2219                 weight : 'primary',
2220                 html : 'Yes'
2221             },
2222             {
2223                 name : 'no',
2224                 html : 'No'
2225             },
2226             {
2227                 name : 'cancel',
2228                 html : 'Cancel'
2229             }
2230         ]
2231 });
2232  /*
2233  * - LGPL
2234  *
2235  * messagebox - can be used as a replace
2236  * 
2237  */
2238 /**
2239  * @class Roo.MessageBox
2240  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
2241  * Example usage:
2242  *<pre><code>
2243 // Basic alert:
2244 Roo.Msg.alert('Status', 'Changes saved successfully.');
2245
2246 // Prompt for user data:
2247 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
2248     if (btn == 'ok'){
2249         // process text value...
2250     }
2251 });
2252
2253 // Show a dialog using config options:
2254 Roo.Msg.show({
2255    title:'Save Changes?',
2256    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
2257    buttons: Roo.Msg.YESNOCANCEL,
2258    fn: processResult,
2259    animEl: 'elId'
2260 });
2261 </code></pre>
2262  * @singleton
2263  */
2264 Roo.bootstrap.MessageBox = function(){
2265     var dlg, opt, mask, waitTimer;
2266     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
2267     var buttons, activeTextEl, bwidth;
2268
2269     
2270     // private
2271     var handleButton = function(button){
2272         dlg.hide();
2273         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
2274     };
2275
2276     // private
2277     var handleHide = function(){
2278         if(opt && opt.cls){
2279             dlg.el.removeClass(opt.cls);
2280         }
2281         //if(waitTimer){
2282         //    Roo.TaskMgr.stop(waitTimer);
2283         //    waitTimer = null;
2284         //}
2285     };
2286
2287     // private
2288     var updateButtons = function(b){
2289         var width = 0;
2290         if(!b){
2291             buttons["ok"].hide();
2292             buttons["cancel"].hide();
2293             buttons["yes"].hide();
2294             buttons["no"].hide();
2295             //dlg.footer.dom.style.display = 'none';
2296             return width;
2297         }
2298         dlg.footer.dom.style.display = '';
2299         for(var k in buttons){
2300             if(typeof buttons[k] != "function"){
2301                 if(b[k]){
2302                     buttons[k].show();
2303                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.bootstrap.MessageBox.buttonText[k]);
2304                     width += buttons[k].el.getWidth()+15;
2305                 }else{
2306                     buttons[k].hide();
2307                 }
2308             }
2309         }
2310         return width;
2311     };
2312
2313     // private
2314     var handleEsc = function(d, k, e){
2315         if(opt && opt.closable !== false){
2316             dlg.hide();
2317         }
2318         if(e){
2319             e.stopEvent();
2320         }
2321     };
2322
2323     return {
2324         /**
2325          * Returns a reference to the underlying {@link Roo.BasicDialog} element
2326          * @return {Roo.BasicDialog} The BasicDialog element
2327          */
2328         getDialog : function(){
2329            if(!dlg){
2330                 dlg = new Roo.bootstrap.Modal( {
2331                     //draggable: true,
2332                     //resizable:false,
2333                     //constraintoviewport:false,
2334                     //fixedcenter:true,
2335                     //collapsible : false,
2336                     //shim:true,
2337                     //modal: true,
2338                   //  width:400,
2339                   //  height:100,
2340                     //buttonAlign:"center",
2341                     closeClick : function(){
2342                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
2343                             handleButton("no");
2344                         }else{
2345                             handleButton("cancel");
2346                         }
2347                     }
2348                 });
2349                 dlg.render();
2350                 dlg.on("hide", handleHide);
2351                 mask = dlg.mask;
2352                 //dlg.addKeyListener(27, handleEsc);
2353                 buttons = {};
2354                 this.buttons = buttons;
2355                 var bt = this.buttonText;
2356                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
2357                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
2358                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
2359                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
2360                 Roo.log(buttons)
2361                 bodyEl = dlg.body.createChild({
2362
2363                     html:'<span class="roo-mb-text"></span><br /><input type="text" class="roo-mb-input" />' +
2364                         '<textarea class="roo-mb-textarea"></textarea>' +
2365                         '<div class="roo-mb-progress-wrap"><div class="roo-mb-progress"><div class="roo-mb-progress-bar">&#160;</div></div></div>'
2366                 });
2367                 msgEl = bodyEl.dom.firstChild;
2368                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
2369                 textboxEl.enableDisplayMode();
2370                 textboxEl.addKeyListener([10,13], function(){
2371                     if(dlg.isVisible() && opt && opt.buttons){
2372                         if(opt.buttons.ok){
2373                             handleButton("ok");
2374                         }else if(opt.buttons.yes){
2375                             handleButton("yes");
2376                         }
2377                     }
2378                 });
2379                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
2380                 textareaEl.enableDisplayMode();
2381                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
2382                 progressEl.enableDisplayMode();
2383                 var pf = progressEl.dom.firstChild;
2384                 if (pf) {
2385                     pp = Roo.get(pf.firstChild);
2386                     pp.setHeight(pf.offsetHeight);
2387                 }
2388                 
2389             }
2390             return dlg;
2391         },
2392
2393         /**
2394          * Updates the message box body text
2395          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
2396          * the XHTML-compliant non-breaking space character '&amp;#160;')
2397          * @return {Roo.MessageBox} This message box
2398          */
2399         updateText : function(text){
2400             if(!dlg.isVisible() && !opt.width){
2401                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
2402             }
2403             msgEl.innerHTML = text || '&#160;';
2404       
2405             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
2406             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
2407             var w = Math.max(
2408                     Math.min(opt.width || cw , this.maxWidth), 
2409                     Math.max(opt.minWidth || this.minWidth, bwidth)
2410             );
2411             if(opt.prompt){
2412                 activeTextEl.setWidth(w);
2413             }
2414             if(dlg.isVisible()){
2415                 dlg.fixedcenter = false;
2416             }
2417             // to big, make it scroll. = But as usual stupid IE does not support
2418             // !important..
2419             
2420             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
2421                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
2422                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
2423             } else {
2424                 bodyEl.dom.style.height = '';
2425                 bodyEl.dom.style.overflowY = '';
2426             }
2427             if (cw > w) {
2428                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
2429             } else {
2430                 bodyEl.dom.style.overflowX = '';
2431             }
2432             
2433             dlg.setContentSize(w, bodyEl.getHeight());
2434             if(dlg.isVisible()){
2435                 dlg.fixedcenter = true;
2436             }
2437             return this;
2438         },
2439
2440         /**
2441          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
2442          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
2443          * @param {Number} value Any number between 0 and 1 (e.g., .5)
2444          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
2445          * @return {Roo.MessageBox} This message box
2446          */
2447         updateProgress : function(value, text){
2448             if(text){
2449                 this.updateText(text);
2450             }
2451             if (pp) { // weird bug on my firefox - for some reason this is not defined
2452                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
2453             }
2454             return this;
2455         },        
2456
2457         /**
2458          * Returns true if the message box is currently displayed
2459          * @return {Boolean} True if the message box is visible, else false
2460          */
2461         isVisible : function(){
2462             return dlg && dlg.isVisible();  
2463         },
2464
2465         /**
2466          * Hides the message box if it is displayed
2467          */
2468         hide : function(){
2469             if(this.isVisible()){
2470                 dlg.hide();
2471             }  
2472         },
2473
2474         /**
2475          * Displays a new message box, or reinitializes an existing message box, based on the config options
2476          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
2477          * The following config object properties are supported:
2478          * <pre>
2479 Property    Type             Description
2480 ----------  ---------------  ------------------------------------------------------------------------------------
2481 animEl            String/Element   An id or Element from which the message box should animate as it opens and
2482                                    closes (defaults to undefined)
2483 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
2484                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
2485 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
2486                                    progress and wait dialogs will ignore this property and always hide the
2487                                    close button as they can only be closed programmatically.
2488 cls               String           A custom CSS class to apply to the message box element
2489 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
2490                                    displayed (defaults to 75)
2491 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
2492                                    function will be btn (the name of the button that was clicked, if applicable,
2493                                    e.g. "ok"), and text (the value of the active text field, if applicable).
2494                                    Progress and wait dialogs will ignore this option since they do not respond to
2495                                    user actions and can only be closed programmatically, so any required function
2496                                    should be called by the same code after it closes the dialog.
2497 icon              String           A CSS class that provides a background image to be used as an icon for
2498                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
2499 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
2500 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
2501 modal             Boolean          False to allow user interaction with the page while the message box is
2502                                    displayed (defaults to true)
2503 msg               String           A string that will replace the existing message box body text (defaults
2504                                    to the XHTML-compliant non-breaking space character '&#160;')
2505 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
2506 progress          Boolean          True to display a progress bar (defaults to false)
2507 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
2508 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
2509 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
2510 title             String           The title text
2511 value             String           The string value to set into the active textbox element if displayed
2512 wait              Boolean          True to display a progress bar (defaults to false)
2513 width             Number           The width of the dialog in pixels
2514 </pre>
2515          *
2516          * Example usage:
2517          * <pre><code>
2518 Roo.Msg.show({
2519    title: 'Address',
2520    msg: 'Please enter your address:',
2521    width: 300,
2522    buttons: Roo.MessageBox.OKCANCEL,
2523    multiline: true,
2524    fn: saveAddress,
2525    animEl: 'addAddressBtn'
2526 });
2527 </code></pre>
2528          * @param {Object} config Configuration options
2529          * @return {Roo.MessageBox} This message box
2530          */
2531         show : function(options)
2532         {
2533             
2534             // this causes nightmares if you show one dialog after another
2535             // especially on callbacks..
2536              
2537             if(this.isVisible()){
2538                 
2539                 this.hide();
2540                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
2541                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
2542                 Roo.log("New Dialog Message:" +  options.msg )
2543                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
2544                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
2545                 
2546             }
2547             var d = this.getDialog();
2548             opt = options;
2549             d.setTitle(opt.title || "&#160;");
2550             d.close.setDisplayed(opt.closable !== false);
2551             activeTextEl = textboxEl;
2552             opt.prompt = opt.prompt || (opt.multiline ? true : false);
2553             if(opt.prompt){
2554                 if(opt.multiline){
2555                     textboxEl.hide();
2556                     textareaEl.show();
2557                     textareaEl.setHeight(typeof opt.multiline == "number" ?
2558                         opt.multiline : this.defaultTextHeight);
2559                     activeTextEl = textareaEl;
2560                 }else{
2561                     textboxEl.show();
2562                     textareaEl.hide();
2563                 }
2564             }else{
2565                 textboxEl.hide();
2566                 textareaEl.hide();
2567             }
2568             progressEl.setDisplayed(opt.progress === true);
2569             this.updateProgress(0);
2570             activeTextEl.dom.value = opt.value || "";
2571             if(opt.prompt){
2572                 dlg.setDefaultButton(activeTextEl);
2573             }else{
2574                 var bs = opt.buttons;
2575                 var db = null;
2576                 if(bs && bs.ok){
2577                     db = buttons["ok"];
2578                 }else if(bs && bs.yes){
2579                     db = buttons["yes"];
2580                 }
2581                 dlg.setDefaultButton(db);
2582             }
2583             bwidth = updateButtons(opt.buttons);
2584             this.updateText(opt.msg);
2585             if(opt.cls){
2586                 d.el.addClass(opt.cls);
2587             }
2588             d.proxyDrag = opt.proxyDrag === true;
2589             d.modal = opt.modal !== false;
2590             d.mask = opt.modal !== false ? mask : false;
2591             if(!d.isVisible()){
2592                 // force it to the end of the z-index stack so it gets a cursor in FF
2593                 document.body.appendChild(dlg.el.dom);
2594                 d.animateTarget = null;
2595                 d.show(options.animEl);
2596             }
2597             return this;
2598         },
2599
2600         /**
2601          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
2602          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
2603          * and closing the message box when the process is complete.
2604          * @param {String} title The title bar text
2605          * @param {String} msg The message box body text
2606          * @return {Roo.MessageBox} This message box
2607          */
2608         progress : function(title, msg){
2609             this.show({
2610                 title : title,
2611                 msg : msg,
2612                 buttons: false,
2613                 progress:true,
2614                 closable:false,
2615                 minWidth: this.minProgressWidth,
2616                 modal : true
2617             });
2618             return this;
2619         },
2620
2621         /**
2622          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
2623          * If a callback function is passed it will be called after the user clicks the button, and the
2624          * id of the button that was clicked will be passed as the only parameter to the callback
2625          * (could also be the top-right close button).
2626          * @param {String} title The title bar text
2627          * @param {String} msg The message box body text
2628          * @param {Function} fn (optional) The callback function invoked after the message box is closed
2629          * @param {Object} scope (optional) The scope of the callback function
2630          * @return {Roo.MessageBox} This message box
2631          */
2632         alert : function(title, msg, fn, scope){
2633             this.show({
2634                 title : title,
2635                 msg : msg,
2636                 buttons: this.OK,
2637                 fn: fn,
2638                 scope : scope,
2639                 modal : true
2640             });
2641             return this;
2642         },
2643
2644         /**
2645          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
2646          * interaction while waiting for a long-running process to complete that does not have defined intervals.
2647          * You are responsible for closing the message box when the process is complete.
2648          * @param {String} msg The message box body text
2649          * @param {String} title (optional) The title bar text
2650          * @return {Roo.MessageBox} This message box
2651          */
2652         wait : function(msg, title){
2653             this.show({
2654                 title : title,
2655                 msg : msg,
2656                 buttons: false,
2657                 closable:false,
2658                 progress:true,
2659                 modal:true,
2660                 width:300,
2661                 wait:true
2662             });
2663             waitTimer = Roo.TaskMgr.start({
2664                 run: function(i){
2665                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
2666                 },
2667                 interval: 1000
2668             });
2669             return this;
2670         },
2671
2672         /**
2673          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
2674          * If a callback function is passed it will be called after the user clicks either button, and the id of the
2675          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
2676          * @param {String} title The title bar text
2677          * @param {String} msg The message box body text
2678          * @param {Function} fn (optional) The callback function invoked after the message box is closed
2679          * @param {Object} scope (optional) The scope of the callback function
2680          * @return {Roo.MessageBox} This message box
2681          */
2682         confirm : function(title, msg, fn, scope){
2683             this.show({
2684                 title : title,
2685                 msg : msg,
2686                 buttons: this.YESNO,
2687                 fn: fn,
2688                 scope : scope,
2689                 modal : true
2690             });
2691             return this;
2692         },
2693
2694         /**
2695          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
2696          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
2697          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
2698          * (could also be the top-right close button) and the text that was entered will be passed as the two
2699          * parameters to the callback.
2700          * @param {String} title The title bar text
2701          * @param {String} msg The message box body text
2702          * @param {Function} fn (optional) The callback function invoked after the message box is closed
2703          * @param {Object} scope (optional) The scope of the callback function
2704          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
2705          * property, or the height in pixels to create the textbox (defaults to false / single-line)
2706          * @return {Roo.MessageBox} This message box
2707          */
2708         prompt : function(title, msg, fn, scope, multiline){
2709             this.show({
2710                 title : title,
2711                 msg : msg,
2712                 buttons: this.OKCANCEL,
2713                 fn: fn,
2714                 minWidth:250,
2715                 scope : scope,
2716                 prompt:true,
2717                 multiline: multiline,
2718                 modal : true
2719             });
2720             return this;
2721         },
2722
2723         /**
2724          * Button config that displays a single OK button
2725          * @type Object
2726          */
2727         OK : {ok:true},
2728         /**
2729          * Button config that displays Yes and No buttons
2730          * @type Object
2731          */
2732         YESNO : {yes:true, no:true},
2733         /**
2734          * Button config that displays OK and Cancel buttons
2735          * @type Object
2736          */
2737         OKCANCEL : {ok:true, cancel:true},
2738         /**
2739          * Button config that displays Yes, No and Cancel buttons
2740          * @type Object
2741          */
2742         YESNOCANCEL : {yes:true, no:true, cancel:true},
2743
2744         /**
2745          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
2746          * @type Number
2747          */
2748         defaultTextHeight : 75,
2749         /**
2750          * The maximum width in pixels of the message box (defaults to 600)
2751          * @type Number
2752          */
2753         maxWidth : 600,
2754         /**
2755          * The minimum width in pixels of the message box (defaults to 100)
2756          * @type Number
2757          */
2758         minWidth : 100,
2759         /**
2760          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
2761          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
2762          * @type Number
2763          */
2764         minProgressWidth : 250,
2765         /**
2766          * An object containing the default button text strings that can be overriden for localized language support.
2767          * Supported properties are: ok, cancel, yes and no.
2768          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
2769          * @type Object
2770          */
2771         buttonText : {
2772             ok : "OK",
2773             cancel : "Cancel",
2774             yes : "Yes",
2775             no : "No"
2776         }
2777     };
2778 }();
2779
2780 /**
2781  * Shorthand for {@link Roo.MessageBox}
2782  */
2783 Roo.MessageBox = Roo.MessageBox || Roo.bootstrap.MessageBox 
2784 Roo.Msg = Roo.Msg || Roo.MessageBox;
2785 /*
2786  * - LGPL
2787  *
2788  * navbar
2789  * 
2790  */
2791
2792 /**
2793  * @class Roo.bootstrap.Navbar
2794  * @extends Roo.bootstrap.Component
2795  * Bootstrap Navbar class
2796
2797  * @constructor
2798  * Create a new Navbar
2799  * @param {Object} config The config object
2800  */
2801
2802
2803 Roo.bootstrap.Navbar = function(config){
2804     Roo.bootstrap.Navbar.superclass.constructor.call(this, config);
2805     
2806 };
2807
2808 Roo.extend(Roo.bootstrap.Navbar, Roo.bootstrap.Component,  {
2809     
2810     
2811    
2812     // private
2813     navItems : false,
2814     loadMask : false,
2815     
2816     
2817     getAutoCreate : function(){
2818         
2819         
2820         throw { message : "nav bar is now a abstract base class - use NavSimplebar / NavHeaderbar / NavSidebar etc..."};
2821         
2822     },
2823     
2824     initEvents :function ()
2825     {
2826         //Roo.log(this.el.select('.navbar-toggle',true));
2827         this.el.select('.navbar-toggle',true).on('click', function() {
2828            // Roo.log('click');
2829             this.el.select('.navbar-collapse',true).toggleClass('in');                                 
2830         }, this);
2831         
2832         var mark = {
2833             tag: "div",
2834             cls:"x-dlg-mask"
2835         }
2836         
2837         this.maskEl = Roo.DomHelper.append(this.el, mark, true);
2838         
2839         var size = this.el.getSize();
2840         this.maskEl.setSize(size.width, size.height);
2841         this.maskEl.enableDisplayMode("block");
2842         this.maskEl.hide();
2843         
2844         if(this.loadMask){
2845             this.maskEl.show();
2846         }
2847     },
2848     
2849     
2850     getChildContainer : function()
2851     {
2852         if (this.el.select('.collapse').getCount()) {
2853             return this.el.select('.collapse',true).first();
2854         }
2855         
2856         return this.el;
2857     },
2858     
2859     mask : function()
2860     {
2861         this.maskEl.show();
2862     },
2863     
2864     unmask : function()
2865     {
2866         this.maskEl.hide();
2867     } 
2868     
2869     
2870     
2871     
2872 });
2873
2874
2875
2876  
2877
2878  /*
2879  * - LGPL
2880  *
2881  * navbar
2882  * 
2883  */
2884
2885 /**
2886  * @class Roo.bootstrap.NavSimplebar
2887  * @extends Roo.bootstrap.Navbar
2888  * Bootstrap Sidebar class
2889  *
2890  * @cfg {Boolean} inverse is inverted color
2891  * 
2892  * @cfg {String} type (nav | pills | tabs)
2893  * @cfg {Boolean} arrangement stacked | justified
2894  * @cfg {String} align (left | right) alignment
2895  * 
2896  * @cfg {Boolean} main (true|false) main nav bar? default false
2897  * @cfg {Boolean} loadMask (true|false) loadMask on the bar
2898  * 
2899  * @cfg {String} tag (header|footer|nav|div) default is nav 
2900
2901  * 
2902  * 
2903  * 
2904  * @constructor
2905  * Create a new Sidebar
2906  * @param {Object} config The config object
2907  */
2908
2909
2910 Roo.bootstrap.NavSimplebar = function(config){
2911     Roo.bootstrap.NavSimplebar.superclass.constructor.call(this, config);
2912 };
2913
2914 Roo.extend(Roo.bootstrap.NavSimplebar, Roo.bootstrap.Navbar,  {
2915     
2916     inverse: false,
2917     
2918     type: false,
2919     arrangement: '',
2920     align : false,
2921     
2922     
2923     
2924     main : false,
2925     
2926     
2927     tag : false,
2928     
2929     
2930     getAutoCreate : function(){
2931         
2932         
2933         var cfg = {
2934             tag : this.tag || 'div',
2935             cls : 'navbar'
2936         };
2937           
2938         
2939         cfg.cn = [
2940             {
2941                 cls: 'nav',
2942                 tag : 'ul'
2943             }
2944         ];
2945         
2946          
2947         this.type = this.type || 'nav';
2948         if (['tabs','pills'].indexOf(this.type)!==-1) {
2949             cfg.cn[0].cls += ' nav-' + this.type
2950         
2951         
2952         } else {
2953             if (this.type!=='nav') {
2954                 Roo.log('nav type must be nav/tabs/pills')
2955             }
2956             cfg.cn[0].cls += ' navbar-nav'
2957         }
2958         
2959         
2960         
2961         
2962         if (['stacked','justified'].indexOf(this.arrangement)!==-1) {
2963             cfg.cn[0].cls += ' nav-' + this.arrangement;
2964         }
2965         
2966         
2967         if (this.align === 'right') {
2968             cfg.cn[0].cls += ' navbar-right';
2969         }
2970         
2971         if (this.inverse) {
2972             cfg.cls += ' navbar-inverse';
2973             
2974         }
2975         
2976         
2977         return cfg;
2978     
2979         
2980     }
2981     
2982     
2983     
2984 });
2985
2986
2987
2988  
2989
2990  
2991        /*
2992  * - LGPL
2993  *
2994  * navbar
2995  * 
2996  */
2997
2998 /**
2999  * @class Roo.bootstrap.NavHeaderbar
3000  * @extends Roo.bootstrap.NavSimplebar
3001  * Bootstrap Sidebar class
3002  *
3003  * @cfg {String} brand what is brand
3004  * @cfg {String} position (fixed-top|fixed-bottom|static-top) position
3005  * @cfg {String} brand_href href of the brand
3006  * @cfg {Boolean} srButton generate the sr-only button (true | false) default true
3007  * @cfg {Boolean} autohide a top nav bar header that hides on scroll.
3008  * 
3009  * @constructor
3010  * Create a new Sidebar
3011  * @param {Object} config The config object
3012  */
3013
3014
3015 Roo.bootstrap.NavHeaderbar = function(config){
3016     Roo.bootstrap.NavHeaderbar.superclass.constructor.call(this, config);
3017 };
3018
3019 Roo.extend(Roo.bootstrap.NavHeaderbar, Roo.bootstrap.NavSimplebar,  {
3020     
3021     position: '',
3022     brand: '',
3023     brand_href: false,
3024     srButton : true,
3025     autohide : false,
3026     
3027     getAutoCreate : function(){
3028         
3029         var   cfg = {
3030             tag: this.nav || 'nav',
3031             cls: 'navbar',
3032             role: 'navigation',
3033             cn: []
3034         };
3035         
3036         if(this.srButton){
3037             cfg.cn.push({
3038                 tag: 'div',
3039                 cls: 'navbar-header',
3040                 cn: [
3041                     {
3042                         tag: 'button',
3043                         type: 'button',
3044                         cls: 'navbar-toggle',
3045                         'data-toggle': 'collapse',
3046                         cn: [
3047                             {
3048                                 tag: 'span',
3049                                 cls: 'sr-only',
3050                                 html: 'Toggle navigation'
3051                             },
3052                             {
3053                                 tag: 'span',
3054                                 cls: 'icon-bar'
3055                             },
3056                             {
3057                                 tag: 'span',
3058                                 cls: 'icon-bar'
3059                             },
3060                             {
3061                                 tag: 'span',
3062                                 cls: 'icon-bar'
3063                             }
3064                         ]
3065                     }
3066                 ]
3067             });
3068         }
3069         
3070         cfg.cn.push({
3071             tag: 'div',
3072             cls: 'collapse navbar-collapse',
3073             cn : []
3074         });
3075         
3076         cfg.cls += this.inverse ? ' navbar-inverse' : ' navbar-default';
3077         
3078         if (['fixed-top','fixed-bottom','static-top'].indexOf(this.position)>-1) {
3079             cfg.cls += ' navbar-' + this.position;
3080             
3081             // tag can override this..
3082             
3083             cfg.tag = this.tag || (this.position  == 'fixed-bottom' ? 'footer' : 'header');
3084         }
3085         
3086         if (this.brand !== '') {
3087             cfg.cn[0].cn.push({
3088                 tag: 'a',
3089                 href: this.brand_href ? this.brand_href : '#',
3090                 cls: 'navbar-brand',
3091                 cn: [
3092                 this.brand
3093                 ]
3094             });
3095         }
3096         
3097         if(this.main){
3098             cfg.cls += ' main-nav';
3099         }
3100         
3101         
3102         return cfg;
3103
3104         
3105     },
3106     initEvents : function()
3107     {
3108         Roo.bootstrap.NavHeaderbar.superclass.initEvents.call(this);
3109         
3110         if (this.autohide) {
3111             
3112             var prevScroll = 0;
3113             var ft = this.el;
3114             
3115             Roo.get(document).on('scroll',function(e) {
3116                 var ns = Roo.get(document).getScroll().top;
3117                 var os = prevScroll;
3118                 prevScroll = ns;
3119                 
3120                 if(ns > os){
3121                     ft.removeClass('slideDown');
3122                     ft.addClass('slideUp');
3123                     return;
3124                 }
3125                 ft.removeClass('slideUp');
3126                 ft.addClass('slideDown');
3127                  
3128               
3129           },this);
3130         }
3131     }    
3132           
3133       
3134     
3135     
3136 });
3137
3138
3139
3140  
3141
3142  /*
3143  * - LGPL
3144  *
3145  * navbar
3146  * 
3147  */
3148
3149 /**
3150  * @class Roo.bootstrap.NavSidebar
3151  * @extends Roo.bootstrap.Navbar
3152  * Bootstrap Sidebar class
3153  * 
3154  * @constructor
3155  * Create a new Sidebar
3156  * @param {Object} config The config object
3157  */
3158
3159
3160 Roo.bootstrap.NavSidebar = function(config){
3161     Roo.bootstrap.NavSidebar.superclass.constructor.call(this, config);
3162 };
3163
3164 Roo.extend(Roo.bootstrap.NavSidebar, Roo.bootstrap.Navbar,  {
3165     
3166     sidebar : true, // used by Navbar Item and NavbarGroup at present...
3167     
3168     getAutoCreate : function(){
3169         
3170         
3171         return  {
3172             tag: 'div',
3173             cls: 'sidebar sidebar-nav'
3174         };
3175     
3176         
3177     }
3178     
3179     
3180     
3181 });
3182
3183
3184
3185  
3186
3187  /*
3188  * - LGPL
3189  *
3190  * nav group
3191  * 
3192  */
3193
3194 /**
3195  * @class Roo.bootstrap.NavGroup
3196  * @extends Roo.bootstrap.Component
3197  * Bootstrap NavGroup class
3198  * @cfg {String} align left | right
3199  * @cfg {Boolean} inverse false | true
3200  * @cfg {String} type (nav|pills|tab) default nav
3201  * @cfg {String} navId - reference Id for navbar.
3202
3203  * 
3204  * @constructor
3205  * Create a new nav group
3206  * @param {Object} config The config object
3207  */
3208
3209 Roo.bootstrap.NavGroup = function(config){
3210     Roo.bootstrap.NavGroup.superclass.constructor.call(this, config);
3211     this.navItems = [];
3212    
3213     Roo.bootstrap.NavGroup.register(this);
3214      this.addEvents({
3215         /**
3216              * @event changed
3217              * Fires when the active item changes
3218              * @param {Roo.bootstrap.NavGroup} this
3219              * @param {Roo.bootstrap.Navbar.Item} item The item selected
3220              * @param {Roo.bootstrap.Navbar.Item} item The previously selected item 
3221          */
3222         'changed': true
3223      });
3224     
3225 };
3226
3227 Roo.extend(Roo.bootstrap.NavGroup, Roo.bootstrap.Component,  {
3228     
3229     align: '',
3230     inverse: false,
3231     form: false,
3232     type: 'nav',
3233     navId : '',
3234     // private
3235     
3236     navItems : false, 
3237     
3238     getAutoCreate : function()
3239     {
3240         var cfg = Roo.apply({}, Roo.bootstrap.NavGroup.superclass.getAutoCreate.call(this));
3241         
3242         cfg = {
3243             tag : 'ul',
3244             cls: 'nav' 
3245         }
3246         
3247         if (['tabs','pills'].indexOf(this.type)!==-1) {
3248             cfg.cls += ' nav-' + this.type
3249         } else {
3250             if (this.type!=='nav') {
3251                 Roo.log('nav type must be nav/tabs/pills')
3252             }
3253             cfg.cls += ' navbar-nav'
3254         }
3255         
3256         if (this.parent().sidebar) {
3257             cfg = {
3258                 tag: 'ul',
3259                 cls: 'dashboard-menu sidebar-menu'
3260             }
3261             
3262             return cfg;
3263         }
3264         
3265         if (this.form === true) {
3266             cfg = {
3267                 tag: 'form',
3268                 cls: 'navbar-form'
3269             }
3270             
3271             if (this.align === 'right') {
3272                 cfg.cls += ' navbar-right';
3273             } else {
3274                 cfg.cls += ' navbar-left';
3275             }
3276         }
3277         
3278         if (this.align === 'right') {
3279             cfg.cls += ' navbar-right';
3280         }
3281         
3282         if (this.inverse) {
3283             cfg.cls += ' navbar-inverse';
3284             
3285         }
3286         
3287         
3288         return cfg;
3289     },
3290     /**
3291     * sets the active Navigation item
3292     * @param {Roo.bootstrap.NavItem} the new current navitem
3293     */
3294     setActiveItem : function(item)
3295     {
3296         var prev = false;
3297         Roo.each(this.navItems, function(v){
3298             if (v == item) {
3299                 return ;
3300             }
3301             if (v.isActive()) {
3302                 v.setActive(false, true);
3303                 prev = v;
3304                 
3305             }
3306             
3307         });
3308
3309         item.setActive(true, true);
3310         this.fireEvent('changed', this, item, prev);
3311         
3312         
3313     },
3314     /**
3315     * gets the active Navigation item
3316     * @return {Roo.bootstrap.NavItem} the current navitem
3317     */
3318     getActive : function()
3319     {
3320         
3321         var prev = false;
3322         Roo.each(this.navItems, function(v){
3323             
3324             if (v.isActive()) {
3325                 prev = v;
3326                 
3327             }
3328             
3329         });
3330         return prev;
3331     },
3332     
3333     indexOfNav : function()
3334     {
3335         
3336         var prev = false;
3337         Roo.each(this.navItems, function(v,i){
3338             
3339             if (v.isActive()) {
3340                 prev = i;
3341                 
3342             }
3343             
3344         });
3345         return prev;
3346     },
3347     /**
3348     * adds a Navigation item
3349     * @param {Roo.bootstrap.NavItem} the navitem to add
3350     */
3351     addItem : function(cfg)
3352     {
3353         var cn = new Roo.bootstrap.NavItem(cfg);
3354         this.register(cn);
3355         cn.parentId = this.id;
3356         cn.onRender(this.el, null);
3357         return cn;
3358     },
3359     /**
3360     * register a Navigation item
3361     * @param {Roo.bootstrap.NavItem} the navitem to add
3362     */
3363     register : function(item)
3364     {
3365         this.navItems.push( item);
3366         item.navId = this.navId;
3367     
3368     },
3369   
3370     
3371     getNavItem: function(tabId)
3372     {
3373         var ret = false;
3374         Roo.each(this.navItems, function(e) {
3375             if (e.tabId == tabId) {
3376                ret =  e;
3377                return false;
3378             }
3379             return true;
3380             
3381         });
3382         return ret;
3383     },
3384     
3385     setActiveNext : function()
3386     {
3387         var i = this.indexOfNav(this.getActive());
3388         if (i > this.navItems.length) {
3389             return;
3390         }
3391         this.setActiveItem(this.navItems[i+1]);
3392     },
3393     setActivePrev : function()
3394     {
3395         var i = this.indexOfNav(this.getActive());
3396         if (i  < 1) {
3397             return;
3398         }
3399         this.setActiveItem(this.navItems[i-1]);
3400     },
3401     clearWasActive : function(except) {
3402         Roo.each(this.navItems, function(e) {
3403             if (e.tabId != except.tabId && e.was_active) {
3404                e.was_active = false;
3405                return false;
3406             }
3407             return true;
3408             
3409         });
3410     },
3411     getWasActive : function ()
3412     {
3413         var r = false;
3414         Roo.each(this.navItems, function(e) {
3415             if (e.was_active) {
3416                r = e;
3417                return false;
3418             }
3419             return true;
3420             
3421         });
3422         return r;
3423     }
3424     
3425     
3426 });
3427
3428  
3429 Roo.apply(Roo.bootstrap.NavGroup, {
3430     
3431     groups: {},
3432      /**
3433     * register a Navigation Group
3434     * @param {Roo.bootstrap.NavGroup} the navgroup to add
3435     */
3436     register : function(navgrp)
3437     {
3438         this.groups[navgrp.navId] = navgrp;
3439         
3440     },
3441     /**
3442     * fetch a Navigation Group based on the navigation ID
3443     * @param {string} the navgroup to add
3444     * @returns {Roo.bootstrap.NavGroup} the navgroup 
3445     */
3446     get: function(navId) {
3447         if (typeof(this.groups[navId]) == 'undefined') {
3448             return false;
3449             //this.register(new Roo.bootstrap.NavGroup({ navId : navId }));
3450         }
3451         return this.groups[navId] ;
3452     }
3453     
3454     
3455     
3456 });
3457
3458  /*
3459  * - LGPL
3460  *
3461  * row
3462  * 
3463  */
3464
3465 /**
3466  * @class Roo.bootstrap.NavItem
3467  * @extends Roo.bootstrap.Component
3468  * Bootstrap Navbar.NavItem class
3469  * @cfg {String} href  link to
3470  * @cfg {String} html content of button
3471  * @cfg {String} badge text inside badge
3472  * @cfg {String} badgecls (bg-green|bg-red|bg-yellow)the extra classes for the badge
3473  * @cfg {String} glyphicon name of glyphicon
3474  * @cfg {String} icon name of font awesome icon
3475  * @cfg {Boolean} active Is item active
3476  * @cfg {Boolean} disabled Is item disabled
3477  
3478  * @cfg {Boolean} preventDefault (true | false) default false
3479  * @cfg {String} tabId the tab that this item activates.
3480  * @cfg {String} tagtype (a|span) render as a href or span?
3481   
3482  * @constructor
3483  * Create a new Navbar Item
3484  * @param {Object} config The config object
3485  */
3486 Roo.bootstrap.NavItem = function(config){
3487     Roo.bootstrap.NavItem.superclass.constructor.call(this, config);
3488     this.addEvents({
3489         // raw events
3490         /**
3491          * @event click
3492          * The raw click event for the entire grid.
3493          * @param {Roo.EventObject} e
3494          */
3495         "click" : true,
3496          /**
3497             * @event changed
3498             * Fires when the active item active state changes
3499             * @param {Roo.bootstrap.NavItem} this
3500             * @param {boolean} state the new state
3501              
3502          */
3503         'changed': true
3504     });
3505    
3506 };
3507
3508 Roo.extend(Roo.bootstrap.NavItem, Roo.bootstrap.Component,  {
3509     
3510     href: false,
3511     html: '',
3512     badge: '',
3513     icon: false,
3514     glyphicon: false,
3515     active: false,
3516     preventDefault : false,
3517     tabId : false,
3518     tagtype : 'a',
3519     disabled : false,
3520     
3521     was_active : false,
3522     
3523     getAutoCreate : function(){
3524          
3525         var cfg = {
3526             tag: 'li',
3527             cls: 'nav-item'
3528             
3529         }
3530         if (this.active) {
3531             cfg.cls = typeof(cfg.cls) == 'undefined' ? 'active' : cfg.cls + ' active';
3532         }
3533         if (this.disabled) {
3534             cfg.cls += ' disabled';
3535         }
3536         
3537         if (this.href || this.html || this.glyphicon || this.icon) {
3538             cfg.cn = [
3539                 {
3540                     tag: this.tagtype,
3541                     href : this.href || "#",
3542                     html: this.html || ''
3543                 }
3544             ];
3545             
3546             if (this.icon) {
3547                 cfg.cn[0].html = '<i class="'+this.icon+'"></i> <span>' + cfg.cn[0].html + '</span>'
3548             }
3549
3550             if(this.glyphicon) {
3551                 cfg.cn[0].html = '<span class="glyphicon glyphicon-' + this.glyphicon + '"></span> '  + cfg.cn[0].html;
3552             }
3553             
3554             if (this.menu) {
3555                 
3556                 cfg.cn[0].html += " <span class='caret'></span>";
3557              
3558             }
3559             
3560             if (this.badge !== '') {
3561                  
3562                 cfg.cn[0].html += ' <span class="badge">' + this.badge + '</span>';
3563             }
3564         }
3565         
3566         
3567         
3568         return cfg;
3569     },
3570     initEvents: function() {
3571        // Roo.log('init events?');
3572        // Roo.log(this.el.dom);
3573         if (typeof (this.menu) != 'undefined') {
3574             this.menu.parentType = this.xtype;
3575             this.menu.triggerEl = this.el;
3576             this.addxtype(Roo.apply({}, this.menu));
3577         }
3578
3579        
3580         this.el.select('a',true).on('click', this.onClick, this);
3581         // at this point parent should be available..
3582         this.parent().register(this);
3583     },
3584     
3585     onClick : function(e)
3586     {
3587          
3588         if(this.preventDefault){
3589             e.preventDefault();
3590         }
3591         if (this.disabled) {
3592             return;
3593         }
3594         
3595         var tg = Roo.bootstrap.TabGroup.get(this.navId);
3596         if (tg && tg.transition) {
3597             Roo.log("waiting for the transitionend");
3598             return;
3599         }
3600         
3601         Roo.log("fire event clicked");
3602         if(this.fireEvent('click', this, e) === false){
3603             return;
3604         };
3605         
3606         if (['tabs','pills'].indexOf(this.parent().type)!==-1) {
3607             if (typeof(this.parent().setActiveItem) !== 'undefined') {
3608                 this.parent().setActiveItem(this);
3609             }
3610         } 
3611     },
3612     
3613     isActive: function () {
3614         return this.active
3615     },
3616     setActive : function(state, fire, is_was_active)
3617     {
3618         if (this.active && !state & this.navId) {
3619             this.was_active = true;
3620             var nv = Roo.bootstrap.NavGroup.get(this.navId);
3621             if (nv) {
3622                 nv.clearWasActive(this);
3623             }
3624             
3625         }
3626         this.active = state;
3627         
3628         if (!state ) {
3629             this.el.removeClass('active');
3630         } else if (!this.el.hasClass('active')) {
3631             this.el.addClass('active');
3632         }
3633         if (fire) {
3634             this.fireEvent('changed', this, state);
3635         }
3636         
3637         // show a panel if it's registered and related..
3638         
3639         if (!this.navId || !this.tabId || !state || is_was_active) {
3640             return;
3641         }
3642         
3643         var tg = Roo.bootstrap.TabGroup.get(this.navId);
3644         if (!tg) {
3645             return;
3646         }
3647         var pan = tg.getPanelByName(this.tabId);
3648         if (!pan) {
3649             return;
3650         }
3651         // if we can not flip to new panel - go back to old nav highlight..
3652         if (false == tg.showPanel(pan)) {
3653             var nv = Roo.bootstrap.NavGroup.get(this.navId);
3654             if (nv) {
3655                 var onav = nv.getWasActive();
3656                 if (onav) {
3657                     onav.setActive(true, false, true);
3658                 }
3659             }
3660             
3661         }
3662         
3663         
3664         
3665     },
3666      // this should not be here...
3667     setDisabled : function(state)
3668     {
3669         this.disabled = state;
3670         if (!state ) {
3671             this.el.removeClass('disabled');
3672         } else if (!this.el.hasClass('disabled')) {
3673             this.el.addClass('disabled');
3674         }
3675         
3676     }
3677 });
3678  
3679
3680  /*
3681  * - LGPL
3682  *
3683  * sidebar item
3684  *
3685  *  li
3686  *    <span> icon </span>
3687  *    <span> text </span>
3688  *    <span>badge </span>
3689  */
3690
3691 /**
3692  * @class Roo.bootstrap.NavSidebarItem
3693  * @extends Roo.bootstrap.NavItem
3694  * Bootstrap Navbar.NavSidebarItem class
3695  * @constructor
3696  * Create a new Navbar Button
3697  * @param {Object} config The config object
3698  */
3699 Roo.bootstrap.NavSidebarItem = function(config){
3700     Roo.bootstrap.NavSidebarItem.superclass.constructor.call(this, config);
3701     this.addEvents({
3702         // raw events
3703         /**
3704          * @event click
3705          * The raw click event for the entire grid.
3706          * @param {Roo.EventObject} e
3707          */
3708         "click" : true,
3709          /**
3710             * @event changed
3711             * Fires when the active item active state changes
3712             * @param {Roo.bootstrap.NavSidebarItem} this
3713             * @param {boolean} state the new state
3714              
3715          */
3716         'changed': true
3717     });
3718    
3719 };
3720
3721 Roo.extend(Roo.bootstrap.NavSidebarItem, Roo.bootstrap.NavItem,  {
3722     
3723     
3724     getAutoCreate : function(){
3725         
3726         
3727         var a = {
3728                 tag: 'a',
3729                 href : this.href || '#',
3730                 cls: '',
3731                 html : '',
3732                 cn : []
3733         };
3734         var cfg = {
3735             tag: 'li',
3736             cls: '',
3737             cn: [ a ]
3738         }
3739         var span = {
3740             tag: 'span',
3741             html : this.html || ''
3742         }
3743         
3744         
3745         if (this.active) {
3746             cfg.cls += ' active';
3747         }
3748         
3749         // left icon..
3750         if (this.glyphicon || this.icon) {
3751             var c = this.glyphicon  ? ('glyphicon glyphicon-'+this.glyphicon)  : this.icon;
3752             a.cn.push({ tag : 'i', cls : c }) ;
3753         }
3754         // html..
3755         a.cn.push(span);
3756         // then badge..
3757         if (this.badge !== '') {
3758             a.cn.push({ tag: 'span',  cls : 'badge pull-right ' + (this.badgecls || ''), html: this.badge }); 
3759         }
3760         // fi
3761         if (this.menu) {
3762             a.cn.push({ tag : 'i', cls : 'glyphicon glyphicon-chevron-down pull-right'});
3763             a.cls += 'dropdown-toggle treeview' ;
3764             
3765         }
3766         
3767         
3768         
3769         return cfg;
3770          
3771            
3772     }
3773    
3774      
3775  
3776 });
3777  
3778
3779  /*
3780  * - LGPL
3781  *
3782  * row
3783  * 
3784  */
3785
3786 /**
3787  * @class Roo.bootstrap.Row
3788  * @extends Roo.bootstrap.Component
3789  * Bootstrap Row class (contains columns...)
3790  * 
3791  * @constructor
3792  * Create a new Row
3793  * @param {Object} config The config object
3794  */
3795
3796 Roo.bootstrap.Row = function(config){
3797     Roo.bootstrap.Row.superclass.constructor.call(this, config);
3798 };
3799
3800 Roo.extend(Roo.bootstrap.Row, Roo.bootstrap.Component,  {
3801     
3802     getAutoCreate : function(){
3803        return {
3804             cls: 'row clearfix'
3805        };
3806     }
3807     
3808     
3809 });
3810
3811  
3812
3813  /*
3814  * - LGPL
3815  *
3816  * element
3817  * 
3818  */
3819
3820 /**
3821  * @class Roo.bootstrap.Element
3822  * @extends Roo.bootstrap.Component
3823  * Bootstrap Element class
3824  * @cfg {String} html contents of the element
3825  * @cfg {String} tag tag of the element
3826  * @cfg {String} cls class of the element
3827  * 
3828  * @constructor
3829  * Create a new Element
3830  * @param {Object} config The config object
3831  */
3832
3833 Roo.bootstrap.Element = function(config){
3834     Roo.bootstrap.Element.superclass.constructor.call(this, config);
3835 };
3836
3837 Roo.extend(Roo.bootstrap.Element, Roo.bootstrap.Component,  {
3838     
3839     tag: 'div',
3840     cls: '',
3841     html: '',
3842      
3843     
3844     getAutoCreate : function(){
3845         
3846         var cfg = {
3847             tag: this.tag,
3848             cls: this.cls,
3849             html: this.html
3850         }
3851         
3852         
3853         
3854         return cfg;
3855     }
3856    
3857 });
3858
3859  
3860
3861  /*
3862  * - LGPL
3863  *
3864  * pagination
3865  * 
3866  */
3867
3868 /**
3869  * @class Roo.bootstrap.Pagination
3870  * @extends Roo.bootstrap.Component
3871  * Bootstrap Pagination class
3872  * @cfg {String} size xs | sm | md | lg
3873  * @cfg {Boolean} inverse false | true
3874  * 
3875  * @constructor
3876  * Create a new Pagination
3877  * @param {Object} config The config object
3878  */
3879
3880 Roo.bootstrap.Pagination = function(config){
3881     Roo.bootstrap.Pagination.superclass.constructor.call(this, config);
3882 };
3883
3884 Roo.extend(Roo.bootstrap.Pagination, Roo.bootstrap.Component,  {
3885     
3886     cls: false,
3887     size: false,
3888     inverse: false,
3889     
3890     getAutoCreate : function(){
3891         var cfg = {
3892             tag: 'ul',
3893                 cls: 'pagination'
3894         };
3895         if (this.inverse) {
3896             cfg.cls += ' inverse';
3897         }
3898         if (this.html) {
3899             cfg.html=this.html;
3900         }
3901         if (this.cls) {
3902             cfg.cls += " " + this.cls;
3903         }
3904         return cfg;
3905     }
3906    
3907 });
3908
3909  
3910
3911  /*
3912  * - LGPL
3913  *
3914  * Pagination item
3915  * 
3916  */
3917
3918
3919 /**
3920  * @class Roo.bootstrap.PaginationItem
3921  * @extends Roo.bootstrap.Component
3922  * Bootstrap PaginationItem class
3923  * @cfg {String} html text
3924  * @cfg {String} href the link
3925  * @cfg {Boolean} preventDefault (true | false) default true
3926  * @cfg {Boolean} active (true | false) default false
3927  * 
3928  * 
3929  * @constructor
3930  * Create a new PaginationItem
3931  * @param {Object} config The config object
3932  */
3933
3934
3935 Roo.bootstrap.PaginationItem = function(config){
3936     Roo.bootstrap.PaginationItem.superclass.constructor.call(this, config);
3937     this.addEvents({
3938         // raw events
3939         /**
3940          * @event click
3941          * The raw click event for the entire grid.
3942          * @param {Roo.EventObject} e
3943          */
3944         "click" : true
3945     });
3946 };
3947
3948 Roo.extend(Roo.bootstrap.PaginationItem, Roo.bootstrap.Component,  {
3949     
3950     href : false,
3951     html : false,
3952     preventDefault: true,
3953     active : false,
3954     cls : false,
3955     
3956     getAutoCreate : function(){
3957         var cfg= {
3958             tag: 'li',
3959             cn: [
3960                 {
3961                     tag : 'a',
3962                     href : this.href ? this.href : '#',
3963                     html : this.html ? this.html : ''
3964                 }
3965             ]
3966         };
3967         
3968         if(this.cls){
3969             cfg.cls = this.cls;
3970         }
3971         
3972         if(this.active){
3973             cfg.cls = typeof(cfg.cls) !== 'undefined' ? cfg.cls + ' active' : 'active';
3974         }
3975         
3976         return cfg;
3977     },
3978     
3979     initEvents: function() {
3980         
3981         this.el.on('click', this.onClick, this);
3982         
3983     },
3984     onClick : function(e)
3985     {
3986         Roo.log('PaginationItem on click ');
3987         if(this.preventDefault){
3988             e.preventDefault();
3989         }
3990         
3991         this.fireEvent('click', this, e);
3992     }
3993    
3994 });
3995
3996  
3997
3998  /*
3999  * - LGPL
4000  *
4001  * slider
4002  * 
4003  */
4004
4005
4006 /**
4007  * @class Roo.bootstrap.Slider
4008  * @extends Roo.bootstrap.Component
4009  * Bootstrap Slider class
4010  *    
4011  * @constructor
4012  * Create a new Slider
4013  * @param {Object} config The config object
4014  */
4015
4016 Roo.bootstrap.Slider = function(config){
4017     Roo.bootstrap.Slider.superclass.constructor.call(this, config);
4018 };
4019
4020 Roo.extend(Roo.bootstrap.Slider, Roo.bootstrap.Component,  {
4021     
4022     getAutoCreate : function(){
4023         
4024         var cfg = {
4025             tag: 'div',
4026             cls: 'slider slider-sample1 vertical-handler ui-slider ui-slider-horizontal ui-widget ui-widget-content ui-corner-all',
4027             cn: [
4028                 {
4029                     tag: 'a',
4030                     cls: 'ui-slider-handle ui-state-default ui-corner-all'
4031                 }
4032             ]
4033         }
4034         
4035         return cfg;
4036     }
4037    
4038 });
4039
4040  /*
4041  * Based on:
4042  * Ext JS Library 1.1.1
4043  * Copyright(c) 2006-2007, Ext JS, LLC.
4044  *
4045  * Originally Released Under LGPL - original licence link has changed is not relivant.
4046  *
4047  * Fork - LGPL
4048  * <script type="text/javascript">
4049  */
4050  
4051
4052 /**
4053  * @class Roo.grid.ColumnModel
4054  * @extends Roo.util.Observable
4055  * This is the default implementation of a ColumnModel used by the Grid. It defines
4056  * the columns in the grid.
4057  * <br>Usage:<br>
4058  <pre><code>
4059  var colModel = new Roo.grid.ColumnModel([
4060         {header: "Ticker", width: 60, sortable: true, locked: true},
4061         {header: "Company Name", width: 150, sortable: true},
4062         {header: "Market Cap.", width: 100, sortable: true},
4063         {header: "$ Sales", width: 100, sortable: true, renderer: money},
4064         {header: "Employees", width: 100, sortable: true, resizable: false}
4065  ]);
4066  </code></pre>
4067  * <p>
4068  
4069  * The config options listed for this class are options which may appear in each
4070  * individual column definition.
4071  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
4072  * @constructor
4073  * @param {Object} config An Array of column config objects. See this class's
4074  * config objects for details.
4075 */
4076 Roo.grid.ColumnModel = function(config){
4077         /**
4078      * The config passed into the constructor
4079      */
4080     this.config = config;
4081     this.lookup = {};
4082
4083     // if no id, create one
4084     // if the column does not have a dataIndex mapping,
4085     // map it to the order it is in the config
4086     for(var i = 0, len = config.length; i < len; i++){
4087         var c = config[i];
4088         if(typeof c.dataIndex == "undefined"){
4089             c.dataIndex = i;
4090         }
4091         if(typeof c.renderer == "string"){
4092             c.renderer = Roo.util.Format[c.renderer];
4093         }
4094         if(typeof c.id == "undefined"){
4095             c.id = Roo.id();
4096         }
4097         if(c.editor && c.editor.xtype){
4098             c.editor  = Roo.factory(c.editor, Roo.grid);
4099         }
4100         if(c.editor && c.editor.isFormField){
4101             c.editor = new Roo.grid.GridEditor(c.editor);
4102         }
4103         this.lookup[c.id] = c;
4104     }
4105
4106     /**
4107      * The width of columns which have no width specified (defaults to 100)
4108      * @type Number
4109      */
4110     this.defaultWidth = 100;
4111
4112     /**
4113      * Default sortable of columns which have no sortable specified (defaults to false)
4114      * @type Boolean
4115      */
4116     this.defaultSortable = false;
4117
4118     this.addEvents({
4119         /**
4120              * @event widthchange
4121              * Fires when the width of a column changes.
4122              * @param {ColumnModel} this
4123              * @param {Number} columnIndex The column index
4124              * @param {Number} newWidth The new width
4125              */
4126             "widthchange": true,
4127         /**
4128              * @event headerchange
4129              * Fires when the text of a header changes.
4130              * @param {ColumnModel} this
4131              * @param {Number} columnIndex The column index
4132              * @param {Number} newText The new header text
4133              */
4134             "headerchange": true,
4135         /**
4136              * @event hiddenchange
4137              * Fires when a column is hidden or "unhidden".
4138              * @param {ColumnModel} this
4139              * @param {Number} columnIndex The column index
4140              * @param {Boolean} hidden true if hidden, false otherwise
4141              */
4142             "hiddenchange": true,
4143             /**
4144          * @event columnmoved
4145          * Fires when a column is moved.
4146          * @param {ColumnModel} this
4147          * @param {Number} oldIndex
4148          * @param {Number} newIndex
4149          */
4150         "columnmoved" : true,
4151         /**
4152          * @event columlockchange
4153          * Fires when a column's locked state is changed
4154          * @param {ColumnModel} this
4155          * @param {Number} colIndex
4156          * @param {Boolean} locked true if locked
4157          */
4158         "columnlockchange" : true
4159     });
4160     Roo.grid.ColumnModel.superclass.constructor.call(this);
4161 };
4162 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
4163     /**
4164      * @cfg {String} header The header text to display in the Grid view.
4165      */
4166     /**
4167      * @cfg {String} dataIndex (Optional) The name of the field in the grid's {@link Roo.data.Store}'s
4168      * {@link Roo.data.Record} definition from which to draw the column's value. If not
4169      * specified, the column's index is used as an index into the Record's data Array.
4170      */
4171     /**
4172      * @cfg {Number} width (Optional) The initial width in pixels of the column. Using this
4173      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
4174      */
4175     /**
4176      * @cfg {Boolean} sortable (Optional) True if sorting is to be allowed on this column.
4177      * Defaults to the value of the {@link #defaultSortable} property.
4178      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
4179      */
4180     /**
4181      * @cfg {Boolean} locked (Optional) True to lock the column in place while scrolling the Grid.  Defaults to false.
4182      */
4183     /**
4184      * @cfg {Boolean} fixed (Optional) True if the column width cannot be changed.  Defaults to false.
4185      */
4186     /**
4187      * @cfg {Boolean} resizable (Optional) False to disable column resizing. Defaults to true.
4188      */
4189     /**
4190      * @cfg {Boolean} hidden (Optional) True to hide the column. Defaults to false.
4191      */
4192     /**
4193      * @cfg {Function} renderer (Optional) A function used to generate HTML markup for a cell
4194      * given the cell's data value. See {@link #setRenderer}. If not specified, the
4195      * default renderer uses the raw data value. If an object is returned (bootstrap only)
4196      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
4197      */
4198        /**
4199      * @cfg {Roo.grid.GridEditor} editor (Optional) For grid editors - returns the grid editor 
4200      */
4201     /**
4202      * @cfg {String} align (Optional) Set the CSS text-align property of the column.  Defaults to undefined.
4203      */
4204
4205     /**
4206      * Returns the id of the column at the specified index.
4207      * @param {Number} index The column index
4208      * @return {String} the id
4209      */
4210     getColumnId : function(index){
4211         return this.config[index].id;
4212     },
4213
4214     /**
4215      * Returns the column for a specified id.
4216      * @param {String} id The column id
4217      * @return {Object} the column
4218      */
4219     getColumnById : function(id){
4220         return this.lookup[id];
4221     },
4222
4223     
4224     /**
4225      * Returns the column for a specified dataIndex.
4226      * @param {String} dataIndex The column dataIndex
4227      * @return {Object|Boolean} the column or false if not found
4228      */
4229     getColumnByDataIndex: function(dataIndex){
4230         var index = this.findColumnIndex(dataIndex);
4231         return index > -1 ? this.config[index] : false;
4232     },
4233     
4234     /**
4235      * Returns the index for a specified column id.
4236      * @param {String} id The column id
4237      * @return {Number} the index, or -1 if not found
4238      */
4239     getIndexById : function(id){
4240         for(var i = 0, len = this.config.length; i < len; i++){
4241             if(this.config[i].id == id){
4242                 return i;
4243             }
4244         }
4245         return -1;
4246     },
4247     
4248     /**
4249      * Returns the index for a specified column dataIndex.
4250      * @param {String} dataIndex The column dataIndex
4251      * @return {Number} the index, or -1 if not found
4252      */
4253     
4254     findColumnIndex : function(dataIndex){
4255         for(var i = 0, len = this.config.length; i < len; i++){
4256             if(this.config[i].dataIndex == dataIndex){
4257                 return i;
4258             }
4259         }
4260         return -1;
4261     },
4262     
4263     
4264     moveColumn : function(oldIndex, newIndex){
4265         var c = this.config[oldIndex];
4266         this.config.splice(oldIndex, 1);
4267         this.config.splice(newIndex, 0, c);
4268         this.dataMap = null;
4269         this.fireEvent("columnmoved", this, oldIndex, newIndex);
4270     },
4271
4272     isLocked : function(colIndex){
4273         return this.config[colIndex].locked === true;
4274     },
4275
4276     setLocked : function(colIndex, value, suppressEvent){
4277         if(this.isLocked(colIndex) == value){
4278             return;
4279         }
4280         this.config[colIndex].locked = value;
4281         if(!suppressEvent){
4282             this.fireEvent("columnlockchange", this, colIndex, value);
4283         }
4284     },
4285
4286     getTotalLockedWidth : function(){
4287         var totalWidth = 0;
4288         for(var i = 0; i < this.config.length; i++){
4289             if(this.isLocked(i) && !this.isHidden(i)){
4290                 this.totalWidth += this.getColumnWidth(i);
4291             }
4292         }
4293         return totalWidth;
4294     },
4295
4296     getLockedCount : function(){
4297         for(var i = 0, len = this.config.length; i < len; i++){
4298             if(!this.isLocked(i)){
4299                 return i;
4300             }
4301         }
4302     },
4303
4304     /**
4305      * Returns the number of columns.
4306      * @return {Number}
4307      */
4308     getColumnCount : function(visibleOnly){
4309         if(visibleOnly === true){
4310             var c = 0;
4311             for(var i = 0, len = this.config.length; i < len; i++){
4312                 if(!this.isHidden(i)){
4313                     c++;
4314                 }
4315             }
4316             return c;
4317         }
4318         return this.config.length;
4319     },
4320
4321     /**
4322      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
4323      * @param {Function} fn
4324      * @param {Object} scope (optional)
4325      * @return {Array} result
4326      */
4327     getColumnsBy : function(fn, scope){
4328         var r = [];
4329         for(var i = 0, len = this.config.length; i < len; i++){
4330             var c = this.config[i];
4331             if(fn.call(scope||this, c, i) === true){
4332                 r[r.length] = c;
4333             }
4334         }
4335         return r;
4336     },
4337
4338     /**
4339      * Returns true if the specified column is sortable.
4340      * @param {Number} col The column index
4341      * @return {Boolean}
4342      */
4343     isSortable : function(col){
4344         if(typeof this.config[col].sortable == "undefined"){
4345             return this.defaultSortable;
4346         }
4347         return this.config[col].sortable;
4348     },
4349
4350     /**
4351      * Returns the rendering (formatting) function defined for the column.
4352      * @param {Number} col The column index.
4353      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
4354      */
4355     getRenderer : function(col){
4356         if(!this.config[col].renderer){
4357             return Roo.grid.ColumnModel.defaultRenderer;
4358         }
4359         return this.config[col].renderer;
4360     },
4361
4362     /**
4363      * Sets the rendering (formatting) function for a column.
4364      * @param {Number} col The column index
4365      * @param {Function} fn The function to use to process the cell's raw data
4366      * to return HTML markup for the grid view. The render function is called with
4367      * the following parameters:<ul>
4368      * <li>Data value.</li>
4369      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
4370      * <li>css A CSS style string to apply to the table cell.</li>
4371      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
4372      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
4373      * <li>Row index</li>
4374      * <li>Column index</li>
4375      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
4376      */
4377     setRenderer : function(col, fn){
4378         this.config[col].renderer = fn;
4379     },
4380
4381     /**
4382      * Returns the width for the specified column.
4383      * @param {Number} col The column index
4384      * @return {Number}
4385      */
4386     getColumnWidth : function(col){
4387         return this.config[col].width * 1 || this.defaultWidth;
4388     },
4389
4390     /**
4391      * Sets the width for a column.
4392      * @param {Number} col The column index
4393      * @param {Number} width The new width
4394      */
4395     setColumnWidth : function(col, width, suppressEvent){
4396         this.config[col].width = width;
4397         this.totalWidth = null;
4398         if(!suppressEvent){
4399              this.fireEvent("widthchange", this, col, width);
4400         }
4401     },
4402
4403     /**
4404      * Returns the total width of all columns.
4405      * @param {Boolean} includeHidden True to include hidden column widths
4406      * @return {Number}
4407      */
4408     getTotalWidth : function(includeHidden){
4409         if(!this.totalWidth){
4410             this.totalWidth = 0;
4411             for(var i = 0, len = this.config.length; i < len; i++){
4412                 if(includeHidden || !this.isHidden(i)){
4413                     this.totalWidth += this.getColumnWidth(i);
4414                 }
4415             }
4416         }
4417         return this.totalWidth;
4418     },
4419
4420     /**
4421      * Returns the header for the specified column.
4422      * @param {Number} col The column index
4423      * @return {String}
4424      */
4425     getColumnHeader : function(col){
4426         return this.config[col].header;
4427     },
4428
4429     /**
4430      * Sets the header for a column.
4431      * @param {Number} col The column index
4432      * @param {String} header The new header
4433      */
4434     setColumnHeader : function(col, header){
4435         this.config[col].header = header;
4436         this.fireEvent("headerchange", this, col, header);
4437     },
4438
4439     /**
4440      * Returns the tooltip for the specified column.
4441      * @param {Number} col The column index
4442      * @return {String}
4443      */
4444     getColumnTooltip : function(col){
4445             return this.config[col].tooltip;
4446     },
4447     /**
4448      * Sets the tooltip for a column.
4449      * @param {Number} col The column index
4450      * @param {String} tooltip The new tooltip
4451      */
4452     setColumnTooltip : function(col, tooltip){
4453             this.config[col].tooltip = tooltip;
4454     },
4455
4456     /**
4457      * Returns the dataIndex for the specified column.
4458      * @param {Number} col The column index
4459      * @return {Number}
4460      */
4461     getDataIndex : function(col){
4462         return this.config[col].dataIndex;
4463     },
4464
4465     /**
4466      * Sets the dataIndex for a column.
4467      * @param {Number} col The column index
4468      * @param {Number} dataIndex The new dataIndex
4469      */
4470     setDataIndex : function(col, dataIndex){
4471         this.config[col].dataIndex = dataIndex;
4472     },
4473
4474     
4475     
4476     /**
4477      * Returns true if the cell is editable.
4478      * @param {Number} colIndex The column index
4479      * @param {Number} rowIndex The row index
4480      * @return {Boolean}
4481      */
4482     isCellEditable : function(colIndex, rowIndex){
4483         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
4484     },
4485
4486     /**
4487      * Returns the editor defined for the cell/column.
4488      * return false or null to disable editing.
4489      * @param {Number} colIndex The column index
4490      * @param {Number} rowIndex The row index
4491      * @return {Object}
4492      */
4493     getCellEditor : function(colIndex, rowIndex){
4494         return this.config[colIndex].editor;
4495     },
4496
4497     /**
4498      * Sets if a column is editable.
4499      * @param {Number} col The column index
4500      * @param {Boolean} editable True if the column is editable
4501      */
4502     setEditable : function(col, editable){
4503         this.config[col].editable = editable;
4504     },
4505
4506
4507     /**
4508      * Returns true if the column is hidden.
4509      * @param {Number} colIndex The column index
4510      * @return {Boolean}
4511      */
4512     isHidden : function(colIndex){
4513         return this.config[colIndex].hidden;
4514     },
4515
4516
4517     /**
4518      * Returns true if the column width cannot be changed
4519      */
4520     isFixed : function(colIndex){
4521         return this.config[colIndex].fixed;
4522     },
4523
4524     /**
4525      * Returns true if the column can be resized
4526      * @return {Boolean}
4527      */
4528     isResizable : function(colIndex){
4529         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
4530     },
4531     /**
4532      * Sets if a column is hidden.
4533      * @param {Number} colIndex The column index
4534      * @param {Boolean} hidden True if the column is hidden
4535      */
4536     setHidden : function(colIndex, hidden){
4537         this.config[colIndex].hidden = hidden;
4538         this.totalWidth = null;
4539         this.fireEvent("hiddenchange", this, colIndex, hidden);
4540     },
4541
4542     /**
4543      * Sets the editor for a column.
4544      * @param {Number} col The column index
4545      * @param {Object} editor The editor object
4546      */
4547     setEditor : function(col, editor){
4548         this.config[col].editor = editor;
4549     }
4550 });
4551
4552 Roo.grid.ColumnModel.defaultRenderer = function(value){
4553         if(typeof value == "string" && value.length < 1){
4554             return "&#160;";
4555         }
4556         return value;
4557 };
4558
4559 // Alias for backwards compatibility
4560 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
4561 /*
4562  * Based on:
4563  * Ext JS Library 1.1.1
4564  * Copyright(c) 2006-2007, Ext JS, LLC.
4565  *
4566  * Originally Released Under LGPL - original licence link has changed is not relivant.
4567  *
4568  * Fork - LGPL
4569  * <script type="text/javascript">
4570  */
4571  
4572 /**
4573  * @class Roo.LoadMask
4574  * A simple utility class for generically masking elements while loading data.  If the element being masked has
4575  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
4576  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
4577  * element's UpdateManager load indicator and will be destroyed after the initial load.
4578  * @constructor
4579  * Create a new LoadMask
4580  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
4581  * @param {Object} config The config object
4582  */
4583 Roo.LoadMask = function(el, config){
4584     this.el = Roo.get(el);
4585     Roo.apply(this, config);
4586     if(this.store){
4587         this.store.on('beforeload', this.onBeforeLoad, this);
4588         this.store.on('load', this.onLoad, this);
4589         this.store.on('loadexception', this.onLoadException, this);
4590         this.removeMask = false;
4591     }else{
4592         var um = this.el.getUpdateManager();
4593         um.showLoadIndicator = false; // disable the default indicator
4594         um.on('beforeupdate', this.onBeforeLoad, this);
4595         um.on('update', this.onLoad, this);
4596         um.on('failure', this.onLoad, this);
4597         this.removeMask = true;
4598     }
4599 };
4600
4601 Roo.LoadMask.prototype = {
4602     /**
4603      * @cfg {Boolean} removeMask
4604      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
4605      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
4606      */
4607     /**
4608      * @cfg {String} msg
4609      * The text to display in a centered loading message box (defaults to 'Loading...')
4610      */
4611     msg : 'Loading...',
4612     /**
4613      * @cfg {String} msgCls
4614      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
4615      */
4616     msgCls : 'x-mask-loading',
4617
4618     /**
4619      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
4620      * @type Boolean
4621      */
4622     disabled: false,
4623
4624     /**
4625      * Disables the mask to prevent it from being displayed
4626      */
4627     disable : function(){
4628        this.disabled = true;
4629     },
4630
4631     /**
4632      * Enables the mask so that it can be displayed
4633      */
4634     enable : function(){
4635         this.disabled = false;
4636     },
4637     
4638     onLoadException : function()
4639     {
4640         Roo.log(arguments);
4641         
4642         if (typeof(arguments[3]) != 'undefined') {
4643             Roo.MessageBox.alert("Error loading",arguments[3]);
4644         } 
4645         /*
4646         try {
4647             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
4648                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
4649             }   
4650         } catch(e) {
4651             
4652         }
4653         */
4654     
4655         
4656         
4657         this.el.unmask(this.removeMask);
4658     },
4659     // private
4660     onLoad : function()
4661     {
4662         this.el.unmask(this.removeMask);
4663     },
4664
4665     // private
4666     onBeforeLoad : function(){
4667         if(!this.disabled){
4668             this.el.mask(this.msg, this.msgCls);
4669         }
4670     },
4671
4672     // private
4673     destroy : function(){
4674         if(this.store){
4675             this.store.un('beforeload', this.onBeforeLoad, this);
4676             this.store.un('load', this.onLoad, this);
4677             this.store.un('loadexception', this.onLoadException, this);
4678         }else{
4679             var um = this.el.getUpdateManager();
4680             um.un('beforeupdate', this.onBeforeLoad, this);
4681             um.un('update', this.onLoad, this);
4682             um.un('failure', this.onLoad, this);
4683         }
4684     }
4685 };/*
4686  * - LGPL
4687  *
4688  * table
4689  * 
4690  */
4691
4692 /**
4693  * @class Roo.bootstrap.Table
4694  * @extends Roo.bootstrap.Component
4695  * Bootstrap Table class
4696  * @cfg {String} cls table class
4697  * @cfg {String} align (left|center|right) Specifies the alignment of a table according to surrounding text
4698  * @cfg {String} bgcolor Specifies the background color for a table
4699  * @cfg {Number} border Specifies whether the table cells should have borders or not
4700  * @cfg {Number} cellpadding Specifies the space between the cell wall and the cell content
4701  * @cfg {Number} cellspacing Specifies the space between cells
4702  * @cfg {String} frame Specifies which parts of the outside borders that should be visible
4703  * @cfg {String} rules Specifies which parts of the inside borders that should be visible
4704  * @cfg {String} sortable Specifies that the table should be sortable
4705  * @cfg {String} summary Specifies a summary of the content of a table
4706  * @cfg {Number} width Specifies the width of a table
4707  * @cfg {String} layout table layout (auto | fixed | initial | inherit)
4708  * 
4709  * @cfg {boolean} striped Should the rows be alternative striped
4710  * @cfg {boolean} bordered Add borders to the table
4711  * @cfg {boolean} hover Add hover highlighting
4712  * @cfg {boolean} condensed Format condensed
4713  * @cfg {boolean} responsive Format condensed
4714  * @cfg {Boolean} loadMask (true|false) default false
4715  * @cfg {Boolean} tfoot (true|false) generate tfoot, default true
4716  * @cfg {Boolean} thead (true|false) generate thead, default true
4717  * @cfg {Boolean} RowSelection (true|false) default false
4718  * @cfg {Boolean} CellSelection (true|false) default false
4719  *
4720  * @cfg {Roo.bootstrap.PagingToolbar} footer  a paging toolbar
4721  
4722  * 
4723  * @constructor
4724  * Create a new Table
4725  * @param {Object} config The config object
4726  */
4727
4728 Roo.bootstrap.Table = function(config){
4729     Roo.bootstrap.Table.superclass.constructor.call(this, config);
4730     
4731     if (this.sm) {
4732         this.selModel = Roo.factory(this.sm, Roo.bootstrap.Table);
4733         this.sm = this.selModel;
4734         this.sm.xmodule = this.xmodule || false;
4735     }
4736     if (this.cm && typeof(this.cm.config) == 'undefined') {
4737         this.colModel = new Roo.grid.ColumnModel(this.cm);
4738         this.cm = this.colModel;
4739         this.cm.xmodule = this.xmodule || false;
4740     }
4741     if (this.store) {
4742         this.store= Roo.factory(this.store, Roo.data);
4743         this.ds = this.store;
4744         this.ds.xmodule = this.xmodule || false;
4745          
4746     }
4747     if (this.footer && this.store) {
4748         this.footer.dataSource = this.ds;
4749         this.footer = Roo.factory(this.footer);
4750     }
4751     
4752     /** @private */
4753     this.addEvents({
4754         /**
4755          * @event cellclick
4756          * Fires when a cell is clicked
4757          * @param {Roo.bootstrap.Table} this
4758          * @param {Roo.Element} el
4759          * @param {Number} rowIndex
4760          * @param {Number} columnIndex
4761          * @param {Roo.EventObject} e
4762          */
4763         "cellclick" : true,
4764         /**
4765          * @event celldblclick
4766          * Fires when a cell is double clicked
4767          * @param {Roo.bootstrap.Table} this
4768          * @param {Roo.Element} el
4769          * @param {Number} rowIndex
4770          * @param {Number} columnIndex
4771          * @param {Roo.EventObject} e
4772          */
4773         "celldblclick" : true,
4774         /**
4775          * @event rowclick
4776          * Fires when a row is clicked
4777          * @param {Roo.bootstrap.Table} this
4778          * @param {Roo.Element} el
4779          * @param {Number} rowIndex
4780          * @param {Roo.EventObject} e
4781          */
4782         "rowclick" : true,
4783         /**
4784          * @event rowdblclick
4785          * Fires when a row is double clicked
4786          * @param {Roo.bootstrap.Table} this
4787          * @param {Roo.Element} el
4788          * @param {Number} rowIndex
4789          * @param {Roo.EventObject} e
4790          */
4791         "rowdblclick" : true,
4792         /**
4793          * @event mouseover
4794          * Fires when a mouseover occur
4795          * @param {Roo.bootstrap.Table} this
4796          * @param {Roo.Element} el
4797          * @param {Number} rowIndex
4798          * @param {Number} columnIndex
4799          * @param {Roo.EventObject} e
4800          */
4801         "mouseover" : true,
4802         /**
4803          * @event mouseout
4804          * Fires when a mouseout occur
4805          * @param {Roo.bootstrap.Table} this
4806          * @param {Roo.Element} el
4807          * @param {Number} rowIndex
4808          * @param {Number} columnIndex
4809          * @param {Roo.EventObject} e
4810          */
4811         "mouseout" : true,
4812         /**
4813          * @event rowclass
4814          * Fires when a row is rendered, so you can change add a style to it.
4815          * @param {Roo.bootstrap.Table} this
4816          * @param {Object} rowcfg   contains record  rowIndex colIndex and rowClass - set rowClass to add a style.
4817          */
4818         'rowclass' : true
4819         
4820     });
4821 };
4822
4823 Roo.extend(Roo.bootstrap.Table, Roo.bootstrap.Component,  {
4824     
4825     cls: false,
4826     align: false,
4827     bgcolor: false,
4828     border: false,
4829     cellpadding: false,
4830     cellspacing: false,
4831     frame: false,
4832     rules: false,
4833     sortable: false,
4834     summary: false,
4835     width: false,
4836     striped : false,
4837     bordered: false,
4838     hover:  false,
4839     condensed : false,
4840     responsive : false,
4841     sm : false,
4842     cm : false,
4843     store : false,
4844     loadMask : false,
4845     tfoot : true,
4846     thead : true,
4847     RowSelection : false,
4848     CellSelection : false,
4849     layout : false,
4850     
4851     // Roo.Element - the tbody
4852     mainBody: false, 
4853     
4854     getAutoCreate : function(){
4855         var cfg = Roo.apply({}, Roo.bootstrap.Table.superclass.getAutoCreate.call(this));
4856         
4857         cfg = {
4858             tag: 'table',
4859             cls : 'table',
4860             cn : []
4861         }
4862             
4863         if (this.striped) {
4864             cfg.cls += ' table-striped';
4865         }
4866         
4867         if (this.hover) {
4868             cfg.cls += ' table-hover';
4869         }
4870         if (this.bordered) {
4871             cfg.cls += ' table-bordered';
4872         }
4873         if (this.condensed) {
4874             cfg.cls += ' table-condensed';
4875         }
4876         if (this.responsive) {
4877             cfg.cls += ' table-responsive';
4878         }
4879         
4880         if (this.cls) {
4881             cfg.cls+=  ' ' +this.cls;
4882         }
4883         
4884         // this lot should be simplifed...
4885         
4886         if (this.align) {
4887             cfg.align=this.align;
4888         }
4889         if (this.bgcolor) {
4890             cfg.bgcolor=this.bgcolor;
4891         }
4892         if (this.border) {
4893             cfg.border=this.border;
4894         }
4895         if (this.cellpadding) {
4896             cfg.cellpadding=this.cellpadding;
4897         }
4898         if (this.cellspacing) {
4899             cfg.cellspacing=this.cellspacing;
4900         }
4901         if (this.frame) {
4902             cfg.frame=this.frame;
4903         }
4904         if (this.rules) {
4905             cfg.rules=this.rules;
4906         }
4907         if (this.sortable) {
4908             cfg.sortable=this.sortable;
4909         }
4910         if (this.summary) {
4911             cfg.summary=this.summary;
4912         }
4913         if (this.width) {
4914             cfg.width=this.width;
4915         }
4916         if (this.layout) {
4917             cfg.style = (typeof(cfg.style) == 'undefined') ? ('table-layout:' + this.layout + ';') : (cfg.style + ('table-layout:' + this.layout + ';'));
4918         }
4919         
4920         if(this.store || this.cm){
4921             if(this.thead){
4922                 cfg.cn.push(this.renderHeader());
4923             }
4924             
4925             cfg.cn.push(this.renderBody());
4926             
4927             if(this.tfoot){
4928                 cfg.cn.push(this.renderFooter());
4929             }
4930             
4931             cfg.cls+=  ' TableGrid';
4932         }
4933         
4934         return { cn : [ cfg ] };
4935     },
4936     
4937     initEvents : function()
4938     {   
4939         if(!this.store || !this.cm){
4940             return;
4941         }
4942         
4943         //Roo.log('initEvents with ds!!!!');
4944         
4945         this.mainBody = this.el.select('tbody', true).first();
4946         
4947         
4948         var _this = this;
4949         
4950         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
4951             e.on('click', _this.sort, _this);
4952         });
4953         
4954         this.el.on("click", this.onClick, this);
4955         this.el.on("dblclick", this.onDblClick, this);
4956         
4957         this.parent().el.setStyle('position', 'relative');
4958         if (this.footer) {
4959             this.footer.parentId = this.id;
4960             this.footer.onRender(this.el.select('tfoot tr td').first(), null);        
4961         }
4962         
4963         this.maskEl = new Roo.LoadMask(this.el, { store : this.ds, msgCls: 'roo-el-mask-msg' });
4964         
4965         this.store.on('load', this.onLoad, this);
4966         this.store.on('beforeload', this.onBeforeLoad, this);
4967         this.store.on('update', this.onUpdate, this);
4968         
4969     },
4970     
4971     onMouseover : function(e, el)
4972     {
4973         var cell = Roo.get(el);
4974         
4975         if(!cell){
4976             return;
4977         }
4978         
4979         if(e.getTarget().nodeName.toLowerCase() != 'td'){
4980             cell = cell.findParent('td', false, true);
4981         }
4982         
4983         var row = cell.findParent('tr', false, true);
4984         var cellIndex = cell.dom.cellIndex;
4985         var rowIndex = row.dom.rowIndex - 1; // start from 0
4986         
4987         this.fireEvent('mouseover', this, cell, rowIndex, cellIndex, e);
4988         
4989     },
4990     
4991     onMouseout : function(e, el)
4992     {
4993         var cell = Roo.get(el);
4994         
4995         if(!cell){
4996             return;
4997         }
4998         
4999         if(e.getTarget().nodeName.toLowerCase() != 'td'){
5000             cell = cell.findParent('td', false, true);
5001         }
5002         
5003         var row = cell.findParent('tr', false, true);
5004         var cellIndex = cell.dom.cellIndex;
5005         var rowIndex = row.dom.rowIndex - 1; // start from 0
5006         
5007         this.fireEvent('mouseout', this, cell, rowIndex, cellIndex, e);
5008         
5009     },
5010     
5011     onClick : function(e, el)
5012     {
5013         var cell = Roo.get(el);
5014         
5015         if(!cell || (!this.CellSelection && !this.RowSelection)){
5016             return;
5017         }
5018         
5019         
5020         if(e.getTarget().nodeName.toLowerCase() != 'td'){
5021             cell = cell.findParent('td', false, true);
5022         }
5023         
5024         var row = cell.findParent('tr', false, true);
5025         var cellIndex = cell.dom.cellIndex;
5026         var rowIndex = row.dom.rowIndex - 1;
5027         
5028         if(this.CellSelection){
5029             this.fireEvent('cellclick', this, cell, rowIndex, cellIndex, e);
5030         }
5031         
5032         if(this.RowSelection){
5033             this.fireEvent('rowclick', this, row, rowIndex, e);
5034         }
5035         
5036         
5037     },
5038     
5039     onDblClick : function(e,el)
5040     {
5041         var cell = Roo.get(el);
5042         
5043         if(!cell || (!this.CellSelection && !this.RowSelection)){
5044             return;
5045         }
5046         
5047         if(e.getTarget().nodeName.toLowerCase() != 'td'){
5048             cell = cell.findParent('td', false, true);
5049         }
5050         
5051         var row = cell.findParent('tr', false, true);
5052         var cellIndex = cell.dom.cellIndex;
5053         var rowIndex = row.dom.rowIndex - 1;
5054         
5055         if(this.CellSelection){
5056             this.fireEvent('celldblclick', this, cell, rowIndex, cellIndex, e);
5057         }
5058         
5059         if(this.RowSelection){
5060             this.fireEvent('rowdblclick', this, row, rowIndex, e);
5061         }
5062     },
5063     
5064     sort : function(e,el)
5065     {
5066         var col = Roo.get(el)
5067         
5068         if(!col.hasClass('sortable')){
5069             return;
5070         }
5071         
5072         var sort = col.attr('sort');
5073         var dir = 'ASC';
5074         
5075         if(col.hasClass('glyphicon-arrow-up')){
5076             dir = 'DESC';
5077         }
5078         
5079         this.store.sortInfo = {field : sort, direction : dir};
5080         
5081         if (this.footer) {
5082             Roo.log("calling footer first");
5083             this.footer.onClick('first');
5084         } else {
5085         
5086             this.store.load({ params : { start : 0 } });
5087         }
5088     },
5089     
5090     renderHeader : function()
5091     {
5092         var header = {
5093             tag: 'thead',
5094             cn : []
5095         };
5096         
5097         var cm = this.cm;
5098         
5099         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
5100             
5101             var config = cm.config[i];
5102                     
5103             var c = {
5104                 tag: 'th',
5105                 style : '',
5106                 html: cm.getColumnHeader(i)
5107             };
5108             
5109             if(typeof(config.hidden) != 'undefined' && config.hidden){
5110                 c.style += ' display:none;';
5111             }
5112             
5113             if(typeof(config.dataIndex) != 'undefined'){
5114                 c.sort = config.dataIndex;
5115             }
5116             
5117             if(typeof(config.sortable) != 'undefined' && config.sortable){
5118                 c.cls = 'sortable';
5119             }
5120             
5121             if(typeof(config.align) != 'undefined' && config.align.length){
5122                 c.style += ' text-align:' + config.align + ';';
5123             }
5124             
5125             if(typeof(config.width) != 'undefined'){
5126                 c.style += ' width:' + config.width + 'px;';
5127             }
5128             
5129             header.cn.push(c)
5130         }
5131         
5132         return header;
5133     },
5134     
5135     renderBody : function()
5136     {
5137         var body = {
5138             tag: 'tbody',
5139             cn : [
5140                 {
5141                     tag: 'tr',
5142                     cn : [
5143                         {
5144                             tag : 'td',
5145                             colspan :  this.cm.getColumnCount()
5146                         }
5147                     ]
5148                 }
5149             ]
5150         };
5151         
5152         return body;
5153     },
5154     
5155     renderFooter : function()
5156     {
5157         var footer = {
5158             tag: 'tfoot',
5159             cn : [
5160                 {
5161                     tag: 'tr',
5162                     cn : [
5163                         {
5164                             tag : 'td',
5165                             colspan :  this.cm.getColumnCount()
5166                         }
5167                     ]
5168                 }
5169             ]
5170         };
5171         
5172         return footer;
5173     },
5174     
5175     
5176     
5177     onLoad : function()
5178     {
5179         Roo.log('ds onload');
5180         this.clear();
5181         
5182         var _this = this;
5183         var cm = this.cm;
5184         var ds = this.store;
5185         
5186         Roo.each(this.el.select('thead th.sortable', true).elements, function(e){
5187             e.removeClass(['glyphicon', 'glyphicon-arrow-up', 'glyphicon-arrow-down']);
5188             
5189             if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'ASC'){
5190                 e.addClass(['glyphicon', 'glyphicon-arrow-up']);
5191             }
5192             
5193             if(e.hasClass('sortable') && e.attr('sort') == _this.store.sortInfo.field && _this.store.sortInfo.direction.toUpperCase() == 'DESC'){
5194                 e.addClass(['glyphicon', 'glyphicon-arrow-down']);
5195             }
5196         });
5197         
5198         var tbody =  this.mainBody;
5199               
5200         if(ds.getCount() > 0){
5201             ds.data.each(function(d,rowIndex){
5202                 var row =  this.renderRow(cm, ds, rowIndex);
5203                 
5204                 tbody.createChild(row);
5205                 
5206                 var _this = this;
5207                 
5208                 if(row.cellObjects.length){
5209                     Roo.each(row.cellObjects, function(r){
5210                         _this.renderCellObject(r);
5211                     })
5212                 }
5213                 
5214             }, this);
5215         }
5216         
5217         Roo.each(this.el.select('tbody td', true).elements, function(e){
5218             e.on('mouseover', _this.onMouseover, _this);
5219         });
5220         
5221         Roo.each(this.el.select('tbody td', true).elements, function(e){
5222             e.on('mouseout', _this.onMouseout, _this);
5223         });
5224
5225         //if(this.loadMask){
5226         //    this.maskEl.hide();
5227         //}
5228     },
5229     
5230     
5231     onUpdate : function(ds,record)
5232     {
5233         this.refreshRow(record);
5234     },
5235     onRemove : function(ds, record, index, isUpdate){
5236         if(isUpdate !== true){
5237             this.fireEvent("beforerowremoved", this, index, record);
5238         }
5239         var bt = this.mainBody.dom;
5240         if(bt.rows[index]){
5241             bt.removeChild(bt.rows[index]);
5242         }
5243         
5244         if(isUpdate !== true){
5245             //this.stripeRows(index);
5246             //this.syncRowHeights(index, index);
5247             //this.layout();
5248             this.fireEvent("rowremoved", this, index, record);
5249         }
5250     },
5251     
5252     
5253     refreshRow : function(record){
5254         var ds = this.store, index;
5255         if(typeof record == 'number'){
5256             index = record;
5257             record = ds.getAt(index);
5258         }else{
5259             index = ds.indexOf(record);
5260         }
5261         this.insertRow(ds, index, true);
5262         this.onRemove(ds, record, index+1, true);
5263         //this.syncRowHeights(index, index);
5264         //this.layout();
5265         this.fireEvent("rowupdated", this, index, record);
5266     },
5267     
5268     insertRow : function(dm, rowIndex, isUpdate){
5269         
5270         if(!isUpdate){
5271             this.fireEvent("beforerowsinserted", this, rowIndex);
5272         }
5273             //var s = this.getScrollState();
5274         var row = this.renderRow(this.cm, this.store, rowIndex);
5275         // insert before rowIndex..
5276         var e = this.mainBody.createChild(row,this.getRowDom(rowIndex));
5277         
5278         var _this = this;
5279                 
5280         if(row.cellObjects.length){
5281             Roo.each(row.cellObjects, function(r){
5282                 _this.renderCellObject(r);
5283             })
5284         }
5285             
5286         if(!isUpdate){
5287             this.fireEvent("rowsinserted", this, rowIndex);
5288             //this.syncRowHeights(firstRow, lastRow);
5289             //this.stripeRows(firstRow);
5290             //this.layout();
5291         }
5292         
5293     },
5294     
5295     
5296     getRowDom : function(rowIndex)
5297     {
5298         // not sure if I need to check this.. but let's do it anyway..
5299         return (this.mainBody.dom.rows && (rowIndex-1) < this.mainBody.dom.rows.length ) ?
5300                 this.mainBody.dom.rows[rowIndex] : false
5301     },
5302     // returns the object tree for a tr..
5303   
5304     
5305     renderRow : function(cm, ds, rowIndex) {
5306         
5307         var d = ds.getAt(rowIndex);
5308         
5309         var row = {
5310             tag : 'tr',
5311             cn : []
5312         };
5313             
5314         var cellObjects = [];
5315         
5316         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
5317             var config = cm.config[i];
5318             
5319             var renderer = cm.getRenderer(i);
5320             var value = '';
5321             var id = false;
5322             
5323             if(typeof(renderer) !== 'undefined'){
5324                 value = renderer(d.data[cm.getDataIndex(i)], false, d);
5325             }
5326             // if object are returned, then they are expected to be Roo.bootstrap.Component instances
5327             // and are rendered into the cells after the row is rendered - using the id for the element.
5328             
5329             if(typeof(value) === 'object'){
5330                 id = Roo.id();
5331                 cellObjects.push({
5332                     container : id,
5333                     cfg : value 
5334                 })
5335             }
5336             
5337             var rowcfg = {
5338                 record: d,
5339                 rowIndex : rowIndex,
5340                 colIndex : i,
5341                 rowClass : ''
5342             }
5343
5344             this.fireEvent('rowclass', this, rowcfg);
5345             
5346             var td = {
5347                 tag: 'td',
5348                 cls : rowcfg.rowClass,
5349                 style: '',
5350                 html: (typeof(value) === 'object') ? '' : value
5351             };
5352             
5353             if (id) {
5354                 td.id = id;
5355             }
5356             
5357             if(typeof(config.hidden) != 'undefined' && config.hidden){
5358                 td.style += ' display:none;';
5359             }
5360             
5361             if(typeof(config.align) != 'undefined' && config.align.length){
5362                 td.style += ' text-align:' + config.align + ';';
5363             }
5364             
5365             if(typeof(config.width) != 'undefined'){
5366                 td.style += ' width:' +  config.width + 'px;';
5367             }
5368              
5369             row.cn.push(td);
5370            
5371         }
5372         
5373         row.cellObjects = cellObjects;
5374         
5375         return row;
5376           
5377     },
5378     
5379     
5380     
5381     onBeforeLoad : function()
5382     {
5383         //Roo.log('ds onBeforeLoad');
5384         
5385         //this.clear();
5386         
5387         //if(this.loadMask){
5388         //    this.maskEl.show();
5389         //}
5390     },
5391     
5392     clear : function()
5393     {
5394         this.el.select('tbody', true).first().dom.innerHTML = '';
5395     },
5396     
5397     getSelectionModel : function(){
5398         if(!this.selModel){
5399             this.selModel = new Roo.bootstrap.Table.RowSelectionModel();
5400         }
5401         return this.selModel;
5402     },
5403     /*
5404      * Render the Roo.bootstrap object from renderder
5405      */
5406     renderCellObject : function(r)
5407     {
5408         var _this = this;
5409         
5410         var t = r.cfg.render(r.container);
5411         
5412         if(r.cfg.cn){
5413             Roo.each(r.cfg.cn, function(c){
5414                 var child = {
5415                     container: t.getChildContainer(),
5416                     cfg: c
5417                 }
5418                 _this.renderCellObject(child);
5419             })
5420         }
5421     }
5422    
5423 });
5424
5425  
5426
5427  /*
5428  * - LGPL
5429  *
5430  * table cell
5431  * 
5432  */
5433
5434 /**
5435  * @class Roo.bootstrap.TableCell
5436  * @extends Roo.bootstrap.Component
5437  * Bootstrap TableCell class
5438  * @cfg {String} html cell contain text
5439  * @cfg {String} cls cell class
5440  * @cfg {String} tag cell tag (td|th) default td
5441  * @cfg {String} abbr Specifies an abbreviated version of the content in a cell
5442  * @cfg {String} align Aligns the content in a cell
5443  * @cfg {String} axis Categorizes cells
5444  * @cfg {String} bgcolor Specifies the background color of a cell
5445  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
5446  * @cfg {Number} colspan Specifies the number of columns a cell should span
5447  * @cfg {String} headers Specifies one or more header cells a cell is related to
5448  * @cfg {Number} height Sets the height of a cell
5449  * @cfg {String} nowrap Specifies that the content inside a cell should not wrap
5450  * @cfg {Number} rowspan Sets the number of rows a cell should span
5451  * @cfg {String} scope Defines a way to associate header cells and data cells in a table
5452  * @cfg {String} valign Vertical aligns the content in a cell
5453  * @cfg {Number} width Specifies the width of a cell
5454  * 
5455  * @constructor
5456  * Create a new TableCell
5457  * @param {Object} config The config object
5458  */
5459
5460 Roo.bootstrap.TableCell = function(config){
5461     Roo.bootstrap.TableCell.superclass.constructor.call(this, config);
5462 };
5463
5464 Roo.extend(Roo.bootstrap.TableCell, Roo.bootstrap.Component,  {
5465     
5466     html: false,
5467     cls: false,
5468     tag: false,
5469     abbr: false,
5470     align: false,
5471     axis: false,
5472     bgcolor: false,
5473     charoff: false,
5474     colspan: false,
5475     headers: false,
5476     height: false,
5477     nowrap: false,
5478     rowspan: false,
5479     scope: false,
5480     valign: false,
5481     width: false,
5482     
5483     
5484     getAutoCreate : function(){
5485         var cfg = Roo.apply({}, Roo.bootstrap.TableCell.superclass.getAutoCreate.call(this));
5486         
5487         cfg = {
5488             tag: 'td'
5489         }
5490         
5491         if(this.tag){
5492             cfg.tag = this.tag;
5493         }
5494         
5495         if (this.html) {
5496             cfg.html=this.html
5497         }
5498         if (this.cls) {
5499             cfg.cls=this.cls
5500         }
5501         if (this.abbr) {
5502             cfg.abbr=this.abbr
5503         }
5504         if (this.align) {
5505             cfg.align=this.align
5506         }
5507         if (this.axis) {
5508             cfg.axis=this.axis
5509         }
5510         if (this.bgcolor) {
5511             cfg.bgcolor=this.bgcolor
5512         }
5513         if (this.charoff) {
5514             cfg.charoff=this.charoff
5515         }
5516         if (this.colspan) {
5517             cfg.colspan=this.colspan
5518         }
5519         if (this.headers) {
5520             cfg.headers=this.headers
5521         }
5522         if (this.height) {
5523             cfg.height=this.height
5524         }
5525         if (this.nowrap) {
5526             cfg.nowrap=this.nowrap
5527         }
5528         if (this.rowspan) {
5529             cfg.rowspan=this.rowspan
5530         }
5531         if (this.scope) {
5532             cfg.scope=this.scope
5533         }
5534         if (this.valign) {
5535             cfg.valign=this.valign
5536         }
5537         if (this.width) {
5538             cfg.width=this.width
5539         }
5540         
5541         
5542         return cfg;
5543     }
5544    
5545 });
5546
5547  
5548
5549  /*
5550  * - LGPL
5551  *
5552  * table row
5553  * 
5554  */
5555
5556 /**
5557  * @class Roo.bootstrap.TableRow
5558  * @extends Roo.bootstrap.Component
5559  * Bootstrap TableRow class
5560  * @cfg {String} cls row class
5561  * @cfg {String} align Aligns the content in a table row
5562  * @cfg {String} bgcolor Specifies a background color for a table row
5563  * @cfg {Number} charoff Sets the number of characters the content will be aligned from the character specified by the char attribute
5564  * @cfg {String} valign Vertical aligns the content in a table row
5565  * 
5566  * @constructor
5567  * Create a new TableRow
5568  * @param {Object} config The config object
5569  */
5570
5571 Roo.bootstrap.TableRow = function(config){
5572     Roo.bootstrap.TableRow.superclass.constructor.call(this, config);
5573 };
5574
5575 Roo.extend(Roo.bootstrap.TableRow, Roo.bootstrap.Component,  {
5576     
5577     cls: false,
5578     align: false,
5579     bgcolor: false,
5580     charoff: false,
5581     valign: false,
5582     
5583     getAutoCreate : function(){
5584         var cfg = Roo.apply({}, Roo.bootstrap.TableRow.superclass.getAutoCreate.call(this));
5585         
5586         cfg = {
5587             tag: 'tr'
5588         }
5589             
5590         if(this.cls){
5591             cfg.cls = this.cls;
5592         }
5593         if(this.align){
5594             cfg.align = this.align;
5595         }
5596         if(this.bgcolor){
5597             cfg.bgcolor = this.bgcolor;
5598         }
5599         if(this.charoff){
5600             cfg.charoff = this.charoff;
5601         }
5602         if(this.valign){
5603             cfg.valign = this.valign;
5604         }
5605         
5606         return cfg;
5607     }
5608    
5609 });
5610
5611  
5612
5613  /*
5614  * - LGPL
5615  *
5616  * table body
5617  * 
5618  */
5619
5620 /**
5621  * @class Roo.bootstrap.TableBody
5622  * @extends Roo.bootstrap.Component
5623  * Bootstrap TableBody class
5624  * @cfg {String} cls element class
5625  * @cfg {String} tag element tag (thead|tbody|tfoot) default tbody
5626  * @cfg {String} align Aligns the content inside the element
5627  * @cfg {Number} charoff Sets the number of characters the content inside the element will be aligned from the character specified by the char attribute
5628  * @cfg {String} valign Vertical aligns the content inside the <tbody> element
5629  * 
5630  * @constructor
5631  * Create a new TableBody
5632  * @param {Object} config The config object
5633  */
5634
5635 Roo.bootstrap.TableBody = function(config){
5636     Roo.bootstrap.TableBody.superclass.constructor.call(this, config);
5637 };
5638
5639 Roo.extend(Roo.bootstrap.TableBody, Roo.bootstrap.Component,  {
5640     
5641     cls: false,
5642     tag: false,
5643     align: false,
5644     charoff: false,
5645     valign: false,
5646     
5647     getAutoCreate : function(){
5648         var cfg = Roo.apply({}, Roo.bootstrap.TableBody.superclass.getAutoCreate.call(this));
5649         
5650         cfg = {
5651             tag: 'tbody'
5652         }
5653             
5654         if (this.cls) {
5655             cfg.cls=this.cls
5656         }
5657         if(this.tag){
5658             cfg.tag = this.tag;
5659         }
5660         
5661         if(this.align){
5662             cfg.align = this.align;
5663         }
5664         if(this.charoff){
5665             cfg.charoff = this.charoff;
5666         }
5667         if(this.valign){
5668             cfg.valign = this.valign;
5669         }
5670         
5671         return cfg;
5672     }
5673     
5674     
5675 //    initEvents : function()
5676 //    {
5677 //        
5678 //        if(!this.store){
5679 //            return;
5680 //        }
5681 //        
5682 //        this.store = Roo.factory(this.store, Roo.data);
5683 //        this.store.on('load', this.onLoad, this);
5684 //        
5685 //        this.store.load();
5686 //        
5687 //    },
5688 //    
5689 //    onLoad: function () 
5690 //    {   
5691 //        this.fireEvent('load', this);
5692 //    }
5693 //    
5694 //   
5695 });
5696
5697  
5698
5699  /*
5700  * Based on:
5701  * Ext JS Library 1.1.1
5702  * Copyright(c) 2006-2007, Ext JS, LLC.
5703  *
5704  * Originally Released Under LGPL - original licence link has changed is not relivant.
5705  *
5706  * Fork - LGPL
5707  * <script type="text/javascript">
5708  */
5709
5710 // as we use this in bootstrap.
5711 Roo.namespace('Roo.form');
5712  /**
5713  * @class Roo.form.Action
5714  * Internal Class used to handle form actions
5715  * @constructor
5716  * @param {Roo.form.BasicForm} el The form element or its id
5717  * @param {Object} config Configuration options
5718  */
5719
5720  
5721  
5722 // define the action interface
5723 Roo.form.Action = function(form, options){
5724     this.form = form;
5725     this.options = options || {};
5726 };
5727 /**
5728  * Client Validation Failed
5729  * @const 
5730  */
5731 Roo.form.Action.CLIENT_INVALID = 'client';
5732 /**
5733  * Server Validation Failed
5734  * @const 
5735  */
5736 Roo.form.Action.SERVER_INVALID = 'server';
5737  /**
5738  * Connect to Server Failed
5739  * @const 
5740  */
5741 Roo.form.Action.CONNECT_FAILURE = 'connect';
5742 /**
5743  * Reading Data from Server Failed
5744  * @const 
5745  */
5746 Roo.form.Action.LOAD_FAILURE = 'load';
5747
5748 Roo.form.Action.prototype = {
5749     type : 'default',
5750     failureType : undefined,
5751     response : undefined,
5752     result : undefined,
5753
5754     // interface method
5755     run : function(options){
5756
5757     },
5758
5759     // interface method
5760     success : function(response){
5761
5762     },
5763
5764     // interface method
5765     handleResponse : function(response){
5766
5767     },
5768
5769     // default connection failure
5770     failure : function(response){
5771         
5772         this.response = response;
5773         this.failureType = Roo.form.Action.CONNECT_FAILURE;
5774         this.form.afterAction(this, false);
5775     },
5776
5777     processResponse : function(response){
5778         this.response = response;
5779         if(!response.responseText){
5780             return true;
5781         }
5782         this.result = this.handleResponse(response);
5783         return this.result;
5784     },
5785
5786     // utility functions used internally
5787     getUrl : function(appendParams){
5788         var url = this.options.url || this.form.url || this.form.el.dom.action;
5789         if(appendParams){
5790             var p = this.getParams();
5791             if(p){
5792                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
5793             }
5794         }
5795         return url;
5796     },
5797
5798     getMethod : function(){
5799         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
5800     },
5801
5802     getParams : function(){
5803         var bp = this.form.baseParams;
5804         var p = this.options.params;
5805         if(p){
5806             if(typeof p == "object"){
5807                 p = Roo.urlEncode(Roo.applyIf(p, bp));
5808             }else if(typeof p == 'string' && bp){
5809                 p += '&' + Roo.urlEncode(bp);
5810             }
5811         }else if(bp){
5812             p = Roo.urlEncode(bp);
5813         }
5814         return p;
5815     },
5816
5817     createCallback : function(){
5818         return {
5819             success: this.success,
5820             failure: this.failure,
5821             scope: this,
5822             timeout: (this.form.timeout*1000),
5823             upload: this.form.fileUpload ? this.success : undefined
5824         };
5825     }
5826 };
5827
5828 Roo.form.Action.Submit = function(form, options){
5829     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
5830 };
5831
5832 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
5833     type : 'submit',
5834
5835     haveProgress : false,
5836     uploadComplete : false,
5837     
5838     // uploadProgress indicator.
5839     uploadProgress : function()
5840     {
5841         if (!this.form.progressUrl) {
5842             return;
5843         }
5844         
5845         if (!this.haveProgress) {
5846             Roo.MessageBox.progress("Uploading", "Uploading");
5847         }
5848         if (this.uploadComplete) {
5849            Roo.MessageBox.hide();
5850            return;
5851         }
5852         
5853         this.haveProgress = true;
5854    
5855         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
5856         
5857         var c = new Roo.data.Connection();
5858         c.request({
5859             url : this.form.progressUrl,
5860             params: {
5861                 id : uid
5862             },
5863             method: 'GET',
5864             success : function(req){
5865                //console.log(data);
5866                 var rdata = false;
5867                 var edata;
5868                 try  {
5869                    rdata = Roo.decode(req.responseText)
5870                 } catch (e) {
5871                     Roo.log("Invalid data from server..");
5872                     Roo.log(edata);
5873                     return;
5874                 }
5875                 if (!rdata || !rdata.success) {
5876                     Roo.log(rdata);
5877                     Roo.MessageBox.alert(Roo.encode(rdata));
5878                     return;
5879                 }
5880                 var data = rdata.data;
5881                 
5882                 if (this.uploadComplete) {
5883                    Roo.MessageBox.hide();
5884                    return;
5885                 }
5886                    
5887                 if (data){
5888                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
5889                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
5890                     );
5891                 }
5892                 this.uploadProgress.defer(2000,this);
5893             },
5894        
5895             failure: function(data) {
5896                 Roo.log('progress url failed ');
5897                 Roo.log(data);
5898             },
5899             scope : this
5900         });
5901            
5902     },
5903     
5904     
5905     run : function()
5906     {
5907         // run get Values on the form, so it syncs any secondary forms.
5908         this.form.getValues();
5909         
5910         var o = this.options;
5911         var method = this.getMethod();
5912         var isPost = method == 'POST';
5913         if(o.clientValidation === false || this.form.isValid()){
5914             
5915             if (this.form.progressUrl) {
5916                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
5917                     (new Date() * 1) + '' + Math.random());
5918                     
5919             } 
5920             
5921             
5922             Roo.Ajax.request(Roo.apply(this.createCallback(), {
5923                 form:this.form.el.dom,
5924                 url:this.getUrl(!isPost),
5925                 method: method,
5926                 params:isPost ? this.getParams() : null,
5927                 isUpload: this.form.fileUpload
5928             }));
5929             
5930             this.uploadProgress();
5931
5932         }else if (o.clientValidation !== false){ // client validation failed
5933             this.failureType = Roo.form.Action.CLIENT_INVALID;
5934             this.form.afterAction(this, false);
5935         }
5936     },
5937
5938     success : function(response)
5939     {
5940         this.uploadComplete= true;
5941         if (this.haveProgress) {
5942             Roo.MessageBox.hide();
5943         }
5944         
5945         
5946         var result = this.processResponse(response);
5947         if(result === true || result.success){
5948             this.form.afterAction(this, true);
5949             return;
5950         }
5951         if(result.errors){
5952             this.form.markInvalid(result.errors);
5953             this.failureType = Roo.form.Action.SERVER_INVALID;
5954         }
5955         this.form.afterAction(this, false);
5956     },
5957     failure : function(response)
5958     {
5959         this.uploadComplete= true;
5960         if (this.haveProgress) {
5961             Roo.MessageBox.hide();
5962         }
5963         
5964         this.response = response;
5965         this.failureType = Roo.form.Action.CONNECT_FAILURE;
5966         this.form.afterAction(this, false);
5967     },
5968     
5969     handleResponse : function(response){
5970         if(this.form.errorReader){
5971             var rs = this.form.errorReader.read(response);
5972             var errors = [];
5973             if(rs.records){
5974                 for(var i = 0, len = rs.records.length; i < len; i++) {
5975                     var r = rs.records[i];
5976                     errors[i] = r.data;
5977                 }
5978             }
5979             if(errors.length < 1){
5980                 errors = null;
5981             }
5982             return {
5983                 success : rs.success,
5984                 errors : errors
5985             };
5986         }
5987         var ret = false;
5988         try {
5989             ret = Roo.decode(response.responseText);
5990         } catch (e) {
5991             ret = {
5992                 success: false,
5993                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
5994                 errors : []
5995             };
5996         }
5997         return ret;
5998         
5999     }
6000 });
6001
6002
6003 Roo.form.Action.Load = function(form, options){
6004     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
6005     this.reader = this.form.reader;
6006 };
6007
6008 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
6009     type : 'load',
6010
6011     run : function(){
6012         
6013         Roo.Ajax.request(Roo.apply(
6014                 this.createCallback(), {
6015                     method:this.getMethod(),
6016                     url:this.getUrl(false),
6017                     params:this.getParams()
6018         }));
6019     },
6020
6021     success : function(response){
6022         
6023         var result = this.processResponse(response);
6024         if(result === true || !result.success || !result.data){
6025             this.failureType = Roo.form.Action.LOAD_FAILURE;
6026             this.form.afterAction(this, false);
6027             return;
6028         }
6029         this.form.clearInvalid();
6030         this.form.setValues(result.data);
6031         this.form.afterAction(this, true);
6032     },
6033
6034     handleResponse : function(response){
6035         if(this.form.reader){
6036             var rs = this.form.reader.read(response);
6037             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
6038             return {
6039                 success : rs.success,
6040                 data : data
6041             };
6042         }
6043         return Roo.decode(response.responseText);
6044     }
6045 });
6046
6047 Roo.form.Action.ACTION_TYPES = {
6048     'load' : Roo.form.Action.Load,
6049     'submit' : Roo.form.Action.Submit
6050 };/*
6051  * - LGPL
6052  *
6053  * form
6054  * 
6055  */
6056
6057 /**
6058  * @class Roo.bootstrap.Form
6059  * @extends Roo.bootstrap.Component
6060  * Bootstrap Form class
6061  * @cfg {String} method  GET | POST (default POST)
6062  * @cfg {String} labelAlign top | left (default top)
6063   * @cfg {String} align left  | right - for navbars
6064
6065  * 
6066  * @constructor
6067  * Create a new Form
6068  * @param {Object} config The config object
6069  */
6070
6071
6072 Roo.bootstrap.Form = function(config){
6073     Roo.bootstrap.Form.superclass.constructor.call(this, config);
6074     this.addEvents({
6075         /**
6076          * @event clientvalidation
6077          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
6078          * @param {Form} this
6079          * @param {Boolean} valid true if the form has passed client-side validation
6080          */
6081         clientvalidation: true,
6082         /**
6083          * @event beforeaction
6084          * Fires before any action is performed. Return false to cancel the action.
6085          * @param {Form} this
6086          * @param {Action} action The action to be performed
6087          */
6088         beforeaction: true,
6089         /**
6090          * @event actionfailed
6091          * Fires when an action fails.
6092          * @param {Form} this
6093          * @param {Action} action The action that failed
6094          */
6095         actionfailed : true,
6096         /**
6097          * @event actioncomplete
6098          * Fires when an action is completed.
6099          * @param {Form} this
6100          * @param {Action} action The action that completed
6101          */
6102         actioncomplete : true
6103     });
6104     
6105 };
6106
6107 Roo.extend(Roo.bootstrap.Form, Roo.bootstrap.Component,  {
6108       
6109      /**
6110      * @cfg {String} method
6111      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
6112      */
6113     method : 'POST',
6114     /**
6115      * @cfg {String} url
6116      * The URL to use for form actions if one isn't supplied in the action options.
6117      */
6118     /**
6119      * @cfg {Boolean} fileUpload
6120      * Set to true if this form is a file upload.
6121      */
6122      
6123     /**
6124      * @cfg {Object} baseParams
6125      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
6126      */
6127       
6128     /**
6129      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
6130      */
6131     timeout: 30,
6132     /**
6133      * @cfg {Sting} align (left|right) for navbar forms
6134      */
6135     align : 'left',
6136
6137     // private
6138     activeAction : null,
6139  
6140     /**
6141      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
6142      * element by passing it or its id or mask the form itself by passing in true.
6143      * @type Mixed
6144      */
6145     waitMsgTarget : false,
6146     
6147      
6148     
6149     /**
6150      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
6151      * element by passing it or its id or mask the form itself by passing in true.
6152      * @type Mixed
6153      */
6154     
6155     getAutoCreate : function(){
6156         
6157         var cfg = {
6158             tag: 'form',
6159             method : this.method || 'POST',
6160             id : this.id || Roo.id(),
6161             cls : ''
6162         }
6163         if (this.parent().xtype.match(/^Nav/)) {
6164             cfg.cls = 'navbar-form navbar-' + this.align;
6165             
6166         }
6167         
6168         if (this.labelAlign == 'left' ) {
6169             cfg.cls += ' form-horizontal';
6170         }
6171         
6172         
6173         return cfg;
6174     },
6175     initEvents : function()
6176     {
6177         this.el.on('submit', this.onSubmit, this);
6178         // this was added as random key presses on the form where triggering form submit.
6179         this.el.on('keypress', function(e) {
6180             if (e.getCharCode() != 13) {
6181                 return true;
6182             }
6183             // we might need to allow it for textareas.. and some other items.
6184             // check e.getTarget().
6185             
6186             if(e.getTarget().nodeName.toLowerCase() === 'textarea'){
6187                 return true;
6188             }
6189         
6190             Roo.log("keypress blocked");
6191             
6192             e.preventDefault();
6193             return false;
6194         });
6195         
6196     },
6197     // private
6198     onSubmit : function(e){
6199         e.stopEvent();
6200     },
6201     
6202      /**
6203      * Returns true if client-side validation on the form is successful.
6204      * @return Boolean
6205      */
6206     isValid : function(){
6207         var items = this.getItems();
6208         var valid = true;
6209         items.each(function(f){
6210            if(!f.validate()){
6211                valid = false;
6212                
6213            }
6214         });
6215         return valid;
6216     },
6217     /**
6218      * Returns true if any fields in this form have changed since their original load.
6219      * @return Boolean
6220      */
6221     isDirty : function(){
6222         var dirty = false;
6223         var items = this.getItems();
6224         items.each(function(f){
6225            if(f.isDirty()){
6226                dirty = true;
6227                return false;
6228            }
6229            return true;
6230         });
6231         return dirty;
6232     },
6233      /**
6234      * Performs a predefined action (submit or load) or custom actions you define on this form.
6235      * @param {String} actionName The name of the action type
6236      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
6237      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
6238      * accept other config options):
6239      * <pre>
6240 Property          Type             Description
6241 ----------------  ---------------  ----------------------------------------------------------------------------------
6242 url               String           The url for the action (defaults to the form's url)
6243 method            String           The form method to use (defaults to the form's method, or POST if not defined)
6244 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
6245 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
6246                                    validate the form on the client (defaults to false)
6247      * </pre>
6248      * @return {BasicForm} this
6249      */
6250     doAction : function(action, options){
6251         if(typeof action == 'string'){
6252             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
6253         }
6254         if(this.fireEvent('beforeaction', this, action) !== false){
6255             this.beforeAction(action);
6256             action.run.defer(100, action);
6257         }
6258         return this;
6259     },
6260     
6261     // private
6262     beforeAction : function(action){
6263         var o = action.options;
6264         
6265         // not really supported yet.. ??
6266         
6267         //if(this.waitMsgTarget === true){
6268             this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
6269         //}else if(this.waitMsgTarget){
6270         //    this.waitMsgTarget = Roo.get(this.waitMsgTarget);
6271         //    this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
6272         //}else {
6273         //    Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
6274        // }
6275          
6276     },
6277
6278     // private
6279     afterAction : function(action, success){
6280         this.activeAction = null;
6281         var o = action.options;
6282         
6283         //if(this.waitMsgTarget === true){
6284             this.el.unmask();
6285         //}else if(this.waitMsgTarget){
6286         //    this.waitMsgTarget.unmask();
6287         //}else{
6288         //    Roo.MessageBox.updateProgress(1);
6289         //    Roo.MessageBox.hide();
6290        // }
6291         // 
6292         if(success){
6293             if(o.reset){
6294                 this.reset();
6295             }
6296             Roo.callback(o.success, o.scope, [this, action]);
6297             this.fireEvent('actioncomplete', this, action);
6298             
6299         }else{
6300             
6301             // failure condition..
6302             // we have a scenario where updates need confirming.
6303             // eg. if a locking scenario exists..
6304             // we look for { errors : { needs_confirm : true }} in the response.
6305             if (
6306                 (typeof(action.result) != 'undefined')  &&
6307                 (typeof(action.result.errors) != 'undefined')  &&
6308                 (typeof(action.result.errors.needs_confirm) != 'undefined')
6309            ){
6310                 var _t = this;
6311                 Roo.log("not supported yet");
6312                  /*
6313                 
6314                 Roo.MessageBox.confirm(
6315                     "Change requires confirmation",
6316                     action.result.errorMsg,
6317                     function(r) {
6318                         if (r != 'yes') {
6319                             return;
6320                         }
6321                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
6322                     }
6323                     
6324                 );
6325                 */
6326                 
6327                 
6328                 return;
6329             }
6330             
6331             Roo.callback(o.failure, o.scope, [this, action]);
6332             // show an error message if no failed handler is set..
6333             if (!this.hasListener('actionfailed')) {
6334                 Roo.log("need to add dialog support");
6335                 /*
6336                 Roo.MessageBox.alert("Error",
6337                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
6338                         action.result.errorMsg :
6339                         "Saving Failed, please check your entries or try again"
6340                 );
6341                 */
6342             }
6343             
6344             this.fireEvent('actionfailed', this, action);
6345         }
6346         
6347     },
6348     /**
6349      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
6350      * @param {String} id The value to search for
6351      * @return Field
6352      */
6353     findField : function(id){
6354         var items = this.getItems();
6355         var field = items.get(id);
6356         if(!field){
6357              items.each(function(f){
6358                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
6359                     field = f;
6360                     return false;
6361                 }
6362                 return true;
6363             });
6364         }
6365         return field || null;
6366     },
6367      /**
6368      * Mark fields in this form invalid in bulk.
6369      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
6370      * @return {BasicForm} this
6371      */
6372     markInvalid : function(errors){
6373         if(errors instanceof Array){
6374             for(var i = 0, len = errors.length; i < len; i++){
6375                 var fieldError = errors[i];
6376                 var f = this.findField(fieldError.id);
6377                 if(f){
6378                     f.markInvalid(fieldError.msg);
6379                 }
6380             }
6381         }else{
6382             var field, id;
6383             for(id in errors){
6384                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
6385                     field.markInvalid(errors[id]);
6386                 }
6387             }
6388         }
6389         //Roo.each(this.childForms || [], function (f) {
6390         //    f.markInvalid(errors);
6391         //});
6392         
6393         return this;
6394     },
6395
6396     /**
6397      * Set values for fields in this form in bulk.
6398      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
6399      * @return {BasicForm} this
6400      */
6401     setValues : function(values){
6402         if(values instanceof Array){ // array of objects
6403             for(var i = 0, len = values.length; i < len; i++){
6404                 var v = values[i];
6405                 var f = this.findField(v.id);
6406                 if(f){
6407                     f.setValue(v.value);
6408                     if(this.trackResetOnLoad){
6409                         f.originalValue = f.getValue();
6410                     }
6411                 }
6412             }
6413         }else{ // object hash
6414             var field, id;
6415             for(id in values){
6416                 if(typeof values[id] != 'function' && (field = this.findField(id))){
6417                     
6418                     if (field.setFromData && 
6419                         field.valueField && 
6420                         field.displayField &&
6421                         // combos' with local stores can 
6422                         // be queried via setValue()
6423                         // to set their value..
6424                         (field.store && !field.store.isLocal)
6425                         ) {
6426                         // it's a combo
6427                         var sd = { };
6428                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
6429                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
6430                         field.setFromData(sd);
6431                         
6432                     } else {
6433                         field.setValue(values[id]);
6434                     }
6435                     
6436                     
6437                     if(this.trackResetOnLoad){
6438                         field.originalValue = field.getValue();
6439                     }
6440                 }
6441             }
6442         }
6443          
6444         //Roo.each(this.childForms || [], function (f) {
6445         //    f.setValues(values);
6446         //});
6447                 
6448         return this;
6449     },
6450
6451     /**
6452      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
6453      * they are returned as an array.
6454      * @param {Boolean} asString
6455      * @return {Object}
6456      */
6457     getValues : function(asString){
6458         //if (this.childForms) {
6459             // copy values from the child forms
6460         //    Roo.each(this.childForms, function (f) {
6461         //        this.setValues(f.getValues());
6462         //    }, this);
6463         //}
6464         
6465         
6466         
6467         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
6468         if(asString === true){
6469             return fs;
6470         }
6471         return Roo.urlDecode(fs);
6472     },
6473     
6474     /**
6475      * Returns the fields in this form as an object with key/value pairs. 
6476      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
6477      * @return {Object}
6478      */
6479     getFieldValues : function(with_hidden)
6480     {
6481         var items = this.getItems();
6482         var ret = {};
6483         items.each(function(f){
6484             if (!f.getName()) {
6485                 return;
6486             }
6487             var v = f.getValue();
6488             if (f.inputType =='radio') {
6489                 if (typeof(ret[f.getName()]) == 'undefined') {
6490                     ret[f.getName()] = ''; // empty..
6491                 }
6492                 
6493                 if (!f.el.dom.checked) {
6494                     return;
6495                     
6496                 }
6497                 v = f.el.dom.value;
6498                 
6499             }
6500             
6501             // not sure if this supported any more..
6502             if ((typeof(v) == 'object') && f.getRawValue) {
6503                 v = f.getRawValue() ; // dates..
6504             }
6505             // combo boxes where name != hiddenName...
6506             if (f.name != f.getName()) {
6507                 ret[f.name] = f.getRawValue();
6508             }
6509             ret[f.getName()] = v;
6510         });
6511         
6512         return ret;
6513     },
6514
6515     /**
6516      * Clears all invalid messages in this form.
6517      * @return {BasicForm} this
6518      */
6519     clearInvalid : function(){
6520         var items = this.getItems();
6521         
6522         items.each(function(f){
6523            f.clearInvalid();
6524         });
6525         
6526         
6527         
6528         return this;
6529     },
6530
6531     /**
6532      * Resets this form.
6533      * @return {BasicForm} this
6534      */
6535     reset : function(){
6536         var items = this.getItems();
6537         items.each(function(f){
6538             f.reset();
6539         });
6540         
6541         Roo.each(this.childForms || [], function (f) {
6542             f.reset();
6543         });
6544        
6545         
6546         return this;
6547     },
6548     getItems : function()
6549     {
6550         var r=new Roo.util.MixedCollection(false, function(o){
6551             return o.id || (o.id = Roo.id());
6552         });
6553         var iter = function(el) {
6554             if (el.inputEl) {
6555                 r.add(el);
6556             }
6557             if (!el.items) {
6558                 return;
6559             }
6560             Roo.each(el.items,function(e) {
6561                 iter(e);
6562             });
6563             
6564             
6565         };
6566         iter(this);
6567         return r;
6568         
6569         
6570         
6571         
6572     }
6573     
6574 });
6575
6576  
6577 /*
6578  * Based on:
6579  * Ext JS Library 1.1.1
6580  * Copyright(c) 2006-2007, Ext JS, LLC.
6581  *
6582  * Originally Released Under LGPL - original licence link has changed is not relivant.
6583  *
6584  * Fork - LGPL
6585  * <script type="text/javascript">
6586  */
6587 /**
6588  * @class Roo.form.VTypes
6589  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
6590  * @singleton
6591  */
6592 Roo.form.VTypes = function(){
6593     // closure these in so they are only created once.
6594     var alpha = /^[a-zA-Z_]+$/;
6595     var alphanum = /^[a-zA-Z0-9_]+$/;
6596     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,4}$/;
6597     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
6598
6599     // All these messages and functions are configurable
6600     return {
6601         /**
6602          * The function used to validate email addresses
6603          * @param {String} value The email address
6604          */
6605         'email' : function(v){
6606             return email.test(v);
6607         },
6608         /**
6609          * The error text to display when the email validation function returns false
6610          * @type String
6611          */
6612         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
6613         /**
6614          * The keystroke filter mask to be applied on email input
6615          * @type RegExp
6616          */
6617         'emailMask' : /[a-z0-9_\.\-@]/i,
6618
6619         /**
6620          * The function used to validate URLs
6621          * @param {String} value The URL
6622          */
6623         'url' : function(v){
6624             return url.test(v);
6625         },
6626         /**
6627          * The error text to display when the url validation function returns false
6628          * @type String
6629          */
6630         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
6631         
6632         /**
6633          * The function used to validate alpha values
6634          * @param {String} value The value
6635          */
6636         'alpha' : function(v){
6637             return alpha.test(v);
6638         },
6639         /**
6640          * The error text to display when the alpha validation function returns false
6641          * @type String
6642          */
6643         'alphaText' : 'This field should only contain letters and _',
6644         /**
6645          * The keystroke filter mask to be applied on alpha input
6646          * @type RegExp
6647          */
6648         'alphaMask' : /[a-z_]/i,
6649
6650         /**
6651          * The function used to validate alphanumeric values
6652          * @param {String} value The value
6653          */
6654         'alphanum' : function(v){
6655             return alphanum.test(v);
6656         },
6657         /**
6658          * The error text to display when the alphanumeric validation function returns false
6659          * @type String
6660          */
6661         'alphanumText' : 'This field should only contain letters, numbers and _',
6662         /**
6663          * The keystroke filter mask to be applied on alphanumeric input
6664          * @type RegExp
6665          */
6666         'alphanumMask' : /[a-z0-9_]/i
6667     };
6668 }();/*
6669  * - LGPL
6670  *
6671  * Input
6672  * 
6673  */
6674
6675 /**
6676  * @class Roo.bootstrap.Input
6677  * @extends Roo.bootstrap.Component
6678  * Bootstrap Input class
6679  * @cfg {Boolean} disabled is it disabled
6680  * @cfg {String} fieldLabel - the label associated
6681  * @cfg {String} inputType button | checkbox | email | file | hidden | image | number | password | radio | range | reset | search | submit | text
6682  * @cfg {String} name name of the input
6683  * @cfg {string} fieldLabel - the label associated
6684  * @cfg {string}  inputType - input / file submit ...
6685  * @cfg {string} placeholder - placeholder to put in text.
6686  * @cfg {string}  before - input group add on before
6687  * @cfg {string} after - input group add on after
6688  * @cfg {string} size - (lg|sm) or leave empty..
6689  * @cfg {Number} xs colspan out of 12 for mobile-sized screens
6690  * @cfg {Number} sm colspan out of 12 for tablet-sized screens
6691  * @cfg {Number} md colspan out of 12 for computer-sized screens
6692  * @cfg {Number} lg colspan out of 12 for large computer-sized screens
6693  * @cfg {string} value default value of the input
6694  * @cfg {Number} labelWidth set the width of label (0-12)
6695  * @cfg {String} labelAlign (top|left)
6696  * @cfg {Boolean} readOnly Specifies that the field should be read-only
6697  * @cfg {String} align (left|center|right) Default left
6698  * 
6699  * 
6700  * @constructor
6701  * Create a new Input
6702  * @param {Object} config The config object
6703  */
6704
6705 Roo.bootstrap.Input = function(config){
6706     Roo.bootstrap.Input.superclass.constructor.call(this, config);
6707    
6708         this.addEvents({
6709             /**
6710              * @event focus
6711              * Fires when this field receives input focus.
6712              * @param {Roo.form.Field} this
6713              */
6714             focus : true,
6715             /**
6716              * @event blur
6717              * Fires when this field loses input focus.
6718              * @param {Roo.form.Field} this
6719              */
6720             blur : true,
6721             /**
6722              * @event specialkey
6723              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
6724              * {@link Roo.EventObject#getKey} to determine which key was pressed.
6725              * @param {Roo.form.Field} this
6726              * @param {Roo.EventObject} e The event object
6727              */
6728             specialkey : true,
6729             /**
6730              * @event change
6731              * Fires just before the field blurs if the field value has changed.
6732              * @param {Roo.form.Field} this
6733              * @param {Mixed} newValue The new value
6734              * @param {Mixed} oldValue The original value
6735              */
6736             change : true,
6737             /**
6738              * @event invalid
6739              * Fires after the field has been marked as invalid.
6740              * @param {Roo.form.Field} this
6741              * @param {String} msg The validation message
6742              */
6743             invalid : true,
6744             /**
6745              * @event valid
6746              * Fires after the field has been validated with no errors.
6747              * @param {Roo.form.Field} this
6748              */
6749             valid : true,
6750              /**
6751              * @event keyup
6752              * Fires after the key up
6753              * @param {Roo.form.Field} this
6754              * @param {Roo.EventObject}  e The event Object
6755              */
6756             keyup : true
6757         });
6758 };
6759
6760 Roo.extend(Roo.bootstrap.Input, Roo.bootstrap.Component,  {
6761      /**
6762      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
6763       automatic validation (defaults to "keyup").
6764      */
6765     validationEvent : "keyup",
6766      /**
6767      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
6768      */
6769     validateOnBlur : true,
6770     /**
6771      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
6772      */
6773     validationDelay : 250,
6774      /**
6775      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
6776      */
6777     focusClass : "x-form-focus",  // not needed???
6778     
6779        
6780     /**
6781      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
6782      */
6783     invalidClass : "has-error",
6784     
6785     /**
6786      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
6787      */
6788     selectOnFocus : false,
6789     
6790      /**
6791      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
6792      */
6793     maskRe : null,
6794        /**
6795      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
6796      */
6797     vtype : null,
6798     
6799       /**
6800      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
6801      */
6802     disableKeyFilter : false,
6803     
6804        /**
6805      * @cfg {Boolean} disabled True to disable the field (defaults to false).
6806      */
6807     disabled : false,
6808      /**
6809      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
6810      */
6811     allowBlank : true,
6812     /**
6813      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
6814      */
6815     blankText : "This field is required",
6816     
6817      /**
6818      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
6819      */
6820     minLength : 0,
6821     /**
6822      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
6823      */
6824     maxLength : Number.MAX_VALUE,
6825     /**
6826      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
6827      */
6828     minLengthText : "The minimum length for this field is {0}",
6829     /**
6830      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
6831      */
6832     maxLengthText : "The maximum length for this field is {0}",
6833   
6834     
6835     /**
6836      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
6837      * If available, this function will be called only after the basic validators all return true, and will be passed the
6838      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
6839      */
6840     validator : null,
6841     /**
6842      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
6843      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
6844      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
6845      */
6846     regex : null,
6847     /**
6848      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
6849      */
6850     regexText : "",
6851     
6852     
6853     
6854     fieldLabel : '',
6855     inputType : 'text',
6856     
6857     name : false,
6858     placeholder: false,
6859     before : false,
6860     after : false,
6861     size : false,
6862     // private
6863     hasFocus : false,
6864     preventMark: false,
6865     isFormField : true,
6866     value : '',
6867     labelWidth : 2,
6868     labelAlign : false,
6869     readOnly : false,
6870     align : false,
6871     formatedValue : false,
6872     
6873     parentLabelAlign : function()
6874     {
6875         var parent = this;
6876         while (parent.parent()) {
6877             parent = parent.parent();
6878             if (typeof(parent.labelAlign) !='undefined') {
6879                 return parent.labelAlign;
6880             }
6881         }
6882         return 'left';
6883         
6884     },
6885     
6886     getAutoCreate : function(){
6887         
6888         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
6889         
6890         var id = Roo.id();
6891         
6892         var cfg = {};
6893         
6894         if(this.inputType != 'hidden'){
6895             cfg.cls = 'form-group' //input-group
6896         }
6897         
6898         var input =  {
6899             tag: 'input',
6900             id : id,
6901             type : this.inputType,
6902             value : this.value,
6903             cls : 'form-control',
6904             placeholder : this.placeholder || ''
6905             
6906         };
6907         
6908         if(this.align){
6909             input.style = (typeof(input.style) == 'undefined') ? ('text-align:' + this.align) : (input.style + 'text-align:' + this.align);
6910         }
6911         
6912         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
6913             input.maxLength = this.maxLength;
6914         }
6915         
6916         if (this.disabled) {
6917             input.disabled=true;
6918         }
6919         
6920         if (this.readOnly) {
6921             input.readonly=true;
6922         }
6923         
6924         if (this.name) {
6925             input.name = this.name;
6926         }
6927         if (this.size) {
6928             input.cls += ' input-' + this.size;
6929         }
6930         var settings=this;
6931         ['xs','sm','md','lg'].map(function(size){
6932             if (settings[size]) {
6933                 cfg.cls += ' col-' + size + '-' + settings[size];
6934             }
6935         });
6936         
6937         var inputblock = input;
6938         
6939         if (this.before || this.after) {
6940             
6941             inputblock = {
6942                 cls : 'input-group',
6943                 cn :  [] 
6944             };
6945             if (this.before && typeof(this.before) == 'string') {
6946                 
6947                 inputblock.cn.push({
6948                     tag :'span',
6949                     cls : 'roo-input-before input-group-addon',
6950                     html : this.before
6951                 });
6952             }
6953             if (this.before && typeof(this.before) == 'object') {
6954                 this.before = Roo.factory(this.before);
6955                 Roo.log(this.before);
6956                 inputblock.cn.push({
6957                     tag :'span',
6958                     cls : 'roo-input-before input-group-' +
6959                         (this.before.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
6960                 });
6961             }
6962             
6963             inputblock.cn.push(input);
6964             
6965             if (this.after && typeof(this.after) == 'string') {
6966                 inputblock.cn.push({
6967                     tag :'span',
6968                     cls : 'roo-input-after input-group-addon',
6969                     html : this.after
6970                 });
6971             }
6972             if (this.after && typeof(this.after) == 'object') {
6973                 this.after = Roo.factory(this.after);
6974                 Roo.log(this.after);
6975                 inputblock.cn.push({
6976                     tag :'span',
6977                     cls : 'roo-input-after input-group-' +
6978                         (this.after.xtype == 'Button' ? 'btn' : 'addon')  //?? what about checkboxes - that looks like a bit of a hack thought? 
6979                 });
6980             }
6981         };
6982         
6983         if (align ==='left' && this.fieldLabel.length) {
6984                 Roo.log("left and has label");
6985                 cfg.cn = [
6986                     
6987                     {
6988                         tag: 'label',
6989                         'for' :  id,
6990                         cls : 'control-label col-sm-' + this.labelWidth,
6991                         html : this.fieldLabel
6992                         
6993                     },
6994                     {
6995                         cls : "col-sm-" + (12 - this.labelWidth), 
6996                         cn: [
6997                             inputblock
6998                         ]
6999                     }
7000                     
7001                 ];
7002         } else if ( this.fieldLabel.length) {
7003                 Roo.log(" label");
7004                  cfg.cn = [
7005                    
7006                     {
7007                         tag: 'label',
7008                         //cls : 'input-group-addon',
7009                         html : this.fieldLabel
7010                         
7011                     },
7012                     
7013                     inputblock
7014                     
7015                 ];
7016
7017         } else {
7018             
7019                 Roo.log(" no label && no align");
7020                 cfg.cn = [
7021                     
7022                         inputblock
7023                     
7024                 ];
7025                 
7026                 
7027         };
7028         Roo.log('input-parentType: ' + this.parentType);
7029         
7030         if (this.parentType === 'Navbar' &&  this.parent().bar) {
7031            cfg.cls += ' navbar-form';
7032            Roo.log(cfg);
7033         }
7034         
7035         return cfg;
7036         
7037     },
7038     /**
7039      * return the real input element.
7040      */
7041     inputEl: function ()
7042     {
7043         return this.el.select('input.form-control',true).first();
7044     },
7045     setDisabled : function(v)
7046     {
7047         var i  = this.inputEl().dom;
7048         if (!v) {
7049             i.removeAttribute('disabled');
7050             return;
7051             
7052         }
7053         i.setAttribute('disabled','true');
7054     },
7055     initEvents : function()
7056     {
7057         
7058         this.inputEl().on("keydown" , this.fireKey,  this);
7059         this.inputEl().on("focus", this.onFocus,  this);
7060         this.inputEl().on("blur", this.onBlur,  this);
7061         
7062         this.inputEl().relayEvent('keyup', this);
7063
7064         // reference to original value for reset
7065         this.originalValue = this.getValue();
7066         //Roo.form.TextField.superclass.initEvents.call(this);
7067         if(this.validationEvent == 'keyup'){
7068             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
7069             this.inputEl().on('keyup', this.filterValidation, this);
7070         }
7071         else if(this.validationEvent !== false){
7072             this.inputEl().on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
7073         }
7074         
7075         if(this.selectOnFocus){
7076             this.on("focus", this.preFocus, this);
7077             
7078         }
7079         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
7080             this.inputEl().on("keypress", this.filterKeys, this);
7081         }
7082        /* if(this.grow){
7083             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
7084             this.el.on("click", this.autoSize,  this);
7085         }
7086         */
7087         if(this.inputEl().is('input[type=password]') && Roo.isSafari){
7088             this.inputEl().on('keydown', this.SafariOnKeyDown, this);
7089         }
7090         
7091         if (typeof(this.before) == 'object') {
7092             this.before.render(this.el.select('.roo-input-before',true).first());
7093         }
7094         if (typeof(this.after) == 'object') {
7095             this.after.render(this.el.select('.roo-input-after',true).first());
7096         }
7097         
7098         
7099     },
7100     filterValidation : function(e){
7101         if(!e.isNavKeyPress()){
7102             this.validationTask.delay(this.validationDelay);
7103         }
7104     },
7105      /**
7106      * Validates the field value
7107      * @return {Boolean} True if the value is valid, else false
7108      */
7109     validate : function(){
7110         //if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
7111         if(this.disabled || this.validateValue(this.getRawValue())){
7112             this.clearInvalid();
7113             return true;
7114         }
7115         return false;
7116     },
7117     
7118     
7119     /**
7120      * Validates a value according to the field's validation rules and marks the field as invalid
7121      * if the validation fails
7122      * @param {Mixed} value The value to validate
7123      * @return {Boolean} True if the value is valid, else false
7124      */
7125     validateValue : function(value){
7126         if(value.length < 1)  { // if it's blank
7127              if(this.allowBlank){
7128                 this.clearInvalid();
7129                 return true;
7130              }else{
7131                 this.markInvalid(this.blankText);
7132                 return false;
7133              }
7134         }
7135         if(value.length < this.minLength){
7136             this.markInvalid(String.format(this.minLengthText, this.minLength));
7137             return false;
7138         }
7139         if(value.length > this.maxLength){
7140             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
7141             return false;
7142         }
7143         if(this.vtype){
7144             var vt = Roo.form.VTypes;
7145             if(!vt[this.vtype](value, this)){
7146                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
7147                 return false;
7148             }
7149         }
7150         if(typeof this.validator == "function"){
7151             var msg = this.validator(value);
7152             if(msg !== true){
7153                 this.markInvalid(msg);
7154                 return false;
7155             }
7156         }
7157         if(this.regex && !this.regex.test(value)){
7158             this.markInvalid(this.regexText);
7159             return false;
7160         }
7161         return true;
7162     },
7163
7164     
7165     
7166      // private
7167     fireKey : function(e){
7168         //Roo.log('field ' + e.getKey());
7169         if(e.isNavKeyPress()){
7170             this.fireEvent("specialkey", this, e);
7171         }
7172     },
7173     focus : function (selectText){
7174         if(this.rendered){
7175             this.inputEl().focus();
7176             if(selectText === true){
7177                 this.inputEl().dom.select();
7178             }
7179         }
7180         return this;
7181     } ,
7182     
7183     onFocus : function(){
7184         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
7185            // this.el.addClass(this.focusClass);
7186         }
7187         if(!this.hasFocus){
7188             this.hasFocus = true;
7189             this.startValue = this.getValue();
7190             this.fireEvent("focus", this);
7191         }
7192     },
7193     
7194     beforeBlur : Roo.emptyFn,
7195
7196     
7197     // private
7198     onBlur : function(){
7199         this.beforeBlur();
7200         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
7201             //this.el.removeClass(this.focusClass);
7202         }
7203         this.hasFocus = false;
7204         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
7205             this.validate();
7206         }
7207         var v = this.getValue();
7208         if(String(v) !== String(this.startValue)){
7209             this.fireEvent('change', this, v, this.startValue);
7210         }
7211         this.fireEvent("blur", this);
7212     },
7213     
7214     /**
7215      * Resets the current field value to the originally loaded value and clears any validation messages
7216      */
7217     reset : function(){
7218         this.setValue(this.originalValue);
7219         this.clearInvalid();
7220     },
7221      /**
7222      * Returns the name of the field
7223      * @return {Mixed} name The name field
7224      */
7225     getName: function(){
7226         return this.name;
7227     },
7228      /**
7229      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
7230      * @return {Mixed} value The field value
7231      */
7232     getValue : function(){
7233         
7234         var v = this.inputEl().getValue();
7235         
7236         return v;
7237     },
7238     /**
7239      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
7240      * @return {Mixed} value The field value
7241      */
7242     getRawValue : function(){
7243         var v = this.inputEl().getValue();
7244         
7245         return v;
7246     },
7247     
7248     /**
7249      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
7250      * @param {Mixed} value The value to set
7251      */
7252     setRawValue : function(v){
7253         return this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
7254     },
7255     
7256     selectText : function(start, end){
7257         var v = this.getRawValue();
7258         if(v.length > 0){
7259             start = start === undefined ? 0 : start;
7260             end = end === undefined ? v.length : end;
7261             var d = this.inputEl().dom;
7262             if(d.setSelectionRange){
7263                 d.setSelectionRange(start, end);
7264             }else if(d.createTextRange){
7265                 var range = d.createTextRange();
7266                 range.moveStart("character", start);
7267                 range.moveEnd("character", v.length-end);
7268                 range.select();
7269             }
7270         }
7271     },
7272     
7273     /**
7274      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
7275      * @param {Mixed} value The value to set
7276      */
7277     setValue : function(v){
7278         this.value = v;
7279         if(this.rendered){
7280             this.inputEl().dom.value = (v === null || v === undefined ? '' : v);
7281             this.validate();
7282         }
7283     },
7284     
7285     /*
7286     processValue : function(value){
7287         if(this.stripCharsRe){
7288             var newValue = value.replace(this.stripCharsRe, '');
7289             if(newValue !== value){
7290                 this.setRawValue(newValue);
7291                 return newValue;
7292             }
7293         }
7294         return value;
7295     },
7296   */
7297     preFocus : function(){
7298         
7299         if(this.selectOnFocus){
7300             this.inputEl().dom.select();
7301         }
7302     },
7303     filterKeys : function(e){
7304         var k = e.getKey();
7305         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
7306             return;
7307         }
7308         var c = e.getCharCode(), cc = String.fromCharCode(c);
7309         if(Roo.isIE && (e.isSpecialKey() || !cc)){
7310             return;
7311         }
7312         if(!this.maskRe.test(cc)){
7313             e.stopEvent();
7314         }
7315     },
7316      /**
7317      * Clear any invalid styles/messages for this field
7318      */
7319     clearInvalid : function(){
7320         
7321         if(!this.el || this.preventMark){ // not rendered
7322             return;
7323         }
7324         this.el.removeClass(this.invalidClass);
7325         /*
7326         switch(this.msgTarget){
7327             case 'qtip':
7328                 this.el.dom.qtip = '';
7329                 break;
7330             case 'title':
7331                 this.el.dom.title = '';
7332                 break;
7333             case 'under':
7334                 if(this.errorEl){
7335                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
7336                 }
7337                 break;
7338             case 'side':
7339                 if(this.errorIcon){
7340                     this.errorIcon.dom.qtip = '';
7341                     this.errorIcon.hide();
7342                     this.un('resize', this.alignErrorIcon, this);
7343                 }
7344                 break;
7345             default:
7346                 var t = Roo.getDom(this.msgTarget);
7347                 t.innerHTML = '';
7348                 t.style.display = 'none';
7349                 break;
7350         }
7351         */
7352         this.fireEvent('valid', this);
7353     },
7354      /**
7355      * Mark this field as invalid
7356      * @param {String} msg The validation message
7357      */
7358     markInvalid : function(msg){
7359         if(!this.el  || this.preventMark){ // not rendered
7360             return;
7361         }
7362         this.el.addClass(this.invalidClass);
7363         /*
7364         msg = msg || this.invalidText;
7365         switch(this.msgTarget){
7366             case 'qtip':
7367                 this.el.dom.qtip = msg;
7368                 this.el.dom.qclass = 'x-form-invalid-tip';
7369                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
7370                     Roo.QuickTips.enable();
7371                 }
7372                 break;
7373             case 'title':
7374                 this.el.dom.title = msg;
7375                 break;
7376             case 'under':
7377                 if(!this.errorEl){
7378                     var elp = this.el.findParent('.x-form-element', 5, true);
7379                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
7380                     this.errorEl.setWidth(elp.getWidth(true)-20);
7381                 }
7382                 this.errorEl.update(msg);
7383                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
7384                 break;
7385             case 'side':
7386                 if(!this.errorIcon){
7387                     var elp = this.el.findParent('.x-form-element', 5, true);
7388                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
7389                 }
7390                 this.alignErrorIcon();
7391                 this.errorIcon.dom.qtip = msg;
7392                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
7393                 this.errorIcon.show();
7394                 this.on('resize', this.alignErrorIcon, this);
7395                 break;
7396             default:
7397                 var t = Roo.getDom(this.msgTarget);
7398                 t.innerHTML = msg;
7399                 t.style.display = this.msgDisplay;
7400                 break;
7401         }
7402         */
7403         this.fireEvent('invalid', this, msg);
7404     },
7405     // private
7406     SafariOnKeyDown : function(event)
7407     {
7408         // this is a workaround for a password hang bug on chrome/ webkit.
7409         
7410         var isSelectAll = false;
7411         
7412         if(this.inputEl().dom.selectionEnd > 0){
7413             isSelectAll = (this.inputEl().dom.selectionEnd - this.inputEl().dom.selectionStart - this.getValue().length == 0) ? true : false;
7414         }
7415         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
7416             event.preventDefault();
7417             this.setValue('');
7418             return;
7419         }
7420         
7421         if(isSelectAll){ // backspace and delete key
7422             
7423             event.preventDefault();
7424             // this is very hacky as keydown always get's upper case.
7425             //
7426             var cc = String.fromCharCode(event.getCharCode());
7427             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
7428             
7429         }
7430     },
7431     adjustWidth : function(tag, w){
7432         tag = tag.toLowerCase();
7433         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
7434             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
7435                 if(tag == 'input'){
7436                     return w + 2;
7437                 }
7438                 if(tag == 'textarea'){
7439                     return w-2;
7440                 }
7441             }else if(Roo.isOpera){
7442                 if(tag == 'input'){
7443                     return w + 2;
7444                 }
7445                 if(tag == 'textarea'){
7446                     return w-2;
7447                 }
7448             }
7449         }
7450         return w;
7451     }
7452     
7453 });
7454
7455  
7456 /*
7457  * - LGPL
7458  *
7459  * Input
7460  * 
7461  */
7462
7463 /**
7464  * @class Roo.bootstrap.TextArea
7465  * @extends Roo.bootstrap.Input
7466  * Bootstrap TextArea class
7467  * @cfg {Number} cols Specifies the visible width of a text area
7468  * @cfg {Number} rows Specifies the visible number of lines in a text area
7469  * @cfg {string} wrap (soft|hard)Specifies how the text in a text area is to be wrapped when submitted in a form
7470  * @cfg {string} resize (none|both|horizontal|vertical|inherit|initial)
7471  * @cfg {string} html text
7472  * 
7473  * @constructor
7474  * Create a new TextArea
7475  * @param {Object} config The config object
7476  */
7477
7478 Roo.bootstrap.TextArea = function(config){
7479     Roo.bootstrap.TextArea.superclass.constructor.call(this, config);
7480    
7481 };
7482
7483 Roo.extend(Roo.bootstrap.TextArea, Roo.bootstrap.Input,  {
7484      
7485     cols : false,
7486     rows : 5,
7487     readOnly : false,
7488     warp : 'soft',
7489     resize : false,
7490     value: false,
7491     html: false,
7492     
7493     getAutoCreate : function(){
7494         
7495         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
7496         
7497         var id = Roo.id();
7498         
7499         var cfg = {};
7500         
7501         var input =  {
7502             tag: 'textarea',
7503             id : id,
7504             warp : this.warp,
7505             rows : this.rows,
7506             value : this.value || '',
7507             html: this.html || '',
7508             cls : 'form-control',
7509             placeholder : this.placeholder || '' 
7510             
7511         };
7512         
7513         if(this.maxLength && this.maxLength != Number.MAX_VALUE){
7514             input.maxLength = this.maxLength;
7515         }
7516         
7517         if(this.resize){
7518             input.style = (typeof(input.style) == 'undefined') ? 'resize:' + this.resize : input.style + 'resize:' + this.resize;
7519         }
7520         
7521         if(this.cols){
7522             input.cols = this.cols;
7523         }
7524         
7525         if (this.readOnly) {
7526             input.readonly = true;
7527         }
7528         
7529         if (this.name) {
7530             input.name = this.name;
7531         }
7532         
7533         if (this.size) {
7534             input.cls = (typeof(input.cls) == 'undefined') ? 'input-' + this.size : input.cls + ' input-' + this.size;
7535         }
7536         
7537         var settings=this;
7538         ['xs','sm','md','lg'].map(function(size){
7539             if (settings[size]) {
7540                 cfg.cls += ' col-' + size + '-' + settings[size];
7541             }
7542         });
7543         
7544         var inputblock = input;
7545         
7546         if (this.before || this.after) {
7547             
7548             inputblock = {
7549                 cls : 'input-group',
7550                 cn :  [] 
7551             };
7552             if (this.before) {
7553                 inputblock.cn.push({
7554                     tag :'span',
7555                     cls : 'input-group-addon',
7556                     html : this.before
7557                 });
7558             }
7559             inputblock.cn.push(input);
7560             if (this.after) {
7561                 inputblock.cn.push({
7562                     tag :'span',
7563                     cls : 'input-group-addon',
7564                     html : this.after
7565                 });
7566             }
7567             
7568         }
7569         
7570         if (align ==='left' && this.fieldLabel.length) {
7571                 Roo.log("left and has label");
7572                 cfg.cn = [
7573                     
7574                     {
7575                         tag: 'label',
7576                         'for' :  id,
7577                         cls : 'control-label col-sm-' + this.labelWidth,
7578                         html : this.fieldLabel
7579                         
7580                     },
7581                     {
7582                         cls : "col-sm-" + (12 - this.labelWidth), 
7583                         cn: [
7584                             inputblock
7585                         ]
7586                     }
7587                     
7588                 ];
7589         } else if ( this.fieldLabel.length) {
7590                 Roo.log(" label");
7591                  cfg.cn = [
7592                    
7593                     {
7594                         tag: 'label',
7595                         //cls : 'input-group-addon',
7596                         html : this.fieldLabel
7597                         
7598                     },
7599                     
7600                     inputblock
7601                     
7602                 ];
7603
7604         } else {
7605             
7606                    Roo.log(" no label && no align");
7607                 cfg.cn = [
7608                     
7609                         inputblock
7610                     
7611                 ];
7612                 
7613                 
7614         }
7615         
7616         if (this.disabled) {
7617             input.disabled=true;
7618         }
7619         
7620         return cfg;
7621         
7622     },
7623     /**
7624      * return the real textarea element.
7625      */
7626     inputEl: function ()
7627     {
7628         return this.el.select('textarea.form-control',true).first();
7629     }
7630 });
7631
7632  
7633 /*
7634  * - LGPL
7635  *
7636  * trigger field - base class for combo..
7637  * 
7638  */
7639  
7640 /**
7641  * @class Roo.bootstrap.TriggerField
7642  * @extends Roo.bootstrap.Input
7643  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
7644  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
7645  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
7646  * for which you can provide a custom implementation.  For example:
7647  * <pre><code>
7648 var trigger = new Roo.bootstrap.TriggerField();
7649 trigger.onTriggerClick = myTriggerFn;
7650 trigger.applyTo('my-field');
7651 </code></pre>
7652  *
7653  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
7654  * {@link Roo.bootstrap.DateField} and {@link Roo.bootstrap.ComboBox} are perfect examples of this.
7655  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
7656  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
7657  * @constructor
7658  * Create a new TriggerField.
7659  * @param {Object} config Configuration options (valid {@Roo.bootstrap.Input} config options will also be applied
7660  * to the base TextField)
7661  */
7662 Roo.bootstrap.TriggerField = function(config){
7663     this.mimicing = false;
7664     Roo.bootstrap.TriggerField.superclass.constructor.call(this, config);
7665 };
7666
7667 Roo.extend(Roo.bootstrap.TriggerField, Roo.bootstrap.Input,  {
7668     /**
7669      * @cfg {String} triggerClass A CSS class to apply to the trigger
7670      */
7671      /**
7672      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
7673      */
7674     hideTrigger:false,
7675
7676     /** @cfg {Boolean} grow @hide */
7677     /** @cfg {Number} growMin @hide */
7678     /** @cfg {Number} growMax @hide */
7679
7680     /**
7681      * @hide 
7682      * @method
7683      */
7684     autoSize: Roo.emptyFn,
7685     // private
7686     monitorTab : true,
7687     // private
7688     deferHeight : true,
7689
7690     
7691     actionMode : 'wrap',
7692     
7693     
7694     
7695     getAutoCreate : function(){
7696        
7697         var align = this.labelAlign || this.parentLabelAlign();
7698         
7699         var id = Roo.id();
7700         
7701         var cfg = {
7702             cls: 'form-group' //input-group
7703         };
7704         
7705         
7706         var input =  {
7707             tag: 'input',
7708             id : id,
7709             type : this.inputType,
7710             cls : 'form-control',
7711             autocomplete: 'off',
7712             placeholder : this.placeholder || '' 
7713             
7714         };
7715         if (this.name) {
7716             input.name = this.name;
7717         }
7718         if (this.size) {
7719             input.cls += ' input-' + this.size;
7720         }
7721         
7722         if (this.disabled) {
7723             input.disabled=true;
7724         }
7725         
7726         var inputblock = input;
7727         
7728         if (this.before || this.after) {
7729             
7730             inputblock = {
7731                 cls : 'input-group',
7732                 cn :  [] 
7733             };
7734             if (this.before) {
7735                 inputblock.cn.push({
7736                     tag :'span',
7737                     cls : 'input-group-addon',
7738                     html : this.before
7739                 });
7740             }
7741             inputblock.cn.push(input);
7742             if (this.after) {
7743                 inputblock.cn.push({
7744                     tag :'span',
7745                     cls : 'input-group-addon',
7746                     html : this.after
7747                 });
7748             }
7749             
7750         };
7751         
7752         var box = {
7753             tag: 'div',
7754             cn: [
7755                 {
7756                     tag: 'input',
7757                     type : 'hidden',
7758                     cls: 'form-hidden-field'
7759                 },
7760                 inputblock
7761             ]
7762             
7763         };
7764         
7765         if(this.multiple){
7766             Roo.log('multiple');
7767             
7768             box = {
7769                 tag: 'div',
7770                 cn: [
7771                     {
7772                         tag: 'input',
7773                         type : 'hidden',
7774                         cls: 'form-hidden-field'
7775                     },
7776                     {
7777                         tag: 'ul',
7778                         cls: 'select2-choices',
7779                         cn:[
7780                             {
7781                                 tag: 'li',
7782                                 cls: 'select2-search-field',
7783                                 cn: [
7784
7785                                     inputblock
7786                                 ]
7787                             }
7788                         ]
7789                     }
7790                 ]
7791             }
7792         };
7793         
7794         var combobox = {
7795             cls: 'select2-container input-group',
7796             cn: [
7797                 box
7798 //                {
7799 //                    tag: 'ul',
7800 //                    cls: 'typeahead typeahead-long dropdown-menu',
7801 //                    style: 'display:none'
7802 //                }
7803             ]
7804         };
7805         
7806         if(!this.multiple && this.showToggleBtn){
7807             combobox.cn.push({
7808                 tag :'span',
7809                 cls : 'input-group-addon btn dropdown-toggle',
7810                 cn : [
7811                     {
7812                         tag: 'span',
7813                         cls: 'caret'
7814                     },
7815                     {
7816                         tag: 'span',
7817                         cls: 'combobox-clear',
7818                         cn  : [
7819                             {
7820                                 tag : 'i',
7821                                 cls: 'icon-remove'
7822                             }
7823                         ]
7824                     }
7825                 ]
7826
7827             })
7828         }
7829         
7830         if(this.multiple){
7831             combobox.cls += ' select2-container-multi';
7832         }
7833         
7834         if (align ==='left' && this.fieldLabel.length) {
7835             
7836                 Roo.log("left and has label");
7837                 cfg.cn = [
7838                     
7839                     {
7840                         tag: 'label',
7841                         'for' :  id,
7842                         cls : 'control-label col-sm-' + this.labelWidth,
7843                         html : this.fieldLabel
7844                         
7845                     },
7846                     {
7847                         cls : "col-sm-" + (12 - this.labelWidth), 
7848                         cn: [
7849                             combobox
7850                         ]
7851                     }
7852                     
7853                 ];
7854         } else if ( this.fieldLabel.length) {
7855                 Roo.log(" label");
7856                  cfg.cn = [
7857                    
7858                     {
7859                         tag: 'label',
7860                         //cls : 'input-group-addon',
7861                         html : this.fieldLabel
7862                         
7863                     },
7864                     
7865                     combobox
7866                     
7867                 ];
7868
7869         } else {
7870             
7871                 Roo.log(" no label && no align");
7872                 cfg = combobox
7873                      
7874                 
7875         }
7876          
7877         var settings=this;
7878         ['xs','sm','md','lg'].map(function(size){
7879             if (settings[size]) {
7880                 cfg.cls += ' col-' + size + '-' + settings[size];
7881             }
7882         });
7883         
7884         return cfg;
7885         
7886     },
7887     
7888     
7889     
7890     // private
7891     onResize : function(w, h){
7892 //        Roo.bootstrap.TriggerField.superclass.onResize.apply(this, arguments);
7893 //        if(typeof w == 'number'){
7894 //            var x = w - this.trigger.getWidth();
7895 //            this.inputEl().setWidth(this.adjustWidth('input', x));
7896 //            this.trigger.setStyle('left', x+'px');
7897 //        }
7898     },
7899
7900     // private
7901     adjustSize : Roo.BoxComponent.prototype.adjustSize,
7902
7903     // private
7904     getResizeEl : function(){
7905         return this.inputEl();
7906     },
7907
7908     // private
7909     getPositionEl : function(){
7910         return this.inputEl();
7911     },
7912
7913     // private
7914     alignErrorIcon : function(){
7915         this.errorIcon.alignTo(this.inputEl(), 'tl-tr', [2, 0]);
7916     },
7917
7918     // private
7919     initEvents : function(){
7920         
7921         this.createList();
7922         
7923         Roo.bootstrap.TriggerField.superclass.initEvents.call(this);
7924         //this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
7925         if(!this.multiple && this.showToggleBtn){
7926             this.trigger = this.el.select('span.dropdown-toggle',true).first();
7927             if(this.hideTrigger){
7928                 this.trigger.setDisplayed(false);
7929             }
7930             this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
7931         }
7932         
7933         if(this.multiple){
7934             this.inputEl().on("click", this.onTriggerClick, this, {preventDefault:true});
7935         }
7936         
7937         //this.trigger.addClassOnOver('x-form-trigger-over');
7938         //this.trigger.addClassOnClick('x-form-trigger-click');
7939         
7940         //if(!this.width){
7941         //    this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
7942         //}
7943     },
7944     
7945     createList : function()
7946     {
7947         this.list = Roo.get(document.body).createChild({
7948             tag: 'ul',
7949             cls: 'typeahead typeahead-long dropdown-menu',
7950             style: 'display:none'
7951         });
7952         
7953         this.list.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';;
7954         
7955     },
7956
7957     // private
7958     initTrigger : function(){
7959        
7960     },
7961
7962     // private
7963     onDestroy : function(){
7964         if(this.trigger){
7965             this.trigger.removeAllListeners();
7966           //  this.trigger.remove();
7967         }
7968         //if(this.wrap){
7969         //    this.wrap.remove();
7970         //}
7971         Roo.bootstrap.TriggerField.superclass.onDestroy.call(this);
7972     },
7973
7974     // private
7975     onFocus : function(){
7976         Roo.bootstrap.TriggerField.superclass.onFocus.call(this);
7977         /*
7978         if(!this.mimicing){
7979             this.wrap.addClass('x-trigger-wrap-focus');
7980             this.mimicing = true;
7981             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
7982             if(this.monitorTab){
7983                 this.el.on("keydown", this.checkTab, this);
7984             }
7985         }
7986         */
7987     },
7988
7989     // private
7990     checkTab : function(e){
7991         if(e.getKey() == e.TAB){
7992             this.triggerBlur();
7993         }
7994     },
7995
7996     // private
7997     onBlur : function(){
7998         // do nothing
7999     },
8000
8001     // private
8002     mimicBlur : function(e, t){
8003         /*
8004         if(!this.wrap.contains(t) && this.validateBlur()){
8005             this.triggerBlur();
8006         }
8007         */
8008     },
8009
8010     // private
8011     triggerBlur : function(){
8012         this.mimicing = false;
8013         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
8014         if(this.monitorTab){
8015             this.el.un("keydown", this.checkTab, this);
8016         }
8017         //this.wrap.removeClass('x-trigger-wrap-focus');
8018         Roo.bootstrap.TriggerField.superclass.onBlur.call(this);
8019     },
8020
8021     // private
8022     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
8023     validateBlur : function(e, t){
8024         return true;
8025     },
8026
8027     // private
8028     onDisable : function(){
8029         this.inputEl().dom.disabled = true;
8030         //Roo.bootstrap.TriggerField.superclass.onDisable.call(this);
8031         //if(this.wrap){
8032         //    this.wrap.addClass('x-item-disabled');
8033         //}
8034     },
8035
8036     // private
8037     onEnable : function(){
8038         this.inputEl().dom.disabled = false;
8039         //Roo.bootstrap.TriggerField.superclass.onEnable.call(this);
8040         //if(this.wrap){
8041         //    this.el.removeClass('x-item-disabled');
8042         //}
8043     },
8044
8045     // private
8046     onShow : function(){
8047         var ae = this.getActionEl();
8048         
8049         if(ae){
8050             ae.dom.style.display = '';
8051             ae.dom.style.visibility = 'visible';
8052         }
8053     },
8054
8055     // private
8056     
8057     onHide : function(){
8058         var ae = this.getActionEl();
8059         ae.dom.style.display = 'none';
8060     },
8061
8062     /**
8063      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
8064      * by an implementing function.
8065      * @method
8066      * @param {EventObject} e
8067      */
8068     onTriggerClick : Roo.emptyFn
8069 });
8070  /*
8071  * Based on:
8072  * Ext JS Library 1.1.1
8073  * Copyright(c) 2006-2007, Ext JS, LLC.
8074  *
8075  * Originally Released Under LGPL - original licence link has changed is not relivant.
8076  *
8077  * Fork - LGPL
8078  * <script type="text/javascript">
8079  */
8080
8081
8082 /**
8083  * @class Roo.data.SortTypes
8084  * @singleton
8085  * Defines the default sorting (casting?) comparison functions used when sorting data.
8086  */
8087 Roo.data.SortTypes = {
8088     /**
8089      * Default sort that does nothing
8090      * @param {Mixed} s The value being converted
8091      * @return {Mixed} The comparison value
8092      */
8093     none : function(s){
8094         return s;
8095     },
8096     
8097     /**
8098      * The regular expression used to strip tags
8099      * @type {RegExp}
8100      * @property
8101      */
8102     stripTagsRE : /<\/?[^>]+>/gi,
8103     
8104     /**
8105      * Strips all HTML tags to sort on text only
8106      * @param {Mixed} s The value being converted
8107      * @return {String} The comparison value
8108      */
8109     asText : function(s){
8110         return String(s).replace(this.stripTagsRE, "");
8111     },
8112     
8113     /**
8114      * Strips all HTML tags to sort on text only - Case insensitive
8115      * @param {Mixed} s The value being converted
8116      * @return {String} The comparison value
8117      */
8118     asUCText : function(s){
8119         return String(s).toUpperCase().replace(this.stripTagsRE, "");
8120     },
8121     
8122     /**
8123      * Case insensitive string
8124      * @param {Mixed} s The value being converted
8125      * @return {String} The comparison value
8126      */
8127     asUCString : function(s) {
8128         return String(s).toUpperCase();
8129     },
8130     
8131     /**
8132      * Date sorting
8133      * @param {Mixed} s The value being converted
8134      * @return {Number} The comparison value
8135      */
8136     asDate : function(s) {
8137         if(!s){
8138             return 0;
8139         }
8140         if(s instanceof Date){
8141             return s.getTime();
8142         }
8143         return Date.parse(String(s));
8144     },
8145     
8146     /**
8147      * Float sorting
8148      * @param {Mixed} s The value being converted
8149      * @return {Float} The comparison value
8150      */
8151     asFloat : function(s) {
8152         var val = parseFloat(String(s).replace(/,/g, ""));
8153         if(isNaN(val)) val = 0;
8154         return val;
8155     },
8156     
8157     /**
8158      * Integer sorting
8159      * @param {Mixed} s The value being converted
8160      * @return {Number} The comparison value
8161      */
8162     asInt : function(s) {
8163         var val = parseInt(String(s).replace(/,/g, ""));
8164         if(isNaN(val)) val = 0;
8165         return val;
8166     }
8167 };/*
8168  * Based on:
8169  * Ext JS Library 1.1.1
8170  * Copyright(c) 2006-2007, Ext JS, LLC.
8171  *
8172  * Originally Released Under LGPL - original licence link has changed is not relivant.
8173  *
8174  * Fork - LGPL
8175  * <script type="text/javascript">
8176  */
8177
8178 /**
8179 * @class Roo.data.Record
8180  * Instances of this class encapsulate both record <em>definition</em> information, and record
8181  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
8182  * to access Records cached in an {@link Roo.data.Store} object.<br>
8183  * <p>
8184  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
8185  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
8186  * objects.<br>
8187  * <p>
8188  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
8189  * @constructor
8190  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
8191  * {@link #create}. The parameters are the same.
8192  * @param {Array} data An associative Array of data values keyed by the field name.
8193  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
8194  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
8195  * not specified an integer id is generated.
8196  */
8197 Roo.data.Record = function(data, id){
8198     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
8199     this.data = data;
8200 };
8201
8202 /**
8203  * Generate a constructor for a specific record layout.
8204  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
8205  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
8206  * Each field definition object may contain the following properties: <ul>
8207  * <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,
8208  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
8209  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
8210  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
8211  * is being used, then this is a string containing the javascript expression to reference the data relative to 
8212  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
8213  * to the data item relative to the record element. If the mapping expression is the same as the field name,
8214  * this may be omitted.</p></li>
8215  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
8216  * <ul><li>auto (Default, implies no conversion)</li>
8217  * <li>string</li>
8218  * <li>int</li>
8219  * <li>float</li>
8220  * <li>boolean</li>
8221  * <li>date</li></ul></p></li>
8222  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
8223  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
8224  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
8225  * by the Reader into an object that will be stored in the Record. It is passed the
8226  * following parameters:<ul>
8227  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
8228  * </ul></p></li>
8229  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
8230  * </ul>
8231  * <br>usage:<br><pre><code>
8232 var TopicRecord = Roo.data.Record.create(
8233     {name: 'title', mapping: 'topic_title'},
8234     {name: 'author', mapping: 'username'},
8235     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
8236     {name: 'lastPost', mapping: 'post_time', type: 'date'},
8237     {name: 'lastPoster', mapping: 'user2'},
8238     {name: 'excerpt', mapping: 'post_text'}
8239 );
8240
8241 var myNewRecord = new TopicRecord({
8242     title: 'Do my job please',
8243     author: 'noobie',
8244     totalPosts: 1,
8245     lastPost: new Date(),
8246     lastPoster: 'Animal',
8247     excerpt: 'No way dude!'
8248 });
8249 myStore.add(myNewRecord);
8250 </code></pre>
8251  * @method create
8252  * @static
8253  */
8254 Roo.data.Record.create = function(o){
8255     var f = function(){
8256         f.superclass.constructor.apply(this, arguments);
8257     };
8258     Roo.extend(f, Roo.data.Record);
8259     var p = f.prototype;
8260     p.fields = new Roo.util.MixedCollection(false, function(field){
8261         return field.name;
8262     });
8263     for(var i = 0, len = o.length; i < len; i++){
8264         p.fields.add(new Roo.data.Field(o[i]));
8265     }
8266     f.getField = function(name){
8267         return p.fields.get(name);  
8268     };
8269     return f;
8270 };
8271
8272 Roo.data.Record.AUTO_ID = 1000;
8273 Roo.data.Record.EDIT = 'edit';
8274 Roo.data.Record.REJECT = 'reject';
8275 Roo.data.Record.COMMIT = 'commit';
8276
8277 Roo.data.Record.prototype = {
8278     /**
8279      * Readonly flag - true if this record has been modified.
8280      * @type Boolean
8281      */
8282     dirty : false,
8283     editing : false,
8284     error: null,
8285     modified: null,
8286
8287     // private
8288     join : function(store){
8289         this.store = store;
8290     },
8291
8292     /**
8293      * Set the named field to the specified value.
8294      * @param {String} name The name of the field to set.
8295      * @param {Object} value The value to set the field to.
8296      */
8297     set : function(name, value){
8298         if(this.data[name] == value){
8299             return;
8300         }
8301         this.dirty = true;
8302         if(!this.modified){
8303             this.modified = {};
8304         }
8305         if(typeof this.modified[name] == 'undefined'){
8306             this.modified[name] = this.data[name];
8307         }
8308         this.data[name] = value;
8309         if(!this.editing && this.store){
8310             this.store.afterEdit(this);
8311         }       
8312     },
8313
8314     /**
8315      * Get the value of the named field.
8316      * @param {String} name The name of the field to get the value of.
8317      * @return {Object} The value of the field.
8318      */
8319     get : function(name){
8320         return this.data[name]; 
8321     },
8322
8323     // private
8324     beginEdit : function(){
8325         this.editing = true;
8326         this.modified = {}; 
8327     },
8328
8329     // private
8330     cancelEdit : function(){
8331         this.editing = false;
8332         delete this.modified;
8333     },
8334
8335     // private
8336     endEdit : function(){
8337         this.editing = false;
8338         if(this.dirty && this.store){
8339             this.store.afterEdit(this);
8340         }
8341     },
8342
8343     /**
8344      * Usually called by the {@link Roo.data.Store} which owns the Record.
8345      * Rejects all changes made to the Record since either creation, or the last commit operation.
8346      * Modified fields are reverted to their original values.
8347      * <p>
8348      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
8349      * of reject operations.
8350      */
8351     reject : function(){
8352         var m = this.modified;
8353         for(var n in m){
8354             if(typeof m[n] != "function"){
8355                 this.data[n] = m[n];
8356             }
8357         }
8358         this.dirty = false;
8359         delete this.modified;
8360         this.editing = false;
8361         if(this.store){
8362             this.store.afterReject(this);
8363         }
8364     },
8365
8366     /**
8367      * Usually called by the {@link Roo.data.Store} which owns the Record.
8368      * Commits all changes made to the Record since either creation, or the last commit operation.
8369      * <p>
8370      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
8371      * of commit operations.
8372      */
8373     commit : function(){
8374         this.dirty = false;
8375         delete this.modified;
8376         this.editing = false;
8377         if(this.store){
8378             this.store.afterCommit(this);
8379         }
8380     },
8381
8382     // private
8383     hasError : function(){
8384         return this.error != null;
8385     },
8386
8387     // private
8388     clearError : function(){
8389         this.error = null;
8390     },
8391
8392     /**
8393      * Creates a copy of this record.
8394      * @param {String} id (optional) A new record id if you don't want to use this record's id
8395      * @return {Record}
8396      */
8397     copy : function(newId) {
8398         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
8399     }
8400 };/*
8401  * Based on:
8402  * Ext JS Library 1.1.1
8403  * Copyright(c) 2006-2007, Ext JS, LLC.
8404  *
8405  * Originally Released Under LGPL - original licence link has changed is not relivant.
8406  *
8407  * Fork - LGPL
8408  * <script type="text/javascript">
8409  */
8410
8411
8412
8413 /**
8414  * @class Roo.data.Store
8415  * @extends Roo.util.Observable
8416  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
8417  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
8418  * <p>
8419  * 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
8420  * has no knowledge of the format of the data returned by the Proxy.<br>
8421  * <p>
8422  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
8423  * instances from the data object. These records are cached and made available through accessor functions.
8424  * @constructor
8425  * Creates a new Store.
8426  * @param {Object} config A config object containing the objects needed for the Store to access data,
8427  * and read the data into Records.
8428  */
8429 Roo.data.Store = function(config){
8430     this.data = new Roo.util.MixedCollection(false);
8431     this.data.getKey = function(o){
8432         return o.id;
8433     };
8434     this.baseParams = {};
8435     // private
8436     this.paramNames = {
8437         "start" : "start",
8438         "limit" : "limit",
8439         "sort" : "sort",
8440         "dir" : "dir",
8441         "multisort" : "_multisort"
8442     };
8443
8444     if(config && config.data){
8445         this.inlineData = config.data;
8446         delete config.data;
8447     }
8448
8449     Roo.apply(this, config);
8450     
8451     if(this.reader){ // reader passed
8452         this.reader = Roo.factory(this.reader, Roo.data);
8453         this.reader.xmodule = this.xmodule || false;
8454         if(!this.recordType){
8455             this.recordType = this.reader.recordType;
8456         }
8457         if(this.reader.onMetaChange){
8458             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
8459         }
8460     }
8461
8462     if(this.recordType){
8463         this.fields = this.recordType.prototype.fields;
8464     }
8465     this.modified = [];
8466
8467     this.addEvents({
8468         /**
8469          * @event datachanged
8470          * Fires when the data cache has changed, and a widget which is using this Store
8471          * as a Record cache should refresh its view.
8472          * @param {Store} this
8473          */
8474         datachanged : true,
8475         /**
8476          * @event metachange
8477          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
8478          * @param {Store} this
8479          * @param {Object} meta The JSON metadata
8480          */
8481         metachange : true,
8482         /**
8483          * @event add
8484          * Fires when Records have been added to the Store
8485          * @param {Store} this
8486          * @param {Roo.data.Record[]} records The array of Records added
8487          * @param {Number} index The index at which the record(s) were added
8488          */
8489         add : true,
8490         /**
8491          * @event remove
8492          * Fires when a Record has been removed from the Store
8493          * @param {Store} this
8494          * @param {Roo.data.Record} record The Record that was removed
8495          * @param {Number} index The index at which the record was removed
8496          */
8497         remove : true,
8498         /**
8499          * @event update
8500          * Fires when a Record has been updated
8501          * @param {Store} this
8502          * @param {Roo.data.Record} record The Record that was updated
8503          * @param {String} operation The update operation being performed.  Value may be one of:
8504          * <pre><code>
8505  Roo.data.Record.EDIT
8506  Roo.data.Record.REJECT
8507  Roo.data.Record.COMMIT
8508          * </code></pre>
8509          */
8510         update : true,
8511         /**
8512          * @event clear
8513          * Fires when the data cache has been cleared.
8514          * @param {Store} this
8515          */
8516         clear : true,
8517         /**
8518          * @event beforeload
8519          * Fires before a request is made for a new data object.  If the beforeload handler returns false
8520          * the load action will be canceled.
8521          * @param {Store} this
8522          * @param {Object} options The loading options that were specified (see {@link #load} for details)
8523          */
8524         beforeload : true,
8525         /**
8526          * @event beforeloadadd
8527          * Fires after a new set of Records has been loaded.
8528          * @param {Store} this
8529          * @param {Roo.data.Record[]} records The Records that were loaded
8530          * @param {Object} options The loading options that were specified (see {@link #load} for details)
8531          */
8532         beforeloadadd : true,
8533         /**
8534          * @event load
8535          * Fires after a new set of Records has been loaded, before they are added to the store.
8536          * @param {Store} this
8537          * @param {Roo.data.Record[]} records The Records that were loaded
8538          * @param {Object} options The loading options that were specified (see {@link #load} for details)
8539          * @params {Object} return from reader
8540          */
8541         load : true,
8542         /**
8543          * @event loadexception
8544          * Fires if an exception occurs in the Proxy during loading.
8545          * Called with the signature of the Proxy's "loadexception" event.
8546          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
8547          * 
8548          * @param {Proxy} 
8549          * @param {Object} return from JsonData.reader() - success, totalRecords, records
8550          * @param {Object} load options 
8551          * @param {Object} jsonData from your request (normally this contains the Exception)
8552          */
8553         loadexception : true
8554     });
8555     
8556     if(this.proxy){
8557         this.proxy = Roo.factory(this.proxy, Roo.data);
8558         this.proxy.xmodule = this.xmodule || false;
8559         this.relayEvents(this.proxy,  ["loadexception"]);
8560     }
8561     this.sortToggle = {};
8562     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
8563
8564     Roo.data.Store.superclass.constructor.call(this);
8565
8566     if(this.inlineData){
8567         this.loadData(this.inlineData);
8568         delete this.inlineData;
8569     }
8570 };
8571
8572 Roo.extend(Roo.data.Store, Roo.util.Observable, {
8573      /**
8574     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
8575     * without a remote query - used by combo/forms at present.
8576     */
8577     
8578     /**
8579     * @cfg {Roo.data.DataProxy} proxy The Proxy object which provides access to a data object.
8580     */
8581     /**
8582     * @cfg {Array} data Inline data to be loaded when the store is initialized.
8583     */
8584     /**
8585     * @cfg {Roo.data.Reader} reader The Reader object which processes the data object and returns
8586     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
8587     */
8588     /**
8589     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
8590     * on any HTTP request
8591     */
8592     /**
8593     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
8594     */
8595     /**
8596     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
8597     */
8598     multiSort: false,
8599     /**
8600     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
8601     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
8602     */
8603     remoteSort : false,
8604
8605     /**
8606     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
8607      * loaded or when a record is removed. (defaults to false).
8608     */
8609     pruneModifiedRecords : false,
8610
8611     // private
8612     lastOptions : null,
8613
8614     /**
8615      * Add Records to the Store and fires the add event.
8616      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
8617      */
8618     add : function(records){
8619         records = [].concat(records);
8620         for(var i = 0, len = records.length; i < len; i++){
8621             records[i].join(this);
8622         }
8623         var index = this.data.length;
8624         this.data.addAll(records);
8625         this.fireEvent("add", this, records, index);
8626     },
8627
8628     /**
8629      * Remove a Record from the Store and fires the remove event.
8630      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
8631      */
8632     remove : function(record){
8633         var index = this.data.indexOf(record);
8634         this.data.removeAt(index);
8635         if(this.pruneModifiedRecords){
8636             this.modified.remove(record);
8637         }
8638         this.fireEvent("remove", this, record, index);
8639     },
8640
8641     /**
8642      * Remove all Records from the Store and fires the clear event.
8643      */
8644     removeAll : function(){
8645         this.data.clear();
8646         if(this.pruneModifiedRecords){
8647             this.modified = [];
8648         }
8649         this.fireEvent("clear", this);
8650     },
8651
8652     /**
8653      * Inserts Records to the Store at the given index and fires the add event.
8654      * @param {Number} index The start index at which to insert the passed Records.
8655      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
8656      */
8657     insert : function(index, records){
8658         records = [].concat(records);
8659         for(var i = 0, len = records.length; i < len; i++){
8660             this.data.insert(index, records[i]);
8661             records[i].join(this);
8662         }
8663         this.fireEvent("add", this, records, index);
8664     },
8665
8666     /**
8667      * Get the index within the cache of the passed Record.
8668      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
8669      * @return {Number} The index of the passed Record. Returns -1 if not found.
8670      */
8671     indexOf : function(record){
8672         return this.data.indexOf(record);
8673     },
8674
8675     /**
8676      * Get the index within the cache of the Record with the passed id.
8677      * @param {String} id The id of the Record to find.
8678      * @return {Number} The index of the Record. Returns -1 if not found.
8679      */
8680     indexOfId : function(id){
8681         return this.data.indexOfKey(id);
8682     },
8683
8684     /**
8685      * Get the Record with the specified id.
8686      * @param {String} id The id of the Record to find.
8687      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
8688      */
8689     getById : function(id){
8690         return this.data.key(id);
8691     },
8692
8693     /**
8694      * Get the Record at the specified index.
8695      * @param {Number} index The index of the Record to find.
8696      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
8697      */
8698     getAt : function(index){
8699         return this.data.itemAt(index);
8700     },
8701
8702     /**
8703      * Returns a range of Records between specified indices.
8704      * @param {Number} startIndex (optional) The starting index (defaults to 0)
8705      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
8706      * @return {Roo.data.Record[]} An array of Records
8707      */
8708     getRange : function(start, end){
8709         return this.data.getRange(start, end);
8710     },
8711
8712     // private
8713     storeOptions : function(o){
8714         o = Roo.apply({}, o);
8715         delete o.callback;
8716         delete o.scope;
8717         this.lastOptions = o;
8718     },
8719
8720     /**
8721      * Loads the Record cache from the configured Proxy using the configured Reader.
8722      * <p>
8723      * If using remote paging, then the first load call must specify the <em>start</em>
8724      * and <em>limit</em> properties in the options.params property to establish the initial
8725      * position within the dataset, and the number of Records to cache on each read from the Proxy.
8726      * <p>
8727      * <strong>It is important to note that for remote data sources, loading is asynchronous,
8728      * and this call will return before the new data has been loaded. Perform any post-processing
8729      * in a callback function, or in a "load" event handler.</strong>
8730      * <p>
8731      * @param {Object} options An object containing properties which control loading options:<ul>
8732      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
8733      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
8734      * passed the following arguments:<ul>
8735      * <li>r : Roo.data.Record[]</li>
8736      * <li>options: Options object from the load call</li>
8737      * <li>success: Boolean success indicator</li></ul></li>
8738      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
8739      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
8740      * </ul>
8741      */
8742     load : function(options){
8743         options = options || {};
8744         if(this.fireEvent("beforeload", this, options) !== false){
8745             this.storeOptions(options);
8746             var p = Roo.apply(options.params || {}, this.baseParams);
8747             // if meta was not loaded from remote source.. try requesting it.
8748             if (!this.reader.metaFromRemote) {
8749                 p._requestMeta = 1;
8750             }
8751             if(this.sortInfo && this.remoteSort){
8752                 var pn = this.paramNames;
8753                 p[pn["sort"]] = this.sortInfo.field;
8754                 p[pn["dir"]] = this.sortInfo.direction;
8755             }
8756             if (this.multiSort) {
8757                 var pn = this.paramNames;
8758                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
8759             }
8760             
8761             this.proxy.load(p, this.reader, this.loadRecords, this, options);
8762         }
8763     },
8764
8765     /**
8766      * Reloads the Record cache from the configured Proxy using the configured Reader and
8767      * the options from the last load operation performed.
8768      * @param {Object} options (optional) An object containing properties which may override the options
8769      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
8770      * the most recently used options are reused).
8771      */
8772     reload : function(options){
8773         this.load(Roo.applyIf(options||{}, this.lastOptions));
8774     },
8775
8776     // private
8777     // Called as a callback by the Reader during a load operation.
8778     loadRecords : function(o, options, success){
8779         if(!o || success === false){
8780             if(success !== false){
8781                 this.fireEvent("load", this, [], options, o);
8782             }
8783             if(options.callback){
8784                 options.callback.call(options.scope || this, [], options, false);
8785             }
8786             return;
8787         }
8788         // if data returned failure - throw an exception.
8789         if (o.success === false) {
8790             // show a message if no listener is registered.
8791             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
8792                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
8793             }
8794             // loadmask wil be hooked into this..
8795             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
8796             return;
8797         }
8798         var r = o.records, t = o.totalRecords || r.length;
8799         
8800         this.fireEvent("beforeloadadd", this, r, options, o);
8801         
8802         if(!options || options.add !== true){
8803             if(this.pruneModifiedRecords){
8804                 this.modified = [];
8805             }
8806             for(var i = 0, len = r.length; i < len; i++){
8807                 r[i].join(this);
8808             }
8809             if(this.snapshot){
8810                 this.data = this.snapshot;
8811                 delete this.snapshot;
8812             }
8813             this.data.clear();
8814             this.data.addAll(r);
8815             this.totalLength = t;
8816             this.applySort();
8817             this.fireEvent("datachanged", this);
8818         }else{
8819             this.totalLength = Math.max(t, this.data.length+r.length);
8820             this.add(r);
8821         }
8822         this.fireEvent("load", this, r, options, o);
8823         if(options.callback){
8824             options.callback.call(options.scope || this, r, options, true);
8825         }
8826     },
8827
8828
8829     /**
8830      * Loads data from a passed data block. A Reader which understands the format of the data
8831      * must have been configured in the constructor.
8832      * @param {Object} data The data block from which to read the Records.  The format of the data expected
8833      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
8834      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
8835      */
8836     loadData : function(o, append){
8837         var r = this.reader.readRecords(o);
8838         this.loadRecords(r, {add: append}, true);
8839     },
8840
8841     /**
8842      * Gets the number of cached records.
8843      * <p>
8844      * <em>If using paging, this may not be the total size of the dataset. If the data object
8845      * used by the Reader contains the dataset size, then the getTotalCount() function returns
8846      * the data set size</em>
8847      */
8848     getCount : function(){
8849         return this.data.length || 0;
8850     },
8851
8852     /**
8853      * Gets the total number of records in the dataset as returned by the server.
8854      * <p>
8855      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
8856      * the dataset size</em>
8857      */
8858     getTotalCount : function(){
8859         return this.totalLength || 0;
8860     },
8861
8862     /**
8863      * Returns the sort state of the Store as an object with two properties:
8864      * <pre><code>
8865  field {String} The name of the field by which the Records are sorted
8866  direction {String} The sort order, "ASC" or "DESC"
8867      * </code></pre>
8868      */
8869     getSortState : function(){
8870         return this.sortInfo;
8871     },
8872
8873     // private
8874     applySort : function(){
8875         if(this.sortInfo && !this.remoteSort){
8876             var s = this.sortInfo, f = s.field;
8877             var st = this.fields.get(f).sortType;
8878             var fn = function(r1, r2){
8879                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
8880                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
8881             };
8882             this.data.sort(s.direction, fn);
8883             if(this.snapshot && this.snapshot != this.data){
8884                 this.snapshot.sort(s.direction, fn);
8885             }
8886         }
8887     },
8888
8889     /**
8890      * Sets the default sort column and order to be used by the next load operation.
8891      * @param {String} fieldName The name of the field to sort by.
8892      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
8893      */
8894     setDefaultSort : function(field, dir){
8895         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
8896     },
8897
8898     /**
8899      * Sort the Records.
8900      * If remote sorting is used, the sort is performed on the server, and the cache is
8901      * reloaded. If local sorting is used, the cache is sorted internally.
8902      * @param {String} fieldName The name of the field to sort by.
8903      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
8904      */
8905     sort : function(fieldName, dir){
8906         var f = this.fields.get(fieldName);
8907         if(!dir){
8908             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
8909             
8910             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
8911                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
8912             }else{
8913                 dir = f.sortDir;
8914             }
8915         }
8916         this.sortToggle[f.name] = dir;
8917         this.sortInfo = {field: f.name, direction: dir};
8918         if(!this.remoteSort){
8919             this.applySort();
8920             this.fireEvent("datachanged", this);
8921         }else{
8922             this.load(this.lastOptions);
8923         }
8924     },
8925
8926     /**
8927      * Calls the specified function for each of the Records in the cache.
8928      * @param {Function} fn The function to call. The Record is passed as the first parameter.
8929      * Returning <em>false</em> aborts and exits the iteration.
8930      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
8931      */
8932     each : function(fn, scope){
8933         this.data.each(fn, scope);
8934     },
8935
8936     /**
8937      * Gets all records modified since the last commit.  Modified records are persisted across load operations
8938      * (e.g., during paging).
8939      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
8940      */
8941     getModifiedRecords : function(){
8942         return this.modified;
8943     },
8944
8945     // private
8946     createFilterFn : function(property, value, anyMatch){
8947         if(!value.exec){ // not a regex
8948             value = String(value);
8949             if(value.length == 0){
8950                 return false;
8951             }
8952             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
8953         }
8954         return function(r){
8955             return value.test(r.data[property]);
8956         };
8957     },
8958
8959     /**
8960      * Sums the value of <i>property</i> for each record between start and end and returns the result.
8961      * @param {String} property A field on your records
8962      * @param {Number} start The record index to start at (defaults to 0)
8963      * @param {Number} end The last record index to include (defaults to length - 1)
8964      * @return {Number} The sum
8965      */
8966     sum : function(property, start, end){
8967         var rs = this.data.items, v = 0;
8968         start = start || 0;
8969         end = (end || end === 0) ? end : rs.length-1;
8970
8971         for(var i = start; i <= end; i++){
8972             v += (rs[i].data[property] || 0);
8973         }
8974         return v;
8975     },
8976
8977     /**
8978      * Filter the records by a specified property.
8979      * @param {String} field A field on your records
8980      * @param {String/RegExp} value Either a string that the field
8981      * should start with or a RegExp to test against the field
8982      * @param {Boolean} anyMatch True to match any part not just the beginning
8983      */
8984     filter : function(property, value, anyMatch){
8985         var fn = this.createFilterFn(property, value, anyMatch);
8986         return fn ? this.filterBy(fn) : this.clearFilter();
8987     },
8988
8989     /**
8990      * Filter by a function. The specified function will be called with each
8991      * record in this data source. If the function returns true the record is included,
8992      * otherwise it is filtered.
8993      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
8994      * @param {Object} scope (optional) The scope of the function (defaults to this)
8995      */
8996     filterBy : function(fn, scope){
8997         this.snapshot = this.snapshot || this.data;
8998         this.data = this.queryBy(fn, scope||this);
8999         this.fireEvent("datachanged", this);
9000     },
9001
9002     /**
9003      * Query the records by a specified property.
9004      * @param {String} field A field on your records
9005      * @param {String/RegExp} value Either a string that the field
9006      * should start with or a RegExp to test against the field
9007      * @param {Boolean} anyMatch True to match any part not just the beginning
9008      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
9009      */
9010     query : function(property, value, anyMatch){
9011         var fn = this.createFilterFn(property, value, anyMatch);
9012         return fn ? this.queryBy(fn) : this.data.clone();
9013     },
9014
9015     /**
9016      * Query by a function. The specified function will be called with each
9017      * record in this data source. If the function returns true the record is included
9018      * in the results.
9019      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
9020      * @param {Object} scope (optional) The scope of the function (defaults to this)
9021       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
9022      **/
9023     queryBy : function(fn, scope){
9024         var data = this.snapshot || this.data;
9025         return data.filterBy(fn, scope||this);
9026     },
9027
9028     /**
9029      * Collects unique values for a particular dataIndex from this store.
9030      * @param {String} dataIndex The property to collect
9031      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
9032      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
9033      * @return {Array} An array of the unique values
9034      **/
9035     collect : function(dataIndex, allowNull, bypassFilter){
9036         var d = (bypassFilter === true && this.snapshot) ?
9037                 this.snapshot.items : this.data.items;
9038         var v, sv, r = [], l = {};
9039         for(var i = 0, len = d.length; i < len; i++){
9040             v = d[i].data[dataIndex];
9041             sv = String(v);
9042             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
9043                 l[sv] = true;
9044                 r[r.length] = v;
9045             }
9046         }
9047         return r;
9048     },
9049
9050     /**
9051      * Revert to a view of the Record cache with no filtering applied.
9052      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
9053      */
9054     clearFilter : function(suppressEvent){
9055         if(this.snapshot && this.snapshot != this.data){
9056             this.data = this.snapshot;
9057             delete this.snapshot;
9058             if(suppressEvent !== true){
9059                 this.fireEvent("datachanged", this);
9060             }
9061         }
9062     },
9063
9064     // private
9065     afterEdit : function(record){
9066         if(this.modified.indexOf(record) == -1){
9067             this.modified.push(record);
9068         }
9069         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
9070     },
9071     
9072     // private
9073     afterReject : function(record){
9074         this.modified.remove(record);
9075         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
9076     },
9077
9078     // private
9079     afterCommit : function(record){
9080         this.modified.remove(record);
9081         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
9082     },
9083
9084     /**
9085      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
9086      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
9087      */
9088     commitChanges : function(){
9089         var m = this.modified.slice(0);
9090         this.modified = [];
9091         for(var i = 0, len = m.length; i < len; i++){
9092             m[i].commit();
9093         }
9094     },
9095
9096     /**
9097      * Cancel outstanding changes on all changed records.
9098      */
9099     rejectChanges : function(){
9100         var m = this.modified.slice(0);
9101         this.modified = [];
9102         for(var i = 0, len = m.length; i < len; i++){
9103             m[i].reject();
9104         }
9105     },
9106
9107     onMetaChange : function(meta, rtype, o){
9108         this.recordType = rtype;
9109         this.fields = rtype.prototype.fields;
9110         delete this.snapshot;
9111         this.sortInfo = meta.sortInfo || this.sortInfo;
9112         this.modified = [];
9113         this.fireEvent('metachange', this, this.reader.meta);
9114     },
9115     
9116     moveIndex : function(data, type)
9117     {
9118         var index = this.indexOf(data);
9119         
9120         var newIndex = index + type;
9121         
9122         this.remove(data);
9123         
9124         this.insert(newIndex, data);
9125         
9126     }
9127 });/*
9128  * Based on:
9129  * Ext JS Library 1.1.1
9130  * Copyright(c) 2006-2007, Ext JS, LLC.
9131  *
9132  * Originally Released Under LGPL - original licence link has changed is not relivant.
9133  *
9134  * Fork - LGPL
9135  * <script type="text/javascript">
9136  */
9137
9138 /**
9139  * @class Roo.data.SimpleStore
9140  * @extends Roo.data.Store
9141  * Small helper class to make creating Stores from Array data easier.
9142  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
9143  * @cfg {Array} fields An array of field definition objects, or field name strings.
9144  * @cfg {Array} data The multi-dimensional array of data
9145  * @constructor
9146  * @param {Object} config
9147  */
9148 Roo.data.SimpleStore = function(config){
9149     Roo.data.SimpleStore.superclass.constructor.call(this, {
9150         isLocal : true,
9151         reader: new Roo.data.ArrayReader({
9152                 id: config.id
9153             },
9154             Roo.data.Record.create(config.fields)
9155         ),
9156         proxy : new Roo.data.MemoryProxy(config.data)
9157     });
9158     this.load();
9159 };
9160 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
9161  * Based on:
9162  * Ext JS Library 1.1.1
9163  * Copyright(c) 2006-2007, Ext JS, LLC.
9164  *
9165  * Originally Released Under LGPL - original licence link has changed is not relivant.
9166  *
9167  * Fork - LGPL
9168  * <script type="text/javascript">
9169  */
9170
9171 /**
9172 /**
9173  * @extends Roo.data.Store
9174  * @class Roo.data.JsonStore
9175  * Small helper class to make creating Stores for JSON data easier. <br/>
9176 <pre><code>
9177 var store = new Roo.data.JsonStore({
9178     url: 'get-images.php',
9179     root: 'images',
9180     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
9181 });
9182 </code></pre>
9183  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
9184  * JsonReader and HttpProxy (unless inline data is provided).</b>
9185  * @cfg {Array} fields An array of field definition objects, or field name strings.
9186  * @constructor
9187  * @param {Object} config
9188  */
9189 Roo.data.JsonStore = function(c){
9190     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
9191         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
9192         reader: new Roo.data.JsonReader(c, c.fields)
9193     }));
9194 };
9195 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
9196  * Based on:
9197  * Ext JS Library 1.1.1
9198  * Copyright(c) 2006-2007, Ext JS, LLC.
9199  *
9200  * Originally Released Under LGPL - original licence link has changed is not relivant.
9201  *
9202  * Fork - LGPL
9203  * <script type="text/javascript">
9204  */
9205
9206  
9207 Roo.data.Field = function(config){
9208     if(typeof config == "string"){
9209         config = {name: config};
9210     }
9211     Roo.apply(this, config);
9212     
9213     if(!this.type){
9214         this.type = "auto";
9215     }
9216     
9217     var st = Roo.data.SortTypes;
9218     // named sortTypes are supported, here we look them up
9219     if(typeof this.sortType == "string"){
9220         this.sortType = st[this.sortType];
9221     }
9222     
9223     // set default sortType for strings and dates
9224     if(!this.sortType){
9225         switch(this.type){
9226             case "string":
9227                 this.sortType = st.asUCString;
9228                 break;
9229             case "date":
9230                 this.sortType = st.asDate;
9231                 break;
9232             default:
9233                 this.sortType = st.none;
9234         }
9235     }
9236
9237     // define once
9238     var stripRe = /[\$,%]/g;
9239
9240     // prebuilt conversion function for this field, instead of
9241     // switching every time we're reading a value
9242     if(!this.convert){
9243         var cv, dateFormat = this.dateFormat;
9244         switch(this.type){
9245             case "":
9246             case "auto":
9247             case undefined:
9248                 cv = function(v){ return v; };
9249                 break;
9250             case "string":
9251                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
9252                 break;
9253             case "int":
9254                 cv = function(v){
9255                     return v !== undefined && v !== null && v !== '' ?
9256                            parseInt(String(v).replace(stripRe, ""), 10) : '';
9257                     };
9258                 break;
9259             case "float":
9260                 cv = function(v){
9261                     return v !== undefined && v !== null && v !== '' ?
9262                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
9263                     };
9264                 break;
9265             case "bool":
9266             case "boolean":
9267                 cv = function(v){ return v === true || v === "true" || v == 1; };
9268                 break;
9269             case "date":
9270                 cv = function(v){
9271                     if(!v){
9272                         return '';
9273                     }
9274                     if(v instanceof Date){
9275                         return v;
9276                     }
9277                     if(dateFormat){
9278                         if(dateFormat == "timestamp"){
9279                             return new Date(v*1000);
9280                         }
9281                         return Date.parseDate(v, dateFormat);
9282                     }
9283                     var parsed = Date.parse(v);
9284                     return parsed ? new Date(parsed) : null;
9285                 };
9286              break;
9287             
9288         }
9289         this.convert = cv;
9290     }
9291 };
9292
9293 Roo.data.Field.prototype = {
9294     dateFormat: null,
9295     defaultValue: "",
9296     mapping: null,
9297     sortType : null,
9298     sortDir : "ASC"
9299 };/*
9300  * Based on:
9301  * Ext JS Library 1.1.1
9302  * Copyright(c) 2006-2007, Ext JS, LLC.
9303  *
9304  * Originally Released Under LGPL - original licence link has changed is not relivant.
9305  *
9306  * Fork - LGPL
9307  * <script type="text/javascript">
9308  */
9309  
9310 // Base class for reading structured data from a data source.  This class is intended to be
9311 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
9312
9313 /**
9314  * @class Roo.data.DataReader
9315  * Base class for reading structured data from a data source.  This class is intended to be
9316  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
9317  */
9318
9319 Roo.data.DataReader = function(meta, recordType){
9320     
9321     this.meta = meta;
9322     
9323     this.recordType = recordType instanceof Array ? 
9324         Roo.data.Record.create(recordType) : recordType;
9325 };
9326
9327 Roo.data.DataReader.prototype = {
9328      /**
9329      * Create an empty record
9330      * @param {Object} data (optional) - overlay some values
9331      * @return {Roo.data.Record} record created.
9332      */
9333     newRow :  function(d) {
9334         var da =  {};
9335         this.recordType.prototype.fields.each(function(c) {
9336             switch( c.type) {
9337                 case 'int' : da[c.name] = 0; break;
9338                 case 'date' : da[c.name] = new Date(); break;
9339                 case 'float' : da[c.name] = 0.0; break;
9340                 case 'boolean' : da[c.name] = false; break;
9341                 default : da[c.name] = ""; break;
9342             }
9343             
9344         });
9345         return new this.recordType(Roo.apply(da, d));
9346     }
9347     
9348 };/*
9349  * Based on:
9350  * Ext JS Library 1.1.1
9351  * Copyright(c) 2006-2007, Ext JS, LLC.
9352  *
9353  * Originally Released Under LGPL - original licence link has changed is not relivant.
9354  *
9355  * Fork - LGPL
9356  * <script type="text/javascript">
9357  */
9358
9359 /**
9360  * @class Roo.data.DataProxy
9361  * @extends Roo.data.Observable
9362  * This class is an abstract base class for implementations which provide retrieval of
9363  * unformatted data objects.<br>
9364  * <p>
9365  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
9366  * (of the appropriate type which knows how to parse the data object) to provide a block of
9367  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
9368  * <p>
9369  * Custom implementations must implement the load method as described in
9370  * {@link Roo.data.HttpProxy#load}.
9371  */
9372 Roo.data.DataProxy = function(){
9373     this.addEvents({
9374         /**
9375          * @event beforeload
9376          * Fires before a network request is made to retrieve a data object.
9377          * @param {Object} This DataProxy object.
9378          * @param {Object} params The params parameter to the load function.
9379          */
9380         beforeload : true,
9381         /**
9382          * @event load
9383          * Fires before the load method's callback is called.
9384          * @param {Object} This DataProxy object.
9385          * @param {Object} o The data object.
9386          * @param {Object} arg The callback argument object passed to the load function.
9387          */
9388         load : true,
9389         /**
9390          * @event loadexception
9391          * Fires if an Exception occurs during data retrieval.
9392          * @param {Object} This DataProxy object.
9393          * @param {Object} o The data object.
9394          * @param {Object} arg The callback argument object passed to the load function.
9395          * @param {Object} e The Exception.
9396          */
9397         loadexception : true
9398     });
9399     Roo.data.DataProxy.superclass.constructor.call(this);
9400 };
9401
9402 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
9403
9404     /**
9405      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
9406      */
9407 /*
9408  * Based on:
9409  * Ext JS Library 1.1.1
9410  * Copyright(c) 2006-2007, Ext JS, LLC.
9411  *
9412  * Originally Released Under LGPL - original licence link has changed is not relivant.
9413  *
9414  * Fork - LGPL
9415  * <script type="text/javascript">
9416  */
9417 /**
9418  * @class Roo.data.MemoryProxy
9419  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
9420  * to the Reader when its load method is called.
9421  * @constructor
9422  * @param {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
9423  */
9424 Roo.data.MemoryProxy = function(data){
9425     if (data.data) {
9426         data = data.data;
9427     }
9428     Roo.data.MemoryProxy.superclass.constructor.call(this);
9429     this.data = data;
9430 };
9431
9432 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
9433     /**
9434      * Load data from the requested source (in this case an in-memory
9435      * data object passed to the constructor), read the data object into
9436      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
9437      * process that block using the passed callback.
9438      * @param {Object} params This parameter is not used by the MemoryProxy class.
9439      * @param {Roo.data.DataReader} reader The Reader object which converts the data
9440      * object into a block of Roo.data.Records.
9441      * @param {Function} callback The function into which to pass the block of Roo.data.records.
9442      * The function must be passed <ul>
9443      * <li>The Record block object</li>
9444      * <li>The "arg" argument from the load function</li>
9445      * <li>A boolean success indicator</li>
9446      * </ul>
9447      * @param {Object} scope The scope in which to call the callback
9448      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
9449      */
9450     load : function(params, reader, callback, scope, arg){
9451         params = params || {};
9452         var result;
9453         try {
9454             result = reader.readRecords(this.data);
9455         }catch(e){
9456             this.fireEvent("loadexception", this, arg, null, e);
9457             callback.call(scope, null, arg, false);
9458             return;
9459         }
9460         callback.call(scope, result, arg, true);
9461     },
9462     
9463     // private
9464     update : function(params, records){
9465         
9466     }
9467 });/*
9468  * Based on:
9469  * Ext JS Library 1.1.1
9470  * Copyright(c) 2006-2007, Ext JS, LLC.
9471  *
9472  * Originally Released Under LGPL - original licence link has changed is not relivant.
9473  *
9474  * Fork - LGPL
9475  * <script type="text/javascript">
9476  */
9477 /**
9478  * @class Roo.data.HttpProxy
9479  * @extends Roo.data.DataProxy
9480  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
9481  * configured to reference a certain URL.<br><br>
9482  * <p>
9483  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
9484  * from which the running page was served.<br><br>
9485  * <p>
9486  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
9487  * <p>
9488  * Be aware that to enable the browser to parse an XML document, the server must set
9489  * the Content-Type header in the HTTP response to "text/xml".
9490  * @constructor
9491  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
9492  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
9493  * will be used to make the request.
9494  */
9495 Roo.data.HttpProxy = function(conn){
9496     Roo.data.HttpProxy.superclass.constructor.call(this);
9497     // is conn a conn config or a real conn?
9498     this.conn = conn;
9499     this.useAjax = !conn || !conn.events;
9500   
9501 };
9502
9503 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
9504     // thse are take from connection...
9505     
9506     /**
9507      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
9508      */
9509     /**
9510      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
9511      * extra parameters to each request made by this object. (defaults to undefined)
9512      */
9513     /**
9514      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
9515      *  to each request made by this object. (defaults to undefined)
9516      */
9517     /**
9518      * @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)
9519      */
9520     /**
9521      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
9522      */
9523      /**
9524      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
9525      * @type Boolean
9526      */
9527   
9528
9529     /**
9530      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
9531      * @type Boolean
9532      */
9533     /**
9534      * Return the {@link Roo.data.Connection} object being used by this Proxy.
9535      * @return {Connection} The Connection object. This object may be used to subscribe to events on
9536      * a finer-grained basis than the DataProxy events.
9537      */
9538     getConnection : function(){
9539         return this.useAjax ? Roo.Ajax : this.conn;
9540     },
9541
9542     /**
9543      * Load data from the configured {@link Roo.data.Connection}, read the data object into
9544      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
9545      * process that block using the passed callback.
9546      * @param {Object} params An object containing properties which are to be used as HTTP parameters
9547      * for the request to the remote server.
9548      * @param {Roo.data.DataReader} reader The Reader object which converts the data
9549      * object into a block of Roo.data.Records.
9550      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
9551      * The function must be passed <ul>
9552      * <li>The Record block object</li>
9553      * <li>The "arg" argument from the load function</li>
9554      * <li>A boolean success indicator</li>
9555      * </ul>
9556      * @param {Object} scope The scope in which to call the callback
9557      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
9558      */
9559     load : function(params, reader, callback, scope, arg){
9560         if(this.fireEvent("beforeload", this, params) !== false){
9561             var  o = {
9562                 params : params || {},
9563                 request: {
9564                     callback : callback,
9565                     scope : scope,
9566                     arg : arg
9567                 },
9568                 reader: reader,
9569                 callback : this.loadResponse,
9570                 scope: this
9571             };
9572             if(this.useAjax){
9573                 Roo.applyIf(o, this.conn);
9574                 if(this.activeRequest){
9575                     Roo.Ajax.abort(this.activeRequest);
9576                 }
9577                 this.activeRequest = Roo.Ajax.request(o);
9578             }else{
9579                 this.conn.request(o);
9580             }
9581         }else{
9582             callback.call(scope||this, null, arg, false);
9583         }
9584     },
9585
9586     // private
9587     loadResponse : function(o, success, response){
9588         delete this.activeRequest;
9589         if(!success){
9590             this.fireEvent("loadexception", this, o, response);
9591             o.request.callback.call(o.request.scope, null, o.request.arg, false);
9592             return;
9593         }
9594         var result;
9595         try {
9596             result = o.reader.read(response);
9597         }catch(e){
9598             this.fireEvent("loadexception", this, o, response, e);
9599             o.request.callback.call(o.request.scope, null, o.request.arg, false);
9600             return;
9601         }
9602         
9603         this.fireEvent("load", this, o, o.request.arg);
9604         o.request.callback.call(o.request.scope, result, o.request.arg, true);
9605     },
9606
9607     // private
9608     update : function(dataSet){
9609
9610     },
9611
9612     // private
9613     updateResponse : function(dataSet){
9614
9615     }
9616 });/*
9617  * Based on:
9618  * Ext JS Library 1.1.1
9619  * Copyright(c) 2006-2007, Ext JS, LLC.
9620  *
9621  * Originally Released Under LGPL - original licence link has changed is not relivant.
9622  *
9623  * Fork - LGPL
9624  * <script type="text/javascript">
9625  */
9626
9627 /**
9628  * @class Roo.data.ScriptTagProxy
9629  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
9630  * other than the originating domain of the running page.<br><br>
9631  * <p>
9632  * <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
9633  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
9634  * <p>
9635  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
9636  * source code that is used as the source inside a &lt;script> tag.<br><br>
9637  * <p>
9638  * In order for the browser to process the returned data, the server must wrap the data object
9639  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
9640  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
9641  * depending on whether the callback name was passed:
9642  * <p>
9643  * <pre><code>
9644 boolean scriptTag = false;
9645 String cb = request.getParameter("callback");
9646 if (cb != null) {
9647     scriptTag = true;
9648     response.setContentType("text/javascript");
9649 } else {
9650     response.setContentType("application/x-json");
9651 }
9652 Writer out = response.getWriter();
9653 if (scriptTag) {
9654     out.write(cb + "(");
9655 }
9656 out.print(dataBlock.toJsonString());
9657 if (scriptTag) {
9658     out.write(");");
9659 }
9660 </pre></code>
9661  *
9662  * @constructor
9663  * @param {Object} config A configuration object.
9664  */
9665 Roo.data.ScriptTagProxy = function(config){
9666     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
9667     Roo.apply(this, config);
9668     this.head = document.getElementsByTagName("head")[0];
9669 };
9670
9671 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
9672
9673 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
9674     /**
9675      * @cfg {String} url The URL from which to request the data object.
9676      */
9677     /**
9678      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
9679      */
9680     timeout : 30000,
9681     /**
9682      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
9683      * the server the name of the callback function set up by the load call to process the returned data object.
9684      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
9685      * javascript output which calls this named function passing the data object as its only parameter.
9686      */
9687     callbackParam : "callback",
9688     /**
9689      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
9690      * name to the request.
9691      */
9692     nocache : true,
9693
9694     /**
9695      * Load data from the configured URL, read the data object into
9696      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
9697      * process that block using the passed callback.
9698      * @param {Object} params An object containing properties which are to be used as HTTP parameters
9699      * for the request to the remote server.
9700      * @param {Roo.data.DataReader} reader The Reader object which converts the data
9701      * object into a block of Roo.data.Records.
9702      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
9703      * The function must be passed <ul>
9704      * <li>The Record block object</li>
9705      * <li>The "arg" argument from the load function</li>
9706      * <li>A boolean success indicator</li>
9707      * </ul>
9708      * @param {Object} scope The scope in which to call the callback
9709      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
9710      */
9711     load : function(params, reader, callback, scope, arg){
9712         if(this.fireEvent("beforeload", this, params) !== false){
9713
9714             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
9715
9716             var url = this.url;
9717             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
9718             if(this.nocache){
9719                 url += "&_dc=" + (new Date().getTime());
9720             }
9721             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
9722             var trans = {
9723                 id : transId,
9724                 cb : "stcCallback"+transId,
9725                 scriptId : "stcScript"+transId,
9726                 params : params,
9727                 arg : arg,
9728                 url : url,
9729                 callback : callback,
9730                 scope : scope,
9731                 reader : reader
9732             };
9733             var conn = this;
9734
9735             window[trans.cb] = function(o){
9736                 conn.handleResponse(o, trans);
9737             };
9738
9739             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
9740
9741             if(this.autoAbort !== false){
9742                 this.abort();
9743             }
9744
9745             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
9746
9747             var script = document.createElement("script");
9748             script.setAttribute("src", url);
9749             script.setAttribute("type", "text/javascript");
9750             script.setAttribute("id", trans.scriptId);
9751             this.head.appendChild(script);
9752
9753             this.trans = trans;
9754         }else{
9755             callback.call(scope||this, null, arg, false);
9756         }
9757     },
9758
9759     // private
9760     isLoading : function(){
9761         return this.trans ? true : false;
9762     },
9763
9764     /**
9765      * Abort the current server request.
9766      */
9767     abort : function(){
9768         if(this.isLoading()){
9769             this.destroyTrans(this.trans);
9770         }
9771     },
9772
9773     // private
9774     destroyTrans : function(trans, isLoaded){
9775         this.head.removeChild(document.getElementById(trans.scriptId));
9776         clearTimeout(trans.timeoutId);
9777         if(isLoaded){
9778             window[trans.cb] = undefined;
9779             try{
9780                 delete window[trans.cb];
9781             }catch(e){}
9782         }else{
9783             // if hasn't been loaded, wait for load to remove it to prevent script error
9784             window[trans.cb] = function(){
9785                 window[trans.cb] = undefined;
9786                 try{
9787                     delete window[trans.cb];
9788                 }catch(e){}
9789             };
9790         }
9791     },
9792
9793     // private
9794     handleResponse : function(o, trans){
9795         this.trans = false;
9796         this.destroyTrans(trans, true);
9797         var result;
9798         try {
9799             result = trans.reader.readRecords(o);
9800         }catch(e){
9801             this.fireEvent("loadexception", this, o, trans.arg, e);
9802             trans.callback.call(trans.scope||window, null, trans.arg, false);
9803             return;
9804         }
9805         this.fireEvent("load", this, o, trans.arg);
9806         trans.callback.call(trans.scope||window, result, trans.arg, true);
9807     },
9808
9809     // private
9810     handleFailure : function(trans){
9811         this.trans = false;
9812         this.destroyTrans(trans, false);
9813         this.fireEvent("loadexception", this, null, trans.arg);
9814         trans.callback.call(trans.scope||window, null, trans.arg, false);
9815     }
9816 });/*
9817  * Based on:
9818  * Ext JS Library 1.1.1
9819  * Copyright(c) 2006-2007, Ext JS, LLC.
9820  *
9821  * Originally Released Under LGPL - original licence link has changed is not relivant.
9822  *
9823  * Fork - LGPL
9824  * <script type="text/javascript">
9825  */
9826
9827 /**
9828  * @class Roo.data.JsonReader
9829  * @extends Roo.data.DataReader
9830  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
9831  * based on mappings in a provided Roo.data.Record constructor.
9832  * 
9833  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
9834  * in the reply previously. 
9835  * 
9836  * <p>
9837  * Example code:
9838  * <pre><code>
9839 var RecordDef = Roo.data.Record.create([
9840     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
9841     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
9842 ]);
9843 var myReader = new Roo.data.JsonReader({
9844     totalProperty: "results",    // The property which contains the total dataset size (optional)
9845     root: "rows",                // The property which contains an Array of row objects
9846     id: "id"                     // The property within each row object that provides an ID for the record (optional)
9847 }, RecordDef);
9848 </code></pre>
9849  * <p>
9850  * This would consume a JSON file like this:
9851  * <pre><code>
9852 { 'results': 2, 'rows': [
9853     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
9854     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
9855 }
9856 </code></pre>
9857  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
9858  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
9859  * paged from the remote server.
9860  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
9861  * @cfg {String} root name of the property which contains the Array of row objects.
9862  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
9863  * @constructor
9864  * Create a new JsonReader
9865  * @param {Object} meta Metadata configuration options
9866  * @param {Object} recordType Either an Array of field definition objects,
9867  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
9868  */
9869 Roo.data.JsonReader = function(meta, recordType){
9870     
9871     meta = meta || {};
9872     // set some defaults:
9873     Roo.applyIf(meta, {
9874         totalProperty: 'total',
9875         successProperty : 'success',
9876         root : 'data',
9877         id : 'id'
9878     });
9879     
9880     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
9881 };
9882 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
9883     
9884     /**
9885      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
9886      * Used by Store query builder to append _requestMeta to params.
9887      * 
9888      */
9889     metaFromRemote : false,
9890     /**
9891      * This method is only used by a DataProxy which has retrieved data from a remote server.
9892      * @param {Object} response The XHR object which contains the JSON data in its responseText.
9893      * @return {Object} data A data block which is used by an Roo.data.Store object as
9894      * a cache of Roo.data.Records.
9895      */
9896     read : function(response){
9897         var json = response.responseText;
9898        
9899         var o = /* eval:var:o */ eval("("+json+")");
9900         if(!o) {
9901             throw {message: "JsonReader.read: Json object not found"};
9902         }
9903         
9904         if(o.metaData){
9905             
9906             delete this.ef;
9907             this.metaFromRemote = true;
9908             this.meta = o.metaData;
9909             this.recordType = Roo.data.Record.create(o.metaData.fields);
9910             this.onMetaChange(this.meta, this.recordType, o);
9911         }
9912         return this.readRecords(o);
9913     },
9914
9915     // private function a store will implement
9916     onMetaChange : function(meta, recordType, o){
9917
9918     },
9919
9920     /**
9921          * @ignore
9922          */
9923     simpleAccess: function(obj, subsc) {
9924         return obj[subsc];
9925     },
9926
9927         /**
9928          * @ignore
9929          */
9930     getJsonAccessor: function(){
9931         var re = /[\[\.]/;
9932         return function(expr) {
9933             try {
9934                 return(re.test(expr))
9935                     ? new Function("obj", "return obj." + expr)
9936                     : function(obj){
9937                         return obj[expr];
9938                     };
9939             } catch(e){}
9940             return Roo.emptyFn;
9941         };
9942     }(),
9943
9944     /**
9945      * Create a data block containing Roo.data.Records from an XML document.
9946      * @param {Object} o An object which contains an Array of row objects in the property specified
9947      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
9948      * which contains the total size of the dataset.
9949      * @return {Object} data A data block which is used by an Roo.data.Store object as
9950      * a cache of Roo.data.Records.
9951      */
9952     readRecords : function(o){
9953         /**
9954          * After any data loads, the raw JSON data is available for further custom processing.
9955          * @type Object
9956          */
9957         this.o = o;
9958         var s = this.meta, Record = this.recordType,
9959             f = Record.prototype.fields, fi = f.items, fl = f.length;
9960
9961 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
9962         if (!this.ef) {
9963             if(s.totalProperty) {
9964                     this.getTotal = this.getJsonAccessor(s.totalProperty);
9965                 }
9966                 if(s.successProperty) {
9967                     this.getSuccess = this.getJsonAccessor(s.successProperty);
9968                 }
9969                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
9970                 if (s.id) {
9971                         var g = this.getJsonAccessor(s.id);
9972                         this.getId = function(rec) {
9973                                 var r = g(rec);
9974                                 return (r === undefined || r === "") ? null : r;
9975                         };
9976                 } else {
9977                         this.getId = function(){return null;};
9978                 }
9979             this.ef = [];
9980             for(var jj = 0; jj < fl; jj++){
9981                 f = fi[jj];
9982                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
9983                 this.ef[jj] = this.getJsonAccessor(map);
9984             }
9985         }
9986
9987         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
9988         if(s.totalProperty){
9989             var vt = parseInt(this.getTotal(o), 10);
9990             if(!isNaN(vt)){
9991                 totalRecords = vt;
9992             }
9993         }
9994         if(s.successProperty){
9995             var vs = this.getSuccess(o);
9996             if(vs === false || vs === 'false'){
9997                 success = false;
9998             }
9999         }
10000         var records = [];
10001             for(var i = 0; i < c; i++){
10002                     var n = root[i];
10003                 var values = {};
10004                 var id = this.getId(n);
10005                 for(var j = 0; j < fl; j++){
10006                     f = fi[j];
10007                 var v = this.ef[j](n);
10008                 if (!f.convert) {
10009                     Roo.log('missing convert for ' + f.name);
10010                     Roo.log(f);
10011                     continue;
10012                 }
10013                 values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
10014                 }
10015                 var record = new Record(values, id);
10016                 record.json = n;
10017                 records[i] = record;
10018             }
10019             return {
10020             raw : o,
10021                 success : success,
10022                 records : records,
10023                 totalRecords : totalRecords
10024             };
10025     }
10026 });/*
10027  * Based on:
10028  * Ext JS Library 1.1.1
10029  * Copyright(c) 2006-2007, Ext JS, LLC.
10030  *
10031  * Originally Released Under LGPL - original licence link has changed is not relivant.
10032  *
10033  * Fork - LGPL
10034  * <script type="text/javascript">
10035  */
10036
10037 /**
10038  * @class Roo.data.ArrayReader
10039  * @extends Roo.data.DataReader
10040  * Data reader class to create an Array of Roo.data.Record objects from an Array.
10041  * Each element of that Array represents a row of data fields. The
10042  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
10043  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
10044  * <p>
10045  * Example code:.
10046  * <pre><code>
10047 var RecordDef = Roo.data.Record.create([
10048     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
10049     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
10050 ]);
10051 var myReader = new Roo.data.ArrayReader({
10052     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
10053 }, RecordDef);
10054 </code></pre>
10055  * <p>
10056  * This would consume an Array like this:
10057  * <pre><code>
10058 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
10059   </code></pre>
10060  * @cfg {String} id (optional) The subscript within row Array that provides an ID for the Record
10061  * @constructor
10062  * Create a new JsonReader
10063  * @param {Object} meta Metadata configuration options.
10064  * @param {Object} recordType Either an Array of field definition objects
10065  * as specified to {@link Roo.data.Record#create},
10066  * or an {@link Roo.data.Record} object
10067  * created using {@link Roo.data.Record#create}.
10068  */
10069 Roo.data.ArrayReader = function(meta, recordType){
10070     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType);
10071 };
10072
10073 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
10074     /**
10075      * Create a data block containing Roo.data.Records from an XML document.
10076      * @param {Object} o An Array of row objects which represents the dataset.
10077      * @return {Object} data A data block which is used by an Roo.data.Store object as
10078      * a cache of Roo.data.Records.
10079      */
10080     readRecords : function(o){
10081         var sid = this.meta ? this.meta.id : null;
10082         var recordType = this.recordType, fields = recordType.prototype.fields;
10083         var records = [];
10084         var root = o;
10085             for(var i = 0; i < root.length; i++){
10086                     var n = root[i];
10087                 var values = {};
10088                 var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
10089                 for(var j = 0, jlen = fields.length; j < jlen; j++){
10090                 var f = fields.items[j];
10091                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
10092                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
10093                 v = f.convert(v);
10094                 values[f.name] = v;
10095             }
10096                 var record = new recordType(values, id);
10097                 record.json = n;
10098                 records[records.length] = record;
10099             }
10100             return {
10101                 records : records,
10102                 totalRecords : records.length
10103             };
10104     }
10105 });/*
10106  * - LGPL
10107  * * 
10108  */
10109
10110 /**
10111  * @class Roo.bootstrap.ComboBox
10112  * @extends Roo.bootstrap.TriggerField
10113  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
10114  * @cfg {Boolean} append (true|false) default false
10115  * @cfg {Boolean} autoFocus (true|false) auto focus the first item, default true
10116  * @cfg {Boolean} tickable ComboBox with tickable selections (true|false), default false
10117  * @cfg {Boolean} triggerList trigger show the list or not (true|false) default true
10118  * @cfg {Boolean} showToggleBtn show toggle button or not (true|false) default true
10119  * @cfg {String} btnPosition set the position of the trigger button (left | right) default right
10120  * @constructor
10121  * Create a new ComboBox.
10122  * @param {Object} config Configuration options
10123  */
10124 Roo.bootstrap.ComboBox = function(config){
10125     Roo.bootstrap.ComboBox.superclass.constructor.call(this, config);
10126     this.addEvents({
10127         /**
10128          * @event expand
10129          * Fires when the dropdown list is expanded
10130              * @param {Roo.bootstrap.ComboBox} combo This combo box
10131              */
10132         'expand' : true,
10133         /**
10134          * @event collapse
10135          * Fires when the dropdown list is collapsed
10136              * @param {Roo.bootstrap.ComboBox} combo This combo box
10137              */
10138         'collapse' : true,
10139         /**
10140          * @event beforeselect
10141          * Fires before a list item is selected. Return false to cancel the selection.
10142              * @param {Roo.bootstrap.ComboBox} combo This combo box
10143              * @param {Roo.data.Record} record The data record returned from the underlying store
10144              * @param {Number} index The index of the selected item in the dropdown list
10145              */
10146         'beforeselect' : true,
10147         /**
10148          * @event select
10149          * Fires when a list item is selected
10150              * @param {Roo.bootstrap.ComboBox} combo This combo box
10151              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
10152              * @param {Number} index The index of the selected item in the dropdown list
10153              */
10154         'select' : true,
10155         /**
10156          * @event beforequery
10157          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
10158          * The event object passed has these properties:
10159              * @param {Roo.bootstrap.ComboBox} combo This combo box
10160              * @param {String} query The query
10161              * @param {Boolean} forceAll true to force "all" query
10162              * @param {Boolean} cancel true to cancel the query
10163              * @param {Object} e The query event object
10164              */
10165         'beforequery': true,
10166          /**
10167          * @event add
10168          * Fires when the 'add' icon is pressed (add a listener to enable add button)
10169              * @param {Roo.bootstrap.ComboBox} combo This combo box
10170              */
10171         'add' : true,
10172         /**
10173          * @event edit
10174          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
10175              * @param {Roo.bootstrap.ComboBox} combo This combo box
10176              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
10177              */
10178         'edit' : true,
10179         /**
10180          * @event remove
10181          * Fires when the remove value from the combobox array
10182              * @param {Roo.bootstrap.ComboBox} combo This combo box
10183              */
10184         'remove' : true
10185         
10186     });
10187     
10188     this.item = [];
10189     this.tickItems = [];
10190     
10191     this.selectedIndex = -1;
10192     if(this.mode == 'local'){
10193         if(config.queryDelay === undefined){
10194             this.queryDelay = 10;
10195         }
10196         if(config.minChars === undefined){
10197             this.minChars = 0;
10198         }
10199     }
10200 };
10201
10202 Roo.extend(Roo.bootstrap.ComboBox, Roo.bootstrap.TriggerField, {
10203      
10204     /**
10205      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
10206      * rendering into an Roo.Editor, defaults to false)
10207      */
10208     /**
10209      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
10210      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
10211      */
10212     /**
10213      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
10214      */
10215     /**
10216      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
10217      * the dropdown list (defaults to undefined, with no header element)
10218      */
10219
10220      /**
10221      * @cfg {String/Roo.Template} tpl The template to use to render the output
10222      */
10223      
10224      /**
10225      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
10226      */
10227     listWidth: undefined,
10228     /**
10229      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
10230      * mode = 'remote' or 'text' if mode = 'local')
10231      */
10232     displayField: undefined,
10233     /**
10234      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
10235      * mode = 'remote' or 'value' if mode = 'local'). 
10236      * Note: use of a valueField requires the user make a selection
10237      * in order for a value to be mapped.
10238      */
10239     valueField: undefined,
10240     
10241     
10242     /**
10243      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
10244      * field's data value (defaults to the underlying DOM element's name)
10245      */
10246     hiddenName: undefined,
10247     /**
10248      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
10249      */
10250     listClass: '',
10251     /**
10252      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
10253      */
10254     selectedClass: 'active',
10255     
10256     /**
10257      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
10258      */
10259     shadow:'sides',
10260     /**
10261      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
10262      * anchor positions (defaults to 'tl-bl')
10263      */
10264     listAlign: 'tl-bl?',
10265     /**
10266      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
10267      */
10268     maxHeight: 300,
10269     /**
10270      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
10271      * query specified by the allQuery config option (defaults to 'query')
10272      */
10273     triggerAction: 'query',
10274     /**
10275      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
10276      * (defaults to 4, does not apply if editable = false)
10277      */
10278     minChars : 4,
10279     /**
10280      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
10281      * delay (typeAheadDelay) if it matches a known value (defaults to false)
10282      */
10283     typeAhead: false,
10284     /**
10285      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
10286      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
10287      */
10288     queryDelay: 500,
10289     /**
10290      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
10291      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
10292      */
10293     pageSize: 0,
10294     /**
10295      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
10296      * when editable = true (defaults to false)
10297      */
10298     selectOnFocus:false,
10299     /**
10300      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
10301      */
10302     queryParam: 'query',
10303     /**
10304      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
10305      * when mode = 'remote' (defaults to 'Loading...')
10306      */
10307     loadingText: 'Loading...',
10308     /**
10309      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
10310      */
10311     resizable: false,
10312     /**
10313      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
10314      */
10315     handleHeight : 8,
10316     /**
10317      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
10318      * traditional select (defaults to true)
10319      */
10320     editable: true,
10321     /**
10322      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
10323      */
10324     allQuery: '',
10325     /**
10326      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
10327      */
10328     mode: 'remote',
10329     /**
10330      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
10331      * listWidth has a higher value)
10332      */
10333     minListWidth : 70,
10334     /**
10335      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
10336      * allow the user to set arbitrary text into the field (defaults to false)
10337      */
10338     forceSelection:false,
10339     /**
10340      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
10341      * if typeAhead = true (defaults to 250)
10342      */
10343     typeAheadDelay : 250,
10344     /**
10345      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
10346      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
10347      */
10348     valueNotFoundText : undefined,
10349     /**
10350      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
10351      */
10352     blockFocus : false,
10353     
10354     /**
10355      * @cfg {Boolean} disableClear Disable showing of clear button.
10356      */
10357     disableClear : false,
10358     /**
10359      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
10360      */
10361     alwaysQuery : false,
10362     
10363     /**
10364      * @cfg {Boolean} multiple  (true|false) ComboBobArray, default false
10365      */
10366     multiple : false,
10367     
10368     //private
10369     addicon : false,
10370     editicon: false,
10371     
10372     page: 0,
10373     hasQuery: false,
10374     append: false,
10375     loadNext: false,
10376     autoFocus : true,
10377     tickable : false,
10378     btnPosition : 'right',
10379     triggerList : true,
10380     showToggleBtn : true,
10381     // element that contains real text value.. (when hidden is used..)
10382     
10383     getAutoCreate : function()
10384     {
10385         var cfg = false;
10386         
10387         /*
10388          *  Normal ComboBox
10389          */
10390         if(!this.tickable){
10391             cfg = Roo.bootstrap.ComboBox.superclass.getAutoCreate.call(this);
10392             return cfg;
10393         }
10394         
10395         /*
10396          *  ComboBox with tickable selections
10397          */
10398              
10399         var align = this.labelAlign || this.parentLabelAlign();
10400         
10401         cfg = {
10402             cls : 'form-group roo-combobox-tickable' //input-group
10403         };
10404         
10405         
10406         var buttons = {
10407             tag : 'div',
10408             cls : 'tickable-buttons',
10409             cn : [
10410                 {
10411                     tag : 'button',
10412                     type : 'button',
10413                     cls : 'btn btn-link btn-edit pull-' + this.btnPosition,
10414                     html : 'Edit'
10415                 },
10416                 {
10417                     tag : 'button',
10418                     type : 'button',
10419                     name : 'ok',
10420                     cls : 'btn btn-link btn-ok pull-' + this.btnPosition,
10421                     html : 'Done'
10422                 },
10423                 {
10424                     tag : 'button',
10425                     type : 'button',
10426                     name : 'cancel',
10427                     cls : 'btn btn-link btn-cancel pull-' + this.btnPosition,
10428                     html : 'Cancel'
10429                 }
10430             ]
10431         };
10432         
10433         var _this = this;
10434         Roo.each(buttons.cn, function(c){
10435             if (_this.size) {
10436                 c.cls += ' btn-' + _this.size;
10437             }
10438
10439             if (_this.disabled) {
10440                 c.disabled = true;
10441             }
10442         });
10443         
10444         var box = {
10445             tag: 'div',
10446             cn: [
10447                 {
10448                     tag: 'input',
10449                     type : 'hidden',
10450                     cls: 'form-hidden-field'
10451                 },
10452                 {
10453                     tag: 'ul',
10454                     cls: 'select2-choices',
10455                     cn:[
10456                         {
10457                             tag: 'li',
10458                             cls: 'select2-search-field',
10459                             cn: [
10460
10461                                 buttons
10462                             ]
10463                         }
10464                     ]
10465                 }
10466             ]
10467         }
10468         
10469         var combobox = {
10470             cls: 'select2-container input-group select2-container-multi',
10471             cn: [
10472                 box
10473 //                {
10474 //                    tag: 'ul',
10475 //                    cls: 'typeahead typeahead-long dropdown-menu',
10476 //                    style: 'display:none; max-height:' + this.maxHeight + 'px;'
10477 //                }
10478             ]
10479         };
10480         
10481         if (align ==='left' && this.fieldLabel.length) {
10482             
10483                 Roo.log("left and has label");
10484                 cfg.cn = [
10485                     
10486                     {
10487                         tag: 'label',
10488                         'for' :  id,
10489                         cls : 'control-label col-sm-' + this.labelWidth,
10490                         html : this.fieldLabel
10491                         
10492                     },
10493                     {
10494                         cls : "col-sm-" + (12 - this.labelWidth), 
10495                         cn: [
10496                             combobox
10497                         ]
10498                     }
10499                     
10500                 ];
10501         } else if ( this.fieldLabel.length) {
10502                 Roo.log(" label");
10503                  cfg.cn = [
10504                    
10505                     {
10506                         tag: 'label',
10507                         //cls : 'input-group-addon',
10508                         html : this.fieldLabel
10509                         
10510                     },
10511                     
10512                     combobox
10513                     
10514                 ];
10515
10516         } else {
10517             
10518                 Roo.log(" no label && no align");
10519                 cfg = combobox
10520                      
10521                 
10522         }
10523          
10524         var settings=this;
10525         ['xs','sm','md','lg'].map(function(size){
10526             if (settings[size]) {
10527                 cfg.cls += ' col-' + size + '-' + settings[size];
10528             }
10529         });
10530         
10531         return cfg;
10532         
10533     },
10534     
10535     // private
10536     initEvents: function()
10537     {
10538         
10539         if (!this.store) {
10540             throw "can not find store for combo";
10541         }
10542         this.store = Roo.factory(this.store, Roo.data);
10543         
10544         if(this.tickable){
10545             this.initTickableEvents();
10546             return;
10547         }
10548         
10549         Roo.bootstrap.ComboBox.superclass.initEvents.call(this);
10550         
10551         if(this.hiddenName){
10552             
10553             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
10554             
10555             this.hiddenField.dom.value =
10556                 this.hiddenValue !== undefined ? this.hiddenValue :
10557                 this.value !== undefined ? this.value : '';
10558
10559             // prevent input submission
10560             this.el.dom.removeAttribute('name');
10561             this.hiddenField.dom.setAttribute('name', this.hiddenName);
10562              
10563              
10564         }
10565         //if(Roo.isGecko){
10566         //    this.el.dom.setAttribute('autocomplete', 'off');
10567         //}
10568         
10569         var cls = 'x-combo-list';
10570         
10571         //this.list = new Roo.Layer({
10572         //    shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
10573         //});
10574         
10575         var _this = this;
10576         
10577         (function(){
10578             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
10579             _this.list.setWidth(lw);
10580         }).defer(100);
10581         
10582         this.list.on('mouseover', this.onViewOver, this);
10583         this.list.on('mousemove', this.onViewMove, this);
10584         
10585         this.list.on('scroll', this.onViewScroll, this);
10586         
10587         /*
10588         this.list.swallowEvent('mousewheel');
10589         this.assetHeight = 0;
10590
10591         if(this.title){
10592             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
10593             this.assetHeight += this.header.getHeight();
10594         }
10595
10596         this.innerList = this.list.createChild({cls:cls+'-inner'});
10597         this.innerList.on('mouseover', this.onViewOver, this);
10598         this.innerList.on('mousemove', this.onViewMove, this);
10599         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
10600         
10601         if(this.allowBlank && !this.pageSize && !this.disableClear){
10602             this.footer = this.list.createChild({cls:cls+'-ft'});
10603             this.pageTb = new Roo.Toolbar(this.footer);
10604            
10605         }
10606         if(this.pageSize){
10607             this.footer = this.list.createChild({cls:cls+'-ft'});
10608             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
10609                     {pageSize: this.pageSize});
10610             
10611         }
10612         
10613         if (this.pageTb && this.allowBlank && !this.disableClear) {
10614             var _this = this;
10615             this.pageTb.add(new Roo.Toolbar.Fill(), {
10616                 cls: 'x-btn-icon x-btn-clear',
10617                 text: '&#160;',
10618                 handler: function()
10619                 {
10620                     _this.collapse();
10621                     _this.clearValue();
10622                     _this.onSelect(false, -1);
10623                 }
10624             });
10625         }
10626         if (this.footer) {
10627             this.assetHeight += this.footer.getHeight();
10628         }
10629         */
10630             
10631         if(!this.tpl){
10632             this.tpl = '<li><a href="#">{' + this.displayField + '}</a></li>';
10633         }
10634
10635         this.view = new Roo.View(this.list, this.tpl, {
10636             singleSelect:true, store: this.store, selectedClass: this.selectedClass
10637         });
10638         //this.view.wrapEl.setDisplayed(false);
10639         this.view.on('click', this.onViewClick, this);
10640         
10641         
10642         
10643         this.store.on('beforeload', this.onBeforeLoad, this);
10644         this.store.on('load', this.onLoad, this);
10645         this.store.on('loadexception', this.onLoadException, this);
10646         /*
10647         if(this.resizable){
10648             this.resizer = new Roo.Resizable(this.list,  {
10649                pinned:true, handles:'se'
10650             });
10651             this.resizer.on('resize', function(r, w, h){
10652                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
10653                 this.listWidth = w;
10654                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
10655                 this.restrictHeight();
10656             }, this);
10657             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
10658         }
10659         */
10660         if(!this.editable){
10661             this.editable = true;
10662             this.setEditable(false);
10663         }
10664         
10665         /*
10666         
10667         if (typeof(this.events.add.listeners) != 'undefined') {
10668             
10669             this.addicon = this.wrap.createChild(
10670                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
10671        
10672             this.addicon.on('click', function(e) {
10673                 this.fireEvent('add', this);
10674             }, this);
10675         }
10676         if (typeof(this.events.edit.listeners) != 'undefined') {
10677             
10678             this.editicon = this.wrap.createChild(
10679                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
10680             if (this.addicon) {
10681                 this.editicon.setStyle('margin-left', '40px');
10682             }
10683             this.editicon.on('click', function(e) {
10684                 
10685                 // we fire even  if inothing is selected..
10686                 this.fireEvent('edit', this, this.lastData );
10687                 
10688             }, this);
10689         }
10690         */
10691         
10692         this.keyNav = new Roo.KeyNav(this.inputEl(), {
10693             "up" : function(e){
10694                 this.inKeyMode = true;
10695                 this.selectPrev();
10696             },
10697
10698             "down" : function(e){
10699                 if(!this.isExpanded()){
10700                     this.onTriggerClick();
10701                 }else{
10702                     this.inKeyMode = true;
10703                     this.selectNext();
10704                 }
10705             },
10706
10707             "enter" : function(e){
10708 //                this.onViewClick();
10709                 //return true;
10710                 this.collapse();
10711                 
10712                 if(this.fireEvent("specialkey", this, e)){
10713                     this.onViewClick(false);
10714                 }
10715                 
10716                 return true;
10717             },
10718
10719             "esc" : function(e){
10720                 this.collapse();
10721             },
10722
10723             "tab" : function(e){
10724                 this.collapse();
10725                 
10726                 if(this.fireEvent("specialkey", this, e)){
10727                     this.onViewClick(false);
10728                 }
10729                 
10730                 return true;
10731             },
10732
10733             scope : this,
10734
10735             doRelay : function(foo, bar, hname){
10736                 if(hname == 'down' || this.scope.isExpanded()){
10737                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
10738                 }
10739                 return true;
10740             },
10741
10742             forceKeyDown: true
10743         });
10744         
10745         
10746         this.queryDelay = Math.max(this.queryDelay || 10,
10747                 this.mode == 'local' ? 10 : 250);
10748         
10749         
10750         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
10751         
10752         if(this.typeAhead){
10753             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
10754         }
10755         if(this.editable !== false){
10756             this.inputEl().on("keyup", this.onKeyUp, this);
10757         }
10758         if(this.forceSelection){
10759             this.inputEl().on('blur', this.doForce, this);
10760         }
10761         
10762         if(this.multiple){
10763             this.choices = this.el.select('ul.select2-choices', true).first();
10764             this.searchField = this.el.select('ul li.select2-search-field', true).first();
10765         }
10766     },
10767     
10768     initTickableEvents: function()
10769     {   
10770         this.createList();
10771         
10772         if(this.hiddenName){
10773             
10774             this.hiddenField = this.el.select('input.form-hidden-field',true).first();
10775             
10776             this.hiddenField.dom.value =
10777                 this.hiddenValue !== undefined ? this.hiddenValue :
10778                 this.value !== undefined ? this.value : '';
10779
10780             // prevent input submission
10781             this.el.dom.removeAttribute('name');
10782             this.hiddenField.dom.setAttribute('name', this.hiddenName);
10783              
10784              
10785         }
10786         
10787 //        this.list = this.el.select('ul.dropdown-menu',true).first();
10788         
10789         this.choices = this.el.select('ul.select2-choices', true).first();
10790         this.searchField = this.el.select('ul li.select2-search-field', true).first();
10791         if(this.triggerList){
10792             this.searchField.on("click", this.onSearchFieldClick, this, {preventDefault:true});
10793         }
10794          
10795         this.trigger = this.el.select('.tickable-buttons > .btn-edit', true).first();
10796         this.trigger.on("click", this.onTickableTriggerClick, this, {preventDefault:true});
10797         
10798         this.okBtn = this.el.select('.tickable-buttons > .btn-ok', true).first();
10799         this.cancelBtn = this.el.select('.tickable-buttons > .btn-cancel', true).first();
10800         
10801         this.okBtn.on('click', this.onTickableFooterButtonClick, this, this.okBtn);
10802         this.cancelBtn.on('click', this.onTickableFooterButtonClick, this, this.cancelBtn);
10803         
10804         this.trigger.setVisibilityMode(Roo.Element.DISPLAY);
10805         this.okBtn.setVisibilityMode(Roo.Element.DISPLAY);
10806         this.cancelBtn.setVisibilityMode(Roo.Element.DISPLAY);
10807         
10808         this.okBtn.hide();
10809         this.cancelBtn.hide();
10810         
10811         var _this = this;
10812         
10813         (function(){
10814             var lw = _this.listWidth || Math.max(_this.inputEl().getWidth(), _this.minListWidth);
10815             _this.list.setWidth(lw);
10816         }).defer(100);
10817         
10818         this.list.on('mouseover', this.onViewOver, this);
10819         this.list.on('mousemove', this.onViewMove, this);
10820         
10821         this.list.on('scroll', this.onViewScroll, this);
10822         
10823         if(!this.tpl){
10824             this.tpl = '<li class="select2-result"><div class="checkbox"><input id="{roo-id}" type="checkbox" {roo-data-checked}><label for="{roo-id}"><b>{' + this.displayField + '}</b></label></li>';
10825         }
10826
10827         this.view = new Roo.View(this.list, this.tpl, {
10828             singleSelect:true, tickable:true, parent:this, store: this.store, selectedClass: this.selectedClass
10829         });
10830         
10831         //this.view.wrapEl.setDisplayed(false);
10832         this.view.on('click', this.onViewClick, this);
10833         
10834         
10835         
10836         this.store.on('beforeload', this.onBeforeLoad, this);
10837         this.store.on('load', this.onLoad, this);
10838         this.store.on('loadexception', this.onLoadException, this);
10839         
10840 //        this.keyNav = new Roo.KeyNav(this.inputEl(), {
10841 //            "up" : function(e){
10842 //                this.inKeyMode = true;
10843 //                this.selectPrev();
10844 //            },
10845 //
10846 //            "down" : function(e){
10847 //                if(!this.isExpanded()){
10848 //                    this.onTriggerClick();
10849 //                }else{
10850 //                    this.inKeyMode = true;
10851 //                    this.selectNext();
10852 //                }
10853 //            },
10854 //
10855 //            "enter" : function(e){
10856 ////                this.onViewClick();
10857 //                //return true;
10858 //                this.collapse();
10859 //                
10860 //                if(this.fireEvent("specialkey", this, e)){
10861 //                    this.onViewClick(false);
10862 //                }
10863 //                
10864 //                return true;
10865 //            },
10866 //
10867 //            "esc" : function(e){
10868 //                this.collapse();
10869 //            },
10870 //
10871 //            "tab" : function(e){
10872 //                this.collapse();
10873 //                
10874 //                if(this.fireEvent("specialkey", this, e)){
10875 //                    this.onViewClick(false);
10876 //                }
10877 //                
10878 //                return true;
10879 //            },
10880 //
10881 //            scope : this,
10882 //
10883 //            doRelay : function(foo, bar, hname){
10884 //                if(hname == 'down' || this.scope.isExpanded()){
10885 //                   return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
10886 //                }
10887 //                return true;
10888 //            },
10889 //
10890 //            forceKeyDown: true
10891 //        });
10892         
10893         
10894         this.queryDelay = Math.max(this.queryDelay || 10,
10895                 this.mode == 'local' ? 10 : 250);
10896         
10897         
10898         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
10899         
10900         if(this.typeAhead){
10901             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
10902         }
10903     },
10904
10905     onDestroy : function(){
10906         if(this.view){
10907             this.view.setStore(null);
10908             this.view.el.removeAllListeners();
10909             this.view.el.remove();
10910             this.view.purgeListeners();
10911         }
10912         if(this.list){
10913             this.list.dom.innerHTML  = '';
10914         }
10915         
10916         if(this.store){
10917             this.store.un('beforeload', this.onBeforeLoad, this);
10918             this.store.un('load', this.onLoad, this);
10919             this.store.un('loadexception', this.onLoadException, this);
10920         }
10921         Roo.bootstrap.ComboBox.superclass.onDestroy.call(this);
10922     },
10923
10924     // private
10925     fireKey : function(e){
10926         if(e.isNavKeyPress() && !this.list.isVisible()){
10927             this.fireEvent("specialkey", this, e);
10928         }
10929     },
10930
10931     // private
10932     onResize: function(w, h){
10933 //        Roo.bootstrap.ComboBox.superclass.onResize.apply(this, arguments);
10934 //        
10935 //        if(typeof w != 'number'){
10936 //            // we do not handle it!?!?
10937 //            return;
10938 //        }
10939 //        var tw = this.trigger.getWidth();
10940 //       // tw += this.addicon ? this.addicon.getWidth() : 0;
10941 //       // tw += this.editicon ? this.editicon.getWidth() : 0;
10942 //        var x = w - tw;
10943 //        this.inputEl().setWidth( this.adjustWidth('input', x));
10944 //            
10945 //        //this.trigger.setStyle('left', x+'px');
10946 //        
10947 //        if(this.list && this.listWidth === undefined){
10948 //            var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
10949 //            this.list.setWidth(lw);
10950 //            this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
10951 //        }
10952         
10953     
10954         
10955     },
10956
10957     /**
10958      * Allow or prevent the user from directly editing the field text.  If false is passed,
10959      * the user will only be able to select from the items defined in the dropdown list.  This method
10960      * is the runtime equivalent of setting the 'editable' config option at config time.
10961      * @param {Boolean} value True to allow the user to directly edit the field text
10962      */
10963     setEditable : function(value){
10964         if(value == this.editable){
10965             return;
10966         }
10967         this.editable = value;
10968         if(!value){
10969             this.inputEl().dom.setAttribute('readOnly', true);
10970             this.inputEl().on('mousedown', this.onTriggerClick,  this);
10971             this.inputEl().addClass('x-combo-noedit');
10972         }else{
10973             this.inputEl().dom.setAttribute('readOnly', false);
10974             this.inputEl().un('mousedown', this.onTriggerClick,  this);
10975             this.inputEl().removeClass('x-combo-noedit');
10976         }
10977     },
10978
10979     // private
10980     
10981     onBeforeLoad : function(combo,opts){
10982         if(!this.hasFocus){
10983             return;
10984         }
10985          if (!opts.add) {
10986             this.list.dom.innerHTML = '<li class="loading-indicator">'+(this.loadingText||'loading')+'</li>' ;
10987          }
10988 //        this.restrictHeight();
10989         this.selectedIndex = -1;
10990     },
10991
10992     // private
10993     onLoad : function(){
10994         
10995         this.hasQuery = false;
10996         
10997         if(!this.hasFocus){
10998             return;
10999         }
11000         
11001         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
11002             this.loading.hide();
11003         }
11004         
11005         if(this.store.getCount() > 0){
11006             this.expand();
11007 //            this.restrictHeight();
11008             if(this.lastQuery == this.allQuery){
11009                 if(this.editable && !this.tickable){
11010                     this.inputEl().dom.select();
11011                 }
11012                 if(!this.selectByValue(this.value, true) && this.autoFocus){
11013                     this.select(0, true);
11014                 }
11015             }else{
11016                 if(this.autoFocus){
11017                     this.selectNext();
11018                 }
11019                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
11020                     this.taTask.delay(this.typeAheadDelay);
11021                 }
11022             }
11023         }else{
11024             this.onEmptyResults();
11025         }
11026         
11027         //this.el.focus();
11028     },
11029     // private
11030     onLoadException : function()
11031     {
11032         this.hasQuery = false;
11033         
11034         if(typeof(this.loading) !== 'undefined' && this.loading !== null){
11035             this.loading.hide();
11036         }
11037         
11038         this.collapse();
11039         Roo.log(this.store.reader.jsonData);
11040         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
11041             // fixme
11042             //Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
11043         }
11044         
11045         
11046     },
11047     // private
11048     onTypeAhead : function(){
11049         if(this.store.getCount() > 0){
11050             var r = this.store.getAt(0);
11051             var newValue = r.data[this.displayField];
11052             var len = newValue.length;
11053             var selStart = this.getRawValue().length;
11054             
11055             if(selStart != len){
11056                 this.setRawValue(newValue);
11057                 this.selectText(selStart, newValue.length);
11058             }
11059         }
11060     },
11061
11062     // private
11063     onSelect : function(record, index){
11064         
11065         if(this.fireEvent('beforeselect', this, record, index) !== false){
11066         
11067             this.setFromData(index > -1 ? record.data : false);
11068             
11069             this.collapse();
11070             this.fireEvent('select', this, record, index);
11071         }
11072     },
11073
11074     /**
11075      * Returns the currently selected field value or empty string if no value is set.
11076      * @return {String} value The selected value
11077      */
11078     getValue : function(){
11079         
11080         if(this.multiple){
11081             return (this.hiddenField) ? this.hiddenField.dom.value : this.value;
11082         }
11083         
11084         if(this.valueField){
11085             return typeof this.value != 'undefined' ? this.value : '';
11086         }else{
11087             return Roo.bootstrap.ComboBox.superclass.getValue.call(this);
11088         }
11089     },
11090
11091     /**
11092      * Clears any text/value currently set in the field
11093      */
11094     clearValue : function(){
11095         if(this.hiddenField){
11096             this.hiddenField.dom.value = '';
11097         }
11098         this.value = '';
11099         this.setRawValue('');
11100         this.lastSelectionText = '';
11101         
11102     },
11103
11104     /**
11105      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
11106      * will be displayed in the field.  If the value does not match the data value of an existing item,
11107      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
11108      * Otherwise the field will be blank (although the value will still be set).
11109      * @param {String} value The value to match
11110      */
11111     setValue : function(v){
11112         if(this.multiple){
11113             this.syncValue();
11114             return;
11115         }
11116         
11117         var text = v;
11118         if(this.valueField){
11119             var r = this.findRecord(this.valueField, v);
11120             if(r){
11121                 text = r.data[this.displayField];
11122             }else if(this.valueNotFoundText !== undefined){
11123                 text = this.valueNotFoundText;
11124             }
11125         }
11126         this.lastSelectionText = text;
11127         if(this.hiddenField){
11128             this.hiddenField.dom.value = v;
11129         }
11130         Roo.bootstrap.ComboBox.superclass.setValue.call(this, text);
11131         this.value = v;
11132     },
11133     /**
11134      * @property {Object} the last set data for the element
11135      */
11136     
11137     lastData : false,
11138     /**
11139      * Sets the value of the field based on a object which is related to the record format for the store.
11140      * @param {Object} value the value to set as. or false on reset?
11141      */
11142     setFromData : function(o){
11143         
11144         if(this.multiple){
11145             if(typeof o.display_name !== 'string'){
11146                 for(var i=0;i<o.display_name.length;i++){
11147                     this.addItem({'id':o.id[i],'display_name':o.display_name[i]});
11148                 }
11149                 return;
11150             }
11151             this.addItem(o);
11152             return;
11153         }
11154             
11155         var dv = ''; // display value
11156         var vv = ''; // value value..
11157         this.lastData = o;
11158         if (this.displayField) {
11159             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
11160         } else {
11161             // this is an error condition!!!
11162             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
11163         }
11164         
11165         if(this.valueField){
11166             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
11167         }
11168         
11169         if(this.hiddenField){
11170             this.hiddenField.dom.value = vv;
11171             
11172             this.lastSelectionText = dv;
11173             Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
11174             this.value = vv;
11175             return;
11176         }
11177         // no hidden field.. - we store the value in 'value', but still display
11178         // display field!!!!
11179         this.lastSelectionText = dv;
11180         Roo.bootstrap.ComboBox.superclass.setValue.call(this, dv);
11181         this.value = vv;
11182         
11183         
11184     },
11185     // private
11186     reset : function(){
11187         // overridden so that last data is reset..
11188         this.setValue(this.originalValue);
11189         this.clearInvalid();
11190         this.lastData = false;
11191         if (this.view) {
11192             this.view.clearSelections();
11193         }
11194     },
11195     // private
11196     findRecord : function(prop, value){
11197         var record;
11198         if(this.store.getCount() > 0){
11199             this.store.each(function(r){
11200                 if(r.data[prop] == value){
11201                     record = r;
11202                     return false;
11203                 }
11204                 return true;
11205             });
11206         }
11207         return record;
11208     },
11209     
11210     getName: function()
11211     {
11212         // returns hidden if it's set..
11213         if (!this.rendered) {return ''};
11214         return !this.hiddenName && this.inputEl().dom.name  ? this.inputEl().dom.name : (this.hiddenName || '');
11215         
11216     },
11217     // private
11218     onViewMove : function(e, t){
11219         this.inKeyMode = false;
11220     },
11221
11222     // private
11223     onViewOver : function(e, t){
11224         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
11225             return;
11226         }
11227         var item = this.view.findItemFromChild(t);
11228         
11229         if(item){
11230             var index = this.view.indexOf(item);
11231             this.select(index, false);
11232         }
11233     },
11234
11235     // private
11236     onViewClick : function(view, doFocus, el, e)
11237     {
11238         var index = this.view.getSelectedIndexes()[0];
11239         
11240         var r = this.store.getAt(index);
11241         
11242         if(this.tickable){
11243             
11244             if(e.getTarget().nodeName.toLowerCase() != 'input'){
11245                 return;
11246             }
11247             
11248             var rm = false;
11249             var _this = this;
11250             
11251             Roo.each(this.tickItems, function(v,k){
11252                 
11253                 if(typeof(v) != 'undefined' && v[_this.valueField] == r.data[_this.valueField]){
11254                     _this.tickItems.splice(k, 1);
11255                     rm = true;
11256                     return;
11257                 }
11258             })
11259             
11260             if(rm){
11261                 return;
11262             }
11263             
11264             this.tickItems.push(r.data);
11265             return;
11266         }
11267         
11268         if(r){
11269             this.onSelect(r, index);
11270         }
11271         if(doFocus !== false && !this.blockFocus){
11272             this.inputEl().focus();
11273         }
11274     },
11275
11276     // private
11277     restrictHeight : function(){
11278         //this.innerList.dom.style.height = '';
11279         //var inner = this.innerList.dom;
11280         //var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
11281         //this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
11282         //this.list.beginUpdate();
11283         //this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
11284         this.list.alignTo(this.inputEl(), this.listAlign);
11285         this.list.alignTo(this.inputEl(), this.listAlign);
11286         //this.list.endUpdate();
11287     },
11288
11289     // private
11290     onEmptyResults : function(){
11291         this.collapse();
11292     },
11293
11294     /**
11295      * Returns true if the dropdown list is expanded, else false.
11296      */
11297     isExpanded : function(){
11298         return this.list.isVisible();
11299     },
11300
11301     /**
11302      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
11303      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
11304      * @param {String} value The data value of the item to select
11305      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
11306      * selected item if it is not currently in view (defaults to true)
11307      * @return {Boolean} True if the value matched an item in the list, else false
11308      */
11309     selectByValue : function(v, scrollIntoView){
11310         if(v !== undefined && v !== null){
11311             var r = this.findRecord(this.valueField || this.displayField, v);
11312             if(r){
11313                 this.select(this.store.indexOf(r), scrollIntoView);
11314                 return true;
11315             }
11316         }
11317         return false;
11318     },
11319
11320     /**
11321      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
11322      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
11323      * @param {Number} index The zero-based index of the list item to select
11324      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
11325      * selected item if it is not currently in view (defaults to true)
11326      */
11327     select : function(index, scrollIntoView){
11328         this.selectedIndex = index;
11329         this.view.select(index);
11330         if(scrollIntoView !== false){
11331             var el = this.view.getNode(index);
11332             if(el && !this.multiple && !this.tickable){
11333                 this.list.scrollChildIntoView(el, false);
11334             }
11335         }
11336     },
11337
11338     // private
11339     selectNext : function(){
11340         var ct = this.store.getCount();
11341         if(ct > 0){
11342             if(this.selectedIndex == -1){
11343                 this.select(0);
11344             }else if(this.selectedIndex < ct-1){
11345                 this.select(this.selectedIndex+1);
11346             }
11347         }
11348     },
11349
11350     // private
11351     selectPrev : function(){
11352         var ct = this.store.getCount();
11353         if(ct > 0){
11354             if(this.selectedIndex == -1){
11355                 this.select(0);
11356             }else if(this.selectedIndex != 0){
11357                 this.select(this.selectedIndex-1);
11358             }
11359         }
11360     },
11361
11362     // private
11363     onKeyUp : function(e){
11364         if(this.editable !== false && !e.isSpecialKey()){
11365             this.lastKey = e.getKey();
11366             this.dqTask.delay(this.queryDelay);
11367         }
11368     },
11369
11370     // private
11371     validateBlur : function(){
11372         return !this.list || !this.list.isVisible();   
11373     },
11374
11375     // private
11376     initQuery : function(){
11377         this.doQuery(this.getRawValue());
11378     },
11379
11380     // private
11381     doForce : function(){
11382         if(this.inputEl().dom.value.length > 0){
11383             this.inputEl().dom.value =
11384                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
11385              
11386         }
11387     },
11388
11389     /**
11390      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
11391      * query allowing the query action to be canceled if needed.
11392      * @param {String} query The SQL query to execute
11393      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
11394      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
11395      * saved in the current store (defaults to false)
11396      */
11397     doQuery : function(q, forceAll){
11398         
11399         if(q === undefined || q === null){
11400             q = '';
11401         }
11402         var qe = {
11403             query: q,
11404             forceAll: forceAll,
11405             combo: this,
11406             cancel:false
11407         };
11408         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
11409             return false;
11410         }
11411         q = qe.query;
11412         
11413         forceAll = qe.forceAll;
11414         if(forceAll === true || (q.length >= this.minChars)){
11415             
11416             this.hasQuery = true;
11417             
11418             if(this.lastQuery != q || this.alwaysQuery){
11419                 this.lastQuery = q;
11420                 if(this.mode == 'local'){
11421                     this.selectedIndex = -1;
11422                     if(forceAll){
11423                         this.store.clearFilter();
11424                     }else{
11425                         this.store.filter(this.displayField, q);
11426                     }
11427                     this.onLoad();
11428                 }else{
11429                     this.store.baseParams[this.queryParam] = q;
11430                     
11431                     var options = {params : this.getParams(q)};
11432                     
11433                     if(this.loadNext){
11434                         options.add = true;
11435                         options.params.start = this.page * this.pageSize;
11436                     }
11437                     
11438                     this.store.load(options);
11439                     /*
11440                      *  this code will make the page width larger, at the beginning, the list not align correctly, 
11441                      *  we should expand the list on onLoad
11442                      *  so command out it
11443                      */
11444 //                    this.expand();
11445                 }
11446             }else{
11447                 this.selectedIndex = -1;
11448                 this.onLoad();   
11449             }
11450         }
11451         
11452         this.loadNext = false;
11453     },
11454
11455     // private
11456     getParams : function(q){
11457         var p = {};
11458         //p[this.queryParam] = q;
11459         
11460         if(this.pageSize){
11461             p.start = 0;
11462             p.limit = this.pageSize;
11463         }
11464         return p;
11465     },
11466
11467     /**
11468      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
11469      */
11470     collapse : function(){
11471         if(!this.isExpanded()){
11472             return;
11473         }
11474         
11475         this.hasFocus = false;
11476         
11477         this.list.hide();
11478         
11479         if(this.tickable){
11480             this.okBtn.hide();
11481             this.cancelBtn.hide();
11482             this.trigger.show();
11483         }
11484         
11485         Roo.get(document).un('mousedown', this.collapseIf, this);
11486         Roo.get(document).un('mousewheel', this.collapseIf, this);
11487         if (!this.editable) {
11488             Roo.get(document).un('keydown', this.listKeyPress, this);
11489         }
11490         this.fireEvent('collapse', this);
11491     },
11492
11493     // private
11494     collapseIf : function(e){
11495         var in_combo  = e.within(this.el);
11496         var in_list =  e.within(this.list);
11497         var is_list = (Roo.get(e.getTarget()).id == this.list.id) ? true : false;
11498         
11499         if (in_combo || in_list || is_list) {
11500             //e.stopPropagation();
11501             return;
11502         }
11503         
11504         if(this.tickable){
11505             this.onTickableFooterButtonClick(e, false, false);
11506         }
11507
11508         this.collapse();
11509         
11510     },
11511
11512     /**
11513      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
11514      */
11515     expand : function(){
11516        
11517         if(this.isExpanded() || !this.hasFocus){
11518             return;
11519         }
11520         
11521         var lw = this.listWidth || Math.max(this.inputEl().getWidth(), this.minListWidth);
11522         this.list.setWidth(lw);
11523         
11524         
11525          Roo.log('expand');
11526         
11527         this.list.show();
11528         
11529         this.restrictHeight();
11530         
11531         if(this.tickable){
11532             
11533             this.tickItems = Roo.apply([], this.item);
11534             
11535             this.okBtn.show();
11536             this.cancelBtn.show();
11537             this.trigger.hide();
11538             
11539         }
11540         
11541         Roo.get(document).on('mousedown', this.collapseIf, this);
11542         Roo.get(document).on('mousewheel', this.collapseIf, this);
11543         if (!this.editable) {
11544             Roo.get(document).on('keydown', this.listKeyPress, this);
11545         }
11546         
11547         this.fireEvent('expand', this);
11548     },
11549
11550     // private
11551     // Implements the default empty TriggerField.onTriggerClick function
11552     onTriggerClick : function(e)
11553     {
11554         Roo.log('trigger click');
11555         
11556         if(this.disabled || !this.triggerList){
11557             return;
11558         }
11559         
11560         this.page = 0;
11561         this.loadNext = false;
11562         
11563         if(this.isExpanded()){
11564             this.collapse();
11565             if (!this.blockFocus) {
11566                 this.inputEl().focus();
11567             }
11568             
11569         }else {
11570             this.hasFocus = true;
11571             if(this.triggerAction == 'all') {
11572                 this.doQuery(this.allQuery, true);
11573             } else {
11574                 this.doQuery(this.getRawValue());
11575             }
11576             if (!this.blockFocus) {
11577                 this.inputEl().focus();
11578             }
11579         }
11580     },
11581     
11582     onTickableTriggerClick : function(e)
11583     {
11584         if(this.disabled){
11585             return;
11586         }
11587         
11588         this.page = 0;
11589         this.loadNext = false;
11590         this.hasFocus = true;
11591         
11592         if(this.triggerAction == 'all') {
11593             this.doQuery(this.allQuery, true);
11594         } else {
11595             this.doQuery(this.getRawValue());
11596         }
11597     },
11598     
11599     onSearchFieldClick : function(e)
11600     {
11601         if(this.hasFocus || this.disabled || e.getTarget().nodeName.toLowerCase() == 'button'){
11602             return;
11603         }
11604         
11605         this.page = 0;
11606         this.loadNext = false;
11607         this.hasFocus = true;
11608         
11609         if(this.triggerAction == 'all') {
11610             this.doQuery(this.allQuery, true);
11611         } else {
11612             this.doQuery(this.getRawValue());
11613         }
11614     },
11615     
11616     listKeyPress : function(e)
11617     {
11618         //Roo.log('listkeypress');
11619         // scroll to first matching element based on key pres..
11620         if (e.isSpecialKey()) {
11621             return false;
11622         }
11623         var k = String.fromCharCode(e.getKey()).toUpperCase();
11624         //Roo.log(k);
11625         var match  = false;
11626         var csel = this.view.getSelectedNodes();
11627         var cselitem = false;
11628         if (csel.length) {
11629             var ix = this.view.indexOf(csel[0]);
11630             cselitem  = this.store.getAt(ix);
11631             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
11632                 cselitem = false;
11633             }
11634             
11635         }
11636         
11637         this.store.each(function(v) { 
11638             if (cselitem) {
11639                 // start at existing selection.
11640                 if (cselitem.id == v.id) {
11641                     cselitem = false;
11642                 }
11643                 return true;
11644             }
11645                 
11646             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
11647                 match = this.store.indexOf(v);
11648                 return false;
11649             }
11650             return true;
11651         }, this);
11652         
11653         if (match === false) {
11654             return true; // no more action?
11655         }
11656         // scroll to?
11657         this.view.select(match);
11658         var sn = Roo.get(this.view.getSelectedNodes()[0])
11659         //sn.scrollIntoView(sn.dom.parentNode, false);
11660     },
11661     
11662     onViewScroll : function(e, t){
11663         
11664         if(this.view.el.getScroll().top < this.view.el.dom.scrollHeight - this.view.el.dom.clientHeight || !this.hasFocus || !this.append || this.hasQuery){
11665             return;
11666         }
11667         
11668         this.hasQuery = true;
11669         
11670         this.loading = this.list.select('.loading', true).first();
11671         
11672         if(this.loading === null){
11673             this.list.createChild({
11674                 tag: 'div',
11675                 cls: 'loading select2-more-results select2-active',
11676                 html: 'Loading more results...'
11677             })
11678             
11679             this.loading = this.list.select('.loading', true).first();
11680             
11681             this.loading.setVisibilityMode(Roo.Element.DISPLAY);
11682             
11683             this.loading.hide();
11684         }
11685         
11686         this.loading.show();
11687         
11688         var _combo = this;
11689         
11690         this.page++;
11691         this.loadNext = true;
11692         
11693         (function() { _combo.doQuery(_combo.allQuery, true); }).defer(500);
11694         
11695         return;
11696     },
11697     
11698     addItem : function(o)
11699     {   
11700         var dv = ''; // display value
11701         
11702         if (this.displayField) {
11703             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
11704         } else {
11705             // this is an error condition!!!
11706             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
11707         }
11708         
11709         if(!dv.length){
11710             return;
11711         }
11712         
11713         var choice = this.choices.createChild({
11714             tag: 'li',
11715             cls: 'select2-search-choice',
11716             cn: [
11717                 {
11718                     tag: 'div',
11719                     html: dv
11720                 },
11721                 {
11722                     tag: 'a',
11723                     href: '#',
11724                     cls: 'select2-search-choice-close',
11725                     tabindex: '-1'
11726                 }
11727             ]
11728             
11729         }, this.searchField);
11730         
11731         var close = choice.select('a.select2-search-choice-close', true).first()
11732         
11733         close.on('click', this.onRemoveItem, this, { item : choice, data : o} );
11734         
11735         this.item.push(o);
11736         
11737         this.lastData = o;
11738         
11739         this.syncValue();
11740         
11741         this.inputEl().dom.value = '';
11742         
11743     },
11744     
11745     onRemoveItem : function(e, _self, o)
11746     {
11747         e.preventDefault();
11748         var index = this.item.indexOf(o.data) * 1;
11749         
11750         if( index < 0){
11751             Roo.log('not this item?!');
11752             return;
11753         }
11754         
11755         this.item.splice(index, 1);
11756         o.item.remove();
11757         
11758         this.syncValue();
11759         
11760         this.fireEvent('remove', this, e);
11761         
11762     },
11763     
11764     syncValue : function()
11765     {
11766         if(!this.item.length){
11767             this.clearValue();
11768             return;
11769         }
11770             
11771         var value = [];
11772         var _this = this;
11773         Roo.each(this.item, function(i){
11774             if(_this.valueField){
11775                 value.push(i[_this.valueField]);
11776                 return;
11777             }
11778
11779             value.push(i);
11780         });
11781
11782         this.value = value.join(',');
11783
11784         if(this.hiddenField){
11785             this.hiddenField.dom.value = this.value;
11786         }
11787     },
11788     
11789     clearItem : function()
11790     {
11791         if(!this.multiple){
11792             return;
11793         }
11794         
11795         this.item = [];
11796         
11797         Roo.each(this.choices.select('>li.select2-search-choice', true).elements, function(c){
11798            c.remove();
11799         });
11800         
11801         this.syncValue();
11802     },
11803     
11804     inputEl: function ()
11805     {
11806         if(this.tickable){
11807             return this.searchField;
11808         }
11809         return this.el.select('input.form-control',true).first();
11810     },
11811     
11812     
11813     onTickableFooterButtonClick : function(e, btn, el)
11814     {
11815         e.preventDefault();
11816         
11817         if(btn && btn.name == 'cancel'){
11818             this.tickItems = Roo.apply([], this.item);
11819             this.collapse();
11820             return;
11821         }
11822         
11823         this.clearItem();
11824         
11825         var _this = this;
11826         
11827         Roo.each(this.tickItems, function(o){
11828             _this.addItem(o);
11829         });
11830         
11831         this.collapse();
11832         
11833     }
11834     
11835     
11836
11837     /** 
11838     * @cfg {Boolean} grow 
11839     * @hide 
11840     */
11841     /** 
11842     * @cfg {Number} growMin 
11843     * @hide 
11844     */
11845     /** 
11846     * @cfg {Number} growMax 
11847     * @hide 
11848     */
11849     /**
11850      * @hide
11851      * @method autoSize
11852      */
11853 });
11854 /*
11855  * Based on:
11856  * Ext JS Library 1.1.1
11857  * Copyright(c) 2006-2007, Ext JS, LLC.
11858  *
11859  * Originally Released Under LGPL - original licence link has changed is not relivant.
11860  *
11861  * Fork - LGPL
11862  * <script type="text/javascript">
11863  */
11864
11865 /**
11866  * @class Roo.View
11867  * @extends Roo.util.Observable
11868  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
11869  * This class also supports single and multi selection modes. <br>
11870  * Create a data model bound view:
11871  <pre><code>
11872  var store = new Roo.data.Store(...);
11873
11874  var view = new Roo.View({
11875     el : "my-element",
11876     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
11877  
11878     singleSelect: true,
11879     selectedClass: "ydataview-selected",
11880     store: store
11881  });
11882
11883  // listen for node click?
11884  view.on("click", function(vw, index, node, e){
11885  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
11886  });
11887
11888  // load XML data
11889  dataModel.load("foobar.xml");
11890  </code></pre>
11891  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
11892  * <br><br>
11893  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
11894  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
11895  * 
11896  * Note: old style constructor is still suported (container, template, config)
11897  * 
11898  * @constructor
11899  * Create a new View
11900  * @param {Object} config The config object
11901  * 
11902  */
11903 Roo.View = function(config, depreciated_tpl, depreciated_config){
11904     
11905     this.parent = false;
11906     
11907     if (typeof(depreciated_tpl) == 'undefined') {
11908         // new way.. - universal constructor.
11909         Roo.apply(this, config);
11910         this.el  = Roo.get(this.el);
11911     } else {
11912         // old format..
11913         this.el  = Roo.get(config);
11914         this.tpl = depreciated_tpl;
11915         Roo.apply(this, depreciated_config);
11916     }
11917     this.wrapEl  = this.el.wrap().wrap();
11918     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
11919     
11920     
11921     if(typeof(this.tpl) == "string"){
11922         this.tpl = new Roo.Template(this.tpl);
11923     } else {
11924         // support xtype ctors..
11925         this.tpl = new Roo.factory(this.tpl, Roo);
11926     }
11927     
11928     
11929     this.tpl.compile();
11930     
11931     /** @private */
11932     this.addEvents({
11933         /**
11934          * @event beforeclick
11935          * Fires before a click is processed. Returns false to cancel the default action.
11936          * @param {Roo.View} this
11937          * @param {Number} index The index of the target node
11938          * @param {HTMLElement} node The target node
11939          * @param {Roo.EventObject} e The raw event object
11940          */
11941             "beforeclick" : true,
11942         /**
11943          * @event click
11944          * Fires when a template node is clicked.
11945          * @param {Roo.View} this
11946          * @param {Number} index The index of the target node
11947          * @param {HTMLElement} node The target node
11948          * @param {Roo.EventObject} e The raw event object
11949          */
11950             "click" : true,
11951         /**
11952          * @event dblclick
11953          * Fires when a template node is double clicked.
11954          * @param {Roo.View} this
11955          * @param {Number} index The index of the target node
11956          * @param {HTMLElement} node The target node
11957          * @param {Roo.EventObject} e The raw event object
11958          */
11959             "dblclick" : true,
11960         /**
11961          * @event contextmenu
11962          * Fires when a template node is right clicked.
11963          * @param {Roo.View} this
11964          * @param {Number} index The index of the target node
11965          * @param {HTMLElement} node The target node
11966          * @param {Roo.EventObject} e The raw event object
11967          */
11968             "contextmenu" : true,
11969         /**
11970          * @event selectionchange
11971          * Fires when the selected nodes change.
11972          * @param {Roo.View} this
11973          * @param {Array} selections Array of the selected nodes
11974          */
11975             "selectionchange" : true,
11976     
11977         /**
11978          * @event beforeselect
11979          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
11980          * @param {Roo.View} this
11981          * @param {HTMLElement} node The node to be selected
11982          * @param {Array} selections Array of currently selected nodes
11983          */
11984             "beforeselect" : true,
11985         /**
11986          * @event preparedata
11987          * Fires on every row to render, to allow you to change the data.
11988          * @param {Roo.View} this
11989          * @param {Object} data to be rendered (change this)
11990          */
11991           "preparedata" : true
11992           
11993           
11994         });
11995
11996
11997
11998     this.el.on({
11999         "click": this.onClick,
12000         "dblclick": this.onDblClick,
12001         "contextmenu": this.onContextMenu,
12002         scope:this
12003     });
12004
12005     this.selections = [];
12006     this.nodes = [];
12007     this.cmp = new Roo.CompositeElementLite([]);
12008     if(this.store){
12009         this.store = Roo.factory(this.store, Roo.data);
12010         this.setStore(this.store, true);
12011     }
12012     
12013     if ( this.footer && this.footer.xtype) {
12014            
12015          var fctr = this.wrapEl.appendChild(document.createElement("div"));
12016         
12017         this.footer.dataSource = this.store
12018         this.footer.container = fctr;
12019         this.footer = Roo.factory(this.footer, Roo);
12020         fctr.insertFirst(this.el);
12021         
12022         // this is a bit insane - as the paging toolbar seems to detach the el..
12023 //        dom.parentNode.parentNode.parentNode
12024          // they get detached?
12025     }
12026     
12027     
12028     Roo.View.superclass.constructor.call(this);
12029     
12030     
12031 };
12032
12033 Roo.extend(Roo.View, Roo.util.Observable, {
12034     
12035      /**
12036      * @cfg {Roo.data.Store} store Data store to load data from.
12037      */
12038     store : false,
12039     
12040     /**
12041      * @cfg {String|Roo.Element} el The container element.
12042      */
12043     el : '',
12044     
12045     /**
12046      * @cfg {String|Roo.Template} tpl The template used by this View 
12047      */
12048     tpl : false,
12049     /**
12050      * @cfg {String} dataName the named area of the template to use as the data area
12051      *                          Works with domtemplates roo-name="name"
12052      */
12053     dataName: false,
12054     /**
12055      * @cfg {String} selectedClass The css class to add to selected nodes
12056      */
12057     selectedClass : "x-view-selected",
12058      /**
12059      * @cfg {String} emptyText The empty text to show when nothing is loaded.
12060      */
12061     emptyText : "",
12062     
12063     /**
12064      * @cfg {String} text to display on mask (default Loading)
12065      */
12066     mask : false,
12067     /**
12068      * @cfg {Boolean} multiSelect Allow multiple selection
12069      */
12070     multiSelect : false,
12071     /**
12072      * @cfg {Boolean} singleSelect Allow single selection
12073      */
12074     singleSelect:  false,
12075     
12076     /**
12077      * @cfg {Boolean} toggleSelect - selecting 
12078      */
12079     toggleSelect : false,
12080     
12081     /**
12082      * @cfg {Boolean} tickable - selecting 
12083      */
12084     tickable : false,
12085     
12086     /**
12087      * Returns the element this view is bound to.
12088      * @return {Roo.Element}
12089      */
12090     getEl : function(){
12091         return this.wrapEl;
12092     },
12093     
12094     
12095
12096     /**
12097      * Refreshes the view. - called by datachanged on the store. - do not call directly.
12098      */
12099     refresh : function(){
12100         Roo.log('refresh');
12101         var t = this.tpl;
12102         
12103         // if we are using something like 'domtemplate', then
12104         // the what gets used is:
12105         // t.applySubtemplate(NAME, data, wrapping data..)
12106         // the outer template then get' applied with
12107         //     the store 'extra data'
12108         // and the body get's added to the
12109         //      roo-name="data" node?
12110         //      <span class='roo-tpl-{name}'></span> ?????
12111         
12112         
12113         
12114         this.clearSelections();
12115         this.el.update("");
12116         var html = [];
12117         var records = this.store.getRange();
12118         if(records.length < 1) {
12119             
12120             // is this valid??  = should it render a template??
12121             
12122             this.el.update(this.emptyText);
12123             return;
12124         }
12125         var el = this.el;
12126         if (this.dataName) {
12127             this.el.update(t.apply(this.store.meta)); //????
12128             el = this.el.child('.roo-tpl-' + this.dataName);
12129         }
12130         
12131         for(var i = 0, len = records.length; i < len; i++){
12132             var data = this.prepareData(records[i].data, i, records[i]);
12133             this.fireEvent("preparedata", this, data, i, records[i]);
12134             
12135             var d = Roo.apply({}, data);
12136             
12137             if(this.tickable){
12138                 Roo.apply(d, {'roo-id' : Roo.id()});
12139                 
12140                 var _this = this;
12141             
12142                 Roo.each(this.parent.item, function(item){
12143                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
12144                         return;
12145                     }
12146                     Roo.apply(d, {'roo-data-checked' : 'checked'});
12147                 });
12148             }
12149             
12150             html[html.length] = Roo.util.Format.trim(
12151                 this.dataName ?
12152                     t.applySubtemplate(this.dataName, d, this.store.meta) :
12153                     t.apply(d)
12154             );
12155         }
12156         
12157         
12158         
12159         el.update(html.join(""));
12160         this.nodes = el.dom.childNodes;
12161         this.updateIndexes(0);
12162     },
12163     
12164
12165     /**
12166      * Function to override to reformat the data that is sent to
12167      * the template for each node.
12168      * DEPRICATED - use the preparedata event handler.
12169      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
12170      * a JSON object for an UpdateManager bound view).
12171      */
12172     prepareData : function(data, index, record)
12173     {
12174         this.fireEvent("preparedata", this, data, index, record);
12175         return data;
12176     },
12177
12178     onUpdate : function(ds, record){
12179          Roo.log('on update');   
12180         this.clearSelections();
12181         var index = this.store.indexOf(record);
12182         var n = this.nodes[index];
12183         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
12184         n.parentNode.removeChild(n);
12185         this.updateIndexes(index, index);
12186     },
12187
12188     
12189     
12190 // --------- FIXME     
12191     onAdd : function(ds, records, index)
12192     {
12193         Roo.log(['on Add', ds, records, index] );        
12194         this.clearSelections();
12195         if(this.nodes.length == 0){
12196             this.refresh();
12197             return;
12198         }
12199         var n = this.nodes[index];
12200         for(var i = 0, len = records.length; i < len; i++){
12201             var d = this.prepareData(records[i].data, i, records[i]);
12202             if(n){
12203                 this.tpl.insertBefore(n, d);
12204             }else{
12205                 
12206                 this.tpl.append(this.el, d);
12207             }
12208         }
12209         this.updateIndexes(index);
12210     },
12211
12212     onRemove : function(ds, record, index){
12213         Roo.log('onRemove');
12214         this.clearSelections();
12215         var el = this.dataName  ?
12216             this.el.child('.roo-tpl-' + this.dataName) :
12217             this.el; 
12218         
12219         el.dom.removeChild(this.nodes[index]);
12220         this.updateIndexes(index);
12221     },
12222
12223     /**
12224      * Refresh an individual node.
12225      * @param {Number} index
12226      */
12227     refreshNode : function(index){
12228         this.onUpdate(this.store, this.store.getAt(index));
12229     },
12230
12231     updateIndexes : function(startIndex, endIndex){
12232         var ns = this.nodes;
12233         startIndex = startIndex || 0;
12234         endIndex = endIndex || ns.length - 1;
12235         for(var i = startIndex; i <= endIndex; i++){
12236             ns[i].nodeIndex = i;
12237         }
12238     },
12239
12240     /**
12241      * Changes the data store this view uses and refresh the view.
12242      * @param {Store} store
12243      */
12244     setStore : function(store, initial){
12245         if(!initial && this.store){
12246             this.store.un("datachanged", this.refresh);
12247             this.store.un("add", this.onAdd);
12248             this.store.un("remove", this.onRemove);
12249             this.store.un("update", this.onUpdate);
12250             this.store.un("clear", this.refresh);
12251             this.store.un("beforeload", this.onBeforeLoad);
12252             this.store.un("load", this.onLoad);
12253             this.store.un("loadexception", this.onLoad);
12254         }
12255         if(store){
12256           
12257             store.on("datachanged", this.refresh, this);
12258             store.on("add", this.onAdd, this);
12259             store.on("remove", this.onRemove, this);
12260             store.on("update", this.onUpdate, this);
12261             store.on("clear", this.refresh, this);
12262             store.on("beforeload", this.onBeforeLoad, this);
12263             store.on("load", this.onLoad, this);
12264             store.on("loadexception", this.onLoad, this);
12265         }
12266         
12267         if(store){
12268             this.refresh();
12269         }
12270     },
12271     /**
12272      * onbeforeLoad - masks the loading area.
12273      *
12274      */
12275     onBeforeLoad : function(store,opts)
12276     {
12277          Roo.log('onBeforeLoad');   
12278         if (!opts.add) {
12279             this.el.update("");
12280         }
12281         this.el.mask(this.mask ? this.mask : "Loading" ); 
12282     },
12283     onLoad : function ()
12284     {
12285         this.el.unmask();
12286     },
12287     
12288
12289     /**
12290      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
12291      * @param {HTMLElement} node
12292      * @return {HTMLElement} The template node
12293      */
12294     findItemFromChild : function(node){
12295         var el = this.dataName  ?
12296             this.el.child('.roo-tpl-' + this.dataName,true) :
12297             this.el.dom; 
12298         
12299         if(!node || node.parentNode == el){
12300                     return node;
12301             }
12302             var p = node.parentNode;
12303             while(p && p != el){
12304             if(p.parentNode == el){
12305                 return p;
12306             }
12307             p = p.parentNode;
12308         }
12309             return null;
12310     },
12311
12312     /** @ignore */
12313     onClick : function(e){
12314         var item = this.findItemFromChild(e.getTarget());
12315         if(item){
12316             var index = this.indexOf(item);
12317             if(this.onItemClick(item, index, e) !== false){
12318                 this.fireEvent("click", this, index, item, e);
12319             }
12320         }else{
12321             this.clearSelections();
12322         }
12323     },
12324
12325     /** @ignore */
12326     onContextMenu : function(e){
12327         var item = this.findItemFromChild(e.getTarget());
12328         if(item){
12329             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
12330         }
12331     },
12332
12333     /** @ignore */
12334     onDblClick : function(e){
12335         var item = this.findItemFromChild(e.getTarget());
12336         if(item){
12337             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
12338         }
12339     },
12340
12341     onItemClick : function(item, index, e)
12342     {
12343         if(this.fireEvent("beforeclick", this, index, item, e) === false){
12344             return false;
12345         }
12346         if (this.toggleSelect) {
12347             var m = this.isSelected(item) ? 'unselect' : 'select';
12348             Roo.log(m);
12349             var _t = this;
12350             _t[m](item, true, false);
12351             return true;
12352         }
12353         if(this.multiSelect || this.singleSelect){
12354             if(this.multiSelect && e.shiftKey && this.lastSelection){
12355                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
12356             }else{
12357                 this.select(item, this.multiSelect && e.ctrlKey);
12358                 this.lastSelection = item;
12359             }
12360             
12361             if(!this.tickable){
12362                 e.preventDefault();
12363             }
12364             
12365         }
12366         return true;
12367     },
12368
12369     /**
12370      * Get the number of selected nodes.
12371      * @return {Number}
12372      */
12373     getSelectionCount : function(){
12374         return this.selections.length;
12375     },
12376
12377     /**
12378      * Get the currently selected nodes.
12379      * @return {Array} An array of HTMLElements
12380      */
12381     getSelectedNodes : function(){
12382         return this.selections;
12383     },
12384
12385     /**
12386      * Get the indexes of the selected nodes.
12387      * @return {Array}
12388      */
12389     getSelectedIndexes : function(){
12390         var indexes = [], s = this.selections;
12391         for(var i = 0, len = s.length; i < len; i++){
12392             indexes.push(s[i].nodeIndex);
12393         }
12394         return indexes;
12395     },
12396
12397     /**
12398      * Clear all selections
12399      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
12400      */
12401     clearSelections : function(suppressEvent){
12402         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
12403             this.cmp.elements = this.selections;
12404             this.cmp.removeClass(this.selectedClass);
12405             this.selections = [];
12406             if(!suppressEvent){
12407                 this.fireEvent("selectionchange", this, this.selections);
12408             }
12409         }
12410     },
12411
12412     /**
12413      * Returns true if the passed node is selected
12414      * @param {HTMLElement/Number} node The node or node index
12415      * @return {Boolean}
12416      */
12417     isSelected : function(node){
12418         var s = this.selections;
12419         if(s.length < 1){
12420             return false;
12421         }
12422         node = this.getNode(node);
12423         return s.indexOf(node) !== -1;
12424     },
12425
12426     /**
12427      * Selects nodes.
12428      * @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
12429      * @param {Boolean} keepExisting (optional) true to keep existing selections
12430      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
12431      */
12432     select : function(nodeInfo, keepExisting, suppressEvent){
12433         if(nodeInfo instanceof Array){
12434             if(!keepExisting){
12435                 this.clearSelections(true);
12436             }
12437             for(var i = 0, len = nodeInfo.length; i < len; i++){
12438                 this.select(nodeInfo[i], true, true);
12439             }
12440             return;
12441         } 
12442         var node = this.getNode(nodeInfo);
12443         if(!node || this.isSelected(node)){
12444             return; // already selected.
12445         }
12446         if(!keepExisting){
12447             this.clearSelections(true);
12448         }
12449         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
12450             Roo.fly(node).addClass(this.selectedClass);
12451             this.selections.push(node);
12452             if(!suppressEvent){
12453                 this.fireEvent("selectionchange", this, this.selections);
12454             }
12455         }
12456         
12457         
12458     },
12459       /**
12460      * Unselects nodes.
12461      * @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
12462      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
12463      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
12464      */
12465     unselect : function(nodeInfo, keepExisting, suppressEvent)
12466     {
12467         if(nodeInfo instanceof Array){
12468             Roo.each(this.selections, function(s) {
12469                 this.unselect(s, nodeInfo);
12470             }, this);
12471             return;
12472         }
12473         var node = this.getNode(nodeInfo);
12474         if(!node || !this.isSelected(node)){
12475             Roo.log("not selected");
12476             return; // not selected.
12477         }
12478         // fireevent???
12479         var ns = [];
12480         Roo.each(this.selections, function(s) {
12481             if (s == node ) {
12482                 Roo.fly(node).removeClass(this.selectedClass);
12483
12484                 return;
12485             }
12486             ns.push(s);
12487         },this);
12488         
12489         this.selections= ns;
12490         this.fireEvent("selectionchange", this, this.selections);
12491     },
12492
12493     /**
12494      * Gets a template node.
12495      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
12496      * @return {HTMLElement} The node or null if it wasn't found
12497      */
12498     getNode : function(nodeInfo){
12499         if(typeof nodeInfo == "string"){
12500             return document.getElementById(nodeInfo);
12501         }else if(typeof nodeInfo == "number"){
12502             return this.nodes[nodeInfo];
12503         }
12504         return nodeInfo;
12505     },
12506
12507     /**
12508      * Gets a range template nodes.
12509      * @param {Number} startIndex
12510      * @param {Number} endIndex
12511      * @return {Array} An array of nodes
12512      */
12513     getNodes : function(start, end){
12514         var ns = this.nodes;
12515         start = start || 0;
12516         end = typeof end == "undefined" ? ns.length - 1 : end;
12517         var nodes = [];
12518         if(start <= end){
12519             for(var i = start; i <= end; i++){
12520                 nodes.push(ns[i]);
12521             }
12522         } else{
12523             for(var i = start; i >= end; i--){
12524                 nodes.push(ns[i]);
12525             }
12526         }
12527         return nodes;
12528     },
12529
12530     /**
12531      * Finds the index of the passed node
12532      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
12533      * @return {Number} The index of the node or -1
12534      */
12535     indexOf : function(node){
12536         node = this.getNode(node);
12537         if(typeof node.nodeIndex == "number"){
12538             return node.nodeIndex;
12539         }
12540         var ns = this.nodes;
12541         for(var i = 0, len = ns.length; i < len; i++){
12542             if(ns[i] == node){
12543                 return i;
12544             }
12545         }
12546         return -1;
12547     }
12548 });
12549 /*
12550  * - LGPL
12551  *
12552  * based on jquery fullcalendar
12553  * 
12554  */
12555
12556 Roo.bootstrap = Roo.bootstrap || {};
12557 /**
12558  * @class Roo.bootstrap.Calendar
12559  * @extends Roo.bootstrap.Component
12560  * Bootstrap Calendar class
12561  * @cfg {Boolean} loadMask (true|false) default false
12562  * @cfg {Object} header generate the user specific header of the calendar, default false
12563
12564  * @constructor
12565  * Create a new Container
12566  * @param {Object} config The config object
12567  */
12568
12569
12570
12571 Roo.bootstrap.Calendar = function(config){
12572     Roo.bootstrap.Calendar.superclass.constructor.call(this, config);
12573      this.addEvents({
12574         /**
12575              * @event select
12576              * Fires when a date is selected
12577              * @param {DatePicker} this
12578              * @param {Date} date The selected date
12579              */
12580         'select': true,
12581         /**
12582              * @event monthchange
12583              * Fires when the displayed month changes 
12584              * @param {DatePicker} this
12585              * @param {Date} date The selected month
12586              */
12587         'monthchange': true,
12588         /**
12589              * @event evententer
12590              * Fires when mouse over an event
12591              * @param {Calendar} this
12592              * @param {event} Event
12593              */
12594         'evententer': true,
12595         /**
12596              * @event eventleave
12597              * Fires when the mouse leaves an
12598              * @param {Calendar} this
12599              * @param {event}
12600              */
12601         'eventleave': true,
12602         /**
12603              * @event eventclick
12604              * Fires when the mouse click an
12605              * @param {Calendar} this
12606              * @param {event}
12607              */
12608         'eventclick': true
12609         
12610     });
12611
12612 };
12613
12614 Roo.extend(Roo.bootstrap.Calendar, Roo.bootstrap.Component,  {
12615     
12616      /**
12617      * @cfg {Number} startDay
12618      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
12619      */
12620     startDay : 0,
12621     
12622     loadMask : false,
12623     
12624     header : false,
12625       
12626     getAutoCreate : function(){
12627         
12628         
12629         var fc_button = function(name, corner, style, content ) {
12630             return Roo.apply({},{
12631                 tag : 'span',
12632                 cls : 'fc-button fc-button-'+name+' fc-state-default ' + 
12633                          (corner.length ?
12634                             'fc-corner-' + corner.split(' ').join(' fc-corner-') :
12635                             ''
12636                         ),
12637                 html : '<SPAN class="fc-text-'+style+ '">'+content +'</SPAN>',
12638                 unselectable: 'on'
12639             });
12640         };
12641         
12642         var header = {};
12643         
12644         if(!this.header){
12645             header = {
12646                 tag : 'table',
12647                 cls : 'fc-header',
12648                 style : 'width:100%',
12649                 cn : [
12650                     {
12651                         tag: 'tr',
12652                         cn : [
12653                             {
12654                                 tag : 'td',
12655                                 cls : 'fc-header-left',
12656                                 cn : [
12657                                     fc_button('prev', 'left', 'arrow', '&#8249;' ),
12658                                     fc_button('next', 'right', 'arrow', '&#8250;' ),
12659                                     { tag: 'span', cls: 'fc-header-space' },
12660                                     fc_button('today', 'left right', '', 'today' )  // neds state disabled..
12661
12662
12663                                 ]
12664                             },
12665
12666                             {
12667                                 tag : 'td',
12668                                 cls : 'fc-header-center',
12669                                 cn : [
12670                                     {
12671                                         tag: 'span',
12672                                         cls: 'fc-header-title',
12673                                         cn : {
12674                                             tag: 'H2',
12675                                             html : 'month / year'
12676                                         }
12677                                     }
12678
12679                                 ]
12680                             },
12681                             {
12682                                 tag : 'td',
12683                                 cls : 'fc-header-right',
12684                                 cn : [
12685                               /*      fc_button('month', 'left', '', 'month' ),
12686                                     fc_button('week', '', '', 'week' ),
12687                                     fc_button('day', 'right', '', 'day' )
12688                                 */    
12689
12690                                 ]
12691                             }
12692
12693                         ]
12694                     }
12695                 ]
12696             };
12697         }
12698         
12699         header = this.header;
12700         
12701        
12702         var cal_heads = function() {
12703             var ret = [];
12704             // fixme - handle this.
12705             
12706             for (var i =0; i < Date.dayNames.length; i++) {
12707                 var d = Date.dayNames[i];
12708                 ret.push({
12709                     tag: 'th',
12710                     cls : 'fc-day-header fc-' + d.substring(0,3).toLowerCase() + ' fc-widget-header',
12711                     html : d.substring(0,3)
12712                 });
12713                 
12714             }
12715             ret[0].cls += ' fc-first';
12716             ret[6].cls += ' fc-last';
12717             return ret;
12718         };
12719         var cal_cell = function(n) {
12720             return  {
12721                 tag: 'td',
12722                 cls : 'fc-day fc-'+n + ' fc-widget-content', ///fc-other-month fc-past
12723                 cn : [
12724                     {
12725                         cn : [
12726                             {
12727                                 cls: 'fc-day-number',
12728                                 html: 'D'
12729                             },
12730                             {
12731                                 cls: 'fc-day-content',
12732                              
12733                                 cn : [
12734                                      {
12735                                         style: 'position: relative;' // height: 17px;
12736                                     }
12737                                 ]
12738                             }
12739                             
12740                             
12741                         ]
12742                     }
12743                 ]
12744                 
12745             }
12746         };
12747         var cal_rows = function() {
12748             
12749             var ret = []
12750             for (var r = 0; r < 6; r++) {
12751                 var row= {
12752                     tag : 'tr',
12753                     cls : 'fc-week',
12754                     cn : []
12755                 };
12756                 
12757                 for (var i =0; i < Date.dayNames.length; i++) {
12758                     var d = Date.dayNames[i];
12759                     row.cn.push(cal_cell(d.substring(0,3).toLowerCase()));
12760
12761                 }
12762                 row.cn[0].cls+=' fc-first';
12763                 row.cn[0].cn[0].style = 'min-height:90px';
12764                 row.cn[6].cls+=' fc-last';
12765                 ret.push(row);
12766                 
12767             }
12768             ret[0].cls += ' fc-first';
12769             ret[4].cls += ' fc-prev-last';
12770             ret[5].cls += ' fc-last';
12771             return ret;
12772             
12773         };
12774         
12775         var cal_table = {
12776             tag: 'table',
12777             cls: 'fc-border-separate',
12778             style : 'width:100%',
12779             cellspacing  : 0,
12780             cn : [
12781                 { 
12782                     tag: 'thead',
12783                     cn : [
12784                         { 
12785                             tag: 'tr',
12786                             cls : 'fc-first fc-last',
12787                             cn : cal_heads()
12788                         }
12789                     ]
12790                 },
12791                 { 
12792                     tag: 'tbody',
12793                     cn : cal_rows()
12794                 }
12795                   
12796             ]
12797         };
12798          
12799          var cfg = {
12800             cls : 'fc fc-ltr',
12801             cn : [
12802                 header,
12803                 {
12804                     cls : 'fc-content',
12805                     style : "position: relative;",
12806                     cn : [
12807                         {
12808                             cls : 'fc-view fc-view-month fc-grid',
12809                             style : 'position: relative',
12810                             unselectable : 'on',
12811                             cn : [
12812                                 {
12813                                     cls : 'fc-event-container',
12814                                     style : 'position:absolute;z-index:8;top:0;left:0;'
12815                                 },
12816                                 cal_table
12817                             ]
12818                         }
12819                     ]
12820     
12821                 }
12822            ] 
12823             
12824         };
12825         
12826          
12827         
12828         return cfg;
12829     },
12830     
12831     
12832     initEvents : function()
12833     {
12834         if(!this.store){
12835             throw "can not find store for calendar";
12836         }
12837         
12838         var mark = {
12839             tag: "div",
12840             cls:"x-dlg-mask",
12841             style: "text-align:center",
12842             cn: [
12843                 {
12844                     tag: "div",
12845                     style: "background-color:white;width:50%;margin:250 auto",
12846                     cn: [
12847                         {
12848                             tag: "img",
12849                             src: Roo.rootURL + '/images/ux/lightbox/loading.gif' 
12850                         },
12851                         {
12852                             tag: "span",
12853                             html: "Loading"
12854                         }
12855                         
12856                     ]
12857                 }
12858             ]
12859         }
12860         this.maskEl = Roo.DomHelper.append(this.el.select('.fc-content', true).first(), mark, true);
12861         
12862         var size = this.el.select('.fc-content', true).first().getSize();
12863         this.maskEl.setSize(size.width, size.height);
12864         this.maskEl.enableDisplayMode("block");
12865         if(!this.loadMask){
12866             this.maskEl.hide();
12867         }
12868         
12869         this.store = Roo.factory(this.store, Roo.data);
12870         this.store.on('load', this.onLoad, this);
12871         this.store.on('beforeload', this.onBeforeLoad, this);
12872         
12873         this.resize();
12874         
12875         this.cells = this.el.select('.fc-day',true);
12876         //Roo.log(this.cells);
12877         this.textNodes = this.el.query('.fc-day-number');
12878         this.cells.addClassOnOver('fc-state-hover');
12879         
12880         this.el.select('.fc-button-prev',true).on('click', this.showPrevMonth, this);
12881         this.el.select('.fc-button-next',true).on('click', this.showNextMonth, this);
12882         this.el.select('.fc-button-today',true).on('click', this.showToday, this);
12883         this.el.select('.fc-button',true).addClassOnOver('fc-state-hover');
12884         
12885         this.on('monthchange', this.onMonthChange, this);
12886         
12887         this.update(new Date().clearTime());
12888     },
12889     
12890     resize : function() {
12891         var sz  = this.el.getSize();
12892         
12893         this.el.select('.fc-day-header',true).setWidth(sz.width / 7);
12894         this.el.select('.fc-day-content div',true).setHeight(34);
12895     },
12896     
12897     
12898     // private
12899     showPrevMonth : function(e){
12900         this.update(this.activeDate.add("mo", -1));
12901     },
12902     showToday : function(e){
12903         this.update(new Date().clearTime());
12904     },
12905     // private
12906     showNextMonth : function(e){
12907         this.update(this.activeDate.add("mo", 1));
12908     },
12909
12910     // private
12911     showPrevYear : function(){
12912         this.update(this.activeDate.add("y", -1));
12913     },
12914
12915     // private
12916     showNextYear : function(){
12917         this.update(this.activeDate.add("y", 1));
12918     },
12919
12920     
12921    // private
12922     update : function(date)
12923     {
12924         var vd = this.activeDate;
12925         this.activeDate = date;
12926 //        if(vd && this.el){
12927 //            var t = date.getTime();
12928 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
12929 //                Roo.log('using add remove');
12930 //                
12931 //                this.fireEvent('monthchange', this, date);
12932 //                
12933 //                this.cells.removeClass("fc-state-highlight");
12934 //                this.cells.each(function(c){
12935 //                   if(c.dateValue == t){
12936 //                       c.addClass("fc-state-highlight");
12937 //                       setTimeout(function(){
12938 //                            try{c.dom.firstChild.focus();}catch(e){}
12939 //                       }, 50);
12940 //                       return false;
12941 //                   }
12942 //                   return true;
12943 //                });
12944 //                return;
12945 //            }
12946 //        }
12947         
12948         var days = date.getDaysInMonth();
12949         
12950         var firstOfMonth = date.getFirstDateOfMonth();
12951         var startingPos = firstOfMonth.getDay()-this.startDay;
12952         
12953         if(startingPos < this.startDay){
12954             startingPos += 7;
12955         }
12956         
12957         var pm = date.add(Date.MONTH, -1);
12958         var prevStart = pm.getDaysInMonth()-startingPos;
12959 //        
12960         this.cells = this.el.select('.fc-day',true);
12961         this.textNodes = this.el.query('.fc-day-number');
12962         this.cells.addClassOnOver('fc-state-hover');
12963         
12964         var cells = this.cells.elements;
12965         var textEls = this.textNodes;
12966         
12967         Roo.each(cells, function(cell){
12968             cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
12969         });
12970         
12971         days += startingPos;
12972
12973         // convert everything to numbers so it's fast
12974         var day = 86400000;
12975         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
12976         //Roo.log(d);
12977         //Roo.log(pm);
12978         //Roo.log(prevStart);
12979         
12980         var today = new Date().clearTime().getTime();
12981         var sel = date.clearTime().getTime();
12982         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
12983         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
12984         var ddMatch = this.disabledDatesRE;
12985         var ddText = this.disabledDatesText;
12986         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
12987         var ddaysText = this.disabledDaysText;
12988         var format = this.format;
12989         
12990         var setCellClass = function(cal, cell){
12991             cell.row = 0;
12992             cell.events = [];
12993             cell.more = [];
12994             //Roo.log('set Cell Class');
12995             cell.title = "";
12996             var t = d.getTime();
12997             
12998             //Roo.log(d);
12999             
13000             cell.dateValue = t;
13001             if(t == today){
13002                 cell.className += " fc-today";
13003                 cell.className += " fc-state-highlight";
13004                 cell.title = cal.todayText;
13005             }
13006             if(t == sel){
13007                 // disable highlight in other month..
13008                 //cell.className += " fc-state-highlight";
13009                 
13010             }
13011             // disabling
13012             if(t < min) {
13013                 cell.className = " fc-state-disabled";
13014                 cell.title = cal.minText;
13015                 return;
13016             }
13017             if(t > max) {
13018                 cell.className = " fc-state-disabled";
13019                 cell.title = cal.maxText;
13020                 return;
13021             }
13022             if(ddays){
13023                 if(ddays.indexOf(d.getDay()) != -1){
13024                     cell.title = ddaysText;
13025                     cell.className = " fc-state-disabled";
13026                 }
13027             }
13028             if(ddMatch && format){
13029                 var fvalue = d.dateFormat(format);
13030                 if(ddMatch.test(fvalue)){
13031                     cell.title = ddText.replace("%0", fvalue);
13032                     cell.className = " fc-state-disabled";
13033                 }
13034             }
13035             
13036             if (!cell.initialClassName) {
13037                 cell.initialClassName = cell.dom.className;
13038             }
13039             
13040             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
13041         };
13042
13043         var i = 0;
13044         
13045         for(; i < startingPos; i++) {
13046             textEls[i].innerHTML = (++prevStart);
13047             d.setDate(d.getDate()+1);
13048             
13049             cells[i].className = "fc-past fc-other-month";
13050             setCellClass(this, cells[i]);
13051         }
13052         
13053         var intDay = 0;
13054         
13055         for(; i < days; i++){
13056             intDay = i - startingPos + 1;
13057             textEls[i].innerHTML = (intDay);
13058             d.setDate(d.getDate()+1);
13059             
13060             cells[i].className = ''; // "x-date-active";
13061             setCellClass(this, cells[i]);
13062         }
13063         var extraDays = 0;
13064         
13065         for(; i < 42; i++) {
13066             textEls[i].innerHTML = (++extraDays);
13067             d.setDate(d.getDate()+1);
13068             
13069             cells[i].className = "fc-future fc-other-month";
13070             setCellClass(this, cells[i]);
13071         }
13072         
13073         this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
13074         
13075         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
13076         
13077         this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
13078         this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
13079         
13080         if(totalRows != 6){
13081             this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
13082             this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
13083         }
13084         
13085         this.fireEvent('monthchange', this, date);
13086         
13087         
13088         /*
13089         if(!this.internalRender){
13090             var main = this.el.dom.firstChild;
13091             var w = main.offsetWidth;
13092             this.el.setWidth(w + this.el.getBorderWidth("lr"));
13093             Roo.fly(main).setWidth(w);
13094             this.internalRender = true;
13095             // opera does not respect the auto grow header center column
13096             // then, after it gets a width opera refuses to recalculate
13097             // without a second pass
13098             if(Roo.isOpera && !this.secondPass){
13099                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
13100                 this.secondPass = true;
13101                 this.update.defer(10, this, [date]);
13102             }
13103         }
13104         */
13105         
13106     },
13107     
13108     findCell : function(dt) {
13109         dt = dt.clearTime().getTime();
13110         var ret = false;
13111         this.cells.each(function(c){
13112             //Roo.log("check " +c.dateValue + '?=' + dt);
13113             if(c.dateValue == dt){
13114                 ret = c;
13115                 return false;
13116             }
13117             return true;
13118         });
13119         
13120         return ret;
13121     },
13122     
13123     findCells : function(ev) {
13124         var s = ev.start.clone().clearTime().getTime();
13125        // Roo.log(s);
13126         var e= ev.end.clone().clearTime().getTime();
13127        // Roo.log(e);
13128         var ret = [];
13129         this.cells.each(function(c){
13130              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
13131             
13132             if(c.dateValue > e){
13133                 return ;
13134             }
13135             if(c.dateValue < s){
13136                 return ;
13137             }
13138             ret.push(c);
13139         });
13140         
13141         return ret;    
13142     },
13143     
13144 //    findBestRow: function(cells)
13145 //    {
13146 //        var ret = 0;
13147 //        
13148 //        for (var i =0 ; i < cells.length;i++) {
13149 //            ret  = Math.max(cells[i].rows || 0,ret);
13150 //        }
13151 //        return ret;
13152 //        
13153 //    },
13154     
13155     
13156     addItem : function(ev)
13157     {
13158         // look for vertical location slot in
13159         var cells = this.findCells(ev);
13160         
13161 //        ev.row = this.findBestRow(cells);
13162         
13163         // work out the location.
13164         
13165         var crow = false;
13166         var rows = [];
13167         for(var i =0; i < cells.length; i++) {
13168             
13169             cells[i].row = cells[0].row;
13170             
13171             if(i == 0){
13172                 cells[i].row = cells[i].row + 1;
13173             }
13174             
13175             if (!crow) {
13176                 crow = {
13177                     start : cells[i],
13178                     end :  cells[i]
13179                 };
13180                 continue;
13181             }
13182             if (crow.start.getY() == cells[i].getY()) {
13183                 // on same row.
13184                 crow.end = cells[i];
13185                 continue;
13186             }
13187             // different row.
13188             rows.push(crow);
13189             crow = {
13190                 start: cells[i],
13191                 end : cells[i]
13192             };
13193             
13194         }
13195         
13196         rows.push(crow);
13197         ev.els = [];
13198         ev.rows = rows;
13199         ev.cells = cells;
13200         
13201         cells[0].events.push(ev);
13202         
13203         this.calevents.push(ev);
13204     },
13205     
13206     clearEvents: function() {
13207         
13208         if(!this.calevents){
13209             return;
13210         }
13211         
13212         Roo.each(this.cells.elements, function(c){
13213             c.row = 0;
13214             c.events = [];
13215             c.more = [];
13216         });
13217         
13218         Roo.each(this.calevents, function(e) {
13219             Roo.each(e.els, function(el) {
13220                 el.un('mouseenter' ,this.onEventEnter, this);
13221                 el.un('mouseleave' ,this.onEventLeave, this);
13222                 el.remove();
13223             },this);
13224         },this);
13225         
13226         Roo.each(Roo.select('.fc-more-event', true).elements, function(e){
13227             e.remove();
13228         });
13229         
13230     },
13231     
13232     renderEvents: function()
13233     {   
13234         var _this = this;
13235         
13236         this.cells.each(function(c) {
13237             
13238             if(c.row < 5){
13239                 return;
13240             }
13241             
13242             var ev = c.events;
13243             
13244             var r = 4;
13245             if(c.row != c.events.length){
13246                 r = 4 - (4 - (c.row - c.events.length));
13247             }
13248             
13249             c.events = ev.slice(0, r);
13250             c.more = ev.slice(r);
13251             
13252             if(c.more.length && c.more.length == 1){
13253                 c.events.push(c.more.pop());
13254             }
13255             
13256             c.row = (c.row - ev.length) + c.events.length + ((c.more.length) ? 1 : 0);
13257             
13258         });
13259             
13260         this.cells.each(function(c) {
13261             
13262             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, c.row * 20));
13263             
13264             
13265             for (var e = 0; e < c.events.length; e++){
13266                 var ev = c.events[e];
13267                 var rows = ev.rows;
13268                 
13269                 for(var i = 0; i < rows.length; i++) {
13270                 
13271                     // how many rows should it span..
13272
13273                     var  cfg = {
13274                         cls : 'roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable',
13275                         style : 'position: absolute', // left: 387px; width: 121px; top: 359px;
13276
13277                         unselectable : "on",
13278                         cn : [
13279                             {
13280                                 cls: 'fc-event-inner',
13281                                 cn : [
13282     //                                {
13283     //                                  tag:'span',
13284     //                                  cls: 'fc-event-time',
13285     //                                  html : cells.length > 1 ? '' : ev.time
13286     //                                },
13287                                     {
13288                                       tag:'span',
13289                                       cls: 'fc-event-title',
13290                                       html : String.format('{0}', ev.title)
13291                                     }
13292
13293
13294                                 ]
13295                             },
13296                             {
13297                                 cls: 'ui-resizable-handle ui-resizable-e',
13298                                 html : '&nbsp;&nbsp;&nbsp'
13299                             }
13300
13301                         ]
13302                     };
13303
13304                     if (i == 0) {
13305                         cfg.cls += ' fc-event-start';
13306                     }
13307                     if ((i+1) == rows.length) {
13308                         cfg.cls += ' fc-event-end';
13309                     }
13310
13311                     var ctr = _this.el.select('.fc-event-container',true).first();
13312                     var cg = ctr.createChild(cfg);
13313
13314                     var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
13315                     var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
13316
13317                     var r = (c.more.length) ? 1 : 0;
13318                     cg.setXY([sbox.x +2, sbox.y + ((c.row - c.events.length - r + e) * 20)]);    
13319                     cg.setWidth(ebox.right - sbox.x -2);
13320
13321                     cg.on('mouseenter' ,_this.onEventEnter, _this, ev);
13322                     cg.on('mouseleave' ,_this.onEventLeave, _this, ev);
13323                     cg.on('click', _this.onEventClick, _this, ev);
13324
13325                     ev.els.push(cg);
13326                     
13327                 }
13328                 
13329             }
13330             
13331             
13332             if(c.more.length){
13333                 var  cfg = {
13334                     cls : 'fc-more-event roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable fc-event-start fc-event-end',
13335                     style : 'position: absolute',
13336                     unselectable : "on",
13337                     cn : [
13338                         {
13339                             cls: 'fc-event-inner',
13340                             cn : [
13341                                 {
13342                                   tag:'span',
13343                                   cls: 'fc-event-title',
13344                                   html : 'More'
13345                                 }
13346
13347
13348                             ]
13349                         },
13350                         {
13351                             cls: 'ui-resizable-handle ui-resizable-e',
13352                             html : '&nbsp;&nbsp;&nbsp'
13353                         }
13354
13355                     ]
13356                 };
13357
13358                 var ctr = _this.el.select('.fc-event-container',true).first();
13359                 var cg = ctr.createChild(cfg);
13360
13361                 var sbox = c.select('.fc-day-content',true).first().getBox();
13362                 var ebox = c.select('.fc-day-content',true).first().getBox();
13363                 //Roo.log(cg);
13364                 cg.setXY([sbox.x +2, sbox.y +((c.row - 1) * 20)]);    
13365                 cg.setWidth(ebox.right - sbox.x -2);
13366
13367                 cg.on('click', _this.onMoreEventClick, _this, c.more);
13368                 
13369             }
13370             
13371         });
13372         
13373         
13374         
13375     },
13376     
13377     onEventEnter: function (e, el,event,d) {
13378         this.fireEvent('evententer', this, el, event);
13379     },
13380     
13381     onEventLeave: function (e, el,event,d) {
13382         this.fireEvent('eventleave', this, el, event);
13383     },
13384     
13385     onEventClick: function (e, el,event,d) {
13386         this.fireEvent('eventclick', this, el, event);
13387     },
13388     
13389     onMonthChange: function () {
13390         this.store.load();
13391     },
13392     
13393     onMoreEventClick: function(e, el, more)
13394     {
13395         var _this = this;
13396         
13397         this.calpopover.placement = 'right';
13398         this.calpopover.setTitle('More');
13399         
13400         this.calpopover.setContent('');
13401         
13402         var ctr = this.calpopover.el.select('.popover-content', true).first();
13403         
13404         Roo.each(more, function(m){
13405             var cfg = {
13406                 cls : 'fc-event-hori fc-event-draggable',
13407                 html : m.title
13408             }
13409             var cg = ctr.createChild(cfg);
13410             
13411             cg.on('click', _this.onEventClick, _this, m);
13412         });
13413         
13414         this.calpopover.show(el);
13415         
13416         
13417     },
13418     
13419     onLoad: function () 
13420     {   
13421         this.calevents = [];
13422         var cal = this;
13423         
13424         if(this.store.getCount() > 0){
13425             this.store.data.each(function(d){
13426                cal.addItem({
13427                     id : d.data.id,
13428                     start: (typeof(d.data.start_dt) === 'string') ? new Date.parseDate(d.data.start_dt, 'Y-m-d H:i:s') : d.data.start_dt,
13429                     end : (typeof(d.data.end_dt) === 'string') ? new Date.parseDate(d.data.end_dt, 'Y-m-d H:i:s') : d.data.end_dt,
13430                     time : d.data.start_time,
13431                     title : d.data.title,
13432                     description : d.data.description,
13433                     venue : d.data.venue
13434                 });
13435             });
13436         }
13437         
13438         this.renderEvents();
13439         
13440         if(this.calevents.length && this.loadMask){
13441             this.maskEl.hide();
13442         }
13443     },
13444     
13445     onBeforeLoad: function()
13446     {
13447         this.clearEvents();
13448         if(this.loadMask){
13449             this.maskEl.show();
13450         }
13451     }
13452 });
13453
13454  
13455  /*
13456  * - LGPL
13457  *
13458  * element
13459  * 
13460  */
13461
13462 /**
13463  * @class Roo.bootstrap.Popover
13464  * @extends Roo.bootstrap.Component
13465  * Bootstrap Popover class
13466  * @cfg {String} html contents of the popover   (or false to use children..)
13467  * @cfg {String} title of popover (or false to hide)
13468  * @cfg {String} placement how it is placed
13469  * @cfg {String} trigger click || hover (or false to trigger manually)
13470  * @cfg {String} over what (parent or false to trigger manually.)
13471  * 
13472  * @constructor
13473  * Create a new Popover
13474  * @param {Object} config The config object
13475  */
13476
13477 Roo.bootstrap.Popover = function(config){
13478     Roo.bootstrap.Popover.superclass.constructor.call(this, config);
13479 };
13480
13481 Roo.extend(Roo.bootstrap.Popover, Roo.bootstrap.Component,  {
13482     
13483     title: 'Fill in a title',
13484     html: false,
13485     
13486     placement : 'right',
13487     trigger : 'hover', // hover
13488     
13489     over: 'parent',
13490     
13491     can_build_overlaid : false,
13492     
13493     getChildContainer : function()
13494     {
13495         return this.el.select('.popover-content',true).first();
13496     },
13497     
13498     getAutoCreate : function(){
13499          Roo.log('make popover?');
13500         var cfg = {
13501            cls : 'popover roo-dynamic',
13502            style: 'display:block',
13503            cn : [
13504                 {
13505                     cls : 'arrow'
13506                 },
13507                 {
13508                     cls : 'popover-inner',
13509                     cn : [
13510                         {
13511                             tag: 'h3',
13512                             cls: 'popover-title',
13513                             html : this.title
13514                         },
13515                         {
13516                             cls : 'popover-content',
13517                             html : this.html
13518                         }
13519                     ]
13520                     
13521                 }
13522            ]
13523         };
13524         
13525         return cfg;
13526     },
13527     setTitle: function(str)
13528     {
13529         this.el.select('.popover-title',true).first().dom.innerHTML = str;
13530     },
13531     setContent: function(str)
13532     {
13533         this.el.select('.popover-content',true).first().dom.innerHTML = str;
13534     },
13535     // as it get's added to the bottom of the page.
13536     onRender : function(ct, position)
13537     {
13538         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
13539         if(!this.el){
13540             var cfg = Roo.apply({},  this.getAutoCreate());
13541             cfg.id = Roo.id();
13542             
13543             if (this.cls) {
13544                 cfg.cls += ' ' + this.cls;
13545             }
13546             if (this.style) {
13547                 cfg.style = this.style;
13548             }
13549             Roo.log("adding to ")
13550             this.el = Roo.get(document.body).createChild(cfg, position);
13551             Roo.log(this.el);
13552         }
13553         this.initEvents();
13554     },
13555     
13556     initEvents : function()
13557     {
13558         this.el.select('.popover-title',true).setVisibilityMode(Roo.Element.DISPLAY);
13559         this.el.enableDisplayMode('block');
13560         this.el.hide();
13561         if (this.over === false) {
13562             return; 
13563         }
13564         if (this.triggers === false) {
13565             return;
13566         }
13567         var on_el = (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
13568         var triggers = this.trigger ? this.trigger.split(' ') : [];
13569         Roo.each(triggers, function(trigger) {
13570         
13571             if (trigger == 'click') {
13572                 on_el.on('click', this.toggle, this);
13573             } else if (trigger != 'manual') {
13574                 var eventIn  = trigger == 'hover' ? 'mouseenter' : 'focusin'
13575                 var eventOut = trigger == 'hover' ? 'mouseleave' : 'focusout'
13576       
13577                 on_el.on(eventIn  ,this.enter, this);
13578                 on_el.on(eventOut, this.leave, this);
13579             }
13580         }, this);
13581         
13582     },
13583     
13584     
13585     // private
13586     timeout : null,
13587     hoverState : null,
13588     
13589     toggle : function () {
13590         this.hoverState == 'in' ? this.leave() : this.enter();
13591     },
13592     
13593     enter : function () {
13594        
13595     
13596         clearTimeout(this.timeout);
13597     
13598         this.hoverState = 'in'
13599     
13600         if (!this.delay || !this.delay.show) {
13601             this.show();
13602             return 
13603         }
13604         var _t = this;
13605         this.timeout = setTimeout(function () {
13606             if (_t.hoverState == 'in') {
13607                 _t.show();
13608             }
13609         }, this.delay.show)
13610     },
13611     leave : function() {
13612         clearTimeout(this.timeout);
13613     
13614         this.hoverState = 'out'
13615     
13616         if (!this.delay || !this.delay.hide) {
13617             this.hide();
13618             return 
13619         }
13620         var _t = this;
13621         this.timeout = setTimeout(function () {
13622             if (_t.hoverState == 'out') {
13623                 _t.hide();
13624             }
13625         }, this.delay.hide)
13626     },
13627     
13628     show : function (on_el)
13629     {
13630         if (!on_el) {
13631             on_el= (this.over == 'parent') ? this.parent().el : Roo.get(this.over);
13632         }
13633         // set content.
13634         this.el.select('.popover-title',true).first().dom.innerHtml = this.title;
13635         if (this.html !== false) {
13636             this.el.select('.popover-content',true).first().dom.innerHtml = this.title;
13637         }
13638         this.el.removeClass(['fade','top','bottom', 'left', 'right','in']);
13639         if (!this.title.length) {
13640             this.el.select('.popover-title',true).hide();
13641         }
13642         
13643         var placement = typeof this.placement == 'function' ?
13644             this.placement.call(this, this.el, on_el) :
13645             this.placement;
13646             
13647         var autoToken = /\s?auto?\s?/i;
13648         var autoPlace = autoToken.test(placement);
13649         if (autoPlace) {
13650             placement = placement.replace(autoToken, '') || 'top';
13651         }
13652         
13653         //this.el.detach()
13654         //this.el.setXY([0,0]);
13655         this.el.show();
13656         this.el.dom.style.display='block';
13657         this.el.addClass(placement);
13658         
13659         //this.el.appendTo(on_el);
13660         
13661         var p = this.getPosition();
13662         var box = this.el.getBox();
13663         
13664         if (autoPlace) {
13665             // fixme..
13666         }
13667         var align = Roo.bootstrap.Popover.alignment[placement]
13668         this.el.alignTo(on_el, align[0],align[1]);
13669         //var arrow = this.el.select('.arrow',true).first();
13670         //arrow.set(align[2], 
13671         
13672         this.el.addClass('in');
13673         this.hoverState = null;
13674         
13675         if (this.el.hasClass('fade')) {
13676             // fade it?
13677         }
13678         
13679     },
13680     hide : function()
13681     {
13682         this.el.setXY([0,0]);
13683         this.el.removeClass('in');
13684         this.el.hide();
13685         
13686     }
13687     
13688 });
13689
13690 Roo.bootstrap.Popover.alignment = {
13691     'left' : ['r-l', [-10,0], 'right'],
13692     'right' : ['l-r', [10,0], 'left'],
13693     'bottom' : ['t-b', [0,10], 'top'],
13694     'top' : [ 'b-t', [0,-10], 'bottom']
13695 };
13696
13697  /*
13698  * - LGPL
13699  *
13700  * Progress
13701  * 
13702  */
13703
13704 /**
13705  * @class Roo.bootstrap.Progress
13706  * @extends Roo.bootstrap.Component
13707  * Bootstrap Progress class
13708  * @cfg {Boolean} striped striped of the progress bar
13709  * @cfg {Boolean} active animated of the progress bar
13710  * 
13711  * 
13712  * @constructor
13713  * Create a new Progress
13714  * @param {Object} config The config object
13715  */
13716
13717 Roo.bootstrap.Progress = function(config){
13718     Roo.bootstrap.Progress.superclass.constructor.call(this, config);
13719 };
13720
13721 Roo.extend(Roo.bootstrap.Progress, Roo.bootstrap.Component,  {
13722     
13723     striped : false,
13724     active: false,
13725     
13726     getAutoCreate : function(){
13727         var cfg = {
13728             tag: 'div',
13729             cls: 'progress'
13730         };
13731         
13732         
13733         if(this.striped){
13734             cfg.cls += ' progress-striped';
13735         }
13736       
13737         if(this.active){
13738             cfg.cls += ' active';
13739         }
13740         
13741         
13742         return cfg;
13743     }
13744    
13745 });
13746
13747  
13748
13749  /*
13750  * - LGPL
13751  *
13752  * ProgressBar
13753  * 
13754  */
13755
13756 /**
13757  * @class Roo.bootstrap.ProgressBar
13758  * @extends Roo.bootstrap.Component
13759  * Bootstrap ProgressBar class
13760  * @cfg {Number} aria_valuenow aria-value now
13761  * @cfg {Number} aria_valuemin aria-value min
13762  * @cfg {Number} aria_valuemax aria-value max
13763  * @cfg {String} label label for the progress bar
13764  * @cfg {String} panel (success | info | warning | danger )
13765  * @cfg {String} role role of the progress bar
13766  * @cfg {String} sr_only text
13767  * 
13768  * 
13769  * @constructor
13770  * Create a new ProgressBar
13771  * @param {Object} config The config object
13772  */
13773
13774 Roo.bootstrap.ProgressBar = function(config){
13775     Roo.bootstrap.ProgressBar.superclass.constructor.call(this, config);
13776 };
13777
13778 Roo.extend(Roo.bootstrap.ProgressBar, Roo.bootstrap.Component,  {
13779     
13780     aria_valuenow : 0,
13781     aria_valuemin : 0,
13782     aria_valuemax : 100,
13783     label : false,
13784     panel : false,
13785     role : false,
13786     sr_only: false,
13787     
13788     getAutoCreate : function()
13789     {
13790         
13791         var cfg = {
13792             tag: 'div',
13793             cls: 'progress-bar',
13794             style: 'width:' + Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%'
13795         };
13796         
13797         if(this.sr_only){
13798             cfg.cn = {
13799                 tag: 'span',
13800                 cls: 'sr-only',
13801                 html: this.sr_only
13802             }
13803         }
13804         
13805         if(this.role){
13806             cfg.role = this.role;
13807         }
13808         
13809         if(this.aria_valuenow){
13810             cfg['aria-valuenow'] = this.aria_valuenow;
13811         }
13812         
13813         if(this.aria_valuemin){
13814             cfg['aria-valuemin'] = this.aria_valuemin;
13815         }
13816         
13817         if(this.aria_valuemax){
13818             cfg['aria-valuemax'] = this.aria_valuemax;
13819         }
13820         
13821         if(this.label && !this.sr_only){
13822             cfg.html = this.label;
13823         }
13824         
13825         if(this.panel){
13826             cfg.cls += ' progress-bar-' + this.panel;
13827         }
13828         
13829         return cfg;
13830     },
13831     
13832     update : function(aria_valuenow)
13833     {
13834         this.aria_valuenow = aria_valuenow;
13835         
13836         this.el.setStyle('width', Math.ceil((this.aria_valuenow / this.aria_valuemax) * 100) + '%');
13837     }
13838    
13839 });
13840
13841  
13842
13843  /*
13844  * - LGPL
13845  *
13846  * column
13847  * 
13848  */
13849
13850 /**
13851  * @class Roo.bootstrap.TabGroup
13852  * @extends Roo.bootstrap.Column
13853  * Bootstrap Column class
13854  * @cfg {String} navId the navigation id (for use with navbars) - will be auto generated if it does not exist..
13855  * @cfg {Boolean} carousel true to make the group behave like a carousel
13856  * 
13857  * @constructor
13858  * Create a new TabGroup
13859  * @param {Object} config The config object
13860  */
13861
13862 Roo.bootstrap.TabGroup = function(config){
13863     Roo.bootstrap.TabGroup.superclass.constructor.call(this, config);
13864     if (!this.navId) {
13865         this.navId = Roo.id();
13866     }
13867     this.tabs = [];
13868     Roo.bootstrap.TabGroup.register(this);
13869     
13870 };
13871
13872 Roo.extend(Roo.bootstrap.TabGroup, Roo.bootstrap.Column,  {
13873     
13874     carousel : false,
13875     transition : false,
13876      
13877     getAutoCreate : function()
13878     {
13879         var cfg = Roo.apply({}, Roo.bootstrap.TabGroup.superclass.getAutoCreate.call(this));
13880         
13881         cfg.cls += ' tab-content';
13882         
13883         if (this.carousel) {
13884             cfg.cls += ' carousel slide';
13885             cfg.cn = [{
13886                cls : 'carousel-inner'
13887             }]
13888         }
13889         
13890         
13891         return cfg;
13892     },
13893     getChildContainer : function()
13894     {
13895         return this.carousel ? this.el.select('.carousel-inner', true).first() : this.el;
13896     },
13897     
13898     /**
13899     * register a Navigation item
13900     * @param {Roo.bootstrap.NavItem} the navitem to add
13901     */
13902     register : function(item)
13903     {
13904         this.tabs.push( item);
13905         item.navId = this.navId; // not really needed..
13906     
13907     },
13908     
13909     getActivePanel : function()
13910     {
13911         var r = false;
13912         Roo.each(this.tabs, function(t) {
13913             if (t.active) {
13914                 r = t;
13915                 return false;
13916             }
13917             return null;
13918         });
13919         return r;
13920         
13921     },
13922     getPanelByName : function(n)
13923     {
13924         var r = false;
13925         Roo.each(this.tabs, function(t) {
13926             if (t.tabId == n) {
13927                 r = t;
13928                 return false;
13929             }
13930             return null;
13931         });
13932         return r;
13933     },
13934     indexOfPanel : function(p)
13935     {
13936         var r = false;
13937         Roo.each(this.tabs, function(t,i) {
13938             if (t.tabId == p.tabId) {
13939                 r = i;
13940                 return false;
13941             }
13942             return null;
13943         });
13944         return r;
13945     },
13946     /**
13947      * show a specific panel
13948      * @param {Roo.bootstrap.TabPanel|number|string} panel to change to (use the tabId to specify a specific one)
13949      * @return {boolean} false if panel was not shown (invalid entry or beforedeactivate fails.)
13950      */
13951     showPanel : function (pan)
13952     {
13953         
13954         if (typeof(pan) == 'number') {
13955             pan = this.tabs[pan];
13956         }
13957         if (typeof(pan) == 'string') {
13958             pan = this.getPanelByName(pan);
13959         }
13960         if (pan.tabId == this.getActivePanel().tabId) {
13961             return true;
13962         }
13963         var cur = this.getActivePanel();
13964         
13965         if (false === cur.fireEvent('beforedeactivate')) {
13966             return false;
13967         }
13968         
13969         if (this.carousel) {
13970             this.transition = true;
13971             var dir = this.indexOfPanel(pan) > this.indexOfPanel(cur)  ? 'next' : 'prev';
13972             var lr = dir == 'next' ? 'left' : 'right';
13973             pan.el.addClass(dir); // or prev
13974             pan.el.dom.offsetWidth; // find the offset with - causing a reflow?
13975             cur.el.addClass(lr); // or right
13976             pan.el.addClass(lr);
13977             
13978             var _this = this;
13979             cur.el.on('transitionend', function() {
13980                 Roo.log("trans end?");
13981                 
13982                 pan.el.removeClass([lr,dir]);
13983                 pan.setActive(true);
13984                 
13985                 cur.el.removeClass([lr]);
13986                 cur.setActive(false);
13987                 
13988                 _this.transition = false;
13989                 
13990             }, this, { single:  true } );
13991             return true;
13992         }
13993         
13994         cur.setActive(false);
13995         pan.setActive(true);
13996         return true;
13997         
13998     },
13999     showPanelNext : function()
14000     {
14001         var i = this.indexOfPanel(this.getActivePanel());
14002         if (i > this.tabs.length) {
14003             return;
14004         }
14005         this.showPanel(this.tabs[i+1]);
14006     },
14007     showPanelPrev : function()
14008     {
14009         var i = this.indexOfPanel(this.getActivePanel());
14010         if (i  < 1) {
14011             return;
14012         }
14013         this.showPanel(this.tabs[i-1]);
14014     }
14015     
14016     
14017   
14018 });
14019
14020  
14021
14022  
14023  
14024 Roo.apply(Roo.bootstrap.TabGroup, {
14025     
14026     groups: {},
14027      /**
14028     * register a Navigation Group
14029     * @param {Roo.bootstrap.NavGroup} the navgroup to add
14030     */
14031     register : function(navgrp)
14032     {
14033         this.groups[navgrp.navId] = navgrp;
14034         
14035     },
14036     /**
14037     * fetch a Navigation Group based on the navigation ID
14038     * if one does not exist , it will get created.
14039     * @param {string} the navgroup to add
14040     * @returns {Roo.bootstrap.NavGroup} the navgroup 
14041     */
14042     get: function(navId) {
14043         if (typeof(this.groups[navId]) == 'undefined') {
14044             this.register(new Roo.bootstrap.TabGroup({ navId : navId }));
14045         }
14046         return this.groups[navId] ;
14047     }
14048     
14049     
14050     
14051 });
14052
14053  /*
14054  * - LGPL
14055  *
14056  * TabPanel
14057  * 
14058  */
14059
14060 /**
14061  * @class Roo.bootstrap.TabPanel
14062  * @extends Roo.bootstrap.Component
14063  * Bootstrap TabPanel class
14064  * @cfg {Boolean} active panel active
14065  * @cfg {String} html panel content
14066  * @cfg {String} tabId  unique tab ID (will be autogenerated if not set. - used to match TabItem to Panel)
14067  * @cfg {String} navId The Roo.bootstrap.NavGroup which triggers show hide ()
14068  * 
14069  * 
14070  * @constructor
14071  * Create a new TabPanel
14072  * @param {Object} config The config object
14073  */
14074
14075 Roo.bootstrap.TabPanel = function(config){
14076     Roo.bootstrap.TabPanel.superclass.constructor.call(this, config);
14077     this.addEvents({
14078         /**
14079              * @event changed
14080              * Fires when the active status changes
14081              * @param {Roo.bootstrap.TabPanel} this
14082              * @param {Boolean} state the new state
14083             
14084          */
14085         'changed': true,
14086         /**
14087              * @event beforedeactivate
14088              * Fires before a tab is de-activated - can be used to do validation on a form.
14089              * @param {Roo.bootstrap.TabPanel} this
14090              * @return {Boolean} false if there is an error
14091             
14092          */
14093         'beforedeactivate': true
14094      });
14095     
14096     this.tabId = this.tabId || Roo.id();
14097   
14098 };
14099
14100 Roo.extend(Roo.bootstrap.TabPanel, Roo.bootstrap.Component,  {
14101     
14102     active: false,
14103     html: false,
14104     tabId: false,
14105     navId : false,
14106     
14107     getAutoCreate : function(){
14108         var cfg = {
14109             tag: 'div',
14110             // item is needed for carousel - not sure if it has any effect otherwise
14111             cls: 'tab-pane item',
14112             html: this.html || ''
14113         };
14114         
14115         if(this.active){
14116             cfg.cls += ' active';
14117         }
14118         
14119         if(this.tabId){
14120             cfg.tabId = this.tabId;
14121         }
14122         
14123         
14124         return cfg;
14125     },
14126     
14127     initEvents:  function()
14128     {
14129         Roo.log('-------- init events on tab panel ---------');
14130         
14131         var p = this.parent();
14132         this.navId = this.navId || p.navId;
14133         
14134         if (typeof(this.navId) != 'undefined') {
14135             // not really needed.. but just in case.. parent should be a NavGroup.
14136             var tg = Roo.bootstrap.TabGroup.get(this.navId);
14137             Roo.log(['register', tg, this]);
14138             tg.register(this);
14139         }
14140     },
14141     
14142     
14143     onRender : function(ct, position)
14144     {
14145        // Roo.log("Call onRender: " + this.xtype);
14146         
14147         Roo.bootstrap.TabPanel.superclass.onRender.call(this, ct, position);
14148         
14149         
14150         
14151         
14152         
14153     },
14154     
14155     setActive: function(state)
14156     {
14157         Roo.log("panel - set active " + this.tabId + "=" + state);
14158         
14159         this.active = state;
14160         if (!state) {
14161             this.el.removeClass('active');
14162             
14163         } else  if (!this.el.hasClass('active')) {
14164             this.el.addClass('active');
14165         }
14166         this.fireEvent('changed', this, state);
14167     }
14168     
14169     
14170 });
14171  
14172
14173  
14174
14175  /*
14176  * - LGPL
14177  *
14178  * DateField
14179  * 
14180  */
14181
14182 /**
14183  * @class Roo.bootstrap.DateField
14184  * @extends Roo.bootstrap.Input
14185  * Bootstrap DateField class
14186  * @cfg {Number} weekStart default 0
14187  * @cfg {Number} weekStart default 0
14188  * @cfg {Number} viewMode default empty, (months|years)
14189  * @cfg {Number} minViewMode default empty, (months|years)
14190  * @cfg {Number} startDate default -Infinity
14191  * @cfg {Number} endDate default Infinity
14192  * @cfg {Boolean} todayHighlight default false
14193  * @cfg {Boolean} todayBtn default false
14194  * @cfg {Boolean} calendarWeeks default false
14195  * @cfg {Object} daysOfWeekDisabled default empty
14196  * 
14197  * @cfg {Boolean} keyboardNavigation default true
14198  * @cfg {String} language default en
14199  * 
14200  * @constructor
14201  * Create a new DateField
14202  * @param {Object} config The config object
14203  */
14204
14205 Roo.bootstrap.DateField = function(config){
14206     Roo.bootstrap.DateField.superclass.constructor.call(this, config);
14207      this.addEvents({
14208             /**
14209              * @event show
14210              * Fires when this field show.
14211              * @param {Roo.bootstrap.DateField} this
14212              * @param {Mixed} date The date value
14213              */
14214             show : true,
14215             /**
14216              * @event show
14217              * Fires when this field hide.
14218              * @param {Roo.bootstrap.DateField} this
14219              * @param {Mixed} date The date value
14220              */
14221             hide : true,
14222             /**
14223              * @event select
14224              * Fires when select a date.
14225              * @param {Roo.bootstrap.DateField} this
14226              * @param {Mixed} date The date value
14227              */
14228             select : true
14229         });
14230 };
14231
14232 Roo.extend(Roo.bootstrap.DateField, Roo.bootstrap.Input,  {
14233     
14234     /**
14235      * @cfg {String} format
14236      * The default date format string which can be overriden for localization support.  The format must be
14237      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
14238      */
14239     format : "m/d/y",
14240     /**
14241      * @cfg {String} altFormats
14242      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
14243      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
14244      */
14245     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
14246     
14247     weekStart : 0,
14248     
14249     viewMode : '',
14250     
14251     minViewMode : '',
14252     
14253     todayHighlight : false,
14254     
14255     todayBtn: false,
14256     
14257     language: 'en',
14258     
14259     keyboardNavigation: true,
14260     
14261     calendarWeeks: false,
14262     
14263     startDate: -Infinity,
14264     
14265     endDate: Infinity,
14266     
14267     daysOfWeekDisabled: [],
14268     
14269     _events: [],
14270     
14271     UTCDate: function()
14272     {
14273         return new Date(Date.UTC.apply(Date, arguments));
14274     },
14275     
14276     UTCToday: function()
14277     {
14278         var today = new Date();
14279         return this.UTCDate(today.getUTCFullYear(), today.getUTCMonth(), today.getUTCDate());
14280     },
14281     
14282     getDate: function() {
14283             var d = this.getUTCDate();
14284             return new Date(d.getTime() + (d.getTimezoneOffset()*60000));
14285     },
14286     
14287     getUTCDate: function() {
14288             return this.date;
14289     },
14290     
14291     setDate: function(d) {
14292             this.setUTCDate(new Date(d.getTime() - (d.getTimezoneOffset()*60000)));
14293     },
14294     
14295     setUTCDate: function(d) {
14296             this.date = d;
14297             this.setValue(this.formatDate(this.date));
14298     },
14299         
14300     onRender: function(ct, position)
14301     {
14302         
14303         Roo.bootstrap.DateField.superclass.onRender.call(this, ct, position);
14304         
14305         this.language = this.language || 'en';
14306         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : this.language.split('-')[0];
14307         this.language = this.language in Roo.bootstrap.DateField.dates ? this.language : "en";
14308         
14309         this.isRTL = Roo.bootstrap.DateField.dates[this.language].rtl || false;
14310         this.format = this.format || 'm/d/y';
14311         this.isInline = false;
14312         this.isInput = true;
14313         this.component = this.el.select('.add-on', true).first() || false;
14314         this.component = (this.component && this.component.length === 0) ? false : this.component;
14315         this.hasInput = this.component && this.inputEL().length;
14316         
14317         if (typeof(this.minViewMode === 'string')) {
14318             switch (this.minViewMode) {
14319                 case 'months':
14320                     this.minViewMode = 1;
14321                     break;
14322                 case 'years':
14323                     this.minViewMode = 2;
14324                     break;
14325                 default:
14326                     this.minViewMode = 0;
14327                     break;
14328             }
14329         }
14330         
14331         if (typeof(this.viewMode === 'string')) {
14332             switch (this.viewMode) {
14333                 case 'months':
14334                     this.viewMode = 1;
14335                     break;
14336                 case 'years':
14337                     this.viewMode = 2;
14338                     break;
14339                 default:
14340                     this.viewMode = 0;
14341                     break;
14342             }
14343         }
14344                 
14345         this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.DateField.template);
14346         
14347         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
14348         
14349         this.picker().on('mousedown', this.onMousedown, this);
14350         this.picker().on('click', this.onClick, this);
14351         
14352         this.picker().addClass('datepicker-dropdown');
14353         
14354         this.startViewMode = this.viewMode;
14355         
14356         
14357         Roo.each(this.picker().select('tfoot th.today', true).elements, function(v){
14358             if(!this.calendarWeeks){
14359                 v.remove();
14360                 return;
14361             };
14362             
14363             v.dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today
14364             v.attr('colspan', function(i, val){
14365                 return parseInt(val) + 1;
14366             });
14367         })
14368                         
14369         
14370         this.weekEnd = this.weekStart === 0 ? 6 : this.weekStart - 1;
14371         
14372         this.setStartDate(this.startDate);
14373         this.setEndDate(this.endDate);
14374         
14375         this.setDaysOfWeekDisabled(this.daysOfWeekDisabled);
14376         
14377         this.fillDow();
14378         this.fillMonths();
14379         this.update();
14380         this.showMode();
14381         
14382         if(this.isInline) {
14383             this.show();
14384         }
14385     },
14386     
14387     picker : function()
14388     {
14389         return this.el.select('.datepicker', true).first();
14390     },
14391     
14392     fillDow: function()
14393     {
14394         var dowCnt = this.weekStart;
14395         
14396         var dow = {
14397             tag: 'tr',
14398             cn: [
14399                 
14400             ]
14401         };
14402         
14403         if(this.calendarWeeks){
14404             dow.cn.push({
14405                 tag: 'th',
14406                 cls: 'cw',
14407                 html: '&nbsp;'
14408             })
14409         }
14410         
14411         while (dowCnt < this.weekStart + 7) {
14412             dow.cn.push({
14413                 tag: 'th',
14414                 cls: 'dow',
14415                 html: Roo.bootstrap.DateField.dates[this.language].daysMin[(dowCnt++)%7]
14416             });
14417         }
14418         
14419         this.picker().select('>.datepicker-days thead', true).first().createChild(dow);
14420     },
14421     
14422     fillMonths: function()
14423     {    
14424         var i = 0
14425         var months = this.picker().select('>.datepicker-months td', true).first();
14426         
14427         months.dom.innerHTML = '';
14428         
14429         while (i < 12) {
14430             var month = {
14431                 tag: 'span',
14432                 cls: 'month',
14433                 html: Roo.bootstrap.DateField.dates[this.language].monthsShort[i++]
14434             }
14435             
14436             months.createChild(month);
14437         }
14438         
14439     },
14440     
14441     update: function()
14442     {
14443         
14444         this.date = (typeof(this.date) === 'undefined') ? this.UTCToday() : (typeof(this.date) === 'string') ? this.parseDate(this.date) : this.date;
14445         
14446         if (this.date < this.startDate) {
14447             this.viewDate = new Date(this.startDate);
14448         } else if (this.date > this.endDate) {
14449             this.viewDate = new Date(this.endDate);
14450         } else {
14451             this.viewDate = new Date(this.date);
14452         }
14453         
14454         this.fill();
14455     },
14456     
14457     fill: function() 
14458     {
14459         var d = new Date(this.viewDate),
14460                 year = d.getUTCFullYear(),
14461                 month = d.getUTCMonth(),
14462                 startYear = this.startDate !== -Infinity ? this.startDate.getUTCFullYear() : -Infinity,
14463                 startMonth = this.startDate !== -Infinity ? this.startDate.getUTCMonth() : -Infinity,
14464                 endYear = this.endDate !== Infinity ? this.endDate.getUTCFullYear() : Infinity,
14465                 endMonth = this.endDate !== Infinity ? this.endDate.getUTCMonth() : Infinity,
14466                 currentDate = this.date && this.date.valueOf(),
14467                 today = this.UTCToday();
14468         
14469         this.picker().select('>.datepicker-days thead th.switch', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].months[month]+' '+year;
14470         
14471 //        this.picker().select('>tfoot th.today', true).first().dom.innerHTML = Roo.bootstrap.DateField.dates[this.language].today;
14472         
14473 //        this.picker.select('>tfoot th.today').
14474 //                                              .text(dates[this.language].today)
14475 //                                              .toggle(this.todayBtn !== false);
14476     
14477         this.updateNavArrows();
14478         this.fillMonths();
14479                                                 
14480         var prevMonth = this.UTCDate(year, month-1, 28,0,0,0,0),
14481         
14482         day = prevMonth.getDaysInMonth(prevMonth.getUTCFullYear(), prevMonth.getUTCMonth());
14483          
14484         prevMonth.setUTCDate(day);
14485         
14486         prevMonth.setUTCDate(day - (prevMonth.getUTCDay() - this.weekStart + 7)%7);
14487         
14488         var nextMonth = new Date(prevMonth);
14489         
14490         nextMonth.setUTCDate(nextMonth.getUTCDate() + 42);
14491         
14492         nextMonth = nextMonth.valueOf();
14493         
14494         var fillMonths = false;
14495         
14496         this.picker().select('>.datepicker-days tbody',true).first().dom.innerHTML = '';
14497         
14498         while(prevMonth.valueOf() < nextMonth) {
14499             var clsName = '';
14500             
14501             if (prevMonth.getUTCDay() === this.weekStart) {
14502                 if(fillMonths){
14503                     this.picker().select('>.datepicker-days tbody',true).first().createChild(fillMonths);
14504                 }
14505                     
14506                 fillMonths = {
14507                     tag: 'tr',
14508                     cn: []
14509                 };
14510                 
14511                 if(this.calendarWeeks){
14512                     // ISO 8601: First week contains first thursday.
14513                     // ISO also states week starts on Monday, but we can be more abstract here.
14514                     var
14515                     // Start of current week: based on weekstart/current date
14516                     ws = new Date(+prevMonth + (this.weekStart - prevMonth.getUTCDay() - 7) % 7 * 864e5),
14517                     // Thursday of this week
14518                     th = new Date(+ws + (7 + 4 - ws.getUTCDay()) % 7 * 864e5),
14519                     // First Thursday of year, year from thursday
14520                     yth = new Date(+(yth = this.UTCDate(th.getUTCFullYear(), 0, 1)) + (7 + 4 - yth.getUTCDay())%7*864e5),
14521                     // Calendar week: ms between thursdays, div ms per day, div 7 days
14522                     calWeek =  (th - yth) / 864e5 / 7 + 1;
14523                     
14524                     fillMonths.cn.push({
14525                         tag: 'td',
14526                         cls: 'cw',
14527                         html: calWeek
14528                     });
14529                 }
14530             }
14531             
14532             if (prevMonth.getUTCFullYear() < year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() < month)) {
14533                 clsName += ' old';
14534             } else if (prevMonth.getUTCFullYear() > year || (prevMonth.getUTCFullYear() == year && prevMonth.getUTCMonth() > month)) {
14535                 clsName += ' new';
14536             }
14537             if (this.todayHighlight &&
14538                 prevMonth.getUTCFullYear() == today.getFullYear() &&
14539                 prevMonth.getUTCMonth() == today.getMonth() &&
14540                 prevMonth.getUTCDate() == today.getDate()) {
14541                 clsName += ' today';
14542             }
14543             
14544             if (currentDate && prevMonth.valueOf() === currentDate) {
14545                 clsName += ' active';
14546             }
14547             
14548             if (prevMonth.valueOf() < this.startDate || prevMonth.valueOf() > this.endDate ||
14549                     this.daysOfWeekDisabled.indexOf(prevMonth.getUTCDay()) !== -1) {
14550                     clsName += ' disabled';
14551             }
14552             
14553             fillMonths.cn.push({
14554                 tag: 'td',
14555                 cls: 'day ' + clsName,
14556                 html: prevMonth.getDate()
14557             })
14558             
14559             prevMonth.setDate(prevMonth.getDate()+1);
14560         }
14561           
14562         var currentYear = this.date && this.date.getUTCFullYear();
14563         var currentMonth = this.date && this.date.getUTCMonth();
14564         
14565         this.picker().select('>.datepicker-months th.switch',true).first().dom.innerHTML = year;
14566         
14567         Roo.each(this.picker().select('>.datepicker-months tbody span',true).elements, function(v,k){
14568             v.removeClass('active');
14569             
14570             if(currentYear === year && k === currentMonth){
14571                 v.addClass('active');
14572             }
14573             
14574             if (year < startYear || year > endYear || (year == startYear && k < startMonth) || (year == endYear && k > endMonth)) {
14575                 v.addClass('disabled');
14576             }
14577             
14578         });
14579         
14580         
14581         year = parseInt(year/10, 10) * 10;
14582         
14583         this.picker().select('>.datepicker-years th.switch', true).first().dom.innerHTML = year + '-' + (year + 9);
14584         
14585         this.picker().select('>.datepicker-years tbody td',true).first().dom.innerHTML = '';
14586         
14587         year -= 1;
14588         for (var i = -1; i < 11; i++) {
14589             this.picker().select('>.datepicker-years tbody td',true).first().createChild({
14590                 tag: 'span',
14591                 cls: 'year' + (i === -1 || i === 10 ? ' old' : '') + (currentYear === year ? ' active' : '') + (year < startYear || year > endYear ? ' disabled' : ''),
14592                 html: year
14593             })
14594             
14595             year += 1;
14596         }
14597     },
14598     
14599     showMode: function(dir) 
14600     {
14601         if (dir) {
14602             this.viewMode = Math.max(this.minViewMode, Math.min(2, this.viewMode + dir));
14603         }
14604         Roo.each(this.picker().select('>div',true).elements, function(v){
14605             v.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
14606             v.hide();
14607         });
14608         this.picker().select('>.datepicker-'+Roo.bootstrap.DateField.modes[this.viewMode].clsName, true).first().show();
14609     },
14610     
14611     place: function()
14612     {
14613         if(this.isInline) return;
14614         
14615         this.picker().removeClass(['bottom', 'top']);
14616         
14617         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){
14618             /*
14619              * place to the top of element!
14620              *
14621              */
14622             
14623             this.picker().addClass('top');
14624             this.picker().setTop(0 - this.picker().getHeight()).setLeft(this.inputEl().getLeft() - this.el.getLeft());
14625             
14626             return;
14627         }
14628         
14629         this.picker().addClass('bottom');
14630         
14631         this.picker().setTop(this.inputEl().getHeight()).setLeft(this.inputEl().getLeft() - this.el.getLeft());
14632     },
14633     
14634     parseDate : function(value)
14635     {
14636         if(!value || value instanceof Date){
14637             return value;
14638         }
14639         var v = Date.parseDate(value, this.format);
14640         if (!v && this.useIso) {
14641             v = Date.parseDate(value, 'Y-m-d');
14642         }
14643         if(!v && this.altFormats){
14644             if(!this.altFormatsArray){
14645                 this.altFormatsArray = this.altFormats.split("|");
14646             }
14647             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
14648                 v = Date.parseDate(value, this.altFormatsArray[i]);
14649             }
14650         }
14651         return v;
14652     },
14653     
14654     formatDate : function(date, fmt)
14655     {
14656         return (!date || !(date instanceof Date)) ?
14657         date : date.dateFormat(fmt || this.format);
14658     },
14659     
14660     onFocus : function()
14661     {
14662         Roo.bootstrap.DateField.superclass.onFocus.call(this);
14663         this.show();
14664     },
14665     
14666     onBlur : function()
14667     {
14668         Roo.bootstrap.DateField.superclass.onBlur.call(this);
14669         
14670         var d = this.inputEl().getValue();
14671         
14672         if(d && d.length){
14673             this.setValue(d);
14674         }
14675                 
14676         this.hide();
14677     },
14678     
14679     show : function()
14680     {
14681         this.picker().show();
14682         this.update();
14683         this.place();
14684         
14685         this.fireEvent('show', this, this.date);
14686     },
14687     
14688     hide : function()
14689     {
14690         if(this.isInline) return;
14691         this.picker().hide();
14692         this.viewMode = this.startViewMode;
14693         this.showMode();
14694         
14695         this.fireEvent('hide', this, this.date);
14696         
14697     },
14698     
14699     onMousedown: function(e)
14700     {
14701         e.stopPropagation();
14702         e.preventDefault();
14703     },
14704     
14705     keyup: function(e)
14706     {
14707         Roo.bootstrap.DateField.superclass.keyup.call(this);
14708         this.update();
14709     },
14710
14711     setValue: function(v)
14712     {
14713         Roo.bootstrap.DateField.superclass.setValue.call(this, v);
14714         
14715         var d = new Date(v);
14716         
14717         if(isNaN(d.getTime())){
14718             return;
14719         }
14720         
14721         this.date = new Date(d.getTime() - d.getTimezoneOffset()*60000);
14722
14723         this.update();
14724
14725         this.fireEvent('select', this, this.date);
14726         
14727     },
14728     
14729     getValue: function()
14730     {
14731         return this.formatDate(this.date);
14732     },
14733     
14734     fireKey: function(e)
14735     {
14736         if (!this.picker().isVisible()){
14737             if (e.keyCode == 27) // allow escape to hide and re-show picker
14738                 this.show();
14739             return;
14740         }
14741         
14742         var dateChanged = false,
14743         dir, day, month,
14744         newDate, newViewDate;
14745         
14746         switch(e.keyCode){
14747             case 27: // escape
14748                 this.hide();
14749                 e.preventDefault();
14750                 break;
14751             case 37: // left
14752             case 39: // right
14753                 if (!this.keyboardNavigation) break;
14754                 dir = e.keyCode == 37 ? -1 : 1;
14755                 
14756                 if (e.ctrlKey){
14757                     newDate = this.moveYear(this.date, dir);
14758                     newViewDate = this.moveYear(this.viewDate, dir);
14759                 } else if (e.shiftKey){
14760                     newDate = this.moveMonth(this.date, dir);
14761                     newViewDate = this.moveMonth(this.viewDate, dir);
14762                 } else {
14763                     newDate = new Date(this.date);
14764                     newDate.setUTCDate(this.date.getUTCDate() + dir);
14765                     newViewDate = new Date(this.viewDate);
14766                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir);
14767                 }
14768                 if (this.dateWithinRange(newDate)){
14769                     this.date = newDate;
14770                     this.viewDate = newViewDate;
14771                     this.setValue(this.formatDate(this.date));
14772 //                    this.update();
14773                     e.preventDefault();
14774                     dateChanged = true;
14775                 }
14776                 break;
14777             case 38: // up
14778             case 40: // down
14779                 if (!this.keyboardNavigation) break;
14780                 dir = e.keyCode == 38 ? -1 : 1;
14781                 if (e.ctrlKey){
14782                     newDate = this.moveYear(this.date, dir);
14783                     newViewDate = this.moveYear(this.viewDate, dir);
14784                 } else if (e.shiftKey){
14785                     newDate = this.moveMonth(this.date, dir);
14786                     newViewDate = this.moveMonth(this.viewDate, dir);
14787                 } else {
14788                     newDate = new Date(this.date);
14789                     newDate.setUTCDate(this.date.getUTCDate() + dir * 7);
14790                     newViewDate = new Date(this.viewDate);
14791                     newViewDate.setUTCDate(this.viewDate.getUTCDate() + dir * 7);
14792                 }
14793                 if (this.dateWithinRange(newDate)){
14794                     this.date = newDate;
14795                     this.viewDate = newViewDate;
14796                     this.setValue(this.formatDate(this.date));
14797 //                    this.update();
14798                     e.preventDefault();
14799                     dateChanged = true;
14800                 }
14801                 break;
14802             case 13: // enter
14803                 this.setValue(this.formatDate(this.date));
14804                 this.hide();
14805                 e.preventDefault();
14806                 break;
14807             case 9: // tab
14808                 this.setValue(this.formatDate(this.date));
14809                 this.hide();
14810                 break;
14811             case 16: // shift
14812             case 17: // ctrl
14813             case 18: // alt
14814                 break;
14815             default :
14816                 this.hide();
14817                 
14818         }
14819     },
14820     
14821     
14822     onClick: function(e) 
14823     {
14824         e.stopPropagation();
14825         e.preventDefault();
14826         
14827         var target = e.getTarget();
14828         
14829         if(target.nodeName.toLowerCase() === 'i'){
14830             target = Roo.get(target).dom.parentNode;
14831         }
14832         
14833         var nodeName = target.nodeName;
14834         var className = target.className;
14835         var html = target.innerHTML;
14836         
14837         switch(nodeName.toLowerCase()) {
14838             case 'th':
14839                 switch(className) {
14840                     case 'switch':
14841                         this.showMode(1);
14842                         break;
14843                     case 'prev':
14844                     case 'next':
14845                         var dir = Roo.bootstrap.DateField.modes[this.viewMode].navStep * (className == 'prev' ? -1 : 1);
14846                         switch(this.viewMode){
14847                                 case 0:
14848                                         this.viewDate = this.moveMonth(this.viewDate, dir);
14849                                         break;
14850                                 case 1:
14851                                 case 2:
14852                                         this.viewDate = this.moveYear(this.viewDate, dir);
14853                                         break;
14854                         }
14855                         this.fill();
14856                         break;
14857                     case 'today':
14858                         var date = new Date();
14859                         this.date = this.UTCDate(date.getFullYear(), date.getMonth(), date.getDate(), 0, 0, 0);
14860 //                        this.fill()
14861                         this.setValue(this.formatDate(this.date));
14862                         
14863                         this.hide();
14864                         break;
14865                 }
14866                 break;
14867             case 'span':
14868                 if (className.indexOf('disabled') === -1) {
14869                     this.viewDate.setUTCDate(1);
14870                     if (className.indexOf('month') !== -1) {
14871                         this.viewDate.setUTCMonth(Roo.bootstrap.DateField.dates[this.language].monthsShort.indexOf(html));
14872                     } else {
14873                         var year = parseInt(html, 10) || 0;
14874                         this.viewDate.setUTCFullYear(year);
14875                         
14876                     }
14877                     this.showMode(-1);
14878                     this.fill();
14879                 }
14880                 break;
14881                 
14882             case 'td':
14883                 if (className.indexOf('day') !== -1 && className.indexOf('disabled') === -1){
14884                     var day = parseInt(html, 10) || 1;
14885                     var year = this.viewDate.getUTCFullYear(),
14886                         month = this.viewDate.getUTCMonth();
14887
14888                     if (className.indexOf('old') !== -1) {
14889                         if(month === 0 ){
14890                             month = 11;
14891                             year -= 1;
14892                         }else{
14893                             month -= 1;
14894                         }
14895                     } else if (className.indexOf('new') !== -1) {
14896                         if (month == 11) {
14897                             month = 0;
14898                             year += 1;
14899                         } else {
14900                             month += 1;
14901                         }
14902                     }
14903                     this.date = this.UTCDate(year, month, day,0,0,0,0);
14904                     this.viewDate = this.UTCDate(year, month, Math.min(28, day),0,0,0,0);
14905 //                    this.fill();
14906                     this.setValue(this.formatDate(this.date));
14907                     this.hide();
14908                 }
14909                 break;
14910         }
14911     },
14912     
14913     setStartDate: function(startDate)
14914     {
14915         this.startDate = startDate || -Infinity;
14916         if (this.startDate !== -Infinity) {
14917             this.startDate = this.parseDate(this.startDate);
14918         }
14919         this.update();
14920         this.updateNavArrows();
14921     },
14922
14923     setEndDate: function(endDate)
14924     {
14925         this.endDate = endDate || Infinity;
14926         if (this.endDate !== Infinity) {
14927             this.endDate = this.parseDate(this.endDate);
14928         }
14929         this.update();
14930         this.updateNavArrows();
14931     },
14932     
14933     setDaysOfWeekDisabled: function(daysOfWeekDisabled)
14934     {
14935         this.daysOfWeekDisabled = daysOfWeekDisabled || [];
14936         if (typeof(this.daysOfWeekDisabled) !== 'object') {
14937             this.daysOfWeekDisabled = this.daysOfWeekDisabled.split(/,\s*/);
14938         }
14939         this.daysOfWeekDisabled = this.daysOfWeekDisabled.map(function (d) {
14940             return parseInt(d, 10);
14941         });
14942         this.update();
14943         this.updateNavArrows();
14944     },
14945     
14946     updateNavArrows: function() 
14947     {
14948         var d = new Date(this.viewDate),
14949         year = d.getUTCFullYear(),
14950         month = d.getUTCMonth();
14951         
14952         Roo.each(this.picker().select('.prev', true).elements, function(v){
14953             v.show();
14954             switch (this.viewMode) {
14955                 case 0:
14956
14957                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear() && month <= this.startDate.getUTCMonth()) {
14958                         v.hide();
14959                     }
14960                     break;
14961                 case 1:
14962                 case 2:
14963                     if (this.startDate !== -Infinity && year <= this.startDate.getUTCFullYear()) {
14964                         v.hide();
14965                     }
14966                     break;
14967             }
14968         });
14969         
14970         Roo.each(this.picker().select('.next', true).elements, function(v){
14971             v.show();
14972             switch (this.viewMode) {
14973                 case 0:
14974
14975                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear() && month >= this.endDate.getUTCMonth()) {
14976                         v.hide();
14977                     }
14978                     break;
14979                 case 1:
14980                 case 2:
14981                     if (this.endDate !== Infinity && year >= this.endDate.getUTCFullYear()) {
14982                         v.hide();
14983                     }
14984                     break;
14985             }
14986         })
14987     },
14988     
14989     moveMonth: function(date, dir)
14990     {
14991         if (!dir) return date;
14992         var new_date = new Date(date.valueOf()),
14993         day = new_date.getUTCDate(),
14994         month = new_date.getUTCMonth(),
14995         mag = Math.abs(dir),
14996         new_month, test;
14997         dir = dir > 0 ? 1 : -1;
14998         if (mag == 1){
14999             test = dir == -1
15000             // If going back one month, make sure month is not current month
15001             // (eg, Mar 31 -> Feb 31 == Feb 28, not Mar 02)
15002             ? function(){
15003                 return new_date.getUTCMonth() == month;
15004             }
15005             // If going forward one month, make sure month is as expected
15006             // (eg, Jan 31 -> Feb 31 == Feb 28, not Mar 02)
15007             : function(){
15008                 return new_date.getUTCMonth() != new_month;
15009             };
15010             new_month = month + dir;
15011             new_date.setUTCMonth(new_month);
15012             // Dec -> Jan (12) or Jan -> Dec (-1) -- limit expected date to 0-11
15013             if (new_month < 0 || new_month > 11)
15014                 new_month = (new_month + 12) % 12;
15015         } else {
15016             // For magnitudes >1, move one month at a time...
15017             for (var i=0; i<mag; i++)
15018                 // ...which might decrease the day (eg, Jan 31 to Feb 28, etc)...
15019                 new_date = this.moveMonth(new_date, dir);
15020             // ...then reset the day, keeping it in the new month
15021             new_month = new_date.getUTCMonth();
15022             new_date.setUTCDate(day);
15023             test = function(){
15024                 return new_month != new_date.getUTCMonth();
15025             };
15026         }
15027         // Common date-resetting loop -- if date is beyond end of month, make it
15028         // end of month
15029         while (test()){
15030             new_date.setUTCDate(--day);
15031             new_date.setUTCMonth(new_month);
15032         }
15033         return new_date;
15034     },
15035
15036     moveYear: function(date, dir)
15037     {
15038         return this.moveMonth(date, dir*12);
15039     },
15040
15041     dateWithinRange: function(date)
15042     {
15043         return date >= this.startDate && date <= this.endDate;
15044     },
15045
15046     
15047     remove: function() 
15048     {
15049         this.picker().remove();
15050     }
15051    
15052 });
15053
15054 Roo.apply(Roo.bootstrap.DateField,  {
15055     
15056     head : {
15057         tag: 'thead',
15058         cn: [
15059         {
15060             tag: 'tr',
15061             cn: [
15062             {
15063                 tag: 'th',
15064                 cls: 'prev',
15065                 html: '<i class="fa fa-arrow-left"/>'
15066             },
15067             {
15068                 tag: 'th',
15069                 cls: 'switch',
15070                 colspan: '5'
15071             },
15072             {
15073                 tag: 'th',
15074                 cls: 'next',
15075                 html: '<i class="fa fa-arrow-right"/>'
15076             }
15077
15078             ]
15079         }
15080         ]
15081     },
15082     
15083     content : {
15084         tag: 'tbody',
15085         cn: [
15086         {
15087             tag: 'tr',
15088             cn: [
15089             {
15090                 tag: 'td',
15091                 colspan: '7'
15092             }
15093             ]
15094         }
15095         ]
15096     },
15097     
15098     footer : {
15099         tag: 'tfoot',
15100         cn: [
15101         {
15102             tag: 'tr',
15103             cn: [
15104             {
15105                 tag: 'th',
15106                 colspan: '7',
15107                 cls: 'today'
15108             }
15109                     
15110             ]
15111         }
15112         ]
15113     },
15114     
15115     dates:{
15116         en: {
15117             days: ["Sunday", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday"],
15118             daysShort: ["Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun"],
15119             daysMin: ["Su", "Mo", "Tu", "We", "Th", "Fr", "Sa", "Su"],
15120             months: ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"],
15121             monthsShort: ["Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec"],
15122             today: "Today"
15123         }
15124     },
15125     
15126     modes: [
15127     {
15128         clsName: 'days',
15129         navFnc: 'Month',
15130         navStep: 1
15131     },
15132     {
15133         clsName: 'months',
15134         navFnc: 'FullYear',
15135         navStep: 1
15136     },
15137     {
15138         clsName: 'years',
15139         navFnc: 'FullYear',
15140         navStep: 10
15141     }]
15142 });
15143
15144 Roo.apply(Roo.bootstrap.DateField,  {
15145   
15146     template : {
15147         tag: 'div',
15148         cls: 'datepicker dropdown-menu',
15149         cn: [
15150         {
15151             tag: 'div',
15152             cls: 'datepicker-days',
15153             cn: [
15154             {
15155                 tag: 'table',
15156                 cls: 'table-condensed',
15157                 cn:[
15158                 Roo.bootstrap.DateField.head,
15159                 {
15160                     tag: 'tbody'
15161                 },
15162                 Roo.bootstrap.DateField.footer
15163                 ]
15164             }
15165             ]
15166         },
15167         {
15168             tag: 'div',
15169             cls: 'datepicker-months',
15170             cn: [
15171             {
15172                 tag: 'table',
15173                 cls: 'table-condensed',
15174                 cn:[
15175                 Roo.bootstrap.DateField.head,
15176                 Roo.bootstrap.DateField.content,
15177                 Roo.bootstrap.DateField.footer
15178                 ]
15179             }
15180             ]
15181         },
15182         {
15183             tag: 'div',
15184             cls: 'datepicker-years',
15185             cn: [
15186             {
15187                 tag: 'table',
15188                 cls: 'table-condensed',
15189                 cn:[
15190                 Roo.bootstrap.DateField.head,
15191                 Roo.bootstrap.DateField.content,
15192                 Roo.bootstrap.DateField.footer
15193                 ]
15194             }
15195             ]
15196         }
15197         ]
15198     }
15199 });
15200
15201  
15202
15203  /*
15204  * - LGPL
15205  *
15206  * TimeField
15207  * 
15208  */
15209
15210 /**
15211  * @class Roo.bootstrap.TimeField
15212  * @extends Roo.bootstrap.Input
15213  * Bootstrap DateField class
15214  * 
15215  * 
15216  * @constructor
15217  * Create a new TimeField
15218  * @param {Object} config The config object
15219  */
15220
15221 Roo.bootstrap.TimeField = function(config){
15222     Roo.bootstrap.TimeField.superclass.constructor.call(this, config);
15223     this.addEvents({
15224             /**
15225              * @event show
15226              * Fires when this field show.
15227              * @param {Roo.bootstrap.DateField} this
15228              * @param {Mixed} date The date value
15229              */
15230             show : true,
15231             /**
15232              * @event show
15233              * Fires when this field hide.
15234              * @param {Roo.bootstrap.DateField} this
15235              * @param {Mixed} date The date value
15236              */
15237             hide : true,
15238             /**
15239              * @event select
15240              * Fires when select a date.
15241              * @param {Roo.bootstrap.DateField} this
15242              * @param {Mixed} date The date value
15243              */
15244             select : true
15245         });
15246 };
15247
15248 Roo.extend(Roo.bootstrap.TimeField, Roo.bootstrap.Input,  {
15249     
15250     /**
15251      * @cfg {String} format
15252      * The default time format string which can be overriden for localization support.  The format must be
15253      * valid according to {@link Date#parseDate} (defaults to 'H:i').
15254      */
15255     format : "H:i",
15256        
15257     onRender: function(ct, position)
15258     {
15259         
15260         Roo.bootstrap.TimeField.superclass.onRender.call(this, ct, position);
15261                 
15262         this.el.select('>.input-group', true).first().createChild(Roo.bootstrap.TimeField.template);
15263         
15264         this.picker().setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block';
15265         
15266         this.pop = this.picker().select('>.datepicker-time',true).first();
15267         this.pop.setVisibilityMode(Roo.Element.DISPLAY).originalDisplay = 'block' 
15268         
15269         this.picker().on('mousedown', this.onMousedown, this);
15270         this.picker().on('click', this.onClick, this);
15271         
15272         this.picker().addClass('datepicker-dropdown');
15273     
15274         this.fillTime();
15275         this.update();
15276             
15277         this.pop.select('span.hours-up', true).first().on('click', this.onIncrementHours, this);
15278         this.pop.select('span.hours-down', true).first().on('click', this.onDecrementHours, this);
15279         this.pop.select('span.minutes-up', true).first().on('click', this.onIncrementMinutes, this);
15280         this.pop.select('span.minutes-down', true).first().on('click', this.onDecrementMinutes, this);
15281         this.pop.select('button.period', true).first().on('click', this.onTogglePeriod, this);
15282         this.pop.select('button.ok', true).first().on('click', this.setTime, this);
15283
15284     },
15285     
15286     fireKey: function(e){
15287         if (!this.picker().isVisible()){
15288             if (e.keyCode == 27) // allow escape to hide and re-show picker
15289                 this.show();
15290             return;
15291         }
15292
15293         e.preventDefault();
15294         
15295         switch(e.keyCode){
15296             case 27: // escape
15297                 this.hide();
15298                 break;
15299             case 37: // left
15300             case 39: // right
15301                 this.onTogglePeriod();
15302                 break;
15303             case 38: // up
15304                 this.onIncrementMinutes();
15305                 break;
15306             case 40: // down
15307                 this.onDecrementMinutes();
15308                 break;
15309             case 13: // enter
15310             case 9: // tab
15311                 this.setTime();
15312                 break;
15313         }
15314     },
15315     
15316     onClick: function(e) {
15317         e.stopPropagation();
15318         e.preventDefault();
15319     },
15320     
15321     picker : function()
15322     {
15323         return this.el.select('.datepicker', true).first();
15324     },
15325     
15326     fillTime: function()
15327     {    
15328         var time = this.pop.select('tbody', true).first();
15329         
15330         time.dom.innerHTML = '';
15331         
15332         time.createChild({
15333             tag: 'tr',
15334             cn: [
15335                 {
15336                     tag: 'td',
15337                     cn: [
15338                         {
15339                             tag: 'a',
15340                             href: '#',
15341                             cls: 'btn',
15342                             cn: [
15343                                 {
15344                                     tag: 'span',
15345                                     cls: 'hours-up glyphicon glyphicon-chevron-up'
15346                                 }
15347                             ]
15348                         } 
15349                     ]
15350                 },
15351                 {
15352                     tag: 'td',
15353                     cls: 'separator'
15354                 },
15355                 {
15356                     tag: 'td',
15357                     cn: [
15358                         {
15359                             tag: 'a',
15360                             href: '#',
15361                             cls: 'btn',
15362                             cn: [
15363                                 {
15364                                     tag: 'span',
15365                                     cls: 'minutes-up glyphicon glyphicon-chevron-up'
15366                                 }
15367                             ]
15368                         }
15369                     ]
15370                 },
15371                 {
15372                     tag: 'td',
15373                     cls: 'separator'
15374                 }
15375             ]
15376         });
15377         
15378         time.createChild({
15379             tag: 'tr',
15380             cn: [
15381                 {
15382                     tag: 'td',
15383                     cn: [
15384                         {
15385                             tag: 'span',
15386                             cls: 'timepicker-hour',
15387                             html: '00'
15388                         }  
15389                     ]
15390                 },
15391                 {
15392                     tag: 'td',
15393                     cls: 'separator',
15394                     html: ':'
15395                 },
15396                 {
15397                     tag: 'td',
15398                     cn: [
15399                         {
15400                             tag: 'span',
15401                             cls: 'timepicker-minute',
15402                             html: '00'
15403                         }  
15404                     ]
15405                 },
15406                 {
15407                     tag: 'td',
15408                     cls: 'separator'
15409                 },
15410                 {
15411                     tag: 'td',
15412                     cn: [
15413                         {
15414                             tag: 'button',
15415                             type: 'button',
15416                             cls: 'btn btn-primary period',
15417                             html: 'AM'
15418                             
15419                         }
15420                     ]
15421                 }
15422             ]
15423         });
15424         
15425         time.createChild({
15426             tag: 'tr',
15427             cn: [
15428                 {
15429                     tag: 'td',
15430                     cn: [
15431                         {
15432                             tag: 'a',
15433                             href: '#',
15434                             cls: 'btn',
15435                             cn: [
15436                                 {
15437                                     tag: 'span',
15438                                     cls: 'hours-down glyphicon glyphicon-chevron-down'
15439                                 }
15440                             ]
15441                         }
15442                     ]
15443                 },
15444                 {
15445                     tag: 'td',
15446                     cls: 'separator'
15447                 },
15448                 {
15449                     tag: 'td',
15450                     cn: [
15451                         {
15452                             tag: 'a',
15453                             href: '#',
15454                             cls: 'btn',
15455                             cn: [
15456                                 {
15457                                     tag: 'span',
15458                                     cls: 'minutes-down glyphicon glyphicon-chevron-down'
15459                                 }
15460                             ]
15461                         }
15462                     ]
15463                 },
15464                 {
15465                     tag: 'td',
15466                     cls: 'separator'
15467                 }
15468             ]
15469         });
15470         
15471     },
15472     
15473     update: function()
15474     {
15475         
15476         this.time = (typeof(this.time) === 'undefined') ? new Date() : this.time;
15477         
15478         this.fill();
15479     },
15480     
15481     fill: function() 
15482     {
15483         var hours = this.time.getHours();
15484         var minutes = this.time.getMinutes();
15485         var period = 'AM';
15486         
15487         if(hours > 11){
15488             period = 'PM';
15489         }
15490         
15491         if(hours == 0){
15492             hours = 12;
15493         }
15494         
15495         
15496         if(hours > 12){
15497             hours = hours - 12;
15498         }
15499         
15500         if(hours < 10){
15501             hours = '0' + hours;
15502         }
15503         
15504         if(minutes < 10){
15505             minutes = '0' + minutes;
15506         }
15507         
15508         this.pop.select('.timepicker-hour', true).first().dom.innerHTML = hours;
15509         this.pop.select('.timepicker-minute', true).first().dom.innerHTML = minutes;
15510         this.pop.select('button', true).first().dom.innerHTML = period;
15511         
15512     },
15513     
15514     place: function()
15515     {   
15516         this.picker().removeClass(['bottom-left', 'bottom-right', 'top-left', 'top-right']);
15517         
15518         var cls = ['bottom'];
15519         
15520         if((Roo.lib.Dom.getViewHeight() + Roo.get(document.body).getScroll().top) - (this.inputEl().getBottom() + this.picker().getHeight()) < 0){ // top
15521             cls.pop();
15522             cls.push('top');
15523         }
15524         
15525         cls.push('right');
15526         
15527         if((Roo.lib.Dom.getViewWidth() + Roo.get(document.body).getScroll().left) - (this.inputEl().getLeft() + this.picker().getWidth()) < 0){ // left
15528             cls.pop();
15529             cls.push('left');
15530         }
15531         
15532         this.picker().addClass(cls.join('-'));
15533         
15534         var _this = this;
15535         
15536         Roo.each(cls, function(c){
15537             if(c == 'bottom'){
15538                 _this.picker().setTop(_this.inputEl().getHeight());
15539                 return;
15540             }
15541             if(c == 'top'){
15542                 _this.picker().setTop(0 - _this.picker().getHeight());
15543                 return;
15544             }
15545             
15546             if(c == 'left'){
15547                 _this.picker().setLeft(_this.inputEl().getLeft() + _this.inputEl().getWidth() - _this.el.getLeft() - _this.picker().getWidth());
15548                 return;
15549             }
15550             if(c == 'right'){
15551                 _this.picker().setLeft(_this.inputEl().getLeft() - _this.el.getLeft());
15552                 return;
15553             }
15554         });
15555         
15556     },
15557   
15558     onFocus : function()
15559     {
15560         Roo.bootstrap.TimeField.superclass.onFocus.call(this);
15561         this.show();
15562     },
15563     
15564     onBlur : function()
15565     {
15566         Roo.bootstrap.TimeField.superclass.onBlur.call(this);
15567         this.hide();
15568     },
15569     
15570     show : function()
15571     {
15572         this.picker().show();
15573         this.pop.show();
15574         this.update();
15575         this.place();
15576         
15577         this.fireEvent('show', this, this.date);
15578     },
15579     
15580     hide : function()
15581     {
15582         this.picker().hide();
15583         this.pop.hide();
15584         
15585         this.fireEvent('hide', this, this.date);
15586     },
15587     
15588     setTime : function()
15589     {
15590         this.hide();
15591         this.setValue(this.time.format(this.format));
15592         
15593         this.fireEvent('select', this, this.date);
15594         
15595         
15596     },
15597     
15598     onMousedown: function(e){
15599         e.stopPropagation();
15600         e.preventDefault();
15601     },
15602     
15603     onIncrementHours: function()
15604     {
15605         Roo.log('onIncrementHours');
15606         this.time = this.time.add(Date.HOUR, 1);
15607         this.update();
15608         
15609     },
15610     
15611     onDecrementHours: function()
15612     {
15613         Roo.log('onDecrementHours');
15614         this.time = this.time.add(Date.HOUR, -1);
15615         this.update();
15616     },
15617     
15618     onIncrementMinutes: function()
15619     {
15620         Roo.log('onIncrementMinutes');
15621         this.time = this.time.add(Date.MINUTE, 1);
15622         this.update();
15623     },
15624     
15625     onDecrementMinutes: function()
15626     {
15627         Roo.log('onDecrementMinutes');
15628         this.time = this.time.add(Date.MINUTE, -1);
15629         this.update();
15630     },
15631     
15632     onTogglePeriod: function()
15633     {
15634         Roo.log('onTogglePeriod');
15635         this.time = this.time.add(Date.HOUR, 12);
15636         this.update();
15637     }
15638     
15639    
15640 });
15641
15642 Roo.apply(Roo.bootstrap.TimeField,  {
15643     
15644     content : {
15645         tag: 'tbody',
15646         cn: [
15647             {
15648                 tag: 'tr',
15649                 cn: [
15650                 {
15651                     tag: 'td',
15652                     colspan: '7'
15653                 }
15654                 ]
15655             }
15656         ]
15657     },
15658     
15659     footer : {
15660         tag: 'tfoot',
15661         cn: [
15662             {
15663                 tag: 'tr',
15664                 cn: [
15665                 {
15666                     tag: 'th',
15667                     colspan: '7',
15668                     cls: '',
15669                     cn: [
15670                         {
15671                             tag: 'button',
15672                             cls: 'btn btn-info ok',
15673                             html: 'OK'
15674                         }
15675                     ]
15676                 }
15677
15678                 ]
15679             }
15680         ]
15681     }
15682 });
15683
15684 Roo.apply(Roo.bootstrap.TimeField,  {
15685   
15686     template : {
15687         tag: 'div',
15688         cls: 'datepicker dropdown-menu',
15689         cn: [
15690             {
15691                 tag: 'div',
15692                 cls: 'datepicker-time',
15693                 cn: [
15694                 {
15695                     tag: 'table',
15696                     cls: 'table-condensed',
15697                     cn:[
15698                     Roo.bootstrap.TimeField.content,
15699                     Roo.bootstrap.TimeField.footer
15700                     ]
15701                 }
15702                 ]
15703             }
15704         ]
15705     }
15706 });
15707
15708  
15709
15710  /*
15711  * - LGPL
15712  *
15713  * CheckBox
15714  * 
15715  */
15716
15717 /**
15718  * @class Roo.bootstrap.CheckBox
15719  * @extends Roo.bootstrap.Input
15720  * Bootstrap CheckBox class
15721  * 
15722  * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
15723  * @cfg {String} inputValue The value that should go into the generated input element's value when checked.
15724  * @cfg {String} boxLabel The text that appears beside the checkbox
15725  * @cfg {String} weight (primary|warning|info|danger|success) The text that appears beside the checkbox
15726  * @cfg {Boolean} checked initnal the element
15727  * 
15728  * 
15729  * @constructor
15730  * Create a new CheckBox
15731  * @param {Object} config The config object
15732  */
15733
15734 Roo.bootstrap.CheckBox = function(config){
15735     Roo.bootstrap.CheckBox.superclass.constructor.call(this, config);
15736    
15737         this.addEvents({
15738             /**
15739             * @event check
15740             * Fires when the element is checked or unchecked.
15741             * @param {Roo.bootstrap.CheckBox} this This input
15742             * @param {Boolean} checked The new checked value
15743             */
15744            check : true
15745         });
15746 };
15747
15748 Roo.extend(Roo.bootstrap.CheckBox, Roo.bootstrap.Input,  {
15749     
15750     inputType: 'checkbox',
15751     inputValue: 1,
15752     valueOff: 0,
15753     boxLabel: false,
15754     checked: false,
15755     weight : false,
15756     
15757     getAutoCreate : function()
15758     {
15759         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
15760         
15761         var id = Roo.id();
15762         
15763         var cfg = {};
15764         
15765         cfg.cls = 'form-group checkbox' //input-group
15766         
15767         
15768         
15769         
15770         var input =  {
15771             tag: 'input',
15772             id : id,
15773             type : this.inputType,
15774             value : (!this.checked) ? this.valueOff : this.inputValue,
15775             cls : 'roo-checkbox', //'form-box',
15776             placeholder : this.placeholder || ''
15777             
15778         };
15779         
15780         if (this.weight) { // Validity check?
15781             cfg.cls += " checkbox-" + this.weight;
15782         }
15783         
15784         if (this.disabled) {
15785             input.disabled=true;
15786         }
15787         
15788         if(this.checked){
15789             input.checked = this.checked;
15790         }
15791         
15792         if (this.name) {
15793             input.name = this.name;
15794         }
15795         
15796         if (this.size) {
15797             input.cls += ' input-' + this.size;
15798         }
15799         
15800         var settings=this;
15801         ['xs','sm','md','lg'].map(function(size){
15802             if (settings[size]) {
15803                 cfg.cls += ' col-' + size + '-' + settings[size];
15804             }
15805         });
15806         
15807        
15808         
15809         var inputblock = input;
15810         
15811         
15812         
15813         
15814         if (this.before || this.after) {
15815             
15816             inputblock = {
15817                 cls : 'input-group',
15818                 cn :  [] 
15819             };
15820             if (this.before) {
15821                 inputblock.cn.push({
15822                     tag :'span',
15823                     cls : 'input-group-addon',
15824                     html : this.before
15825                 });
15826             }
15827             inputblock.cn.push(input);
15828             if (this.after) {
15829                 inputblock.cn.push({
15830                     tag :'span',
15831                     cls : 'input-group-addon',
15832                     html : this.after
15833                 });
15834             }
15835             
15836         };
15837         
15838         if (align ==='left' && this.fieldLabel.length) {
15839                 Roo.log("left and has label");
15840                 cfg.cn = [
15841                     
15842                     {
15843                         tag: 'label',
15844                         'for' :  id,
15845                         cls : 'control-label col-md-' + this.labelWidth,
15846                         html : this.fieldLabel
15847                         
15848                     },
15849                     {
15850                         cls : "col-md-" + (12 - this.labelWidth), 
15851                         cn: [
15852                             inputblock
15853                         ]
15854                     }
15855                     
15856                 ];
15857         } else if ( this.fieldLabel.length) {
15858                 Roo.log(" label");
15859                 cfg.cn = [
15860                    
15861                     {
15862                         tag: this.boxLabel ? 'span' : 'label',
15863                         'for': id,
15864                         cls: 'control-label box-input-label',
15865                         //cls : 'input-group-addon',
15866                         html : this.fieldLabel
15867                         
15868                     },
15869                     
15870                     inputblock
15871                     
15872                 ];
15873
15874         } else {
15875             
15876                 Roo.log(" no label && no align");
15877                 cfg.cn = [  inputblock ] ;
15878                 
15879                 
15880         };
15881          if(this.boxLabel){
15882             cfg.cn.push( {
15883                 tag: 'label',
15884                 'for': id,
15885                 cls: 'box-label',
15886                 html: this.boxLabel
15887                 
15888             });
15889         }
15890         
15891         
15892        
15893         return cfg;
15894         
15895     },
15896     
15897     /**
15898      * return the real input element.
15899      */
15900     inputEl: function ()
15901     {
15902         return this.el.select('input.roo-checkbox',true).first();
15903     },
15904     
15905     label: function()
15906     {
15907         return this.el.select('label.control-label',true).first();
15908     },
15909     
15910     initEvents : function()
15911     {
15912 //        Roo.bootstrap.CheckBox.superclass.initEvents.call(this);
15913         
15914         this.inputEl().on('click', this.onClick,  this);
15915         
15916     },
15917     
15918     onClick : function()
15919     {   
15920         this.setChecked(!this.checked);
15921     },
15922     
15923     setChecked : function(state,suppressEvent)
15924     {
15925         this.checked = state;
15926         
15927         this.inputEl().dom.checked = state;
15928         
15929         if(suppressEvent !== true){
15930             this.fireEvent('check', this, state);
15931         }
15932         
15933         this.inputEl().dom.value = state ? this.inputValue : this.valueOff;
15934         
15935     },
15936     
15937     setValue : function(v,suppressEvent)
15938     {
15939         this.setChecked(((typeof(v) == 'undefined') ? this.checked : (String(v) === String(this.inputValue))), suppressEvent);
15940     }
15941     
15942 });
15943
15944  
15945 /*
15946  * - LGPL
15947  *
15948  * Radio
15949  * 
15950  */
15951
15952 /**
15953  * @class Roo.bootstrap.Radio
15954  * @extends Roo.bootstrap.CheckBox
15955  * Bootstrap Radio class
15956
15957  * @constructor
15958  * Create a new Radio
15959  * @param {Object} config The config object
15960  */
15961
15962 Roo.bootstrap.Radio = function(config){
15963     Roo.bootstrap.Radio.superclass.constructor.call(this, config);
15964    
15965 };
15966
15967 Roo.extend(Roo.bootstrap.Radio, Roo.bootstrap.CheckBox,  {
15968     
15969     inputType: 'radio',
15970     inputValue: '',
15971     valueOff: '',
15972     
15973     getAutoCreate : function()
15974     {
15975         var align = (!this.labelAlign) ? this.parentLabelAlign() : this.labelAlign;
15976         
15977         var id = Roo.id();
15978         
15979         var cfg = {};
15980         
15981         cfg.cls = 'form-group radio' //input-group
15982         
15983         var input =  {
15984             tag: 'input',
15985             id : id,
15986             type : this.inputType,
15987             value : (!this.checked) ? this.valueOff : this.inputValue,
15988             cls : 'roo-radio',
15989             placeholder : this.placeholder || ''
15990             
15991         };
15992           if (this.weight) { // Validity check?
15993             cfg.cls += " radio-" + this.weight;
15994         }
15995         if (this.disabled) {
15996             input.disabled=true;
15997         }
15998         
15999         if(this.checked){
16000             input.checked = this.checked;
16001         }
16002         
16003         if (this.name) {
16004             input.name = this.name;
16005         }
16006         
16007         if (this.size) {
16008             input.cls += ' input-' + this.size;
16009         }
16010         
16011         var settings=this;
16012         ['xs','sm','md','lg'].map(function(size){
16013             if (settings[size]) {
16014                 cfg.cls += ' col-' + size + '-' + settings[size];
16015             }
16016         });
16017         
16018         var inputblock = input;
16019         
16020         if (this.before || this.after) {
16021             
16022             inputblock = {
16023                 cls : 'input-group',
16024                 cn :  [] 
16025             };
16026             if (this.before) {
16027                 inputblock.cn.push({
16028                     tag :'span',
16029                     cls : 'input-group-addon',
16030                     html : this.before
16031                 });
16032             }
16033             inputblock.cn.push(input);
16034             if (this.after) {
16035                 inputblock.cn.push({
16036                     tag :'span',
16037                     cls : 'input-group-addon',
16038                     html : this.after
16039                 });
16040             }
16041             
16042         };
16043         
16044         if (align ==='left' && this.fieldLabel.length) {
16045                 Roo.log("left and has label");
16046                 cfg.cn = [
16047                     
16048                     {
16049                         tag: 'label',
16050                         'for' :  id,
16051                         cls : 'control-label col-md-' + this.labelWidth,
16052                         html : this.fieldLabel
16053                         
16054                     },
16055                     {
16056                         cls : "col-md-" + (12 - this.labelWidth), 
16057                         cn: [
16058                             inputblock
16059                         ]
16060                     }
16061                     
16062                 ];
16063         } else if ( this.fieldLabel.length) {
16064                 Roo.log(" label");
16065                  cfg.cn = [
16066                    
16067                     {
16068                         tag: 'label',
16069                         'for': id,
16070                         cls: 'control-label box-input-label',
16071                         //cls : 'input-group-addon',
16072                         html : this.fieldLabel
16073                         
16074                     },
16075                     
16076                     inputblock
16077                     
16078                 ];
16079
16080         } else {
16081             
16082                    Roo.log(" no label && no align");
16083                 cfg.cn = [
16084                     
16085                         inputblock
16086                     
16087                 ];
16088                 
16089                 
16090         };
16091         
16092         if(this.boxLabel){
16093             cfg.cn.push({
16094                 tag: 'label',
16095                 'for': id,
16096                 cls: 'box-label',
16097                 html: this.boxLabel
16098             })
16099         }
16100         
16101         return cfg;
16102         
16103     },
16104     inputEl: function ()
16105     {
16106         return this.el.select('input.roo-radio',true).first();
16107     },
16108     onClick : function()
16109     {   
16110         this.setChecked(true);
16111     },
16112     
16113     setChecked : function(state,suppressEvent)
16114     {
16115         if(state){
16116             Roo.each(this.inputEl().up('form').select('input[name='+this.inputEl().dom.name+']', true).elements, function(v){
16117                 v.dom.checked = false;
16118             });
16119         }
16120         
16121         this.checked = state;
16122         this.inputEl().dom.checked = state;
16123         
16124         if(suppressEvent !== true){
16125             this.fireEvent('check', this, state);
16126         }
16127         
16128         this.inputEl().dom.value = state ? this.inputValue : this.valueOff;
16129         
16130     },
16131     
16132     getGroupValue : function()
16133     {
16134         var value = ''
16135         Roo.each(this.inputEl().up('form').select('input[name='+this.inputEl().dom.name+']', true).elements, function(v){
16136             if(v.dom.checked == true){
16137                 value = v.dom.value;
16138             }
16139         });
16140         
16141         return value;
16142     },
16143     
16144     /**
16145      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
16146      * @return {Mixed} value The field value
16147      */
16148     getValue : function(){
16149         return this.getGroupValue();
16150     }
16151     
16152 });
16153
16154  
16155 //<script type="text/javascript">
16156
16157 /*
16158  * Based  Ext JS Library 1.1.1
16159  * Copyright(c) 2006-2007, Ext JS, LLC.
16160  * LGPL
16161  *
16162  */
16163  
16164 /**
16165  * @class Roo.HtmlEditorCore
16166  * @extends Roo.Component
16167  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
16168  *
16169  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
16170  */
16171
16172 Roo.HtmlEditorCore = function(config){
16173     
16174     
16175     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
16176     this.addEvents({
16177         /**
16178          * @event initialize
16179          * Fires when the editor is fully initialized (including the iframe)
16180          * @param {Roo.HtmlEditorCore} this
16181          */
16182         initialize: true,
16183         /**
16184          * @event activate
16185          * Fires when the editor is first receives the focus. Any insertion must wait
16186          * until after this event.
16187          * @param {Roo.HtmlEditorCore} this
16188          */
16189         activate: true,
16190          /**
16191          * @event beforesync
16192          * Fires before the textarea is updated with content from the editor iframe. Return false
16193          * to cancel the sync.
16194          * @param {Roo.HtmlEditorCore} this
16195          * @param {String} html
16196          */
16197         beforesync: true,
16198          /**
16199          * @event beforepush
16200          * Fires before the iframe editor is updated with content from the textarea. Return false
16201          * to cancel the push.
16202          * @param {Roo.HtmlEditorCore} this
16203          * @param {String} html
16204          */
16205         beforepush: true,
16206          /**
16207          * @event sync
16208          * Fires when the textarea is updated with content from the editor iframe.
16209          * @param {Roo.HtmlEditorCore} this
16210          * @param {String} html
16211          */
16212         sync: true,
16213          /**
16214          * @event push
16215          * Fires when the iframe editor is updated with content from the textarea.
16216          * @param {Roo.HtmlEditorCore} this
16217          * @param {String} html
16218          */
16219         push: true,
16220         
16221         /**
16222          * @event editorevent
16223          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
16224          * @param {Roo.HtmlEditorCore} this
16225          */
16226         editorevent: true
16227     });
16228      
16229 };
16230
16231
16232 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
16233
16234
16235      /**
16236      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
16237      */
16238     
16239     owner : false,
16240     
16241      /**
16242      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
16243      *                        Roo.resizable.
16244      */
16245     resizable : false,
16246      /**
16247      * @cfg {Number} height (in pixels)
16248      */   
16249     height: 300,
16250    /**
16251      * @cfg {Number} width (in pixels)
16252      */   
16253     width: 500,
16254     
16255     /**
16256      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
16257      * 
16258      */
16259     stylesheets: false,
16260     
16261     // id of frame..
16262     frameId: false,
16263     
16264     // private properties
16265     validationEvent : false,
16266     deferHeight: true,
16267     initialized : false,
16268     activated : false,
16269     sourceEditMode : false,
16270     onFocus : Roo.emptyFn,
16271     iframePad:3,
16272     hideMode:'offsets',
16273     
16274     clearUp: true,
16275     
16276      
16277     
16278
16279     /**
16280      * Protected method that will not generally be called directly. It
16281      * is called when the editor initializes the iframe with HTML contents. Override this method if you
16282      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
16283      */
16284     getDocMarkup : function(){
16285         // body styles..
16286         var st = '';
16287         Roo.log(this.stylesheets);
16288         
16289         // inherit styels from page...?? 
16290         if (this.stylesheets === false) {
16291             
16292             Roo.get(document.head).select('style').each(function(node) {
16293                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
16294             });
16295             
16296             Roo.get(document.head).select('link').each(function(node) { 
16297                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
16298             });
16299             
16300         } else if (!this.stylesheets.length) {
16301                 // simple..
16302                 st = '<style type="text/css">' +
16303                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
16304                    '</style>';
16305         } else {
16306             Roo.each(this.stylesheets, function(s) {
16307                 st += '<link rel="stylesheet" type="text/css" href="' + s +'" />'
16308             });
16309             
16310         }
16311         
16312         st +=  '<style type="text/css">' +
16313             'IMG { cursor: pointer } ' +
16314         '</style>';
16315
16316         
16317         return '<html><head>' + st  +
16318             //<style type="text/css">' +
16319             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
16320             //'</style>' +
16321             ' </head><body class="roo-htmleditor-body"></body></html>';
16322     },
16323
16324     // private
16325     onRender : function(ct, position)
16326     {
16327         var _t = this;
16328         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
16329         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
16330         
16331         
16332         this.el.dom.style.border = '0 none';
16333         this.el.dom.setAttribute('tabIndex', -1);
16334         this.el.addClass('x-hidden hide');
16335         
16336         
16337         
16338         if(Roo.isIE){ // fix IE 1px bogus margin
16339             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
16340         }
16341        
16342         
16343         this.frameId = Roo.id();
16344         
16345          
16346         
16347         var iframe = this.owner.wrap.createChild({
16348             tag: 'iframe',
16349             cls: 'form-control', // bootstrap..
16350             id: this.frameId,
16351             name: this.frameId,
16352             frameBorder : 'no',
16353             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
16354         }, this.el
16355         );
16356         
16357         
16358         this.iframe = iframe.dom;
16359
16360          this.assignDocWin();
16361         
16362         this.doc.designMode = 'on';
16363        
16364         this.doc.open();
16365         this.doc.write(this.getDocMarkup());
16366         this.doc.close();
16367
16368         
16369         var task = { // must defer to wait for browser to be ready
16370             run : function(){
16371                 //console.log("run task?" + this.doc.readyState);
16372                 this.assignDocWin();
16373                 if(this.doc.body || this.doc.readyState == 'complete'){
16374                     try {
16375                         this.doc.designMode="on";
16376                     } catch (e) {
16377                         return;
16378                     }
16379                     Roo.TaskMgr.stop(task);
16380                     this.initEditor.defer(10, this);
16381                 }
16382             },
16383             interval : 10,
16384             duration: 10000,
16385             scope: this
16386         };
16387         Roo.TaskMgr.start(task);
16388
16389         
16390          
16391     },
16392
16393     // private
16394     onResize : function(w, h)
16395     {
16396          Roo.log('resize: ' +w + ',' + h );
16397         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
16398         if(!this.iframe){
16399             return;
16400         }
16401         if(typeof w == 'number'){
16402             
16403             this.iframe.style.width = w + 'px';
16404         }
16405         if(typeof h == 'number'){
16406             
16407             this.iframe.style.height = h + 'px';
16408             if(this.doc){
16409                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
16410             }
16411         }
16412         
16413     },
16414
16415     /**
16416      * Toggles the editor between standard and source edit mode.
16417      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
16418      */
16419     toggleSourceEdit : function(sourceEditMode){
16420         
16421         this.sourceEditMode = sourceEditMode === true;
16422         
16423         if(this.sourceEditMode){
16424  
16425             Roo.get(this.iframe).addClass(['x-hidden','hide']);     //FIXME - what's the BS styles for these
16426             
16427         }else{
16428             Roo.get(this.iframe).removeClass(['x-hidden','hide']);
16429             //this.iframe.className = '';
16430             this.deferFocus();
16431         }
16432         //this.setSize(this.owner.wrap.getSize());
16433         //this.fireEvent('editmodechange', this, this.sourceEditMode);
16434     },
16435
16436     
16437   
16438
16439     /**
16440      * Protected method that will not generally be called directly. If you need/want
16441      * custom HTML cleanup, this is the method you should override.
16442      * @param {String} html The HTML to be cleaned
16443      * return {String} The cleaned HTML
16444      */
16445     cleanHtml : function(html){
16446         html = String(html);
16447         if(html.length > 5){
16448             if(Roo.isSafari){ // strip safari nonsense
16449                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
16450             }
16451         }
16452         if(html == '&nbsp;'){
16453             html = '';
16454         }
16455         return html;
16456     },
16457
16458     /**
16459      * HTML Editor -> Textarea
16460      * Protected method that will not generally be called directly. Syncs the contents
16461      * of the editor iframe with the textarea.
16462      */
16463     syncValue : function(){
16464         if(this.initialized){
16465             var bd = (this.doc.body || this.doc.documentElement);
16466             //this.cleanUpPaste(); -- this is done else where and causes havoc..
16467             var html = bd.innerHTML;
16468             if(Roo.isSafari){
16469                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
16470                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
16471                 if(m && m[1]){
16472                     html = '<div style="'+m[0]+'">' + html + '</div>';
16473                 }
16474             }
16475             html = this.cleanHtml(html);
16476             // fix up the special chars.. normaly like back quotes in word...
16477             // however we do not want to do this with chinese..
16478             html = html.replace(/([\x80-\uffff])/g, function (a, b) {
16479                 var cc = b.charCodeAt();
16480                 if (
16481                     (cc >= 0x4E00 && cc < 0xA000 ) ||
16482                     (cc >= 0x3400 && cc < 0x4E00 ) ||
16483                     (cc >= 0xf900 && cc < 0xfb00 )
16484                 ) {
16485                         return b;
16486                 }
16487                 return "&#"+cc+";" 
16488             });
16489             if(this.owner.fireEvent('beforesync', this, html) !== false){
16490                 this.el.dom.value = html;
16491                 this.owner.fireEvent('sync', this, html);
16492             }
16493         }
16494     },
16495
16496     /**
16497      * Protected method that will not generally be called directly. Pushes the value of the textarea
16498      * into the iframe editor.
16499      */
16500     pushValue : function(){
16501         if(this.initialized){
16502             var v = this.el.dom.value.trim();
16503             
16504 //            if(v.length < 1){
16505 //                v = '&#160;';
16506 //            }
16507             
16508             if(this.owner.fireEvent('beforepush', this, v) !== false){
16509                 var d = (this.doc.body || this.doc.documentElement);
16510                 d.innerHTML = v;
16511                 this.cleanUpPaste();
16512                 this.el.dom.value = d.innerHTML;
16513                 this.owner.fireEvent('push', this, v);
16514             }
16515         }
16516     },
16517
16518     // private
16519     deferFocus : function(){
16520         this.focus.defer(10, this);
16521     },
16522
16523     // doc'ed in Field
16524     focus : function(){
16525         if(this.win && !this.sourceEditMode){
16526             this.win.focus();
16527         }else{
16528             this.el.focus();
16529         }
16530     },
16531     
16532     assignDocWin: function()
16533     {
16534         var iframe = this.iframe;
16535         
16536          if(Roo.isIE){
16537             this.doc = iframe.contentWindow.document;
16538             this.win = iframe.contentWindow;
16539         } else {
16540 //            if (!Roo.get(this.frameId)) {
16541 //                return;
16542 //            }
16543 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
16544 //            this.win = Roo.get(this.frameId).dom.contentWindow;
16545             
16546             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
16547                 return;
16548             }
16549             
16550             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
16551             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
16552         }
16553     },
16554     
16555     // private
16556     initEditor : function(){
16557         //console.log("INIT EDITOR");
16558         this.assignDocWin();
16559         
16560         
16561         
16562         this.doc.designMode="on";
16563         this.doc.open();
16564         this.doc.write(this.getDocMarkup());
16565         this.doc.close();
16566         
16567         var dbody = (this.doc.body || this.doc.documentElement);
16568         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
16569         // this copies styles from the containing element into thsi one..
16570         // not sure why we need all of this..
16571         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
16572         
16573         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
16574         //ss['background-attachment'] = 'fixed'; // w3c
16575         dbody.bgProperties = 'fixed'; // ie
16576         //Roo.DomHelper.applyStyles(dbody, ss);
16577         Roo.EventManager.on(this.doc, {
16578             //'mousedown': this.onEditorEvent,
16579             'mouseup': this.onEditorEvent,
16580             'dblclick': this.onEditorEvent,
16581             'click': this.onEditorEvent,
16582             'keyup': this.onEditorEvent,
16583             buffer:100,
16584             scope: this
16585         });
16586         if(Roo.isGecko){
16587             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
16588         }
16589         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
16590             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
16591         }
16592         this.initialized = true;
16593
16594         this.owner.fireEvent('initialize', this);
16595         this.pushValue();
16596     },
16597
16598     // private
16599     onDestroy : function(){
16600         
16601         
16602         
16603         if(this.rendered){
16604             
16605             //for (var i =0; i < this.toolbars.length;i++) {
16606             //    // fixme - ask toolbars for heights?
16607             //    this.toolbars[i].onDestroy();
16608            // }
16609             
16610             //this.wrap.dom.innerHTML = '';
16611             //this.wrap.remove();
16612         }
16613     },
16614
16615     // private
16616     onFirstFocus : function(){
16617         
16618         this.assignDocWin();
16619         
16620         
16621         this.activated = true;
16622          
16623     
16624         if(Roo.isGecko){ // prevent silly gecko errors
16625             this.win.focus();
16626             var s = this.win.getSelection();
16627             if(!s.focusNode || s.focusNode.nodeType != 3){
16628                 var r = s.getRangeAt(0);
16629                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
16630                 r.collapse(true);
16631                 this.deferFocus();
16632             }
16633             try{
16634                 this.execCmd('useCSS', true);
16635                 this.execCmd('styleWithCSS', false);
16636             }catch(e){}
16637         }
16638         this.owner.fireEvent('activate', this);
16639     },
16640
16641     // private
16642     adjustFont: function(btn){
16643         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
16644         //if(Roo.isSafari){ // safari
16645         //    adjust *= 2;
16646        // }
16647         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
16648         if(Roo.isSafari){ // safari
16649             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
16650             v =  (v < 10) ? 10 : v;
16651             v =  (v > 48) ? 48 : v;
16652             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
16653             
16654         }
16655         
16656         
16657         v = Math.max(1, v+adjust);
16658         
16659         this.execCmd('FontSize', v  );
16660     },
16661
16662     onEditorEvent : function(e){
16663         this.owner.fireEvent('editorevent', this, e);
16664       //  this.updateToolbar();
16665         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
16666     },
16667
16668     insertTag : function(tg)
16669     {
16670         // could be a bit smarter... -> wrap the current selected tRoo..
16671         if (tg.toLowerCase() == 'span' || tg.toLowerCase() == 'code') {
16672             
16673             range = this.createRange(this.getSelection());
16674             var wrappingNode = this.doc.createElement(tg.toLowerCase());
16675             wrappingNode.appendChild(range.extractContents());
16676             range.insertNode(wrappingNode);
16677
16678             return;
16679             
16680             
16681             
16682         }
16683         this.execCmd("formatblock",   tg);
16684         
16685     },
16686     
16687     insertText : function(txt)
16688     {
16689         
16690         
16691         var range = this.createRange();
16692         range.deleteContents();
16693                //alert(Sender.getAttribute('label'));
16694                
16695         range.insertNode(this.doc.createTextNode(txt));
16696     } ,
16697     
16698      
16699
16700     /**
16701      * Executes a Midas editor command on the editor document and performs necessary focus and
16702      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
16703      * @param {String} cmd The Midas command
16704      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
16705      */
16706     relayCmd : function(cmd, value){
16707         this.win.focus();
16708         this.execCmd(cmd, value);
16709         this.owner.fireEvent('editorevent', this);
16710         //this.updateToolbar();
16711         this.owner.deferFocus();
16712     },
16713
16714     /**
16715      * Executes a Midas editor command directly on the editor document.
16716      * For visual commands, you should use {@link #relayCmd} instead.
16717      * <b>This should only be called after the editor is initialized.</b>
16718      * @param {String} cmd The Midas command
16719      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
16720      */
16721     execCmd : function(cmd, value){
16722         this.doc.execCommand(cmd, false, value === undefined ? null : value);
16723         this.syncValue();
16724     },
16725  
16726  
16727    
16728     /**
16729      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
16730      * to insert tRoo.
16731      * @param {String} text | dom node.. 
16732      */
16733     insertAtCursor : function(text)
16734     {
16735         
16736         
16737         
16738         if(!this.activated){
16739             return;
16740         }
16741         /*
16742         if(Roo.isIE){
16743             this.win.focus();
16744             var r = this.doc.selection.createRange();
16745             if(r){
16746                 r.collapse(true);
16747                 r.pasteHTML(text);
16748                 this.syncValue();
16749                 this.deferFocus();
16750             
16751             }
16752             return;
16753         }
16754         */
16755         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
16756             this.win.focus();
16757             
16758             
16759             // from jquery ui (MIT licenced)
16760             var range, node;
16761             var win = this.win;
16762             
16763             if (win.getSelection && win.getSelection().getRangeAt) {
16764                 range = win.getSelection().getRangeAt(0);
16765                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
16766                 range.insertNode(node);
16767             } else if (win.document.selection && win.document.selection.createRange) {
16768                 // no firefox support
16769                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
16770                 win.document.selection.createRange().pasteHTML(txt);
16771             } else {
16772                 // no firefox support
16773                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
16774                 this.execCmd('InsertHTML', txt);
16775             } 
16776             
16777             this.syncValue();
16778             
16779             this.deferFocus();
16780         }
16781     },
16782  // private
16783     mozKeyPress : function(e){
16784         if(e.ctrlKey){
16785             var c = e.getCharCode(), cmd;
16786           
16787             if(c > 0){
16788                 c = String.fromCharCode(c).toLowerCase();
16789                 switch(c){
16790                     case 'b':
16791                         cmd = 'bold';
16792                         break;
16793                     case 'i':
16794                         cmd = 'italic';
16795                         break;
16796                     
16797                     case 'u':
16798                         cmd = 'underline';
16799                         break;
16800                     
16801                     case 'v':
16802                         this.cleanUpPaste.defer(100, this);
16803                         return;
16804                         
16805                 }
16806                 if(cmd){
16807                     this.win.focus();
16808                     this.execCmd(cmd);
16809                     this.deferFocus();
16810                     e.preventDefault();
16811                 }
16812                 
16813             }
16814         }
16815     },
16816
16817     // private
16818     fixKeys : function(){ // load time branching for fastest keydown performance
16819         if(Roo.isIE){
16820             return function(e){
16821                 var k = e.getKey(), r;
16822                 if(k == e.TAB){
16823                     e.stopEvent();
16824                     r = this.doc.selection.createRange();
16825                     if(r){
16826                         r.collapse(true);
16827                         r.pasteHTML('&#160;&#160;&#160;&#160;');
16828                         this.deferFocus();
16829                     }
16830                     return;
16831                 }
16832                 
16833                 if(k == e.ENTER){
16834                     r = this.doc.selection.createRange();
16835                     if(r){
16836                         var target = r.parentElement();
16837                         if(!target || target.tagName.toLowerCase() != 'li'){
16838                             e.stopEvent();
16839                             r.pasteHTML('<br />');
16840                             r.collapse(false);
16841                             r.select();
16842                         }
16843                     }
16844                 }
16845                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
16846                     this.cleanUpPaste.defer(100, this);
16847                     return;
16848                 }
16849                 
16850                 
16851             };
16852         }else if(Roo.isOpera){
16853             return function(e){
16854                 var k = e.getKey();
16855                 if(k == e.TAB){
16856                     e.stopEvent();
16857                     this.win.focus();
16858                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
16859                     this.deferFocus();
16860                 }
16861                 if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
16862                     this.cleanUpPaste.defer(100, this);
16863                     return;
16864                 }
16865                 
16866             };
16867         }else if(Roo.isSafari){
16868             return function(e){
16869                 var k = e.getKey();
16870                 
16871                 if(k == e.TAB){
16872                     e.stopEvent();
16873                     this.execCmd('InsertText','\t');
16874                     this.deferFocus();
16875                     return;
16876                 }
16877                if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
16878                     this.cleanUpPaste.defer(100, this);
16879                     return;
16880                 }
16881                 
16882              };
16883         }
16884     }(),
16885     
16886     getAllAncestors: function()
16887     {
16888         var p = this.getSelectedNode();
16889         var a = [];
16890         if (!p) {
16891             a.push(p); // push blank onto stack..
16892             p = this.getParentElement();
16893         }
16894         
16895         
16896         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
16897             a.push(p);
16898             p = p.parentNode;
16899         }
16900         a.push(this.doc.body);
16901         return a;
16902     },
16903     lastSel : false,
16904     lastSelNode : false,
16905     
16906     
16907     getSelection : function() 
16908     {
16909         this.assignDocWin();
16910         return Roo.isIE ? this.doc.selection : this.win.getSelection();
16911     },
16912     
16913     getSelectedNode: function() 
16914     {
16915         // this may only work on Gecko!!!
16916         
16917         // should we cache this!!!!
16918         
16919         
16920         
16921          
16922         var range = this.createRange(this.getSelection()).cloneRange();
16923         
16924         if (Roo.isIE) {
16925             var parent = range.parentElement();
16926             while (true) {
16927                 var testRange = range.duplicate();
16928                 testRange.moveToElementText(parent);
16929                 if (testRange.inRange(range)) {
16930                     break;
16931                 }
16932                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
16933                     break;
16934                 }
16935                 parent = parent.parentElement;
16936             }
16937             return parent;
16938         }
16939         
16940         // is ancestor a text element.
16941         var ac =  range.commonAncestorContainer;
16942         if (ac.nodeType == 3) {
16943             ac = ac.parentNode;
16944         }
16945         
16946         var ar = ac.childNodes;
16947          
16948         var nodes = [];
16949         var other_nodes = [];
16950         var has_other_nodes = false;
16951         for (var i=0;i<ar.length;i++) {
16952             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
16953                 continue;
16954             }
16955             // fullly contained node.
16956             
16957             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
16958                 nodes.push(ar[i]);
16959                 continue;
16960             }
16961             
16962             // probably selected..
16963             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
16964                 other_nodes.push(ar[i]);
16965                 continue;
16966             }
16967             // outer..
16968             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
16969                 continue;
16970             }
16971             
16972             
16973             has_other_nodes = true;
16974         }
16975         if (!nodes.length && other_nodes.length) {
16976             nodes= other_nodes;
16977         }
16978         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
16979             return false;
16980         }
16981         
16982         return nodes[0];
16983     },
16984     createRange: function(sel)
16985     {
16986         // this has strange effects when using with 
16987         // top toolbar - not sure if it's a great idea.
16988         //this.editor.contentWindow.focus();
16989         if (typeof sel != "undefined") {
16990             try {
16991                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
16992             } catch(e) {
16993                 return this.doc.createRange();
16994             }
16995         } else {
16996             return this.doc.createRange();
16997         }
16998     },
16999     getParentElement: function()
17000     {
17001         
17002         this.assignDocWin();
17003         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
17004         
17005         var range = this.createRange(sel);
17006          
17007         try {
17008             var p = range.commonAncestorContainer;
17009             while (p.nodeType == 3) { // text node
17010                 p = p.parentNode;
17011             }
17012             return p;
17013         } catch (e) {
17014             return null;
17015         }
17016     
17017     },
17018     /***
17019      *
17020      * Range intersection.. the hard stuff...
17021      *  '-1' = before
17022      *  '0' = hits..
17023      *  '1' = after.
17024      *         [ -- selected range --- ]
17025      *   [fail]                        [fail]
17026      *
17027      *    basically..
17028      *      if end is before start or  hits it. fail.
17029      *      if start is after end or hits it fail.
17030      *
17031      *   if either hits (but other is outside. - then it's not 
17032      *   
17033      *    
17034      **/
17035     
17036     
17037     // @see http://www.thismuchiknow.co.uk/?p=64.
17038     rangeIntersectsNode : function(range, node)
17039     {
17040         var nodeRange = node.ownerDocument.createRange();
17041         try {
17042             nodeRange.selectNode(node);
17043         } catch (e) {
17044             nodeRange.selectNodeContents(node);
17045         }
17046     
17047         var rangeStartRange = range.cloneRange();
17048         rangeStartRange.collapse(true);
17049     
17050         var rangeEndRange = range.cloneRange();
17051         rangeEndRange.collapse(false);
17052     
17053         var nodeStartRange = nodeRange.cloneRange();
17054         nodeStartRange.collapse(true);
17055     
17056         var nodeEndRange = nodeRange.cloneRange();
17057         nodeEndRange.collapse(false);
17058     
17059         return rangeStartRange.compareBoundaryPoints(
17060                  Range.START_TO_START, nodeEndRange) == -1 &&
17061                rangeEndRange.compareBoundaryPoints(
17062                  Range.START_TO_START, nodeStartRange) == 1;
17063         
17064          
17065     },
17066     rangeCompareNode : function(range, node)
17067     {
17068         var nodeRange = node.ownerDocument.createRange();
17069         try {
17070             nodeRange.selectNode(node);
17071         } catch (e) {
17072             nodeRange.selectNodeContents(node);
17073         }
17074         
17075         
17076         range.collapse(true);
17077     
17078         nodeRange.collapse(true);
17079      
17080         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
17081         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
17082          
17083         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
17084         
17085         var nodeIsBefore   =  ss == 1;
17086         var nodeIsAfter    = ee == -1;
17087         
17088         if (nodeIsBefore && nodeIsAfter)
17089             return 0; // outer
17090         if (!nodeIsBefore && nodeIsAfter)
17091             return 1; //right trailed.
17092         
17093         if (nodeIsBefore && !nodeIsAfter)
17094             return 2;  // left trailed.
17095         // fully contined.
17096         return 3;
17097     },
17098
17099     // private? - in a new class?
17100     cleanUpPaste :  function()
17101     {
17102         // cleans up the whole document..
17103         Roo.log('cleanuppaste');
17104         
17105         this.cleanUpChildren(this.doc.body);
17106         var clean = this.cleanWordChars(this.doc.body.innerHTML);
17107         if (clean != this.doc.body.innerHTML) {
17108             this.doc.body.innerHTML = clean;
17109         }
17110         
17111     },
17112     
17113     cleanWordChars : function(input) {// change the chars to hex code
17114         var he = Roo.HtmlEditorCore;
17115         
17116         var output = input;
17117         Roo.each(he.swapCodes, function(sw) { 
17118             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
17119             
17120             output = output.replace(swapper, sw[1]);
17121         });
17122         
17123         return output;
17124     },
17125     
17126     
17127     cleanUpChildren : function (n)
17128     {
17129         if (!n.childNodes.length) {
17130             return;
17131         }
17132         for (var i = n.childNodes.length-1; i > -1 ; i--) {
17133            this.cleanUpChild(n.childNodes[i]);
17134         }
17135     },
17136     
17137     
17138         
17139     
17140     cleanUpChild : function (node)
17141     {
17142         var ed = this;
17143         //console.log(node);
17144         if (node.nodeName == "#text") {
17145             // clean up silly Windows -- stuff?
17146             return; 
17147         }
17148         if (node.nodeName == "#comment") {
17149             node.parentNode.removeChild(node);
17150             // clean up silly Windows -- stuff?
17151             return; 
17152         }
17153         
17154         if (Roo.HtmlEditorCore.black.indexOf(node.tagName.toLowerCase()) > -1 && this.clearUp) {
17155             // remove node.
17156             node.parentNode.removeChild(node);
17157             return;
17158             
17159         }
17160         
17161         var remove_keep_children= Roo.HtmlEditorCore.remove.indexOf(node.tagName.toLowerCase()) > -1;
17162         
17163         // remove <a name=....> as rendering on yahoo mailer is borked with this.
17164         // this will have to be flaged elsewhere - perhaps ablack=name... on the mailer..
17165         
17166         //if (node.tagName.toLowerCase() == 'a' && !node.hasAttribute('href')) {
17167         //    remove_keep_children = true;
17168         //}
17169         
17170         if (remove_keep_children) {
17171             this.cleanUpChildren(node);
17172             // inserts everything just before this node...
17173             while (node.childNodes.length) {
17174                 var cn = node.childNodes[0];
17175                 node.removeChild(cn);
17176                 node.parentNode.insertBefore(cn, node);
17177             }
17178             node.parentNode.removeChild(node);
17179             return;
17180         }
17181         
17182         if (!node.attributes || !node.attributes.length) {
17183             this.cleanUpChildren(node);
17184             return;
17185         }
17186         
17187         function cleanAttr(n,v)
17188         {
17189             
17190             if (v.match(/^\./) || v.match(/^\//)) {
17191                 return;
17192             }
17193             if (v.match(/^(http|https):\/\//) || v.match(/^mailto:/)) {
17194                 return;
17195             }
17196             if (v.match(/^#/)) {
17197                 return;
17198             }
17199 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
17200             node.removeAttribute(n);
17201             
17202         }
17203         
17204         function cleanStyle(n,v)
17205         {
17206             if (v.match(/expression/)) { //XSS?? should we even bother..
17207                 node.removeAttribute(n);
17208                 return;
17209             }
17210             var cwhite = typeof(ed.cwhite) == 'undefined' ? Roo.HtmlEditorCore.cwhite : ed.cwhite;
17211             var cblack = typeof(ed.cblack) == 'undefined' ? Roo.HtmlEditorCore.cblack : ed.cblack;
17212             
17213             
17214             var parts = v.split(/;/);
17215             var clean = [];
17216             
17217             Roo.each(parts, function(p) {
17218                 p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
17219                 if (!p.length) {
17220                     return true;
17221                 }
17222                 var l = p.split(':').shift().replace(/\s+/g,'');
17223                 l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
17224                 
17225                 if ( cblack.indexOf(l) > -1) {
17226 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
17227                     //node.removeAttribute(n);
17228                     return true;
17229                 }
17230                 //Roo.log()
17231                 // only allow 'c whitelisted system attributes'
17232                 if ( cwhite.length &&  cwhite.indexOf(l) < 0) {
17233 //                    Roo.log('(REMOVE CSS)' + node.tagName +'.' + n + ':'+l + '=' + v);
17234                     //node.removeAttribute(n);
17235                     return true;
17236                 }
17237                 
17238                 
17239                  
17240                 
17241                 clean.push(p);
17242                 return true;
17243             });
17244             if (clean.length) { 
17245                 node.setAttribute(n, clean.join(';'));
17246             } else {
17247                 node.removeAttribute(n);
17248             }
17249             
17250         }
17251         
17252         
17253         for (var i = node.attributes.length-1; i > -1 ; i--) {
17254             var a = node.attributes[i];
17255             //console.log(a);
17256             
17257             if (a.name.toLowerCase().substr(0,2)=='on')  {
17258                 node.removeAttribute(a.name);
17259                 continue;
17260             }
17261             if (Roo.HtmlEditorCore.ablack.indexOf(a.name.toLowerCase()) > -1) {
17262                 node.removeAttribute(a.name);
17263                 continue;
17264             }
17265             if (Roo.HtmlEditorCore.aclean.indexOf(a.name.toLowerCase()) > -1) {
17266                 cleanAttr(a.name,a.value); // fixme..
17267                 continue;
17268             }
17269             if (a.name == 'style') {
17270                 cleanStyle(a.name,a.value);
17271                 continue;
17272             }
17273             /// clean up MS crap..
17274             // tecnically this should be a list of valid class'es..
17275             
17276             
17277             if (a.name == 'class') {
17278                 if (a.value.match(/^Mso/)) {
17279                     node.className = '';
17280                 }
17281                 
17282                 if (a.value.match(/body/)) {
17283                     node.className = '';
17284                 }
17285                 continue;
17286             }
17287             
17288             // style cleanup!?
17289             // class cleanup?
17290             
17291         }
17292         
17293         
17294         this.cleanUpChildren(node);
17295         
17296         
17297     },
17298     /**
17299      * Clean up MS wordisms...
17300      */
17301     cleanWord : function(node)
17302     {
17303         var _t = this;
17304         var cleanWordChildren = function()
17305         {
17306             if (!node.childNodes.length) {
17307                 return;
17308             }
17309             for (var i = node.childNodes.length-1; i > -1 ; i--) {
17310                _t.cleanWord(node.childNodes[i]);
17311             }
17312         }
17313         
17314         
17315         if (!node) {
17316             this.cleanWord(this.doc.body);
17317             return;
17318         }
17319         if (node.nodeName == "#text") {
17320             // clean up silly Windows -- stuff?
17321             return; 
17322         }
17323         if (node.nodeName == "#comment") {
17324             node.parentNode.removeChild(node);
17325             // clean up silly Windows -- stuff?
17326             return; 
17327         }
17328         
17329         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
17330             node.parentNode.removeChild(node);
17331             return;
17332         }
17333         
17334         // remove - but keep children..
17335         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|font)/)) {
17336             while (node.childNodes.length) {
17337                 var cn = node.childNodes[0];
17338                 node.removeChild(cn);
17339                 node.parentNode.insertBefore(cn, node);
17340             }
17341             node.parentNode.removeChild(node);
17342             cleanWordChildren();
17343             return;
17344         }
17345         // clean styles
17346         if (node.className.length) {
17347             
17348             var cn = node.className.split(/\W+/);
17349             var cna = [];
17350             Roo.each(cn, function(cls) {
17351                 if (cls.match(/Mso[a-zA-Z]+/)) {
17352                     return;
17353                 }
17354                 cna.push(cls);
17355             });
17356             node.className = cna.length ? cna.join(' ') : '';
17357             if (!cna.length) {
17358                 node.removeAttribute("class");
17359             }
17360         }
17361         
17362         if (node.hasAttribute("lang")) {
17363             node.removeAttribute("lang");
17364         }
17365         
17366         if (node.hasAttribute("style")) {
17367             
17368             var styles = node.getAttribute("style").split(";");
17369             var nstyle = [];
17370             Roo.each(styles, function(s) {
17371                 if (!s.match(/:/)) {
17372                     return;
17373                 }
17374                 var kv = s.split(":");
17375                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
17376                     return;
17377                 }
17378                 // what ever is left... we allow.
17379                 nstyle.push(s);
17380             });
17381             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
17382             if (!nstyle.length) {
17383                 node.removeAttribute('style');
17384             }
17385         }
17386         
17387         cleanWordChildren();
17388         
17389         
17390     },
17391     domToHTML : function(currentElement, depth, nopadtext) {
17392         
17393             depth = depth || 0;
17394             nopadtext = nopadtext || false;
17395         
17396             if (!currentElement) {
17397                 return this.domToHTML(this.doc.body);
17398             }
17399             
17400             //Roo.log(currentElement);
17401             var j;
17402             var allText = false;
17403             var nodeName = currentElement.nodeName;
17404             var tagName = Roo.util.Format.htmlEncode(currentElement.tagName);
17405             
17406             if  (nodeName == '#text') {
17407                 return currentElement.nodeValue;
17408             }
17409             
17410             
17411             var ret = '';
17412             if (nodeName != 'BODY') {
17413                  
17414                 var i = 0;
17415                 // Prints the node tagName, such as <A>, <IMG>, etc
17416                 if (tagName) {
17417                     var attr = [];
17418                     for(i = 0; i < currentElement.attributes.length;i++) {
17419                         // quoting?
17420                         var aname = currentElement.attributes.item(i).name;
17421                         if (!currentElement.attributes.item(i).value.length) {
17422                             continue;
17423                         }
17424                         attr.push(aname + '="' + Roo.util.Format.htmlEncode(currentElement.attributes.item(i).value) + '"' );
17425                     }
17426                     
17427                     ret = "<"+currentElement.tagName+ ( attr.length ? (' ' + attr.join(' ') ) : '') + ">";
17428                 } 
17429                 else {
17430                     
17431                     // eack
17432                 }
17433             } else {
17434                 tagName = false;
17435             }
17436             if (['IMG', 'BR', 'HR', 'INPUT'].indexOf(tagName) > -1) {
17437                 return ret;
17438             }
17439             if (['PRE', 'TEXTAREA', 'TD', 'A', 'SPAN'].indexOf(tagName) > -1) { // or code?
17440                 nopadtext = true;
17441             }
17442             
17443             
17444             // Traverse the tree
17445             i = 0;
17446             var currentElementChild = currentElement.childNodes.item(i);
17447             var allText = true;
17448             var innerHTML  = '';
17449             lastnode = '';
17450             while (currentElementChild) {
17451                 // Formatting code (indent the tree so it looks nice on the screen)
17452                 var nopad = nopadtext;
17453                 if (lastnode == 'SPAN') {
17454                     nopad  = true;
17455                 }
17456                 // text
17457                 if  (currentElementChild.nodeName == '#text') {
17458                     var toadd = Roo.util.Format.htmlEncode(currentElementChild.nodeValue);
17459                     if (!nopad && toadd.length > 80) {
17460                         innerHTML  += "\n" + (new Array( depth + 1 )).join( "  "  );
17461                     }
17462                     innerHTML  += toadd;
17463                     
17464                     i++;
17465                     currentElementChild = currentElement.childNodes.item(i);
17466                     lastNode = '';
17467                     continue;
17468                 }
17469                 allText = false;
17470                 
17471                 innerHTML  += nopad ? '' : "\n" + (new Array( depth + 1 )).join( "  "  );
17472                     
17473                 // Recursively traverse the tree structure of the child node
17474                 innerHTML   += this.domToHTML(currentElementChild, depth+1, nopadtext);
17475                 lastnode = currentElementChild.nodeName;
17476                 i++;
17477                 currentElementChild=currentElement.childNodes.item(i);
17478             }
17479             
17480             ret += innerHTML;
17481             
17482             if (!allText) {
17483                     // The remaining code is mostly for formatting the tree
17484                 ret+= nopadtext ? '' : "\n" + (new Array( depth  )).join( "  "  );
17485             }
17486             
17487             
17488             if (tagName) {
17489                 ret+= "</"+tagName+">";
17490             }
17491             return ret;
17492             
17493         }
17494     
17495     // hide stuff that is not compatible
17496     /**
17497      * @event blur
17498      * @hide
17499      */
17500     /**
17501      * @event change
17502      * @hide
17503      */
17504     /**
17505      * @event focus
17506      * @hide
17507      */
17508     /**
17509      * @event specialkey
17510      * @hide
17511      */
17512     /**
17513      * @cfg {String} fieldClass @hide
17514      */
17515     /**
17516      * @cfg {String} focusClass @hide
17517      */
17518     /**
17519      * @cfg {String} autoCreate @hide
17520      */
17521     /**
17522      * @cfg {String} inputType @hide
17523      */
17524     /**
17525      * @cfg {String} invalidClass @hide
17526      */
17527     /**
17528      * @cfg {String} invalidText @hide
17529      */
17530     /**
17531      * @cfg {String} msgFx @hide
17532      */
17533     /**
17534      * @cfg {String} validateOnBlur @hide
17535      */
17536 });
17537
17538 Roo.HtmlEditorCore.white = [
17539         'area', 'br', 'img', 'input', 'hr', 'wbr',
17540         
17541        'address', 'blockquote', 'center', 'dd',      'dir',       'div', 
17542        'dl',      'dt',         'h1',     'h2',      'h3',        'h4', 
17543        'h5',      'h6',         'hr',     'isindex', 'listing',   'marquee', 
17544        'menu',    'multicol',   'ol',     'p',       'plaintext', 'pre', 
17545        'table',   'ul',         'xmp', 
17546        
17547        'caption', 'col', 'colgroup', 'tbody', 'td', 'tfoot', 'th', 
17548       'thead',   'tr', 
17549      
17550       'dir', 'menu', 'ol', 'ul', 'dl',
17551        
17552       'embed',  'object'
17553 ];
17554
17555
17556 Roo.HtmlEditorCore.black = [
17557     //    'embed',  'object', // enable - backend responsiblity to clean thiese
17558         'applet', // 
17559         'base',   'basefont', 'bgsound', 'blink',  'body', 
17560         'frame',  'frameset', 'head',    'html',   'ilayer', 
17561         'iframe', 'layer',  'link',     'meta',    'object',   
17562         'script', 'style' ,'title',  'xml' // clean later..
17563 ];
17564 Roo.HtmlEditorCore.clean = [
17565     'script', 'style', 'title', 'xml'
17566 ];
17567 Roo.HtmlEditorCore.remove = [
17568     'font'
17569 ];
17570 // attributes..
17571
17572 Roo.HtmlEditorCore.ablack = [
17573     'on'
17574 ];
17575     
17576 Roo.HtmlEditorCore.aclean = [ 
17577     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
17578 ];
17579
17580 // protocols..
17581 Roo.HtmlEditorCore.pwhite= [
17582         'http',  'https',  'mailto'
17583 ];
17584
17585 // white listed style attributes.
17586 Roo.HtmlEditorCore.cwhite= [
17587       //  'text-align', /// default is to allow most things..
17588       
17589          
17590 //        'font-size'//??
17591 ];
17592
17593 // black listed style attributes.
17594 Roo.HtmlEditorCore.cblack= [
17595       //  'font-size' -- this can be set by the project 
17596 ];
17597
17598
17599 Roo.HtmlEditorCore.swapCodes   =[ 
17600     [    8211, "--" ], 
17601     [    8212, "--" ], 
17602     [    8216,  "'" ],  
17603     [    8217, "'" ],  
17604     [    8220, '"' ],  
17605     [    8221, '"' ],  
17606     [    8226, "*" ],  
17607     [    8230, "..." ]
17608 ]; 
17609
17610     /*
17611  * - LGPL
17612  *
17613  * HtmlEditor
17614  * 
17615  */
17616
17617 /**
17618  * @class Roo.bootstrap.HtmlEditor
17619  * @extends Roo.bootstrap.TextArea
17620  * Bootstrap HtmlEditor class
17621
17622  * @constructor
17623  * Create a new HtmlEditor
17624  * @param {Object} config The config object
17625  */
17626
17627 Roo.bootstrap.HtmlEditor = function(config){
17628     Roo.bootstrap.HtmlEditor.superclass.constructor.call(this, config);
17629     if (!this.toolbars) {
17630         this.toolbars = [];
17631     }
17632     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
17633     this.addEvents({
17634             /**
17635              * @event initialize
17636              * Fires when the editor is fully initialized (including the iframe)
17637              * @param {HtmlEditor} this
17638              */
17639             initialize: true,
17640             /**
17641              * @event activate
17642              * Fires when the editor is first receives the focus. Any insertion must wait
17643              * until after this event.
17644              * @param {HtmlEditor} this
17645              */
17646             activate: true,
17647              /**
17648              * @event beforesync
17649              * Fires before the textarea is updated with content from the editor iframe. Return false
17650              * to cancel the sync.
17651              * @param {HtmlEditor} this
17652              * @param {String} html
17653              */
17654             beforesync: true,
17655              /**
17656              * @event beforepush
17657              * Fires before the iframe editor is updated with content from the textarea. Return false
17658              * to cancel the push.
17659              * @param {HtmlEditor} this
17660              * @param {String} html
17661              */
17662             beforepush: true,
17663              /**
17664              * @event sync
17665              * Fires when the textarea is updated with content from the editor iframe.
17666              * @param {HtmlEditor} this
17667              * @param {String} html
17668              */
17669             sync: true,
17670              /**
17671              * @event push
17672              * Fires when the iframe editor is updated with content from the textarea.
17673              * @param {HtmlEditor} this
17674              * @param {String} html
17675              */
17676             push: true,
17677              /**
17678              * @event editmodechange
17679              * Fires when the editor switches edit modes
17680              * @param {HtmlEditor} this
17681              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
17682              */
17683             editmodechange: true,
17684             /**
17685              * @event editorevent
17686              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
17687              * @param {HtmlEditor} this
17688              */
17689             editorevent: true,
17690             /**
17691              * @event firstfocus
17692              * Fires when on first focus - needed by toolbars..
17693              * @param {HtmlEditor} this
17694              */
17695             firstfocus: true,
17696             /**
17697              * @event autosave
17698              * Auto save the htmlEditor value as a file into Events
17699              * @param {HtmlEditor} this
17700              */
17701             autosave: true,
17702             /**
17703              * @event savedpreview
17704              * preview the saved version of htmlEditor
17705              * @param {HtmlEditor} this
17706              */
17707             savedpreview: true
17708         });
17709 };
17710
17711
17712 Roo.extend(Roo.bootstrap.HtmlEditor, Roo.bootstrap.TextArea,  {
17713     
17714     
17715       /**
17716      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
17717      */
17718     toolbars : false,
17719    
17720      /**
17721      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
17722      *                        Roo.resizable.
17723      */
17724     resizable : false,
17725      /**
17726      * @cfg {Number} height (in pixels)
17727      */   
17728     height: 300,
17729    /**
17730      * @cfg {Number} width (in pixels)
17731      */   
17732     width: false,
17733     
17734     /**
17735      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
17736      * 
17737      */
17738     stylesheets: false,
17739     
17740     // id of frame..
17741     frameId: false,
17742     
17743     // private properties
17744     validationEvent : false,
17745     deferHeight: true,
17746     initialized : false,
17747     activated : false,
17748     
17749     onFocus : Roo.emptyFn,
17750     iframePad:3,
17751     hideMode:'offsets',
17752     
17753     
17754     tbContainer : false,
17755     
17756     toolbarContainer :function() {
17757         return this.wrap.select('.x-html-editor-tb',true).first();
17758     },
17759
17760     /**
17761      * Protected method that will not generally be called directly. It
17762      * is called when the editor creates its toolbar. Override this method if you need to
17763      * add custom toolbar buttons.
17764      * @param {HtmlEditor} editor
17765      */
17766     createToolbar : function(){
17767         
17768         Roo.log("create toolbars");
17769         
17770         this.toolbars = [ new Roo.bootstrap.htmleditor.ToolbarStandard({editor: this} ) ];
17771         this.toolbars[0].render(this.toolbarContainer());
17772         
17773         return;
17774         
17775 //        if (!editor.toolbars || !editor.toolbars.length) {
17776 //            editor.toolbars = [ new Roo.bootstrap.HtmlEditor.ToolbarStandard() ]; // can be empty?
17777 //        }
17778 //        
17779 //        for (var i =0 ; i < editor.toolbars.length;i++) {
17780 //            editor.toolbars[i] = Roo.factory(
17781 //                    typeof(editor.toolbars[i]) == 'string' ?
17782 //                        { xtype: editor.toolbars[i]} : editor.toolbars[i],
17783 //                Roo.bootstrap.HtmlEditor);
17784 //            editor.toolbars[i].init(editor);
17785 //        }
17786     },
17787
17788      
17789     // private
17790     onRender : function(ct, position)
17791     {
17792        // Roo.log("Call onRender: " + this.xtype);
17793         var _t = this;
17794         Roo.bootstrap.HtmlEditor.superclass.onRender.call(this, ct, position);
17795       
17796         this.wrap = this.inputEl().wrap({
17797             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
17798         });
17799         
17800         this.editorcore.onRender(ct, position);
17801          
17802         if (this.resizable) {
17803             this.resizeEl = new Roo.Resizable(this.wrap, {
17804                 pinned : true,
17805                 wrap: true,
17806                 dynamic : true,
17807                 minHeight : this.height,
17808                 height: this.height,
17809                 handles : this.resizable,
17810                 width: this.width,
17811                 listeners : {
17812                     resize : function(r, w, h) {
17813                         _t.onResize(w,h); // -something
17814                     }
17815                 }
17816             });
17817             
17818         }
17819         this.createToolbar(this);
17820        
17821         
17822         if(!this.width && this.resizable){
17823             this.setSize(this.wrap.getSize());
17824         }
17825         if (this.resizeEl) {
17826             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
17827             // should trigger onReize..
17828         }
17829         
17830     },
17831
17832     // private
17833     onResize : function(w, h)
17834     {
17835         Roo.log('resize: ' +w + ',' + h );
17836         Roo.bootstrap.HtmlEditor.superclass.onResize.apply(this, arguments);
17837         var ew = false;
17838         var eh = false;
17839         
17840         if(this.inputEl() ){
17841             if(typeof w == 'number'){
17842                 var aw = w - this.wrap.getFrameWidth('lr');
17843                 this.inputEl().setWidth(this.adjustWidth('textarea', aw));
17844                 ew = aw;
17845             }
17846             if(typeof h == 'number'){
17847                  var tbh = -11;  // fixme it needs to tool bar size!
17848                 for (var i =0; i < this.toolbars.length;i++) {
17849                     // fixme - ask toolbars for heights?
17850                     tbh += this.toolbars[i].el.getHeight();
17851                     //if (this.toolbars[i].footer) {
17852                     //    tbh += this.toolbars[i].footer.el.getHeight();
17853                     //}
17854                 }
17855               
17856                 
17857                 
17858                 
17859                 
17860                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
17861                 ah -= 5; // knock a few pixes off for look..
17862                 this.inputEl().setHeight(this.adjustWidth('textarea', ah));
17863                 var eh = ah;
17864             }
17865         }
17866         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
17867         this.editorcore.onResize(ew,eh);
17868         
17869     },
17870
17871     /**
17872      * Toggles the editor between standard and source edit mode.
17873      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
17874      */
17875     toggleSourceEdit : function(sourceEditMode)
17876     {
17877         this.editorcore.toggleSourceEdit(sourceEditMode);
17878         
17879         if(this.editorcore.sourceEditMode){
17880             Roo.log('editor - showing textarea');
17881             
17882 //            Roo.log('in');
17883 //            Roo.log(this.syncValue());
17884             this.syncValue();
17885             this.inputEl().removeClass(['hide', 'x-hidden']);
17886             this.inputEl().dom.removeAttribute('tabIndex');
17887             this.inputEl().focus();
17888         }else{
17889             Roo.log('editor - hiding textarea');
17890 //            Roo.log('out')
17891 //            Roo.log(this.pushValue()); 
17892             this.pushValue();
17893             
17894             this.inputEl().addClass(['hide', 'x-hidden']);
17895             this.inputEl().dom.setAttribute('tabIndex', -1);
17896             //this.deferFocus();
17897         }
17898          
17899         if(this.resizable){
17900             this.setSize(this.wrap.getSize());
17901         }
17902         
17903         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
17904     },
17905  
17906     // private (for BoxComponent)
17907     adjustSize : Roo.BoxComponent.prototype.adjustSize,
17908
17909     // private (for BoxComponent)
17910     getResizeEl : function(){
17911         return this.wrap;
17912     },
17913
17914     // private (for BoxComponent)
17915     getPositionEl : function(){
17916         return this.wrap;
17917     },
17918
17919     // private
17920     initEvents : function(){
17921         this.originalValue = this.getValue();
17922     },
17923
17924 //    /**
17925 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
17926 //     * @method
17927 //     */
17928 //    markInvalid : Roo.emptyFn,
17929 //    /**
17930 //     * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
17931 //     * @method
17932 //     */
17933 //    clearInvalid : Roo.emptyFn,
17934
17935     setValue : function(v){
17936         Roo.bootstrap.HtmlEditor.superclass.setValue.call(this, v);
17937         this.editorcore.pushValue();
17938     },
17939
17940      
17941     // private
17942     deferFocus : function(){
17943         this.focus.defer(10, this);
17944     },
17945
17946     // doc'ed in Field
17947     focus : function(){
17948         this.editorcore.focus();
17949         
17950     },
17951       
17952
17953     // private
17954     onDestroy : function(){
17955         
17956         
17957         
17958         if(this.rendered){
17959             
17960             for (var i =0; i < this.toolbars.length;i++) {
17961                 // fixme - ask toolbars for heights?
17962                 this.toolbars[i].onDestroy();
17963             }
17964             
17965             this.wrap.dom.innerHTML = '';
17966             this.wrap.remove();
17967         }
17968     },
17969
17970     // private
17971     onFirstFocus : function(){
17972         //Roo.log("onFirstFocus");
17973         this.editorcore.onFirstFocus();
17974          for (var i =0; i < this.toolbars.length;i++) {
17975             this.toolbars[i].onFirstFocus();
17976         }
17977         
17978     },
17979     
17980     // private
17981     syncValue : function()
17982     {   
17983         this.editorcore.syncValue();
17984     },
17985     
17986     pushValue : function()
17987     {   
17988         this.editorcore.pushValue();
17989     }
17990      
17991     
17992     // hide stuff that is not compatible
17993     /**
17994      * @event blur
17995      * @hide
17996      */
17997     /**
17998      * @event change
17999      * @hide
18000      */
18001     /**
18002      * @event focus
18003      * @hide
18004      */
18005     /**
18006      * @event specialkey
18007      * @hide
18008      */
18009     /**
18010      * @cfg {String} fieldClass @hide
18011      */
18012     /**
18013      * @cfg {String} focusClass @hide
18014      */
18015     /**
18016      * @cfg {String} autoCreate @hide
18017      */
18018     /**
18019      * @cfg {String} inputType @hide
18020      */
18021     /**
18022      * @cfg {String} invalidClass @hide
18023      */
18024     /**
18025      * @cfg {String} invalidText @hide
18026      */
18027     /**
18028      * @cfg {String} msgFx @hide
18029      */
18030     /**
18031      * @cfg {String} validateOnBlur @hide
18032      */
18033 });
18034  
18035     
18036    
18037    
18038    
18039       
18040 Roo.namespace('Roo.bootstrap.htmleditor');
18041 /**
18042  * @class Roo.bootstrap.HtmlEditorToolbar1
18043  * Basic Toolbar
18044  * 
18045  * Usage:
18046  *
18047  new Roo.bootstrap.HtmlEditor({
18048     ....
18049     toolbars : [
18050         new Roo.bootstrap.HtmlEditorToolbar1({
18051             disable : { fonts: 1 , format: 1, ..., ... , ...],
18052             btns : [ .... ]
18053         })
18054     }
18055      
18056  * 
18057  * @cfg {Object} disable List of elements to disable..
18058  * @cfg {Array} btns List of additional buttons.
18059  * 
18060  * 
18061  * NEEDS Extra CSS? 
18062  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
18063  */
18064  
18065 Roo.bootstrap.htmleditor.ToolbarStandard = function(config)
18066 {
18067     
18068     Roo.apply(this, config);
18069     
18070     // default disabled, based on 'good practice'..
18071     this.disable = this.disable || {};
18072     Roo.applyIf(this.disable, {
18073         fontSize : true,
18074         colors : true,
18075         specialElements : true
18076     });
18077     Roo.bootstrap.htmleditor.ToolbarStandard.superclass.constructor.call(this, config);
18078     
18079     this.editor = config.editor;
18080     this.editorcore = config.editor.editorcore;
18081     
18082     this.buttons   = new Roo.util.MixedCollection(false, function(o) { return o.cmd; });
18083     
18084     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
18085     // dont call parent... till later.
18086 }
18087 Roo.extend(Roo.bootstrap.htmleditor.ToolbarStandard, Roo.bootstrap.NavSimplebar,  {
18088      
18089     bar : true,
18090     
18091     editor : false,
18092     editorcore : false,
18093     
18094     
18095     formats : [
18096         "p" ,  
18097         "h1","h2","h3","h4","h5","h6", 
18098         "pre", "code", 
18099         "abbr", "acronym", "address", "cite", "samp", "var",
18100         'div','span'
18101     ],
18102     
18103     onRender : function(ct, position)
18104     {
18105        // Roo.log("Call onRender: " + this.xtype);
18106         
18107        Roo.bootstrap.htmleditor.ToolbarStandard.superclass.onRender.call(this, ct, position);
18108        Roo.log(this.el);
18109        this.el.dom.style.marginBottom = '0';
18110        var _this = this;
18111        var editorcore = this.editorcore;
18112        var editor= this.editor;
18113        
18114        var children = [];
18115        var btn = function(id,cmd , toggle, handler){
18116        
18117             var  event = toggle ? 'toggle' : 'click';
18118        
18119             var a = {
18120                 size : 'sm',
18121                 xtype: 'Button',
18122                 xns: Roo.bootstrap,
18123                 glyphicon : id,
18124                 cmd : id || cmd,
18125                 enableToggle:toggle !== false,
18126                 //html : 'submit'
18127                 pressed : toggle ? false : null,
18128                 listeners : {}
18129             }
18130             a.listeners[toggle ? 'toggle' : 'click'] = function() {
18131                 handler ? handler.call(_this,this) :_this.onBtnClick.call(_this, cmd ||  id);
18132             }
18133             children.push(a);
18134             return a;
18135        }
18136         
18137         var style = {
18138                 xtype: 'Button',
18139                 size : 'sm',
18140                 xns: Roo.bootstrap,
18141                 glyphicon : 'font',
18142                 //html : 'submit'
18143                 menu : {
18144                     xtype: 'Menu',
18145                     xns: Roo.bootstrap,
18146                     items:  []
18147                 }
18148         };
18149         Roo.each(this.formats, function(f) {
18150             style.menu.items.push({
18151                 xtype :'MenuItem',
18152                 xns: Roo.bootstrap,
18153                 html : '<'+ f+' style="margin:2px">'+f +'</'+ f+'>',
18154                 tagname : f,
18155                 listeners : {
18156                     click : function()
18157                     {
18158                         editorcore.insertTag(this.tagname);
18159                         editor.focus();
18160                     }
18161                 }
18162                 
18163             });
18164         });
18165          children.push(style);   
18166             
18167             
18168         btn('bold',false,true);
18169         btn('italic',false,true);
18170         btn('align-left', 'justifyleft',true);
18171         btn('align-center', 'justifycenter',true);
18172         btn('align-right' , 'justifyright',true);
18173         btn('link', false, false, function(btn) {
18174             //Roo.log("create link?");
18175             var url = prompt(this.createLinkText, this.defaultLinkValue);
18176             if(url && url != 'http:/'+'/'){
18177                 this.editorcore.relayCmd('createlink', url);
18178             }
18179         }),
18180         btn('list','insertunorderedlist',true);
18181         btn('pencil', false,true, function(btn){
18182                 Roo.log(this);
18183                 
18184                 this.toggleSourceEdit(btn.pressed);
18185         });
18186         /*
18187         var cog = {
18188                 xtype: 'Button',
18189                 size : 'sm',
18190                 xns: Roo.bootstrap,
18191                 glyphicon : 'cog',
18192                 //html : 'submit'
18193                 menu : {
18194                     xtype: 'Menu',
18195                     xns: Roo.bootstrap,
18196                     items:  []
18197                 }
18198         };
18199         
18200         cog.menu.items.push({
18201             xtype :'MenuItem',
18202             xns: Roo.bootstrap,
18203             html : Clean styles,
18204             tagname : f,
18205             listeners : {
18206                 click : function()
18207                 {
18208                     editorcore.insertTag(this.tagname);
18209                     editor.focus();
18210                 }
18211             }
18212             
18213         });
18214        */
18215         
18216          
18217        this.xtype = 'NavSimplebar';
18218         
18219         for(var i=0;i< children.length;i++) {
18220             
18221             this.buttons.add(this.addxtypeChild(children[i]));
18222             
18223         }
18224         
18225         editor.on('editorevent', this.updateToolbar, this);
18226     },
18227     onBtnClick : function(id)
18228     {
18229        this.editorcore.relayCmd(id);
18230        this.editorcore.focus();
18231     },
18232     
18233     /**
18234      * Protected method that will not generally be called directly. It triggers
18235      * a toolbar update by reading the markup state of the current selection in the editor.
18236      */
18237     updateToolbar: function(){
18238
18239         if(!this.editorcore.activated){
18240             this.editor.onFirstFocus(); // is this neeed?
18241             return;
18242         }
18243
18244         var btns = this.buttons; 
18245         var doc = this.editorcore.doc;
18246         btns.get('bold').setActive(doc.queryCommandState('bold'));
18247         btns.get('italic').setActive(doc.queryCommandState('italic'));
18248         //btns.get('underline').setActive(doc.queryCommandState('underline'));
18249         
18250         btns.get('align-left').setActive(doc.queryCommandState('justifyleft'));
18251         btns.get('align-center').setActive(doc.queryCommandState('justifycenter'));
18252         btns.get('align-right').setActive(doc.queryCommandState('justifyright'));
18253         
18254         //btns[frameId + '-insertorderedlist').setActive(doc.queryCommandState('insertorderedlist'));
18255         btns.get('list').setActive(doc.queryCommandState('insertunorderedlist'));
18256          /*
18257         
18258         var ans = this.editorcore.getAllAncestors();
18259         if (this.formatCombo) {
18260             
18261             
18262             var store = this.formatCombo.store;
18263             this.formatCombo.setValue("");
18264             for (var i =0; i < ans.length;i++) {
18265                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
18266                     // select it..
18267                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
18268                     break;
18269                 }
18270             }
18271         }
18272         
18273         
18274         
18275         // hides menus... - so this cant be on a menu...
18276         Roo.bootstrap.MenuMgr.hideAll();
18277         */
18278         Roo.bootstrap.MenuMgr.hideAll();
18279         //this.editorsyncValue();
18280     },
18281     onFirstFocus: function() {
18282         this.buttons.each(function(item){
18283            item.enable();
18284         });
18285     },
18286     toggleSourceEdit : function(sourceEditMode){
18287         
18288           
18289         if(sourceEditMode){
18290             Roo.log("disabling buttons");
18291            this.buttons.each( function(item){
18292                 if(item.cmd != 'pencil'){
18293                     item.disable();
18294                 }
18295             });
18296           
18297         }else{
18298             Roo.log("enabling buttons");
18299             if(this.editorcore.initialized){
18300                 this.buttons.each( function(item){
18301                     item.enable();
18302                 });
18303             }
18304             
18305         }
18306         Roo.log("calling toggole on editor");
18307         // tell the editor that it's been pressed..
18308         this.editor.toggleSourceEdit(sourceEditMode);
18309        
18310     }
18311 });
18312
18313
18314
18315
18316
18317 /**
18318  * @class Roo.bootstrap.Table.AbstractSelectionModel
18319  * @extends Roo.util.Observable
18320  * Abstract base class for grid SelectionModels.  It provides the interface that should be
18321  * implemented by descendant classes.  This class should not be directly instantiated.
18322  * @constructor
18323  */
18324 Roo.bootstrap.Table.AbstractSelectionModel = function(){
18325     this.locked = false;
18326     Roo.bootstrap.Table.AbstractSelectionModel.superclass.constructor.call(this);
18327 };
18328
18329
18330 Roo.extend(Roo.bootstrap.Table.AbstractSelectionModel, Roo.util.Observable,  {
18331     /** @ignore Called by the grid automatically. Do not call directly. */
18332     init : function(grid){
18333         this.grid = grid;
18334         this.initEvents();
18335     },
18336
18337     /**
18338      * Locks the selections.
18339      */
18340     lock : function(){
18341         this.locked = true;
18342     },
18343
18344     /**
18345      * Unlocks the selections.
18346      */
18347     unlock : function(){
18348         this.locked = false;
18349     },
18350
18351     /**
18352      * Returns true if the selections are locked.
18353      * @return {Boolean}
18354      */
18355     isLocked : function(){
18356         return this.locked;
18357     }
18358 });
18359 /**
18360  * @extends Roo.bootstrap.Table.AbstractSelectionModel
18361  * @class Roo.bootstrap.Table.RowSelectionModel
18362  * The default SelectionModel used by {@link Roo.bootstrap.Table}.
18363  * It supports multiple selections and keyboard selection/navigation. 
18364  * @constructor
18365  * @param {Object} config
18366  */
18367
18368 Roo.bootstrap.Table.RowSelectionModel = function(config){
18369     Roo.apply(this, config);
18370     this.selections = new Roo.util.MixedCollection(false, function(o){
18371         return o.id;
18372     });
18373
18374     this.last = false;
18375     this.lastActive = false;
18376
18377     this.addEvents({
18378         /**
18379              * @event selectionchange
18380              * Fires when the selection changes
18381              * @param {SelectionModel} this
18382              */
18383             "selectionchange" : true,
18384         /**
18385              * @event afterselectionchange
18386              * Fires after the selection changes (eg. by key press or clicking)
18387              * @param {SelectionModel} this
18388              */
18389             "afterselectionchange" : true,
18390         /**
18391              * @event beforerowselect
18392              * Fires when a row is selected being selected, return false to cancel.
18393              * @param {SelectionModel} this
18394              * @param {Number} rowIndex The selected index
18395              * @param {Boolean} keepExisting False if other selections will be cleared
18396              */
18397             "beforerowselect" : true,
18398         /**
18399              * @event rowselect
18400              * Fires when a row is selected.
18401              * @param {SelectionModel} this
18402              * @param {Number} rowIndex The selected index
18403              * @param {Roo.data.Record} r The record
18404              */
18405             "rowselect" : true,
18406         /**
18407              * @event rowdeselect
18408              * Fires when a row is deselected.
18409              * @param {SelectionModel} this
18410              * @param {Number} rowIndex The selected index
18411              */
18412         "rowdeselect" : true
18413     });
18414     Roo.bootstrap.Table.RowSelectionModel.superclass.constructor.call(this);
18415     this.locked = false;
18416 };
18417
18418 Roo.extend(Roo.bootstrap.Table.RowSelectionModel, Roo.bootstrap.Table.AbstractSelectionModel,  {
18419     /**
18420      * @cfg {Boolean} singleSelect
18421      * True to allow selection of only one row at a time (defaults to false)
18422      */
18423     singleSelect : false,
18424
18425     // private
18426     initEvents : function(){
18427
18428         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
18429             this.grid.on("mousedown", this.handleMouseDown, this);
18430         }else{ // allow click to work like normal
18431             this.grid.on("rowclick", this.handleDragableRowClick, this);
18432         }
18433
18434         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
18435             "up" : function(e){
18436                 if(!e.shiftKey){
18437                     this.selectPrevious(e.shiftKey);
18438                 }else if(this.last !== false && this.lastActive !== false){
18439                     var last = this.last;
18440                     this.selectRange(this.last,  this.lastActive-1);
18441                     this.grid.getView().focusRow(this.lastActive);
18442                     if(last !== false){
18443                         this.last = last;
18444                     }
18445                 }else{
18446                     this.selectFirstRow();
18447                 }
18448                 this.fireEvent("afterselectionchange", this);
18449             },
18450             "down" : function(e){
18451                 if(!e.shiftKey){
18452                     this.selectNext(e.shiftKey);
18453                 }else if(this.last !== false && this.lastActive !== false){
18454                     var last = this.last;
18455                     this.selectRange(this.last,  this.lastActive+1);
18456                     this.grid.getView().focusRow(this.lastActive);
18457                     if(last !== false){
18458                         this.last = last;
18459                     }
18460                 }else{
18461                     this.selectFirstRow();
18462                 }
18463                 this.fireEvent("afterselectionchange", this);
18464             },
18465             scope: this
18466         });
18467
18468         var view = this.grid.view;
18469         view.on("refresh", this.onRefresh, this);
18470         view.on("rowupdated", this.onRowUpdated, this);
18471         view.on("rowremoved", this.onRemove, this);
18472     },
18473
18474     // private
18475     onRefresh : function(){
18476         var ds = this.grid.dataSource, i, v = this.grid.view;
18477         var s = this.selections;
18478         s.each(function(r){
18479             if((i = ds.indexOfId(r.id)) != -1){
18480                 v.onRowSelect(i);
18481             }else{
18482                 s.remove(r);
18483             }
18484         });
18485     },
18486
18487     // private
18488     onRemove : function(v, index, r){
18489         this.selections.remove(r);
18490     },
18491
18492     // private
18493     onRowUpdated : function(v, index, r){
18494         if(this.isSelected(r)){
18495             v.onRowSelect(index);
18496         }
18497     },
18498
18499     /**
18500      * Select records.
18501      * @param {Array} records The records to select
18502      * @param {Boolean} keepExisting (optional) True to keep existing selections
18503      */
18504     selectRecords : function(records, keepExisting){
18505         if(!keepExisting){
18506             this.clearSelections();
18507         }
18508         var ds = this.grid.dataSource;
18509         for(var i = 0, len = records.length; i < len; i++){
18510             this.selectRow(ds.indexOf(records[i]), true);
18511         }
18512     },
18513
18514     /**
18515      * Gets the number of selected rows.
18516      * @return {Number}
18517      */
18518     getCount : function(){
18519         return this.selections.length;
18520     },
18521
18522     /**
18523      * Selects the first row in the grid.
18524      */
18525     selectFirstRow : function(){
18526         this.selectRow(0);
18527     },
18528
18529     /**
18530      * Select the last row.
18531      * @param {Boolean} keepExisting (optional) True to keep existing selections
18532      */
18533     selectLastRow : function(keepExisting){
18534         this.selectRow(this.grid.dataSource.getCount() - 1, keepExisting);
18535     },
18536
18537     /**
18538      * Selects the row immediately following the last selected row.
18539      * @param {Boolean} keepExisting (optional) True to keep existing selections
18540      */
18541     selectNext : function(keepExisting){
18542         if(this.last !== false && (this.last+1) < this.grid.dataSource.getCount()){
18543             this.selectRow(this.last+1, keepExisting);
18544             this.grid.getView().focusRow(this.last);
18545         }
18546     },
18547
18548     /**
18549      * Selects the row that precedes the last selected row.
18550      * @param {Boolean} keepExisting (optional) True to keep existing selections
18551      */
18552     selectPrevious : function(keepExisting){
18553         if(this.last){
18554             this.selectRow(this.last-1, keepExisting);
18555             this.grid.getView().focusRow(this.last);
18556         }
18557     },
18558
18559     /**
18560      * Returns the selected records
18561      * @return {Array} Array of selected records
18562      */
18563     getSelections : function(){
18564         return [].concat(this.selections.items);
18565     },
18566
18567     /**
18568      * Returns the first selected record.
18569      * @return {Record}
18570      */
18571     getSelected : function(){
18572         return this.selections.itemAt(0);
18573     },
18574
18575
18576     /**
18577      * Clears all selections.
18578      */
18579     clearSelections : function(fast){
18580         if(this.locked) return;
18581         if(fast !== true){
18582             var ds = this.grid.dataSource;
18583             var s = this.selections;
18584             s.each(function(r){
18585                 this.deselectRow(ds.indexOfId(r.id));
18586             }, this);
18587             s.clear();
18588         }else{
18589             this.selections.clear();
18590         }
18591         this.last = false;
18592     },
18593
18594
18595     /**
18596      * Selects all rows.
18597      */
18598     selectAll : function(){
18599         if(this.locked) return;
18600         this.selections.clear();
18601         for(var i = 0, len = this.grid.dataSource.getCount(); i < len; i++){
18602             this.selectRow(i, true);
18603         }
18604     },
18605
18606     /**
18607      * Returns True if there is a selection.
18608      * @return {Boolean}
18609      */
18610     hasSelection : function(){
18611         return this.selections.length > 0;
18612     },
18613
18614     /**
18615      * Returns True if the specified row is selected.
18616      * @param {Number/Record} record The record or index of the record to check
18617      * @return {Boolean}
18618      */
18619     isSelected : function(index){
18620         var r = typeof index == "number" ? this.grid.dataSource.getAt(index) : index;
18621         return (r && this.selections.key(r.id) ? true : false);
18622     },
18623
18624     /**
18625      * Returns True if the specified record id is selected.
18626      * @param {String} id The id of record to check
18627      * @return {Boolean}
18628      */
18629     isIdSelected : function(id){
18630         return (this.selections.key(id) ? true : false);
18631     },
18632
18633     // private
18634     handleMouseDown : function(e, t){
18635         var view = this.grid.getView(), rowIndex;
18636         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
18637             return;
18638         };
18639         if(e.shiftKey && this.last !== false){
18640             var last = this.last;
18641             this.selectRange(last, rowIndex, e.ctrlKey);
18642             this.last = last; // reset the last
18643             view.focusRow(rowIndex);
18644         }else{
18645             var isSelected = this.isSelected(rowIndex);
18646             if(e.button !== 0 && isSelected){
18647                 view.focusRow(rowIndex);
18648             }else if(e.ctrlKey && isSelected){
18649                 this.deselectRow(rowIndex);
18650             }else if(!isSelected){
18651                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
18652                 view.focusRow(rowIndex);
18653             }
18654         }
18655         this.fireEvent("afterselectionchange", this);
18656     },
18657     // private
18658     handleDragableRowClick :  function(grid, rowIndex, e) 
18659     {
18660         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
18661             this.selectRow(rowIndex, false);
18662             grid.view.focusRow(rowIndex);
18663              this.fireEvent("afterselectionchange", this);
18664         }
18665     },
18666     
18667     /**
18668      * Selects multiple rows.
18669      * @param {Array} rows Array of the indexes of the row to select
18670      * @param {Boolean} keepExisting (optional) True to keep existing selections
18671      */
18672     selectRows : function(rows, keepExisting){
18673         if(!keepExisting){
18674             this.clearSelections();
18675         }
18676         for(var i = 0, len = rows.length; i < len; i++){
18677             this.selectRow(rows[i], true);
18678         }
18679     },
18680
18681     /**
18682      * Selects a range of rows. All rows in between startRow and endRow are also selected.
18683      * @param {Number} startRow The index of the first row in the range
18684      * @param {Number} endRow The index of the last row in the range
18685      * @param {Boolean} keepExisting (optional) True to retain existing selections
18686      */
18687     selectRange : function(startRow, endRow, keepExisting){
18688         if(this.locked) return;
18689         if(!keepExisting){
18690             this.clearSelections();
18691         }
18692         if(startRow <= endRow){
18693             for(var i = startRow; i <= endRow; i++){
18694                 this.selectRow(i, true);
18695             }
18696         }else{
18697             for(var i = startRow; i >= endRow; i--){
18698                 this.selectRow(i, true);
18699             }
18700         }
18701     },
18702
18703     /**
18704      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
18705      * @param {Number} startRow The index of the first row in the range
18706      * @param {Number} endRow The index of the last row in the range
18707      */
18708     deselectRange : function(startRow, endRow, preventViewNotify){
18709         if(this.locked) return;
18710         for(var i = startRow; i <= endRow; i++){
18711             this.deselectRow(i, preventViewNotify);
18712         }
18713     },
18714
18715     /**
18716      * Selects a row.
18717      * @param {Number} row The index of the row to select
18718      * @param {Boolean} keepExisting (optional) True to keep existing selections
18719      */
18720     selectRow : function(index, keepExisting, preventViewNotify){
18721         if(this.locked || (index < 0 || index >= this.grid.dataSource.getCount())) return;
18722         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
18723             if(!keepExisting || this.singleSelect){
18724                 this.clearSelections();
18725             }
18726             var r = this.grid.dataSource.getAt(index);
18727             this.selections.add(r);
18728             this.last = this.lastActive = index;
18729             if(!preventViewNotify){
18730                 this.grid.getView().onRowSelect(index);
18731             }
18732             this.fireEvent("rowselect", this, index, r);
18733             this.fireEvent("selectionchange", this);
18734         }
18735     },
18736
18737     /**
18738      * Deselects a row.
18739      * @param {Number} row The index of the row to deselect
18740      */
18741     deselectRow : function(index, preventViewNotify){
18742         if(this.locked) return;
18743         if(this.last == index){
18744             this.last = false;
18745         }
18746         if(this.lastActive == index){
18747             this.lastActive = false;
18748         }
18749         var r = this.grid.dataSource.getAt(index);
18750         this.selections.remove(r);
18751         if(!preventViewNotify){
18752             this.grid.getView().onRowDeselect(index);
18753         }
18754         this.fireEvent("rowdeselect", this, index);
18755         this.fireEvent("selectionchange", this);
18756     },
18757
18758     // private
18759     restoreLast : function(){
18760         if(this._last){
18761             this.last = this._last;
18762         }
18763     },
18764
18765     // private
18766     acceptsNav : function(row, col, cm){
18767         return !cm.isHidden(col) && cm.isCellEditable(col, row);
18768     },
18769
18770     // private
18771     onEditorKey : function(field, e){
18772         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
18773         if(k == e.TAB){
18774             e.stopEvent();
18775             ed.completeEdit();
18776             if(e.shiftKey){
18777                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
18778             }else{
18779                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
18780             }
18781         }else if(k == e.ENTER && !e.ctrlKey){
18782             e.stopEvent();
18783             ed.completeEdit();
18784             if(e.shiftKey){
18785                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
18786             }else{
18787                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
18788             }
18789         }else if(k == e.ESC){
18790             ed.cancelEdit();
18791         }
18792         if(newCell){
18793             g.startEditing(newCell[0], newCell[1]);
18794         }
18795     }
18796 });/*
18797  * Based on:
18798  * Ext JS Library 1.1.1
18799  * Copyright(c) 2006-2007, Ext JS, LLC.
18800  *
18801  * Originally Released Under LGPL - original licence link has changed is not relivant.
18802  *
18803  * Fork - LGPL
18804  * <script type="text/javascript">
18805  */
18806  
18807 /**
18808  * @class Roo.bootstrap.PagingToolbar
18809  * @extends Roo.Row
18810  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
18811  * @constructor
18812  * Create a new PagingToolbar
18813  * @param {Object} config The config object
18814  */
18815 Roo.bootstrap.PagingToolbar = function(config)
18816 {
18817     // old args format still supported... - xtype is prefered..
18818         // created from xtype...
18819     var ds = config.dataSource;
18820     this.toolbarItems = [];
18821     if (config.items) {
18822         this.toolbarItems = config.items;
18823 //        config.items = [];
18824     }
18825     
18826     Roo.bootstrap.PagingToolbar.superclass.constructor.call(this, config);
18827     this.ds = ds;
18828     this.cursor = 0;
18829     if (ds) { 
18830         this.bind(ds);
18831     }
18832     
18833     this.navgroup = new Roo.bootstrap.NavGroup({ cls: 'pagination' });
18834     
18835 };
18836
18837 Roo.extend(Roo.bootstrap.PagingToolbar, Roo.bootstrap.NavSimplebar, {
18838     /**
18839      * @cfg {Roo.data.Store} dataSource
18840      * The underlying data store providing the paged data
18841      */
18842     /**
18843      * @cfg {String/HTMLElement/Element} container
18844      * container The id or element that will contain the toolbar
18845      */
18846     /**
18847      * @cfg {Boolean} displayInfo
18848      * True to display the displayMsg (defaults to false)
18849      */
18850     /**
18851      * @cfg {Number} pageSize
18852      * The number of records to display per page (defaults to 20)
18853      */
18854     pageSize: 20,
18855     /**
18856      * @cfg {String} displayMsg
18857      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
18858      */
18859     displayMsg : 'Displaying {0} - {1} of {2}',
18860     /**
18861      * @cfg {String} emptyMsg
18862      * The message to display when no records are found (defaults to "No data to display")
18863      */
18864     emptyMsg : 'No data to display',
18865     /**
18866      * Customizable piece of the default paging text (defaults to "Page")
18867      * @type String
18868      */
18869     beforePageText : "Page",
18870     /**
18871      * Customizable piece of the default paging text (defaults to "of %0")
18872      * @type String
18873      */
18874     afterPageText : "of {0}",
18875     /**
18876      * Customizable piece of the default paging text (defaults to "First Page")
18877      * @type String
18878      */
18879     firstText : "First Page",
18880     /**
18881      * Customizable piece of the default paging text (defaults to "Previous Page")
18882      * @type String
18883      */
18884     prevText : "Previous Page",
18885     /**
18886      * Customizable piece of the default paging text (defaults to "Next Page")
18887      * @type String
18888      */
18889     nextText : "Next Page",
18890     /**
18891      * Customizable piece of the default paging text (defaults to "Last Page")
18892      * @type String
18893      */
18894     lastText : "Last Page",
18895     /**
18896      * Customizable piece of the default paging text (defaults to "Refresh")
18897      * @type String
18898      */
18899     refreshText : "Refresh",
18900
18901     buttons : false,
18902     // private
18903     onRender : function(ct, position) 
18904     {
18905         Roo.bootstrap.PagingToolbar.superclass.onRender.call(this, ct, position);
18906         this.navgroup.parentId = this.id;
18907         this.navgroup.onRender(this.el, null);
18908         // add the buttons to the navgroup
18909         
18910         if(this.displayInfo){
18911             Roo.log(this.el.select('ul.navbar-nav',true).first());
18912             this.el.select('ul.navbar-nav',true).first().createChild({cls:'x-paging-info'});
18913             this.displayEl = this.el.select('.x-paging-info', true).first();
18914 //            var navel = this.navgroup.addItem( { tagtype : 'span', html : '', cls : 'x-paging-info', preventDefault : true } );
18915 //            this.displayEl = navel.el.select('span',true).first();
18916         }
18917         
18918         var _this = this;
18919         
18920         if(this.buttons){
18921             Roo.each(_this.buttons, function(e){
18922                Roo.factory(e).onRender(_this.el, null);
18923             });
18924         }
18925             
18926         Roo.each(_this.toolbarItems, function(e) {
18927             _this.navgroup.addItem(e);
18928         });
18929         
18930         this.first = this.navgroup.addItem({
18931             tooltip: this.firstText,
18932             cls: "prev",
18933             icon : 'fa fa-backward',
18934             disabled: true,
18935             listeners : { click : this.onClick.createDelegate(this, ["first"]) }
18936         });
18937         
18938         this.prev =  this.navgroup.addItem({
18939             tooltip: this.prevText,
18940             cls: "prev",
18941             icon : 'fa fa-step-backward',
18942             disabled: true,
18943             listeners : { click :  this.onClick.createDelegate(this, ["prev"]) }
18944         });
18945     //this.addSeparator();
18946         
18947         
18948         var field = this.navgroup.addItem( {
18949             tagtype : 'span',
18950             cls : 'x-paging-position',
18951             
18952             html : this.beforePageText  +
18953                 '<input type="text" size="3" value="1" class="x-grid-page-number">' +
18954                 '<span class="x-paging-after">' +  String.format(this.afterPageText, 1) + '</span>'
18955          } ); //?? escaped?
18956         
18957         this.field = field.el.select('input', true).first();
18958         this.field.on("keydown", this.onPagingKeydown, this);
18959         this.field.on("focus", function(){this.dom.select();});
18960     
18961     
18962         this.afterTextEl =  field.el.select('.x-paging-after',true).first();
18963         //this.field.setHeight(18);
18964         //this.addSeparator();
18965         this.next = this.navgroup.addItem({
18966             tooltip: this.nextText,
18967             cls: "next",
18968             html : ' <i class="fa fa-step-forward">',
18969             disabled: true,
18970             listeners : { click :  this.onClick.createDelegate(this, ["next"]) }
18971         });
18972         this.last = this.navgroup.addItem({
18973             tooltip: this.lastText,
18974             icon : 'fa fa-forward',
18975             cls: "next",
18976             disabled: true,
18977             listeners : { click :  this.onClick.createDelegate(this, ["last"]) }
18978         });
18979     //this.addSeparator();
18980         this.loading = this.navgroup.addItem({
18981             tooltip: this.refreshText,
18982             icon: 'fa fa-refresh',
18983             
18984             listeners : { click : this.onClick.createDelegate(this, ["refresh"]) }
18985         });
18986
18987     },
18988
18989     // private
18990     updateInfo : function(){
18991         if(this.displayEl){
18992             var count = this.ds.getCount();
18993             var msg = count == 0 ?
18994                 this.emptyMsg :
18995                 String.format(
18996                     this.displayMsg,
18997                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
18998                 );
18999             this.displayEl.update(msg);
19000         }
19001     },
19002
19003     // private
19004     onLoad : function(ds, r, o){
19005        this.cursor = o.params ? o.params.start : 0;
19006        var d = this.getPageData(),
19007             ap = d.activePage,
19008             ps = d.pages;
19009         
19010        this.afterTextEl.dom.innerHTML = String.format(this.afterPageText, d.pages);
19011        this.field.dom.value = ap;
19012        this.first.setDisabled(ap == 1);
19013        this.prev.setDisabled(ap == 1);
19014        this.next.setDisabled(ap == ps);
19015        this.last.setDisabled(ap == ps);
19016        this.loading.enable();
19017        this.updateInfo();
19018     },
19019
19020     // private
19021     getPageData : function(){
19022         var total = this.ds.getTotalCount();
19023         return {
19024             total : total,
19025             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
19026             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
19027         };
19028     },
19029
19030     // private
19031     onLoadError : function(){
19032         this.loading.enable();
19033     },
19034
19035     // private
19036     onPagingKeydown : function(e){
19037         var k = e.getKey();
19038         var d = this.getPageData();
19039         if(k == e.RETURN){
19040             var v = this.field.dom.value, pageNum;
19041             if(!v || isNaN(pageNum = parseInt(v, 10))){
19042                 this.field.dom.value = d.activePage;
19043                 return;
19044             }
19045             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
19046             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
19047             e.stopEvent();
19048         }
19049         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))
19050         {
19051           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
19052           this.field.dom.value = pageNum;
19053           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
19054           e.stopEvent();
19055         }
19056         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
19057         {
19058           var v = this.field.dom.value, pageNum; 
19059           var increment = (e.shiftKey) ? 10 : 1;
19060           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
19061             increment *= -1;
19062           if(!v || isNaN(pageNum = parseInt(v, 10))) {
19063             this.field.dom.value = d.activePage;
19064             return;
19065           }
19066           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
19067           {
19068             this.field.dom.value = parseInt(v, 10) + increment;
19069             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
19070             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
19071           }
19072           e.stopEvent();
19073         }
19074     },
19075
19076     // private
19077     beforeLoad : function(){
19078         if(this.loading){
19079             this.loading.disable();
19080         }
19081     },
19082
19083     // private
19084     onClick : function(which){
19085         var ds = this.ds;
19086         if (!ds) {
19087             return;
19088         }
19089         switch(which){
19090             case "first":
19091                 ds.load({params:{start: 0, limit: this.pageSize}});
19092             break;
19093             case "prev":
19094                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
19095             break;
19096             case "next":
19097                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
19098             break;
19099             case "last":
19100                 var total = ds.getTotalCount();
19101                 var extra = total % this.pageSize;
19102                 var lastStart = extra ? (total - extra) : total-this.pageSize;
19103                 ds.load({params:{start: lastStart, limit: this.pageSize}});
19104             break;
19105             case "refresh":
19106                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
19107             break;
19108         }
19109     },
19110
19111     /**
19112      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
19113      * @param {Roo.data.Store} store The data store to unbind
19114      */
19115     unbind : function(ds){
19116         ds.un("beforeload", this.beforeLoad, this);
19117         ds.un("load", this.onLoad, this);
19118         ds.un("loadexception", this.onLoadError, this);
19119         ds.un("remove", this.updateInfo, this);
19120         ds.un("add", this.updateInfo, this);
19121         this.ds = undefined;
19122     },
19123
19124     /**
19125      * Binds the paging toolbar to the specified {@link Roo.data.Store}
19126      * @param {Roo.data.Store} store The data store to bind
19127      */
19128     bind : function(ds){
19129         ds.on("beforeload", this.beforeLoad, this);
19130         ds.on("load", this.onLoad, this);
19131         ds.on("loadexception", this.onLoadError, this);
19132         ds.on("remove", this.updateInfo, this);
19133         ds.on("add", this.updateInfo, this);
19134         this.ds = ds;
19135     }
19136 });/*
19137  * - LGPL
19138  *
19139  * element
19140  * 
19141  */
19142
19143 /**
19144  * @class Roo.bootstrap.MessageBar
19145  * @extends Roo.bootstrap.Component
19146  * Bootstrap MessageBar class
19147  * @cfg {String} html contents of the MessageBar
19148  * @cfg {String} weight (info | success | warning | danger) default info
19149  * @cfg {String} beforeClass insert the bar before the given class
19150  * @cfg {Boolean} closable (true | false) default false
19151  * @cfg {Boolean} fixed (true | false) default false, fix the bar at the top
19152  * 
19153  * @constructor
19154  * Create a new Element
19155  * @param {Object} config The config object
19156  */
19157
19158 Roo.bootstrap.MessageBar = function(config){
19159     Roo.bootstrap.MessageBar.superclass.constructor.call(this, config);
19160 };
19161
19162 Roo.extend(Roo.bootstrap.MessageBar, Roo.bootstrap.Component,  {
19163     
19164     html: '',
19165     weight: 'info',
19166     closable: false,
19167     fixed: false,
19168     beforeClass: 'bootstrap-sticky-wrap',
19169     
19170     getAutoCreate : function(){
19171         
19172         var cfg = {
19173             tag: 'div',
19174             cls: 'alert alert-dismissable alert-' + this.weight,
19175             cn: [
19176                 {
19177                     tag: 'span',
19178                     cls: 'message',
19179                     html: this.html || ''
19180                 }
19181             ]
19182         }
19183         
19184         if(this.fixed){
19185             cfg.cls += ' alert-messages-fixed';
19186         }
19187         
19188         if(this.closable){
19189             cfg.cn.push({
19190                 tag: 'button',
19191                 cls: 'close',
19192                 html: 'x'
19193             });
19194         }
19195         
19196         return cfg;
19197     },
19198     
19199     onRender : function(ct, position)
19200     {
19201         Roo.bootstrap.Component.superclass.onRender.call(this, ct, position);
19202         
19203         if(!this.el){
19204             var cfg = Roo.apply({},  this.getAutoCreate());
19205             cfg.id = Roo.id();
19206             
19207             if (this.cls) {
19208                 cfg.cls += ' ' + this.cls;
19209             }
19210             if (this.style) {
19211                 cfg.style = this.style;
19212             }
19213             this.el = Roo.get(document.body).createChild(cfg, Roo.select('.'+this.beforeClass, true).first());
19214             
19215             this.el.setVisibilityMode(Roo.Element.DISPLAY);
19216         }
19217         
19218         this.el.select('>button.close').on('click', this.hide, this);
19219         
19220     },
19221     
19222     show : function()
19223     {
19224         if (!this.rendered) {
19225             this.render();
19226         }
19227         
19228         this.el.show();
19229         
19230         this.fireEvent('show', this);
19231         
19232     },
19233     
19234     hide : function()
19235     {
19236         if (!this.rendered) {
19237             this.render();
19238         }
19239         
19240         this.el.hide();
19241         
19242         this.fireEvent('hide', this);
19243     },
19244     
19245     update : function()
19246     {
19247 //        var e = this.el.dom.firstChild;
19248 //        
19249 //        if(this.closable){
19250 //            e = e.nextSibling;
19251 //        }
19252 //        
19253 //        e.data = this.html || '';
19254
19255         this.el.select('>.message', true).first().dom.innerHTML = this.html || '';
19256     }
19257    
19258 });
19259
19260  
19261
19262      /*
19263  * - LGPL
19264  *
19265  * Graph
19266  * 
19267  */
19268
19269
19270 /**
19271  * @class Roo.bootstrap.Graph
19272  * @extends Roo.bootstrap.Component
19273  * Bootstrap Graph class
19274 > Prameters
19275  -sm {number} sm 4
19276  -md {number} md 5
19277  @cfg {String} graphtype  bar | vbar | pie
19278  @cfg {number} g_x coodinator | centre x (pie)
19279  @cfg {number} g_y coodinator | centre y (pie)
19280  @cfg {number} g_r radius (pie)
19281  @cfg {number} g_height height of the chart (respected by all elements in the set)
19282  @cfg {number} g_width width of the chart (respected by all elements in the set)
19283  @cfg {Object} title The title of the chart
19284     
19285  -{Array}  values
19286  -opts (object) options for the chart 
19287      o {
19288      o type (string) type of endings of the bar. Default: 'square'. Other options are: 'round', 'sharp', 'soft'.
19289      o gutter (number)(string) default '20%' (WHAT DOES IT DO?)
19290      o vgutter (number)
19291      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.
19292      o stacked (boolean) whether or not to tread values as in a stacked bar chart
19293      o to
19294      o stretch (boolean)
19295      o }
19296  -opts (object) options for the pie
19297      o{
19298      o cut
19299      o startAngle (number)
19300      o endAngle (number)
19301      } 
19302  *
19303  * @constructor
19304  * Create a new Input
19305  * @param {Object} config The config object
19306  */
19307
19308 Roo.bootstrap.Graph = function(config){
19309     Roo.bootstrap.Graph.superclass.constructor.call(this, config);
19310     
19311     this.addEvents({
19312         // img events
19313         /**
19314          * @event click
19315          * The img click event for the img.
19316          * @param {Roo.EventObject} e
19317          */
19318         "click" : true
19319     });
19320 };
19321
19322 Roo.extend(Roo.bootstrap.Graph, Roo.bootstrap.Component,  {
19323     
19324     sm: 4,
19325     md: 5,
19326     graphtype: 'bar',
19327     g_height: 250,
19328     g_width: 400,
19329     g_x: 50,
19330     g_y: 50,
19331     g_r: 30,
19332     opts:{
19333         //g_colors: this.colors,
19334         g_type: 'soft',
19335         g_gutter: '20%'
19336
19337     },
19338     title : false,
19339
19340     getAutoCreate : function(){
19341         
19342         var cfg = {
19343             tag: 'div',
19344             html : null
19345         }
19346         
19347         
19348         return  cfg;
19349     },
19350
19351     onRender : function(ct,position){
19352         Roo.bootstrap.Graph.superclass.onRender.call(this,ct,position);
19353         this.raphael = Raphael(this.el.dom);
19354         
19355                     // data1 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
19356                     // data2 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
19357                     // data3 = [[55, 20, 13, 32, 5, 1, 2, 10], [10, 2, 1, 5, 32, 13, 20, 55], [12, 20, 30]],
19358                     // txtattr = { font: "12px 'Fontin Sans', Fontin-Sans, sans-serif" };
19359                 /*
19360                 r.text(160, 10, "Single Series Chart").attr(txtattr);
19361                 r.text(480, 10, "Multiline Series Chart").attr(txtattr);
19362                 r.text(160, 250, "Multiple Series Stacked Chart").attr(txtattr);
19363                 r.text(480, 250, 'Multiline Series Stacked Vertical Chart. Type "round"').attr(txtattr);
19364                 
19365                 r.barchart(10, 10, 300, 220, [[55, 20, 13, 32, 5, 1, 2, 10]], 0, {type: "sharp"});
19366                 r.barchart(330, 10, 300, 220, data1);
19367                 r.barchart(10, 250, 300, 220, data2, {stacked: true});
19368                 r.barchart(330, 250, 300, 220, data3, {stacked: true, type: "round"});
19369                 */
19370                 
19371                 // var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
19372                 // r.barchart(30, 30, 560, 250,  xdata, {
19373                 //    labels : [55, 20, 13, 32, 5, 1, 2, 10,5 , 10],
19374                 //     axis : "0 0 1 1",
19375                 //     axisxlabels :  xdata
19376                 //     //yvalues : cols,
19377                    
19378                 // });
19379 //        var xdata = [55, 20, 13, 32, 5, 1, 2, 10,5 , 10];
19380 //        
19381 //        this.load(null,xdata,{
19382 //                axis : "0 0 1 1",
19383 //                axisxlabels :  xdata
19384 //                });
19385
19386     },
19387
19388     load : function(graphtype,xdata,opts){
19389         this.raphael.clear();
19390         if(!graphtype) {
19391             graphtype = this.graphtype;
19392         }
19393         if(!opts){
19394             opts = this.opts;
19395         }
19396         var r = this.raphael,
19397             fin = function () {
19398                 this.flag = r.popup(this.bar.x, this.bar.y, this.bar.value || "0").insertBefore(this);
19399             },
19400             fout = function () {
19401                 this.flag.animate({opacity: 0}, 300, function () {this.remove();});
19402             },
19403             pfin = function() {
19404                 this.sector.stop();
19405                 this.sector.scale(1.1, 1.1, this.cx, this.cy);
19406
19407                 if (this.label) {
19408                     this.label[0].stop();
19409                     this.label[0].attr({ r: 7.5 });
19410                     this.label[1].attr({ "font-weight": 800 });
19411                 }
19412             },
19413             pfout = function() {
19414                 this.sector.animate({ transform: 's1 1 ' + this.cx + ' ' + this.cy }, 500, "bounce");
19415
19416                 if (this.label) {
19417                     this.label[0].animate({ r: 5 }, 500, "bounce");
19418                     this.label[1].attr({ "font-weight": 400 });
19419                 }
19420             };
19421
19422         switch(graphtype){
19423             case 'bar':
19424                 this.raphael.barchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
19425                 break;
19426             case 'hbar':
19427                 this.raphael.hbarchart(this.g_x,this.g_y,this.g_width,this.g_height,xdata,opts).hover(fin,fout);
19428                 break;
19429             case 'pie':
19430 //                opts = { legend: ["%% - Enterprise Users", "% - ddd","Chrome Users"], legendpos: "west", 
19431 //                href: ["http://raphaeljs.com", "http://g.raphaeljs.com"]};
19432 //            
19433                 this.raphael.piechart(this.g_x,this.g_y,this.g_r,xdata,opts).hover(pfin, pfout);
19434                 
19435                 break;
19436
19437         }
19438         
19439         if(this.title){
19440             this.raphael.text(this.title.x, this.title.y, this.title.text).attr(this.title.attr);
19441         }
19442         
19443     },
19444     
19445     setTitle: function(o)
19446     {
19447         this.title = o;
19448     },
19449     
19450     initEvents: function() {
19451         
19452         if(!this.href){
19453             this.el.on('click', this.onClick, this);
19454         }
19455     },
19456     
19457     onClick : function(e)
19458     {
19459         Roo.log('img onclick');
19460         this.fireEvent('click', this, e);
19461     }
19462    
19463 });
19464
19465  
19466 /*
19467  * - LGPL
19468  *
19469  * numberBox
19470  * 
19471  */
19472 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
19473
19474 /**
19475  * @class Roo.bootstrap.dash.NumberBox
19476  * @extends Roo.bootstrap.Component
19477  * Bootstrap NumberBox class
19478  * @cfg {String} bgcolor Box background color, such as (aqua | green | yellow | red etc..) Default aqua
19479  * @cfg {String} headline Box headline
19480  * @cfg {String} content Box content
19481  * @cfg {String} icon Box icon
19482  * @cfg {String} footer Footer text
19483  * @cfg {String} fhref Footer href
19484  * 
19485  * @constructor
19486  * Create a new NumberBox
19487  * @param {Object} config The config object
19488  */
19489
19490
19491 Roo.bootstrap.dash.NumberBox = function(config){
19492     Roo.bootstrap.dash.NumberBox.superclass.constructor.call(this, config);
19493     
19494 };
19495
19496 Roo.extend(Roo.bootstrap.dash.NumberBox, Roo.bootstrap.Component,  {
19497     
19498     bgcolor : 'aqua',
19499     headline : '',
19500     content : '',
19501     icon : '',
19502     footer : '',
19503     fhref : '',
19504     ficon : '',
19505     
19506     getAutoCreate : function(){
19507         
19508         var cfg = {
19509             tag : 'div',
19510             cls : 'small-box bg-' + this.bgcolor,
19511             cn : [
19512                 {
19513                     tag : 'div',
19514                     cls : 'inner',
19515                     cn :[
19516                         {
19517                             tag : 'h3',
19518                             cls : 'roo-headline',
19519                             html : this.headline
19520                         },
19521                         {
19522                             tag : 'p',
19523                             cls : 'roo-content',
19524                             html : this.content
19525                         }
19526                     ]
19527                 }
19528             ]
19529         }
19530         
19531         if(this.icon){
19532             cfg.cn.push({
19533                 tag : 'div',
19534                 cls : 'icon',
19535                 cn :[
19536                     {
19537                         tag : 'i',
19538                         cls : 'ion ' + this.icon
19539                     }
19540                 ]
19541             });
19542         }
19543         
19544         if(this.footer){
19545             var footer = {
19546                 tag : 'a',
19547                 cls : 'small-box-footer',
19548                 href : this.fhref || '#',
19549                 html : this.footer
19550             };
19551             
19552             cfg.cn.push(footer);
19553             
19554         }
19555         
19556         return  cfg;
19557     },
19558
19559     onRender : function(ct,position){
19560         Roo.bootstrap.dash.NumberBox.superclass.onRender.call(this,ct,position);
19561
19562
19563        
19564                 
19565     },
19566
19567     setHeadline: function (value)
19568     {
19569         this.el.select('.roo-headline',true).first().dom.innerHTML = value;
19570     },
19571     
19572     setFooter: function (value, href)
19573     {
19574         this.el.select('a.small-box-footer',true).first().dom.innerHTML = value;
19575         
19576         if(href){
19577             this.el.select('a.small-box-footer',true).first().attr('href', href);
19578         }
19579         
19580     },
19581
19582     setContent: function (value)
19583     {
19584         this.el.select('.roo-content',true).first().dom.innerHTML = value;
19585     },
19586
19587     initEvents: function() 
19588     {   
19589         
19590     }
19591     
19592 });
19593
19594  
19595 /*
19596  * - LGPL
19597  *
19598  * TabBox
19599  * 
19600  */
19601 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
19602
19603 /**
19604  * @class Roo.bootstrap.dash.TabBox
19605  * @extends Roo.bootstrap.Component
19606  * Bootstrap TabBox class
19607  * @cfg {String} title Title of the TabBox
19608  * @cfg {String} icon Icon of the TabBox
19609  * @cfg {Boolean} showtabs (true|false) show the tabs default true
19610  * 
19611  * @constructor
19612  * Create a new TabBox
19613  * @param {Object} config The config object
19614  */
19615
19616
19617 Roo.bootstrap.dash.TabBox = function(config){
19618     Roo.bootstrap.dash.TabBox.superclass.constructor.call(this, config);
19619     this.addEvents({
19620         // raw events
19621         /**
19622          * @event addpane
19623          * When a pane is added
19624          * @param {Roo.bootstrap.dash.TabPane} pane
19625          */
19626         "addpane" : true
19627          
19628     });
19629 };
19630
19631 Roo.extend(Roo.bootstrap.dash.TabBox, Roo.bootstrap.Component,  {
19632
19633     title : '',
19634     icon : false,
19635     showtabs : true,
19636     
19637     getChildContainer : function()
19638     {
19639         return this.el.select('.tab-content', true).first();
19640     },
19641     
19642     getAutoCreate : function(){
19643         
19644         var header = {
19645             tag: 'li',
19646             cls: 'pull-left header',
19647             html: this.title,
19648             cn : []
19649         };
19650         
19651         if(this.icon){
19652             header.cn.push({
19653                 tag: 'i',
19654                 cls: 'fa ' + this.icon
19655             });
19656         }
19657         
19658         
19659         var cfg = {
19660             tag: 'div',
19661             cls: 'nav-tabs-custom',
19662             cn: [
19663                 {
19664                     tag: 'ul',
19665                     cls: 'nav nav-tabs pull-right',
19666                     cn: [
19667                         header
19668                     ]
19669                 },
19670                 {
19671                     tag: 'div',
19672                     cls: 'tab-content no-padding',
19673                     cn: []
19674                 }
19675             ]
19676         }
19677
19678         return  cfg;
19679     },
19680     initEvents : function()
19681     {
19682         //Roo.log('add add pane handler');
19683         this.on('addpane', this.onAddPane, this);
19684     },
19685      /**
19686      * Updates the box title
19687      * @param {String} html to set the title to.
19688      */
19689     setTitle : function(value)
19690     {
19691         this.el.select('.nav-tabs .header', true).first().dom.innerHTML = value;
19692     },
19693     onAddPane : function(pane)
19694     {
19695         //Roo.log('addpane');
19696         //Roo.log(pane);
19697         // tabs are rendere left to right..
19698         if(!this.showtabs){
19699             return;
19700         }
19701         
19702         var ctr = this.el.select('.nav-tabs', true).first();
19703          
19704          
19705         var existing = ctr.select('.nav-tab',true);
19706         var qty = existing.getCount();;
19707         
19708         
19709         var tab = ctr.createChild({
19710             tag : 'li',
19711             cls : 'nav-tab' + (qty ? '' : ' active'),
19712             cn : [
19713                 {
19714                     tag : 'a',
19715                     href:'#',
19716                     html : pane.title
19717                 }
19718             ]
19719         }, qty ? existing.first().dom : ctr.select('.header', true).first().dom );
19720         pane.tab = tab;
19721         
19722         tab.on('click', this.onTabClick.createDelegate(this, [pane], true));
19723         if (!qty) {
19724             pane.el.addClass('active');
19725         }
19726         
19727                 
19728     },
19729     onTabClick : function(ev,un,ob,pane)
19730     {
19731         //Roo.log('tab - prev default');
19732         ev.preventDefault();
19733         
19734         
19735         this.el.select('.nav-tabs li.nav-tab', true).removeClass('active');
19736         pane.tab.addClass('active');
19737         //Roo.log(pane.title);
19738         this.getChildContainer().select('.tab-pane',true).removeClass('active');
19739         // technically we should have a deactivate event.. but maybe add later.
19740         // and it should not de-activate the selected tab...
19741         
19742         pane.el.addClass('active');
19743         pane.fireEvent('activate');
19744         
19745         
19746     }
19747     
19748     
19749 });
19750
19751  
19752 /*
19753  * - LGPL
19754  *
19755  * Tab pane
19756  * 
19757  */
19758 Roo.bootstrap.dash = Roo.bootstrap.dash || {};
19759 /**
19760  * @class Roo.bootstrap.TabPane
19761  * @extends Roo.bootstrap.Component
19762  * Bootstrap TabPane class
19763  * @cfg {Boolean} active (false | true) Default false
19764  * @cfg {String} title title of panel
19765
19766  * 
19767  * @constructor
19768  * Create a new TabPane
19769  * @param {Object} config The config object
19770  */
19771
19772 Roo.bootstrap.dash.TabPane = function(config){
19773     Roo.bootstrap.dash.TabPane.superclass.constructor.call(this, config);
19774     
19775 };
19776
19777 Roo.extend(Roo.bootstrap.dash.TabPane, Roo.bootstrap.Component,  {
19778     
19779     active : false,
19780     title : '',
19781     
19782     // the tabBox that this is attached to.
19783     tab : false,
19784      
19785     getAutoCreate : function() 
19786     {
19787         var cfg = {
19788             tag: 'div',
19789             cls: 'tab-pane'
19790         }
19791         
19792         if(this.active){
19793             cfg.cls += ' active';
19794         }
19795         
19796         return cfg;
19797     },
19798     initEvents  : function()
19799     {
19800         //Roo.log('trigger add pane handler');
19801         this.parent().fireEvent('addpane', this)
19802     },
19803     
19804      /**
19805      * Updates the tab title 
19806      * @param {String} html to set the title to.
19807      */
19808     setTitle: function(str)
19809     {
19810         if (!this.tab) {
19811             return;
19812         }
19813         this.title = str;
19814         this.tab.select('a', true).first().dom.innerHTML = str;
19815         
19816     }
19817     
19818     
19819     
19820 });
19821
19822  
19823
19824
19825  /*
19826  * - LGPL
19827  *
19828  * menu
19829  * 
19830  */
19831 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
19832
19833 /**
19834  * @class Roo.bootstrap.menu.Menu
19835  * @extends Roo.bootstrap.Component
19836  * Bootstrap Menu class - container for Menu
19837  * @cfg {String} html Text of the menu
19838  * @cfg {String} weight (default | primary | success | info | warning | danger | inverse)
19839  * @cfg {String} icon Font awesome icon
19840  * @cfg {String} pos Menu align to (top | bottom) default bottom
19841  * 
19842  * 
19843  * @constructor
19844  * Create a new Menu
19845  * @param {Object} config The config object
19846  */
19847
19848
19849 Roo.bootstrap.menu.Menu = function(config){
19850     Roo.bootstrap.menu.Menu.superclass.constructor.call(this, config);
19851     
19852     this.addEvents({
19853         /**
19854          * @event beforeshow
19855          * Fires before this menu is displayed
19856          * @param {Roo.bootstrap.menu.Menu} this
19857          */
19858         beforeshow : true,
19859         /**
19860          * @event beforehide
19861          * Fires before this menu is hidden
19862          * @param {Roo.bootstrap.menu.Menu} this
19863          */
19864         beforehide : true,
19865         /**
19866          * @event show
19867          * Fires after this menu is displayed
19868          * @param {Roo.bootstrap.menu.Menu} this
19869          */
19870         show : true,
19871         /**
19872          * @event hide
19873          * Fires after this menu is hidden
19874          * @param {Roo.bootstrap.menu.Menu} this
19875          */
19876         hide : true,
19877         /**
19878          * @event click
19879          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
19880          * @param {Roo.bootstrap.menu.Menu} this
19881          * @param {Roo.EventObject} e
19882          */
19883         click : true
19884     });
19885     
19886 };
19887
19888 Roo.extend(Roo.bootstrap.menu.Menu, Roo.bootstrap.Component,  {
19889     
19890     submenu : false,
19891     html : '',
19892     weight : 'default',
19893     icon : false,
19894     pos : 'bottom',
19895     
19896     
19897     getChildContainer : function() {
19898         if(this.isSubMenu){
19899             return this.el;
19900         }
19901         
19902         return this.el.select('ul.dropdown-menu', true).first();  
19903     },
19904     
19905     getAutoCreate : function()
19906     {
19907         var text = [
19908             {
19909                 tag : 'span',
19910                 cls : 'roo-menu-text',
19911                 html : this.html
19912             }
19913         ];
19914         
19915         if(this.icon){
19916             text.unshift({
19917                 tag : 'i',
19918                 cls : 'fa ' + this.icon
19919             })
19920         }
19921         
19922         
19923         var cfg = {
19924             tag : 'div',
19925             cls : 'btn-group',
19926             cn : [
19927                 {
19928                     tag : 'button',
19929                     cls : 'dropdown-button btn btn-' + this.weight,
19930                     cn : text
19931                 },
19932                 {
19933                     tag : 'button',
19934                     cls : 'dropdown-toggle btn btn-' + this.weight,
19935                     cn : [
19936                         {
19937                             tag : 'span',
19938                             cls : 'caret'
19939                         }
19940                     ]
19941                 },
19942                 {
19943                     tag : 'ul',
19944                     cls : 'dropdown-menu'
19945                 }
19946             ]
19947             
19948         };
19949         
19950         if(this.pos == 'top'){
19951             cfg.cls += ' dropup';
19952         }
19953         
19954         if(this.isSubMenu){
19955             cfg = {
19956                 tag : 'ul',
19957                 cls : 'dropdown-menu'
19958             }
19959         }
19960         
19961         return cfg;
19962     },
19963     
19964     onRender : function(ct, position)
19965     {
19966         this.isSubMenu = ct.hasClass('dropdown-submenu');
19967         
19968         Roo.bootstrap.menu.Menu.superclass.onRender.call(this, ct, position);
19969     },
19970     
19971     initEvents : function() 
19972     {
19973         if(this.isSubMenu){
19974             return;
19975         }
19976         
19977         this.hidden = true;
19978         
19979         this.triggerEl = this.el.select('button.dropdown-toggle', true).first();
19980         this.triggerEl.on('click', this.onTriggerPress, this);
19981         
19982         this.buttonEl = this.el.select('button.dropdown-button', true).first();
19983         this.buttonEl.on('click', this.onClick, this);
19984         
19985     },
19986     
19987     list : function()
19988     {
19989         if(this.isSubMenu){
19990             return this.el;
19991         }
19992         
19993         return this.el.select('ul.dropdown-menu', true).first();
19994     },
19995     
19996     onClick : function(e)
19997     {
19998         this.fireEvent("click", this, e);
19999     },
20000     
20001     onTriggerPress  : function(e)
20002     {   
20003         if (this.isVisible()) {
20004             this.hide();
20005         } else {
20006             this.show();
20007         }
20008     },
20009     
20010     isVisible : function(){
20011         return !this.hidden;
20012     },
20013     
20014     show : function()
20015     {
20016         this.fireEvent("beforeshow", this);
20017         
20018         this.hidden = false;
20019         this.el.addClass('open');
20020         
20021         Roo.get(document).on("mouseup", this.onMouseUp, this);
20022         
20023         this.fireEvent("show", this);
20024         
20025         
20026     },
20027     
20028     hide : function()
20029     {
20030         this.fireEvent("beforehide", this);
20031         
20032         this.hidden = true;
20033         this.el.removeClass('open');
20034         
20035         Roo.get(document).un("mouseup", this.onMouseUp);
20036         
20037         this.fireEvent("hide", this);
20038     },
20039     
20040     onMouseUp : function()
20041     {
20042         this.hide();
20043     }
20044     
20045 });
20046
20047  
20048  /*
20049  * - LGPL
20050  *
20051  * menu item
20052  * 
20053  */
20054 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
20055
20056 /**
20057  * @class Roo.bootstrap.menu.Item
20058  * @extends Roo.bootstrap.Component
20059  * Bootstrap MenuItem class
20060  * @cfg {Boolean} submenu (true | false) default false
20061  * @cfg {String} html text of the item
20062  * @cfg {String} href the link
20063  * @cfg {Boolean} disable (true | false) default false
20064  * @cfg {Boolean} preventDefault (true | false) default true
20065  * @cfg {String} icon Font awesome icon
20066  * @cfg {String} pos Submenu align to (left | right) default right 
20067  * 
20068  * 
20069  * @constructor
20070  * Create a new Item
20071  * @param {Object} config The config object
20072  */
20073
20074
20075 Roo.bootstrap.menu.Item = function(config){
20076     Roo.bootstrap.menu.Item.superclass.constructor.call(this, config);
20077     this.addEvents({
20078         /**
20079          * @event mouseover
20080          * Fires when the mouse is hovering over this menu
20081          * @param {Roo.bootstrap.menu.Item} this
20082          * @param {Roo.EventObject} e
20083          */
20084         mouseover : true,
20085         /**
20086          * @event mouseout
20087          * Fires when the mouse exits this menu
20088          * @param {Roo.bootstrap.menu.Item} this
20089          * @param {Roo.EventObject} e
20090          */
20091         mouseout : true,
20092         // raw events
20093         /**
20094          * @event click
20095          * The raw click event for the entire grid.
20096          * @param {Roo.EventObject} e
20097          */
20098         click : true
20099     });
20100 };
20101
20102 Roo.extend(Roo.bootstrap.menu.Item, Roo.bootstrap.Component,  {
20103     
20104     submenu : false,
20105     href : '',
20106     html : '',
20107     preventDefault: true,
20108     disable : false,
20109     icon : false,
20110     pos : 'right',
20111     
20112     getAutoCreate : function()
20113     {
20114         var text = [
20115             {
20116                 tag : 'span',
20117                 cls : 'roo-menu-item-text',
20118                 html : this.html
20119             }
20120         ];
20121         
20122         if(this.icon){
20123             text.unshift({
20124                 tag : 'i',
20125                 cls : 'fa ' + this.icon
20126             })
20127         }
20128         
20129         var cfg = {
20130             tag : 'li',
20131             cn : [
20132                 {
20133                     tag : 'a',
20134                     href : this.href || '#',
20135                     cn : text
20136                 }
20137             ]
20138         };
20139         
20140         if(this.disable){
20141             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'disabled' : (cfg.cls + ' disabled');
20142         }
20143         
20144         if(this.submenu){
20145             cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'dropdown-submenu' : (cfg.cls + ' dropdown-submenu');
20146             
20147             if(this.pos == 'left'){
20148                 cfg.cls = (typeof(cfg.cls) == 'undefined') ? 'pull-left' : (cfg.cls + ' pull-left');
20149             }
20150         }
20151         
20152         return cfg;
20153     },
20154     
20155     initEvents : function() 
20156     {
20157         this.el.on('mouseover', this.onMouseOver, this);
20158         this.el.on('mouseout', this.onMouseOut, this);
20159         
20160         this.el.select('a', true).first().on('click', this.onClick, this);
20161         
20162     },
20163     
20164     onClick : function(e)
20165     {
20166         if(this.preventDefault){
20167             e.preventDefault();
20168         }
20169         
20170         this.fireEvent("click", this, e);
20171     },
20172     
20173     onMouseOver : function(e)
20174     {
20175         if(this.submenu && this.pos == 'left'){
20176             this.el.select('ul.dropdown-menu', true).first().setLeft(this.el.select('ul.dropdown-menu', true).first().getWidth() * -1);
20177         }
20178         
20179         this.fireEvent("mouseover", this, e);
20180     },
20181     
20182     onMouseOut : function(e)
20183     {
20184         this.fireEvent("mouseout", this, e);
20185     }
20186 });
20187
20188  
20189
20190  /*
20191  * - LGPL
20192  *
20193  * menu separator
20194  * 
20195  */
20196 Roo.bootstrap.menu = Roo.bootstrap.menu || {};
20197
20198 /**
20199  * @class Roo.bootstrap.menu.Separator
20200  * @extends Roo.bootstrap.Component
20201  * Bootstrap Separator class
20202  * 
20203  * @constructor
20204  * Create a new Separator
20205  * @param {Object} config The config object
20206  */
20207
20208
20209 Roo.bootstrap.menu.Separator = function(config){
20210     Roo.bootstrap.menu.Separator.superclass.constructor.call(this, config);
20211 };
20212
20213 Roo.extend(Roo.bootstrap.menu.Separator, Roo.bootstrap.Component,  {
20214     
20215     getAutoCreate : function(){
20216         var cfg = {
20217             tag : 'li',
20218             cls: 'divider'
20219         };
20220         
20221         return cfg;
20222     }
20223    
20224 });
20225
20226  
20227
20228