fix compile
[roojs1] / roojs-debug.js
1 /*
2  * Based on:
3  * Ext JS Library 1.1.1
4  * Copyright(c) 2006-2007, Ext JS, LLC.
5  *
6  * Originally Released Under LGPL - original licence link has changed is not relivant.
7  *
8  * Fork - LGPL
9  * <script type="text/javascript">
10  */
11  
12
13
14
15
16 // for old browsers
17 window["undefined"] = window["undefined"];
18
19 /**
20  * @class Roo
21  * Roo core utilities and functions.
22  * @static
23  */
24 var Roo = {}; 
25 /**
26  * Copies all the properties of config to obj.
27  * @param {Object} obj The receiver of the properties
28  * @param {Object} config The source of the properties
29  * @param {Object} defaults A different object that will also be applied for default values
30  * @return {Object} returns obj
31  * @member Roo apply
32  */
33
34  
35 Roo.apply = function(o, c, defaults){
36     if(defaults){
37         // no "this" reference for friendly out of scope calls
38         Roo.apply(o, defaults);
39     }
40     if(o && c && typeof c == 'object'){
41         for(var p in c){
42             o[p] = c[p];
43         }
44     }
45     return o;
46 };
47
48
49 (function(){
50     var idSeed = 0;
51     var ua = navigator.userAgent.toLowerCase();
52
53     var isStrict = document.compatMode == "CSS1Compat",
54         isOpera = ua.indexOf("opera") > -1,
55         isSafari = (/webkit|khtml/).test(ua),
56         isFirefox = ua.indexOf("firefox") > -1,
57         isIE = ua.indexOf("msie") > -1,
58         isIE7 = ua.indexOf("msie 7") > -1,
59         isIE11 = /trident.*rv\:11\./.test(ua),
60         isEdge = ua.indexOf("edge") > -1,
61         isGecko = !isSafari && ua.indexOf("gecko") > -1,
62         isBorderBox = isIE && !isStrict,
63         isWindows = (ua.indexOf("windows") != -1 || ua.indexOf("win32") != -1),
64         isMac = (ua.indexOf("macintosh") != -1 || ua.indexOf("mac os x") != -1),
65         isLinux = (ua.indexOf("linux") != -1),
66         isSecure = window.location.href.toLowerCase().indexOf("https") === 0,
67         isIOS = /iphone|ipad/.test(ua),
68         isAndroid = /android/.test(ua),
69         isTouch =  (function() {
70             try {
71                 if (ua.indexOf('chrome') != -1 && ua.indexOf('android') == -1) {
72                     window.addEventListener('touchstart', function __set_has_touch__ () {
73                         Roo.isTouch = true;
74                         window.removeEventListener('touchstart', __set_has_touch__);
75                     });
76                     return false; // no touch on chrome!?
77                 }
78                 document.createEvent("TouchEvent");  
79                 return true;  
80             } catch (e) {  
81                 return false;  
82             } 
83             
84         })();
85     // remove css image flicker
86         if(isIE && !isIE7){
87         try{
88             document.execCommand("BackgroundImageCache", false, true);
89         }catch(e){}
90     }
91     
92     Roo.apply(Roo, {
93         /**
94          * True if the browser is in strict mode
95          * @type Boolean
96          */
97         isStrict : isStrict,
98         /**
99          * True if the page is running over SSL
100          * @type Boolean
101          */
102         isSecure : isSecure,
103         /**
104          * True when the document is fully initialized and ready for action
105          * @type Boolean
106          */
107         isReady : false,
108         /**
109          * Turn on debugging output (currently only the factory uses this)
110          * @type Boolean
111          */
112         
113         debug: false,
114
115         /**
116          * True to automatically uncache orphaned Roo.Elements periodically (defaults to true)
117          * @type Boolean
118          */
119         enableGarbageCollector : true,
120
121         /**
122          * True to automatically purge event listeners after uncaching an element (defaults to false).
123          * Note: this only happens if enableGarbageCollector is true.
124          * @type Boolean
125          */
126         enableListenerCollection:false,
127
128         /**
129          * URL to a blank file used by Roo when in secure mode for iframe src and onReady src to prevent
130          * the IE insecure content warning (defaults to javascript:false).
131          * @type String
132          */
133         SSL_SECURE_URL : "javascript:false",
134
135         /**
136          * URL to a 1x1 transparent gif image used by Roo to create inline icons with CSS background images. (Defaults to
137          * "http://Roojs.com/s.gif" and you should change this to a URL on your server).
138          * @type String
139          */
140         BLANK_IMAGE_URL : "http:/"+"/localhost/s.gif",
141
142         emptyFn : function(){},
143         
144         /**
145          * Copies all the properties of config to obj if they don't already exist.
146          * @param {Object} obj The receiver of the properties
147          * @param {Object} config The source of the properties
148          * @return {Object} returns obj
149          */
150         applyIf : function(o, c){
151             if(o && c){
152                 for(var p in c){
153                     if(typeof o[p] == "undefined"){ o[p] = c[p]; }
154                 }
155             }
156             return o;
157         },
158
159         /**
160          * Applies event listeners to elements by selectors when the document is ready.
161          * The event name is specified with an @ suffix.
162 <pre><code>
163 Roo.addBehaviors({
164    // add a listener for click on all anchors in element with id foo
165    '#foo a@click' : function(e, t){
166        // do something
167    },
168
169    // add the same listener to multiple selectors (separated by comma BEFORE the @)
170    '#foo a, #bar span.some-class@mouseover' : function(){
171        // do something
172    }
173 });
174 </code></pre>
175          * @param {Object} obj The list of behaviors to apply
176          */
177         addBehaviors : function(o){
178             if(!Roo.isReady){
179                 Roo.onReady(function(){
180                     Roo.addBehaviors(o);
181                 });
182                 return;
183             }
184             var cache = {}; // simple cache for applying multiple behaviors to same selector does query multiple times
185             for(var b in o){
186                 var parts = b.split('@');
187                 if(parts[1]){ // for Object prototype breakers
188                     var s = parts[0];
189                     if(!cache[s]){
190                         cache[s] = Roo.select(s);
191                     }
192                     cache[s].on(parts[1], o[b]);
193                 }
194             }
195             cache = null;
196         },
197
198         /**
199          * Generates unique ids. If the element already has an id, it is unchanged
200          * @param {String/HTMLElement/Element} el (optional) The element to generate an id for
201          * @param {String} prefix (optional) Id prefix (defaults "Roo-gen")
202          * @return {String} The generated Id.
203          */
204         id : function(el, prefix){
205             prefix = prefix || "roo-gen";
206             el = Roo.getDom(el);
207             var id = prefix + (++idSeed);
208             return el ? (el.id ? el.id : (el.id = id)) : id;
209         },
210          
211        
212         /**
213          * Extends one class with another class and optionally overrides members with the passed literal. This class
214          * also adds the function "override()" to the class that can be used to override
215          * members on an instance.
216          * @param {Object} subclass The class inheriting the functionality
217          * @param {Object} superclass The class being extended
218          * @param {Object} overrides (optional) A literal with members
219          * @method extend
220          */
221         extend : function(){
222             // inline overrides
223             var io = function(o){
224                 for(var m in o){
225                     this[m] = o[m];
226                 }
227             };
228             return function(sb, sp, overrides){
229                 if(typeof sp == 'object'){ // eg. prototype, rather than function constructor..
230                     overrides = sp;
231                     sp = sb;
232                     sb = function(){sp.apply(this, arguments);};
233                 }
234                 var F = function(){}, sbp, spp = sp.prototype;
235                 F.prototype = spp;
236                 sbp = sb.prototype = new F();
237                 sbp.constructor=sb;
238                 sb.superclass=spp;
239                 
240                 if(spp.constructor == Object.prototype.constructor){
241                     spp.constructor=sp;
242                    
243                 }
244                 
245                 sb.override = function(o){
246                     Roo.override(sb, o);
247                 };
248                 sbp.override = io;
249                 Roo.override(sb, overrides);
250                 return sb;
251             };
252         }(),
253
254         /**
255          * Adds a list of functions to the prototype of an existing class, overwriting any existing methods with the same name.
256          * Usage:<pre><code>
257 Roo.override(MyClass, {
258     newMethod1: function(){
259         // etc.
260     },
261     newMethod2: function(foo){
262         // etc.
263     }
264 });
265  </code></pre>
266          * @param {Object} origclass The class to override
267          * @param {Object} overrides The list of functions to add to origClass.  This should be specified as an object literal
268          * containing one or more methods.
269          * @method override
270          */
271         override : function(origclass, overrides){
272             if(overrides){
273                 var p = origclass.prototype;
274                 for(var method in overrides){
275                     p[method] = overrides[method];
276                 }
277             }
278         },
279         /**
280          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
281          * <pre><code>
282 Roo.namespace('Company', 'Company.data');
283 Company.Widget = function() { ... }
284 Company.data.CustomStore = function(config) { ... }
285 </code></pre>
286          * @param {String} namespace1
287          * @param {String} namespace2
288          * @param {String} etc
289          * @method namespace
290          */
291         namespace : function(){
292             var a=arguments, o=null, i, j, d, rt;
293             for (i=0; i<a.length; ++i) {
294                 d=a[i].split(".");
295                 rt = d[0];
296                 /** eval:var:o */
297                 eval('if (typeof ' + rt + ' == "undefined"){' + rt + ' = {};} o = ' + rt + ';');
298                 for (j=1; j<d.length; ++j) {
299                     o[d[j]]=o[d[j]] || {};
300                     o=o[d[j]];
301                 }
302             }
303         },
304         /**
305          * Creates namespaces to be used for scoping variables and classes so that they are not global.  Usage:
306          * <pre><code>
307 Roo.factory({ xns: Roo.data, xtype : 'Store', .....});
308 Roo.factory(conf, Roo.data);
309 </code></pre>
310          * @param {String} classname
311          * @param {String} namespace (optional)
312          * @method factory
313          */
314          
315         factory : function(c, ns)
316         {
317             // no xtype, no ns or c.xns - or forced off by c.xns
318             if (!c.xtype   || (!ns && !c.xns) ||  (c.xns === false)) { // not enough info...
319                 return c;
320             }
321             ns = c.xns ? c.xns : ns; // if c.xns is set, then use that..
322             if (c.constructor == ns[c.xtype]) {// already created...
323                 return c;
324             }
325             if (ns[c.xtype]) {
326                 if (Roo.debug) { Roo.log("Roo.Factory(" + c.xtype + ")"); }
327                 var ret = new ns[c.xtype](c);
328                 ret.xns = false;
329                 return ret;
330             }
331             c.xns = false; // prevent recursion..
332             return c;
333         },
334          /**
335          * Logs to console if it can.
336          *
337          * @param {String|Object} string
338          * @method log
339          */
340         log : function(s)
341         {
342             if ((typeof(console) == 'undefined') || (typeof(console.log) == 'undefined')) {
343                 return; // alerT?
344             }
345             
346             console.log(s);
347         },
348         /**
349          * Takes an object and converts it to an encoded URL. e.g. Roo.urlEncode({foo: 1, bar: 2}); would return "foo=1&bar=2".  Optionally, property values can be arrays, instead of keys and the resulting string that's returned will contain a name/value pair for each array value.
350          * @param {Object} o
351          * @return {String}
352          */
353         urlEncode : function(o){
354             if(!o){
355                 return "";
356             }
357             var buf = [];
358             for(var key in o){
359                 var ov = o[key], k = Roo.encodeURIComponent(key);
360                 var type = typeof ov;
361                 if(type == 'undefined'){
362                     buf.push(k, "=&");
363                 }else if(type != "function" && type != "object"){
364                     buf.push(k, "=", Roo.encodeURIComponent(ov), "&");
365                 }else if(ov instanceof Array){
366                     if (ov.length) {
367                             for(var i = 0, len = ov.length; i < len; i++) {
368                                 buf.push(k, "=", Roo.encodeURIComponent(ov[i] === undefined ? '' : ov[i]), "&");
369                             }
370                         } else {
371                             buf.push(k, "=&");
372                         }
373                 }
374             }
375             buf.pop();
376             return buf.join("");
377         },
378          /**
379          * Safe version of encodeURIComponent
380          * @param {String} data 
381          * @return {String} 
382          */
383         
384         encodeURIComponent : function (data)
385         {
386             try {
387                 return encodeURIComponent(data);
388             } catch(e) {} // should be an uri encode error.
389             
390             if (data == '' || data == null){
391                return '';
392             }
393             // http://stackoverflow.com/questions/2596483/unicode-and-uri-encoding-decoding-and-escaping-in-javascript
394             function nibble_to_hex(nibble){
395                 var chars = '0123456789ABCDEF';
396                 return chars.charAt(nibble);
397             }
398             data = data.toString();
399             var buffer = '';
400             for(var i=0; i<data.length; i++){
401                 var c = data.charCodeAt(i);
402                 var bs = new Array();
403                 if (c > 0x10000){
404                         // 4 bytes
405                     bs[0] = 0xF0 | ((c & 0x1C0000) >>> 18);
406                     bs[1] = 0x80 | ((c & 0x3F000) >>> 12);
407                     bs[2] = 0x80 | ((c & 0xFC0) >>> 6);
408                     bs[3] = 0x80 | (c & 0x3F);
409                 }else if (c > 0x800){
410                          // 3 bytes
411                     bs[0] = 0xE0 | ((c & 0xF000) >>> 12);
412                     bs[1] = 0x80 | ((c & 0xFC0) >>> 6);
413                     bs[2] = 0x80 | (c & 0x3F);
414                 }else if (c > 0x80){
415                        // 2 bytes
416                     bs[0] = 0xC0 | ((c & 0x7C0) >>> 6);
417                     bs[1] = 0x80 | (c & 0x3F);
418                 }else{
419                         // 1 byte
420                     bs[0] = c;
421                 }
422                 for(var j=0; j<bs.length; j++){
423                     var b = bs[j];
424                     var hex = nibble_to_hex((b & 0xF0) >>> 4) 
425                             + nibble_to_hex(b &0x0F);
426                     buffer += '%'+hex;
427                }
428             }
429             return buffer;    
430              
431         },
432
433         /**
434          * Takes an encoded URL and and converts it to an object. e.g. Roo.urlDecode("foo=1&bar=2"); would return {foo: 1, bar: 2} or Roo.urlDecode("foo=1&bar=2&bar=3&bar=4", true); would return {foo: 1, bar: [2, 3, 4]}.
435          * @param {String} string
436          * @param {Boolean} overwrite (optional) Items of the same name will overwrite previous values instead of creating an an array (Defaults to false).
437          * @return {Object} A literal with members
438          */
439         urlDecode : function(string, overwrite){
440             if(!string || !string.length){
441                 return {};
442             }
443             var obj = {};
444             var pairs = string.split('&');
445             var pair, name, value;
446             for(var i = 0, len = pairs.length; i < len; i++){
447                 pair = pairs[i].split('=');
448                 name = decodeURIComponent(pair[0]);
449                 value = decodeURIComponent(pair[1]);
450                 if(overwrite !== true){
451                     if(typeof obj[name] == "undefined"){
452                         obj[name] = value;
453                     }else if(typeof obj[name] == "string"){
454                         obj[name] = [obj[name]];
455                         obj[name].push(value);
456                     }else{
457                         obj[name].push(value);
458                     }
459                 }else{
460                     obj[name] = value;
461                 }
462             }
463             return obj;
464         },
465
466         /**
467          * Iterates an array calling the passed function with each item, stopping if your function returns false. If the
468          * passed array is not really an array, your function is called once with it.
469          * The supplied function is called with (Object item, Number index, Array allItems).
470          * @param {Array/NodeList/Mixed} array
471          * @param {Function} fn
472          * @param {Object} scope
473          */
474         each : function(array, fn, scope){
475             if(typeof array.length == "undefined" || typeof array == "string"){
476                 array = [array];
477             }
478             for(var i = 0, len = array.length; i < len; i++){
479                 if(fn.call(scope || array[i], array[i], i, array) === false){ return i; };
480             }
481         },
482
483         // deprecated
484         combine : function(){
485             var as = arguments, l = as.length, r = [];
486             for(var i = 0; i < l; i++){
487                 var a = as[i];
488                 if(a instanceof Array){
489                     r = r.concat(a);
490                 }else if(a.length !== undefined && !a.substr){
491                     r = r.concat(Array.prototype.slice.call(a, 0));
492                 }else{
493                     r.push(a);
494                 }
495             }
496             return r;
497         },
498
499         /**
500          * Escapes the passed string for use in a regular expression
501          * @param {String} str
502          * @return {String}
503          */
504         escapeRe : function(s) {
505             return s.replace(/([.*+?^${}()|[\]\/\\])/g, "\\$1");
506         },
507
508         // internal
509         callback : function(cb, scope, args, delay){
510             if(typeof cb == "function"){
511                 if(delay){
512                     cb.defer(delay, scope, args || []);
513                 }else{
514                     cb.apply(scope, args || []);
515                 }
516             }
517         },
518
519         /**
520          * Return the dom node for the passed string (id), dom node, or Roo.Element
521          * @param {String/HTMLElement/Roo.Element} el
522          * @return HTMLElement
523          */
524         getDom : function(el){
525             if(!el){
526                 return null;
527             }
528             return el.dom ? el.dom : (typeof el == 'string' ? document.getElementById(el) : el);
529         },
530
531         /**
532         * Shorthand for {@link Roo.ComponentMgr#get}
533         * @param {String} id
534         * @return Roo.Component
535         */
536         getCmp : function(id){
537             return Roo.ComponentMgr.get(id);
538         },
539          
540         num : function(v, defaultValue){
541             if(typeof v != 'number'){
542                 return defaultValue;
543             }
544             return v;
545         },
546
547         destroy : function(){
548             for(var i = 0, a = arguments, len = a.length; i < len; i++) {
549                 var as = a[i];
550                 if(as){
551                     if(as.dom){
552                         as.removeAllListeners();
553                         as.remove();
554                         continue;
555                     }
556                     if(typeof as.purgeListeners == 'function'){
557                         as.purgeListeners();
558                     }
559                     if(typeof as.destroy == 'function'){
560                         as.destroy();
561                     }
562                 }
563             }
564         },
565
566         // inpired by a similar function in mootools library
567         /**
568          * Returns the type of object that is passed in. If the object passed in is null or undefined it
569          * return false otherwise it returns one of the following values:<ul>
570          * <li><b>string</b>: If the object passed is a string</li>
571          * <li><b>number</b>: If the object passed is a number</li>
572          * <li><b>boolean</b>: If the object passed is a boolean value</li>
573          * <li><b>function</b>: If the object passed is a function reference</li>
574          * <li><b>object</b>: If the object passed is an object</li>
575          * <li><b>array</b>: If the object passed is an array</li>
576          * <li><b>regexp</b>: If the object passed is a regular expression</li>
577          * <li><b>element</b>: If the object passed is a DOM Element</li>
578          * <li><b>nodelist</b>: If the object passed is a DOM NodeList</li>
579          * <li><b>textnode</b>: If the object passed is a DOM text node and contains something other than whitespace</li>
580          * <li><b>whitespace</b>: If the object passed is a DOM text node and contains only whitespace</li>
581          * @param {Mixed} object
582          * @return {String}
583          */
584         type : function(o){
585             if(o === undefined || o === null){
586                 return false;
587             }
588             if(o.htmlElement){
589                 return 'element';
590             }
591             var t = typeof o;
592             if(t == 'object' && o.nodeName) {
593                 switch(o.nodeType) {
594                     case 1: return 'element';
595                     case 3: return (/\S/).test(o.nodeValue) ? 'textnode' : 'whitespace';
596                 }
597             }
598             if(t == 'object' || t == 'function') {
599                 switch(o.constructor) {
600                     case Array: return 'array';
601                     case RegExp: return 'regexp';
602                 }
603                 if(typeof o.length == 'number' && typeof o.item == 'function') {
604                     return 'nodelist';
605                 }
606             }
607             return t;
608         },
609
610         /**
611          * Returns true if the passed value is null, undefined or an empty string (optional).
612          * @param {Mixed} value The value to test
613          * @param {Boolean} allowBlank (optional) Pass true if an empty string is not considered empty
614          * @return {Boolean}
615          */
616         isEmpty : function(v, allowBlank){
617             return v === null || v === undefined || (!allowBlank ? v === '' : false);
618         },
619         
620         /** @type Boolean */
621         isOpera : isOpera,
622         /** @type Boolean */
623         isSafari : isSafari,
624         /** @type Boolean */
625         isFirefox : isFirefox,
626         /** @type Boolean */
627         isIE : isIE,
628         /** @type Boolean */
629         isIE7 : isIE7,
630         /** @type Boolean */
631         isIE11 : isIE11,
632         /** @type Boolean */
633         isEdge : isEdge,
634         /** @type Boolean */
635         isGecko : isGecko,
636         /** @type Boolean */
637         isBorderBox : isBorderBox,
638         /** @type Boolean */
639         isWindows : isWindows,
640         /** @type Boolean */
641         isLinux : isLinux,
642         /** @type Boolean */
643         isMac : isMac,
644         /** @type Boolean */
645         isIOS : isIOS,
646         /** @type Boolean */
647         isAndroid : isAndroid,
648         /** @type Boolean */
649         isTouch : isTouch,
650
651         /**
652          * By default, Ext intelligently decides whether floating elements should be shimmed. If you are using flash,
653          * you may want to set this to true.
654          * @type Boolean
655          */
656         useShims : ((isIE && !isIE7) || (isGecko && isMac)),
657         
658         
659                 
660         /**
661          * Selects a single element as a Roo Element
662          * This is about as close as you can get to jQuery's $('do crazy stuff')
663          * @param {String} selector The selector/xpath query
664          * @param {Node} root (optional) The start of the query (defaults to document).
665          * @return {Roo.Element}
666          */
667         selectNode : function(selector, root) 
668         {
669             var node = Roo.DomQuery.selectNode(selector,root);
670             return node ? Roo.get(node) : new Roo.Element(false);
671         },
672                 /**
673                  * Find the current bootstrap width Grid size
674                  * Note xs is the default for smaller.. - this is currently used by grids to render correct columns
675                  * @returns {String} (xs|sm|md|lg|xl)
676                  */
677                 
678                 getGridSize : function()
679                 {
680                         var w = Roo.lib.Dom.getViewWidth();
681                         switch(true) {
682                                 case w > 1200:
683                                         return 'xl';
684                                 case w > 992:
685                                         return 'lg';
686                                 case w > 768:
687                                         return 'md';
688                                 case w > 576:
689                                         return 'sm';
690                                 default:
691                                         return 'xs'
692                         }
693                         
694                 } 
695         
696     });
697
698
699 })();
700
701 Roo.namespace("Roo", "Roo.util", "Roo.grid", "Roo.dd", "Roo.tree", "Roo.data",
702                 "Roo.form", "Roo.menu", "Roo.state", "Roo.lib", "Roo.layout",
703                 "Roo.app", "Roo.ux" 
704                );
705 /*
706  * Based on:
707  * Ext JS Library 1.1.1
708  * Copyright(c) 2006-2007, Ext JS, LLC.
709  *
710  * Originally Released Under LGPL - original licence link has changed is not relivant.
711  *
712  * Fork - LGPL
713  * <script type="text/javascript">
714  */
715
716 (function() {    
717     // wrappedn so fnCleanup is not in global scope...
718     if(Roo.isIE) {
719         function fnCleanUp() {
720             var p = Function.prototype;
721             delete p.createSequence;
722             delete p.defer;
723             delete p.createDelegate;
724             delete p.createCallback;
725             delete p.createInterceptor;
726
727             window.detachEvent("onunload", fnCleanUp);
728         }
729         window.attachEvent("onunload", fnCleanUp);
730     }
731 })();
732
733
734 /**
735  * @class Function
736  * These functions are available on every Function object (any JavaScript function).
737  */
738 Roo.apply(Function.prototype, {
739      /**
740      * Creates a callback that passes arguments[0], arguments[1], arguments[2], ...
741      * Call directly on any function. Example: <code>myFunction.createCallback(myarg, myarg2)</code>
742      * Will create a function that is bound to those 2 args.
743      * @return {Function} The new function
744     */
745     createCallback : function(/*args...*/){
746         // make args available, in function below
747         var args = arguments;
748         var method = this;
749         return function() {
750             return method.apply(window, args);
751         };
752     },
753
754     /**
755      * Creates a delegate (callback) that sets the scope to obj.
756      * Call directly on any function. Example: <code>this.myFunction.createDelegate(this)</code>
757      * Will create a function that is automatically scoped to this.
758      * @param {Object} obj (optional) The object for which the scope is set
759      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
760      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
761      *                                             if a number the args are inserted at the specified position
762      * @return {Function} The new function
763      */
764     createDelegate : function(obj, args, appendArgs){
765         var method = this;
766         return function() {
767             var callArgs = args || arguments;
768             if(appendArgs === true){
769                 callArgs = Array.prototype.slice.call(arguments, 0);
770                 callArgs = callArgs.concat(args);
771             }else if(typeof appendArgs == "number"){
772                 callArgs = Array.prototype.slice.call(arguments, 0); // copy arguments first
773                 var applyArgs = [appendArgs, 0].concat(args); // create method call params
774                 Array.prototype.splice.apply(callArgs, applyArgs); // splice them in
775             }
776             return method.apply(obj || window, callArgs);
777         };
778     },
779
780     /**
781      * Calls this function after the number of millseconds specified.
782      * @param {Number} millis The number of milliseconds for the setTimeout call (if 0 the function is executed immediately)
783      * @param {Object} obj (optional) The object for which the scope is set
784      * @param {Array} args (optional) Overrides arguments for the call. (Defaults to the arguments passed by the caller)
785      * @param {Boolean/Number} appendArgs (optional) if True args are appended to call args instead of overriding,
786      *                                             if a number the args are inserted at the specified position
787      * @return {Number} The timeout id that can be used with clearTimeout
788      */
789     defer : function(millis, obj, args, appendArgs){
790         var fn = this.createDelegate(obj, args, appendArgs);
791         if(millis){
792             return setTimeout(fn, millis);
793         }
794         fn();
795         return 0;
796     },
797     /**
798      * Create a combined function call sequence of the original function + the passed function.
799      * The resulting function returns the results of the original function.
800      * The passed fcn is called with the parameters of the original function
801      * @param {Function} fcn The function to sequence
802      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
803      * @return {Function} The new function
804      */
805     createSequence : function(fcn, scope){
806         if(typeof fcn != "function"){
807             return this;
808         }
809         var method = this;
810         return function() {
811             var retval = method.apply(this || window, arguments);
812             fcn.apply(scope || this || window, arguments);
813             return retval;
814         };
815     },
816
817     /**
818      * Creates an interceptor function. The passed fcn is called before the original one. If it returns false, the original one is not called.
819      * The resulting function returns the results of the original function.
820      * The passed fcn is called with the parameters of the original function.
821      * @addon
822      * @param {Function} fcn The function to call before the original
823      * @param {Object} scope (optional) The scope of the passed fcn (Defaults to scope of original function or window)
824      * @return {Function} The new function
825      */
826     createInterceptor : function(fcn, scope){
827         if(typeof fcn != "function"){
828             return this;
829         }
830         var method = this;
831         return function() {
832             fcn.target = this;
833             fcn.method = method;
834             if(fcn.apply(scope || this || window, arguments) === false){
835                 return;
836             }
837             return method.apply(this || window, arguments);
838         };
839     }
840 });
841 /*
842  * Based on:
843  * Ext JS Library 1.1.1
844  * Copyright(c) 2006-2007, Ext JS, LLC.
845  *
846  * Originally Released Under LGPL - original licence link has changed is not relivant.
847  *
848  * Fork - LGPL
849  * <script type="text/javascript">
850  */
851
852 Roo.applyIf(String, {
853     
854     /** @scope String */
855     
856     /**
857      * Escapes the passed string for ' and \
858      * @param {String} string The string to escape
859      * @return {String} The escaped string
860      * @static
861      */
862     escape : function(string) {
863         return string.replace(/('|\\)/g, "\\$1");
864     },
865
866     /**
867      * Pads the left side of a string with a specified character.  This is especially useful
868      * for normalizing number and date strings.  Example usage:
869      * <pre><code>
870 var s = String.leftPad('123', 5, '0');
871 // s now contains the string: '00123'
872 </code></pre>
873      * @param {String} string The original string
874      * @param {Number} size The total length of the output string
875      * @param {String} char (optional) The character with which to pad the original string (defaults to empty string " ")
876      * @return {String} The padded string
877      * @static
878      */
879     leftPad : function (val, size, ch) {
880         var result = new String(val);
881         if(ch === null || ch === undefined || ch === '') {
882             ch = " ";
883         }
884         while (result.length < size) {
885             result = ch + result;
886         }
887         return result;
888     },
889
890     /**
891      * Allows you to define a tokenized string and pass an arbitrary number of arguments to replace the tokens.  Each
892      * token must be unique, and must increment in the format {0}, {1}, etc.  Example usage:
893      * <pre><code>
894 var cls = 'my-class', text = 'Some text';
895 var s = String.format('<div class="{0}">{1}</div>', cls, text);
896 // s now contains the string: '<div class="my-class">Some text</div>'
897 </code></pre>
898      * @param {String} string The tokenized string to be formatted
899      * @param {String} value1 The value to replace token {0}
900      * @param {String} value2 Etc...
901      * @return {String} The formatted string
902      * @static
903      */
904     format : function(format){
905         var args = Array.prototype.slice.call(arguments, 1);
906         return format.replace(/\{(\d+)\}/g, function(m, i){
907             return Roo.util.Format.htmlEncode(args[i]);
908         });
909     }
910   
911     
912 });
913
914 /**
915  * Utility function that allows you to easily switch a string between two alternating values.  The passed value
916  * is compared to the current string, and if they are equal, the other value that was passed in is returned.  If
917  * they are already different, the first value passed in is returned.  Note that this method returns the new value
918  * but does not change the current string.
919  * <pre><code>
920 // alternate sort directions
921 sort = sort.toggle('ASC', 'DESC');
922
923 // instead of conditional logic:
924 sort = (sort == 'ASC' ? 'DESC' : 'ASC');
925 </code></pre>
926  * @param {String} value The value to compare to the current string
927  * @param {String} other The new value to use if the string already equals the first value passed in
928  * @return {String} The new value
929  */
930  
931 String.prototype.toggle = function(value, other){
932     return this == value ? other : value;
933 };
934
935
936 /**
937   * Remove invalid unicode characters from a string 
938   *
939   * @return {String} The clean string
940   */
941 String.prototype.unicodeClean = function () {
942     return this.replace(/[\s\S]/g,
943         function(character) {
944             if (character.charCodeAt()< 256) {
945               return character;
946            }
947            try {
948                 encodeURIComponent(character);
949            } catch(e) { 
950               return '';
951            }
952            return character;
953         }
954     );
955 };
956   
957
958 /**
959   * Make the first letter of a string uppercase
960   *
961   * @return {String} The new string.
962   */
963 String.prototype.toUpperCaseFirst = function () {
964     return this.charAt(0).toUpperCase() + this.slice(1);
965 };  
966   
967 /*
968  * Based on:
969  * Ext JS Library 1.1.1
970  * Copyright(c) 2006-2007, Ext JS, LLC.
971  *
972  * Originally Released Under LGPL - original licence link has changed is not relivant.
973  *
974  * Fork - LGPL
975  * <script type="text/javascript">
976  */
977
978  /**
979  * @class Number
980  */
981 Roo.applyIf(Number.prototype, {
982     /**
983      * Checks whether or not the current number is within a desired range.  If the number is already within the
984      * range it is returned, otherwise the min or max value is returned depending on which side of the range is
985      * exceeded.  Note that this method returns the constrained value but does not change the current number.
986      * @param {Number} min The minimum number in the range
987      * @param {Number} max The maximum number in the range
988      * @return {Number} The constrained value if outside the range, otherwise the current value
989      */
990     constrain : function(min, max){
991         return Math.min(Math.max(this, min), max);
992     }
993 });/*
994  * Based on:
995  * Ext JS Library 1.1.1
996  * Copyright(c) 2006-2007, Ext JS, LLC.
997  *
998  * Originally Released Under LGPL - original licence link has changed is not relivant.
999  *
1000  * Fork - LGPL
1001  * <script type="text/javascript">
1002  */
1003  /**
1004  * @class Array
1005  */
1006 Roo.applyIf(Array.prototype, {
1007     /**
1008      * 
1009      * Checks whether or not the specified object exists in the array.
1010      * @param {Object} o The object to check for
1011      * @return {Number} The index of o in the array (or -1 if it is not found)
1012      */
1013     indexOf : function(o){
1014        for (var i = 0, len = this.length; i < len; i++){
1015               if(this[i] == o) { return i; }
1016        }
1017            return -1;
1018     },
1019
1020     /**
1021      * Removes the specified object from the array.  If the object is not found nothing happens.
1022      * @param {Object} o The object to remove
1023      */
1024     remove : function(o){
1025        var index = this.indexOf(o);
1026        if(index != -1){
1027            this.splice(index, 1);
1028        }
1029     },
1030     /**
1031      * Map (JS 1.6 compatibility)
1032      * @param {Function} function  to call
1033      */
1034     map : function(fun )
1035     {
1036         var len = this.length >>> 0;
1037         if (typeof fun != "function") {
1038             throw new TypeError();
1039         }
1040         var res = new Array(len);
1041         var thisp = arguments[1];
1042         for (var i = 0; i < len; i++)
1043         {
1044             if (i in this) {
1045                 res[i] = fun.call(thisp, this[i], i, this);
1046             }
1047         }
1048
1049         return res;
1050     },
1051     /**
1052      * equals
1053      * @param {Array} o The array to compare to
1054      * @returns {Boolean} true if the same
1055      */
1056     equals : function(b)
1057     {
1058             // https://stackoverflow.com/questions/3115982/how-to-check-if-two-arrays-are-equal-with-javascript
1059         if (this === b) {
1060             return true;
1061         }
1062         if (b == null) {
1063             return false;
1064         }
1065         if (this.length !== b.length) {
1066             return false;
1067         }
1068           
1069         // sort?? a.sort().equals(b.sort());
1070           
1071         for (var i = 0; i < this.length; ++i) {
1072             if (this[i] !== b[i]) {
1073             return false;
1074             }
1075         }
1076         return true;
1077     } 
1078     
1079     
1080     
1081     
1082 });
1083
1084 Roo.applyIf(Array, {
1085  /**
1086      * from
1087      * @static
1088      * @param {Array} o Or Array like object (eg. nodelist)
1089      * @returns {Array} 
1090      */
1091     from : function(o)
1092     {
1093         var ret= [];
1094     
1095         for (var i =0; i < o.length; i++) { 
1096             ret[i] = o[i];
1097         }
1098         return ret;
1099       
1100     }
1101 });
1102 /*
1103  * Based on:
1104  * Ext JS Library 1.1.1
1105  * Copyright(c) 2006-2007, Ext JS, LLC.
1106  *
1107  * Originally Released Under LGPL - original licence link has changed is not relivant.
1108  *
1109  * Fork - LGPL
1110  * <script type="text/javascript">
1111  */
1112
1113 /**
1114  * @class Date
1115  *
1116  * The date parsing and format syntax is a subset of
1117  * <a href="http://www.php.net/date">PHP's date() function</a>, and the formats that are
1118  * supported will provide results equivalent to their PHP versions.
1119  *
1120  * Following is the list of all currently supported formats:
1121  *<pre>
1122 Sample date:
1123 'Wed Jan 10 2007 15:05:01 GMT-0600 (Central Standard Time)'
1124
1125 Format  Output      Description
1126 ------  ----------  --------------------------------------------------------------
1127   d      10         Day of the month, 2 digits with leading zeros
1128   D      Wed        A textual representation of a day, three letters
1129   j      10         Day of the month without leading zeros
1130   l      Wednesday  A full textual representation of the day of the week
1131   S      th         English ordinal day of month suffix, 2 chars (use with j)
1132   w      3          Numeric representation of the day of the week
1133   z      9          The julian date, or day of the year (0-365)
1134   W      01         ISO-8601 2-digit week number of year, weeks starting on Monday (00-52)
1135   F      January    A full textual representation of the month
1136   m      01         Numeric representation of a month, with leading zeros
1137   M      Jan        Month name abbreviation, three letters
1138   n      1          Numeric representation of a month, without leading zeros
1139   t      31         Number of days in the given month
1140   L      0          Whether it's a leap year (1 if it is a leap year, else 0)
1141   Y      2007       A full numeric representation of a year, 4 digits
1142   y      07         A two digit representation of a year
1143   a      pm         Lowercase Ante meridiem and Post meridiem
1144   A      PM         Uppercase Ante meridiem and Post meridiem
1145   g      3          12-hour format of an hour without leading zeros
1146   G      15         24-hour format of an hour without leading zeros
1147   h      03         12-hour format of an hour with leading zeros
1148   H      15         24-hour format of an hour with leading zeros
1149   i      05         Minutes with leading zeros
1150   s      01         Seconds, with leading zeros
1151   O      -0600      Difference to Greenwich time (GMT) in hours (Allows +08, without minutes)
1152   P      -06:00     Difference to Greenwich time (GMT) with colon between hours and minutes
1153   T      CST        Timezone setting of the machine running the code
1154   Z      -21600     Timezone offset in seconds (negative if west of UTC, positive if east)
1155 </pre>
1156  *
1157  * Example usage (note that you must escape format specifiers with '\\' to render them as character literals):
1158  * <pre><code>
1159 var dt = new Date('1/10/2007 03:05:01 PM GMT-0600');
1160 document.write(dt.format('Y-m-d'));                         //2007-01-10
1161 document.write(dt.format('F j, Y, g:i a'));                 //January 10, 2007, 3:05 pm
1162 document.write(dt.format('l, \\t\\he dS of F Y h:i:s A'));  //Wednesday, the 10th of January 2007 03:05:01 PM
1163  </code></pre>
1164  *
1165  * Here are some standard date/time patterns that you might find helpful.  They
1166  * are not part of the source of Date.js, but to use them you can simply copy this
1167  * block of code into any script that is included after Date.js and they will also become
1168  * globally available on the Date object.  Feel free to add or remove patterns as needed in your code.
1169  * <pre><code>
1170 Date.patterns = {
1171     ISO8601Long:"Y-m-d H:i:s",
1172     ISO8601Short:"Y-m-d",
1173     ShortDate: "n/j/Y",
1174     LongDate: "l, F d, Y",
1175     FullDateTime: "l, F d, Y g:i:s A",
1176     MonthDay: "F d",
1177     ShortTime: "g:i A",
1178     LongTime: "g:i:s A",
1179     SortableDateTime: "Y-m-d\\TH:i:s",
1180     UniversalSortableDateTime: "Y-m-d H:i:sO",
1181     YearMonth: "F, Y"
1182 };
1183 </code></pre>
1184  *
1185  * Example usage:
1186  * <pre><code>
1187 var dt = new Date();
1188 document.write(dt.format(Date.patterns.ShortDate));
1189  </code></pre>
1190  */
1191
1192 /*
1193  * Most of the date-formatting functions below are the excellent work of Baron Schwartz.
1194  * They generate precompiled functions from date formats instead of parsing and
1195  * processing the pattern every time you format a date.  These functions are available
1196  * on every Date object (any javascript function).
1197  *
1198  * The original article and download are here:
1199  * http://www.xaprb.com/blog/2005/12/12/javascript-closures-for-runtime-efficiency/
1200  *
1201  */
1202  
1203  
1204  // was in core
1205 /**
1206  Returns the number of milliseconds between this date and date
1207  @param {Date} date (optional) Defaults to now
1208  @param {String} interval (optional) Default Date.MILLI, A valid date interval enum value (eg. Date.DAY) 
1209  @return {Number} The diff in milliseconds or units of interval
1210  @member Date getElapsed
1211  */
1212 Date.prototype.getElapsed = function(date, interval)
1213 {
1214     date = date ||  new Date();
1215     var ret = Math.abs(date.getTime()-this.getTime());
1216     switch (interval) {
1217        
1218         case  Date.SECOND:
1219             return Math.floor(ret / (1000));
1220         case  Date.MINUTE:
1221             return Math.floor(ret / (1000*60));
1222         case  Date.HOUR:
1223             return Math.floor(ret / (1000*60*60));
1224         case  Date.DAY:
1225             return Math.floor(ret / (1000*60*60*24));
1226         case  Date.MONTH: // this does not give exact number...??
1227             return ((date.format("Y") - this.format("Y")) * 12) + (date.format("m") - this.format("m"));
1228         case  Date.YEAR: // this does not give exact number...??
1229             return (date.format("Y") - this.format("Y"));
1230        
1231         case  Date.MILLI:
1232         default:
1233             return ret;
1234     }
1235 };
1236  
1237 // was in date file..
1238
1239
1240 // private
1241 Date.parseFunctions = {count:0};
1242 // private
1243 Date.parseRegexes = [];
1244 // private
1245 Date.formatFunctions = {count:0};
1246
1247 // private
1248 Date.prototype.dateFormat = function(format) {
1249     if (Date.formatFunctions[format] == null) {
1250         Date.createNewFormat(format);
1251     }
1252     var func = Date.formatFunctions[format];
1253     return this[func]();
1254 };
1255
1256
1257 /**
1258  * Formats a date given the supplied format string
1259  * @param {String} format The format string
1260  * @return {String} The formatted date
1261  * @method
1262  */
1263 Date.prototype.format = Date.prototype.dateFormat;
1264
1265 // private
1266 Date.createNewFormat = function(format) {
1267     var funcName = "format" + Date.formatFunctions.count++;
1268     Date.formatFunctions[format] = funcName;
1269     var code = "Date.prototype." + funcName + " = function(){return ";
1270     var special = false;
1271     var ch = '';
1272     for (var i = 0; i < format.length; ++i) {
1273         ch = format.charAt(i);
1274         if (!special && ch == "\\") {
1275             special = true;
1276         }
1277         else if (special) {
1278             special = false;
1279             code += "'" + String.escape(ch) + "' + ";
1280         }
1281         else {
1282             code += Date.getFormatCode(ch);
1283         }
1284     }
1285     /** eval:var:zzzzzzzzzzzzz */
1286     eval(code.substring(0, code.length - 3) + ";}");
1287 };
1288
1289 // private
1290 Date.getFormatCode = function(character) {
1291     switch (character) {
1292     case "d":
1293         return "String.leftPad(this.getDate(), 2, '0') + ";
1294     case "D":
1295         return "Date.dayNames[this.getDay()].substring(0, 3) + ";
1296     case "j":
1297         return "this.getDate() + ";
1298     case "l":
1299         return "Date.dayNames[this.getDay()] + ";
1300     case "S":
1301         return "this.getSuffix() + ";
1302     case "w":
1303         return "this.getDay() + ";
1304     case "z":
1305         return "this.getDayOfYear() + ";
1306     case "W":
1307         return "this.getWeekOfYear() + ";
1308     case "F":
1309         return "Date.monthNames[this.getMonth()] + ";
1310     case "m":
1311         return "String.leftPad(this.getMonth() + 1, 2, '0') + ";
1312     case "M":
1313         return "Date.monthNames[this.getMonth()].substring(0, 3) + ";
1314     case "n":
1315         return "(this.getMonth() + 1) + ";
1316     case "t":
1317         return "this.getDaysInMonth() + ";
1318     case "L":
1319         return "(this.isLeapYear() ? 1 : 0) + ";
1320     case "Y":
1321         return "this.getFullYear() + ";
1322     case "y":
1323         return "('' + this.getFullYear()).substring(2, 4) + ";
1324     case "a":
1325         return "(this.getHours() < 12 ? 'am' : 'pm') + ";
1326     case "A":
1327         return "(this.getHours() < 12 ? 'AM' : 'PM') + ";
1328     case "g":
1329         return "((this.getHours() % 12) ? this.getHours() % 12 : 12) + ";
1330     case "G":
1331         return "this.getHours() + ";
1332     case "h":
1333         return "String.leftPad((this.getHours() % 12) ? this.getHours() % 12 : 12, 2, '0') + ";
1334     case "H":
1335         return "String.leftPad(this.getHours(), 2, '0') + ";
1336     case "i":
1337         return "String.leftPad(this.getMinutes(), 2, '0') + ";
1338     case "s":
1339         return "String.leftPad(this.getSeconds(), 2, '0') + ";
1340     case "O":
1341         return "this.getGMTOffset() + ";
1342     case "P":
1343         return "this.getGMTColonOffset() + ";
1344     case "T":
1345         return "this.getTimezone() + ";
1346     case "Z":
1347         return "(this.getTimezoneOffset() * -60) + ";
1348     default:
1349         return "'" + String.escape(character) + "' + ";
1350     }
1351 };
1352
1353 /**
1354  * Parses the passed string using the specified format. Note that this function expects dates in normal calendar
1355  * format, meaning that months are 1-based (1 = January) and not zero-based like in JavaScript dates.  Any part of
1356  * the date format that is not specified will default to the current date value for that part.  Time parts can also
1357  * be specified, but default to 0.  Keep in mind that the input date string must precisely match the specified format
1358  * string or the parse operation will fail.
1359  * Example Usage:
1360 <pre><code>
1361 //dt = Fri May 25 2007 (current date)
1362 var dt = new Date();
1363
1364 //dt = Thu May 25 2006 (today's month/day in 2006)
1365 dt = Date.parseDate("2006", "Y");
1366
1367 //dt = Sun Jan 15 2006 (all date parts specified)
1368 dt = Date.parseDate("2006-1-15", "Y-m-d");
1369
1370 //dt = Sun Jan 15 2006 15:20:01 GMT-0600 (CST)
1371 dt = Date.parseDate("2006-1-15 3:20:01 PM", "Y-m-d h:i:s A" );
1372 </code></pre>
1373  * @param {String} input The unparsed date as a string
1374  * @param {String} format The format the date is in
1375  * @return {Date} The parsed date
1376  * @static
1377  */
1378 Date.parseDate = function(input, format) {
1379     if (Date.parseFunctions[format] == null) {
1380         Date.createParser(format);
1381     }
1382     var func = Date.parseFunctions[format];
1383     return Date[func](input);
1384 };
1385 /**
1386  * @private
1387  */
1388
1389 Date.createParser = function(format) {
1390     var funcName = "parse" + Date.parseFunctions.count++;
1391     var regexNum = Date.parseRegexes.length;
1392     var currentGroup = 1;
1393     Date.parseFunctions[format] = funcName;
1394
1395     var code = "Date." + funcName + " = function(input){\n"
1396         + "var y = -1, m = -1, d = -1, h = -1, i = -1, s = -1, o, z, v;\n"
1397         + "var d = new Date();\n"
1398         + "y = d.getFullYear();\n"
1399         + "m = d.getMonth();\n"
1400         + "d = d.getDate();\n"
1401         + "if (typeof(input) !== 'string') { input = input.toString(); }\n"
1402         + "var results = input.match(Date.parseRegexes[" + regexNum + "]);\n"
1403         + "if (results && results.length > 0) {";
1404     var regex = "";
1405
1406     var special = false;
1407     var ch = '';
1408     for (var i = 0; i < format.length; ++i) {
1409         ch = format.charAt(i);
1410         if (!special && ch == "\\") {
1411             special = true;
1412         }
1413         else if (special) {
1414             special = false;
1415             regex += String.escape(ch);
1416         }
1417         else {
1418             var obj = Date.formatCodeToRegex(ch, currentGroup);
1419             currentGroup += obj.g;
1420             regex += obj.s;
1421             if (obj.g && obj.c) {
1422                 code += obj.c;
1423             }
1424         }
1425     }
1426
1427     code += "if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0 && s >= 0)\n"
1428         + "{v = new Date(y, m, d, h, i, s); v.setFullYear(y);}\n"
1429         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0 && i >= 0)\n"
1430         + "{v = new Date(y, m, d, h, i); v.setFullYear(y);}\n"
1431         + "else if (y >= 0 && m >= 0 && d > 0 && h >= 0)\n"
1432         + "{v = new Date(y, m, d, h); v.setFullYear(y);}\n"
1433         + "else if (y >= 0 && m >= 0 && d > 0)\n"
1434         + "{v = new Date(y, m, d); v.setFullYear(y);}\n"
1435         + "else if (y >= 0 && m >= 0)\n"
1436         + "{v = new Date(y, m); v.setFullYear(y);}\n"
1437         + "else if (y >= 0)\n"
1438         + "{v = new Date(y); v.setFullYear(y);}\n"
1439         + "}return (v && (z || o))?\n" // favour UTC offset over GMT offset
1440         + "    ((z)? v.add(Date.SECOND, (v.getTimezoneOffset() * 60) + (z*1)) :\n" // reset to UTC, then add offset
1441         + "        v.add(Date.HOUR, (v.getGMTOffset() / 100) + (o / -100))) : v\n" // reset to GMT, then add offset
1442         + ";}";
1443
1444     Date.parseRegexes[regexNum] = new RegExp("^" + regex + "$");
1445     /** eval:var:zzzzzzzzzzzzz */
1446     eval(code);
1447 };
1448
1449 // private
1450 Date.formatCodeToRegex = function(character, currentGroup) {
1451     switch (character) {
1452     case "D":
1453         return {g:0,
1454         c:null,
1455         s:"(?:Sun|Mon|Tue|Wed|Thu|Fri|Sat)"};
1456     case "j":
1457         return {g:1,
1458             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1459             s:"(\\d{1,2})"}; // day of month without leading zeroes
1460     case "d":
1461         return {g:1,
1462             c:"d = parseInt(results[" + currentGroup + "], 10);\n",
1463             s:"(\\d{2})"}; // day of month with leading zeroes
1464     case "l":
1465         return {g:0,
1466             c:null,
1467             s:"(?:" + Date.dayNames.join("|") + ")"};
1468     case "S":
1469         return {g:0,
1470             c:null,
1471             s:"(?:st|nd|rd|th)"};
1472     case "w":
1473         return {g:0,
1474             c:null,
1475             s:"\\d"};
1476     case "z":
1477         return {g:0,
1478             c:null,
1479             s:"(?:\\d{1,3})"};
1480     case "W":
1481         return {g:0,
1482             c:null,
1483             s:"(?:\\d{2})"};
1484     case "F":
1485         return {g:1,
1486             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "].substring(0, 3)], 10);\n",
1487             s:"(" + Date.monthNames.join("|") + ")"};
1488     case "M":
1489         return {g:1,
1490             c:"m = parseInt(Date.monthNumbers[results[" + currentGroup + "]], 10);\n",
1491             s:"(Jan|Feb|Mar|Apr|May|Jun|Jul|Aug|Sep|Oct|Nov|Dec)"};
1492     case "n":
1493         return {g:1,
1494             c:"m = parseInt(results[" + currentGroup + "], 10) - 1;\n",
1495             s:"(\\d{1,2})"}; // Numeric representation of a month, without leading zeros
1496     case "m":
1497         return {g:1,
1498             c:"m = Math.max(0,parseInt(results[" + currentGroup + "], 10) - 1);\n",
1499             s:"(\\d{2})"}; // Numeric representation of a month, with leading zeros
1500     case "t":
1501         return {g:0,
1502             c:null,
1503             s:"\\d{1,2}"};
1504     case "L":
1505         return {g:0,
1506             c:null,
1507             s:"(?:1|0)"};
1508     case "Y":
1509         return {g:1,
1510             c:"y = parseInt(results[" + currentGroup + "], 10);\n",
1511             s:"(\\d{4})"};
1512     case "y":
1513         return {g:1,
1514             c:"var ty = parseInt(results[" + currentGroup + "], 10);\n"
1515                 + "y = ty > Date.y2kYear ? 1900 + ty : 2000 + ty;\n",
1516             s:"(\\d{1,2})"};
1517     case "a":
1518         return {g:1,
1519             c:"if (results[" + currentGroup + "] == 'am') {\n"
1520                 + "if (h == 12) { h = 0; }\n"
1521                 + "} else { if (h < 12) { h += 12; }}",
1522             s:"(am|pm)"};
1523     case "A":
1524         return {g:1,
1525             c:"if (results[" + currentGroup + "] == 'AM') {\n"
1526                 + "if (h == 12) { h = 0; }\n"
1527                 + "} else { if (h < 12) { h += 12; }}",
1528             s:"(AM|PM)"};
1529     case "g":
1530     case "G":
1531         return {g:1,
1532             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1533             s:"(\\d{1,2})"}; // 12/24-hr format  format of an hour without leading zeroes
1534     case "h":
1535     case "H":
1536         return {g:1,
1537             c:"h = parseInt(results[" + currentGroup + "], 10);\n",
1538             s:"(\\d{2})"}; //  12/24-hr format  format of an hour with leading zeroes
1539     case "i":
1540         return {g:1,
1541             c:"i = parseInt(results[" + currentGroup + "], 10);\n",
1542             s:"(\\d{2})"};
1543     case "s":
1544         return {g:1,
1545             c:"s = parseInt(results[" + currentGroup + "], 10);\n",
1546             s:"(\\d{2})"};
1547     case "O":
1548         return {g:1,
1549             c:[
1550                 "o = results[", currentGroup, "];\n",
1551                 "var sn = o.substring(0,1);\n", // get + / - sign
1552                 "var hr = o.substring(1,3)*1 + Math.floor(o.substring(3,5) / 60);\n", // get hours (performs minutes-to-hour conversion also)
1553                 "var mn = o.substring(3,5) % 60;\n", // get minutes
1554                 "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n", // -12hrs <= GMT offset <= 14hrs
1555                 "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1556             ].join(""),
1557             s:"([+\-]\\d{2,4})"};
1558     
1559     
1560     case "P":
1561         return {g:1,
1562                 c:[
1563                    "o = results[", currentGroup, "];\n",
1564                    "var sn = o.substring(0,1);\n",
1565                    "var hr = o.substring(1,3)*1 + Math.floor(o.substring(4,6) / 60);\n",
1566                    "var mn = o.substring(4,6) % 60;\n",
1567                    "o = ((-12 <= (hr*60 + mn)/60) && ((hr*60 + mn)/60 <= 14))?\n",
1568                         "    (sn + String.leftPad(hr, 2, 0) + String.leftPad(mn, 2, 0)) : null;\n"
1569             ].join(""),
1570             s:"([+\-]\\d{4})"};
1571     case "T":
1572         return {g:0,
1573             c:null,
1574             s:"[A-Z]{1,4}"}; // timezone abbrev. may be between 1 - 4 chars
1575     case "Z":
1576         return {g:1,
1577             c:"z = results[" + currentGroup + "];\n" // -43200 <= UTC offset <= 50400
1578                   + "z = (-43200 <= z*1 && z*1 <= 50400)? z : null;\n",
1579             s:"([+\-]?\\d{1,5})"}; // leading '+' sign is optional for UTC offset
1580     default:
1581         return {g:0,
1582             c:null,
1583             s:String.escape(character)};
1584     }
1585 };
1586
1587 /**
1588  * Get the timezone abbreviation of the current date (equivalent to the format specifier 'T').
1589  * @return {String} The abbreviated timezone name (e.g. 'CST')
1590  */
1591 Date.prototype.getTimezone = function() {
1592     return this.toString().replace(/^.*? ([A-Z]{1,4})[\-+][0-9]{4} .*$/, "$1");
1593 };
1594
1595 /**
1596  * Get the offset from GMT of the current date (equivalent to the format specifier 'O').
1597  * @return {String} The 4-character offset string prefixed with + or - (e.g. '-0600')
1598  */
1599 Date.prototype.getGMTOffset = function() {
1600     return (this.getTimezoneOffset() > 0 ? "-" : "+")
1601         + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1602         + String.leftPad(this.getTimezoneOffset() % 60, 2, "0");
1603 };
1604
1605 /**
1606  * Get the offset from GMT of the current date (equivalent to the format specifier 'P').
1607  * @return {String} 2-characters representing hours and 2-characters representing minutes
1608  * seperated by a colon and prefixed with + or - (e.g. '-06:00')
1609  */
1610 Date.prototype.getGMTColonOffset = function() {
1611         return (this.getTimezoneOffset() > 0 ? "-" : "+")
1612                 + String.leftPad(Math.abs(Math.floor(this.getTimezoneOffset() / 60)), 2, "0")
1613                 + ":"
1614                 + String.leftPad(this.getTimezoneOffset() %60, 2, "0");
1615 }
1616
1617 /**
1618  * Get the numeric day number of the year, adjusted for leap year.
1619  * @return {Number} 0 through 364 (365 in leap years)
1620  */
1621 Date.prototype.getDayOfYear = function() {
1622     var num = 0;
1623     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1624     for (var i = 0; i < this.getMonth(); ++i) {
1625         num += Date.daysInMonth[i];
1626     }
1627     return num + this.getDate() - 1;
1628 };
1629
1630 /**
1631  * Get the string representation of the numeric week number of the year
1632  * (equivalent to the format specifier 'W').
1633  * @return {String} '00' through '52'
1634  */
1635 Date.prototype.getWeekOfYear = function() {
1636     // Skip to Thursday of this week
1637     var now = this.getDayOfYear() + (4 - this.getDay());
1638     // Find the first Thursday of the year
1639     var jan1 = new Date(this.getFullYear(), 0, 1);
1640     var then = (7 - jan1.getDay() + 4);
1641     return String.leftPad(((now - then) / 7) + 1, 2, "0");
1642 };
1643
1644 /**
1645  * Whether or not the current date is in a leap year.
1646  * @return {Boolean} True if the current date is in a leap year, else false
1647  */
1648 Date.prototype.isLeapYear = function() {
1649     var year = this.getFullYear();
1650     return ((year & 3) == 0 && (year % 100 || (year % 400 == 0 && year)));
1651 };
1652
1653 /**
1654  * Get the first day of the current month, adjusted for leap year.  The returned value
1655  * is the numeric day index within the week (0-6) which can be used in conjunction with
1656  * the {@link #monthNames} array to retrieve the textual day name.
1657  * Example:
1658  *<pre><code>
1659 var dt = new Date('1/10/2007');
1660 document.write(Date.dayNames[dt.getFirstDayOfMonth()]); //output: 'Monday'
1661 </code></pre>
1662  * @return {Number} The day number (0-6)
1663  */
1664 Date.prototype.getFirstDayOfMonth = function() {
1665     var day = (this.getDay() - (this.getDate() - 1)) % 7;
1666     return (day < 0) ? (day + 7) : day;
1667 };
1668
1669 /**
1670  * Get the last day of the current month, adjusted for leap year.  The returned value
1671  * is the numeric day index within the week (0-6) which can be used in conjunction with
1672  * the {@link #monthNames} array to retrieve the textual day name.
1673  * Example:
1674  *<pre><code>
1675 var dt = new Date('1/10/2007');
1676 document.write(Date.dayNames[dt.getLastDayOfMonth()]); //output: 'Wednesday'
1677 </code></pre>
1678  * @return {Number} The day number (0-6)
1679  */
1680 Date.prototype.getLastDayOfMonth = function() {
1681     var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
1682     return (day < 0) ? (day + 7) : day;
1683 };
1684
1685
1686 /**
1687  * Get the first date of this date's month
1688  * @return {Date}
1689  */
1690 Date.prototype.getFirstDateOfMonth = function() {
1691     return new Date(this.getFullYear(), this.getMonth(), 1);
1692 };
1693
1694 /**
1695  * Get the last date of this date's month
1696  * @return {Date}
1697  */
1698 Date.prototype.getLastDateOfMonth = function() {
1699     return new Date(this.getFullYear(), this.getMonth(), this.getDaysInMonth());
1700 };
1701 /**
1702  * Get the number of days in the current month, adjusted for leap year.
1703  * @return {Number} The number of days in the month
1704  */
1705 Date.prototype.getDaysInMonth = function() {
1706     Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
1707     return Date.daysInMonth[this.getMonth()];
1708 };
1709
1710 /**
1711  * Get the English ordinal suffix of the current day (equivalent to the format specifier 'S').
1712  * @return {String} 'st, 'nd', 'rd' or 'th'
1713  */
1714 Date.prototype.getSuffix = function() {
1715     switch (this.getDate()) {
1716         case 1:
1717         case 21:
1718         case 31:
1719             return "st";
1720         case 2:
1721         case 22:
1722             return "nd";
1723         case 3:
1724         case 23:
1725             return "rd";
1726         default:
1727             return "th";
1728     }
1729 };
1730
1731 // private
1732 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
1733
1734 /**
1735  * An array of textual month names.
1736  * Override these values for international dates, for example...
1737  * Date.monthNames = ['JanInYourLang', 'FebInYourLang', ...];
1738  * @type Array
1739  * @static
1740  */
1741 Date.monthNames =
1742    ["January",
1743     "February",
1744     "March",
1745     "April",
1746     "May",
1747     "June",
1748     "July",
1749     "August",
1750     "September",
1751     "October",
1752     "November",
1753     "December"];
1754
1755 /**
1756  * An array of textual day names.
1757  * Override these values for international dates, for example...
1758  * Date.dayNames = ['SundayInYourLang', 'MondayInYourLang', ...];
1759  * @type Array
1760  * @static
1761  */
1762 Date.dayNames =
1763    ["Sunday",
1764     "Monday",
1765     "Tuesday",
1766     "Wednesday",
1767     "Thursday",
1768     "Friday",
1769     "Saturday"];
1770
1771 // private
1772 Date.y2kYear = 50;
1773 // private
1774 Date.monthNumbers = {
1775     Jan:0,
1776     Feb:1,
1777     Mar:2,
1778     Apr:3,
1779     May:4,
1780     Jun:5,
1781     Jul:6,
1782     Aug:7,
1783     Sep:8,
1784     Oct:9,
1785     Nov:10,
1786     Dec:11};
1787
1788 /**
1789  * Creates and returns a new Date instance with the exact same date value as the called instance.
1790  * Dates are copied and passed by reference, so if a copied date variable is modified later, the original
1791  * variable will also be changed.  When the intention is to create a new variable that will not
1792  * modify the original instance, you should create a clone.
1793  *
1794  * Example of correctly cloning a date:
1795  * <pre><code>
1796 //wrong way:
1797 var orig = new Date('10/1/2006');
1798 var copy = orig;
1799 copy.setDate(5);
1800 document.write(orig);  //returns 'Thu Oct 05 2006'!
1801
1802 //correct way:
1803 var orig = new Date('10/1/2006');
1804 var copy = orig.clone();
1805 copy.setDate(5);
1806 document.write(orig);  //returns 'Thu Oct 01 2006'
1807 </code></pre>
1808  * @return {Date} The new Date instance
1809  */
1810 Date.prototype.clone = function() {
1811         return new Date(this.getTime());
1812 };
1813
1814 /**
1815  * Clears any time information from this date
1816  @param {Boolean} clone true to create a clone of this date, clear the time and return it
1817  @return {Date} this or the clone
1818  */
1819 Date.prototype.clearTime = function(clone){
1820     if(clone){
1821         return this.clone().clearTime();
1822     }
1823     this.setHours(0);
1824     this.setMinutes(0);
1825     this.setSeconds(0);
1826     this.setMilliseconds(0);
1827     return this;
1828 };
1829
1830 // private
1831 // safari setMonth is broken -- check that this is only donw once...
1832 if(Roo.isSafari && typeof(Date.brokenSetMonth) == 'undefined'){
1833     Date.brokenSetMonth = Date.prototype.setMonth;
1834         Date.prototype.setMonth = function(num){
1835                 if(num <= -1){
1836                         var n = Math.ceil(-num);
1837                         var back_year = Math.ceil(n/12);
1838                         var month = (n % 12) ? 12 - n % 12 : 0 ;
1839                         this.setFullYear(this.getFullYear() - back_year);
1840                         return Date.brokenSetMonth.call(this, month);
1841                 } else {
1842                         return Date.brokenSetMonth.apply(this, arguments);
1843                 }
1844         };
1845 }
1846
1847 /** Date interval constant 
1848 * @static 
1849 * @type String */
1850 Date.MILLI = "ms";
1851 /** Date interval constant 
1852 * @static 
1853 * @type String */
1854 Date.SECOND = "s";
1855 /** Date interval constant 
1856 * @static 
1857 * @type String */
1858 Date.MINUTE = "mi";
1859 /** Date interval constant 
1860 * @static 
1861 * @type String */
1862 Date.HOUR = "h";
1863 /** Date interval constant 
1864 * @static 
1865 * @type String */
1866 Date.DAY = "d";
1867 /** Date interval constant 
1868 * @static 
1869 * @type String */
1870 Date.MONTH = "mo";
1871 /** Date interval constant 
1872 * @static 
1873 * @type String */
1874 Date.YEAR = "y";
1875
1876 /**
1877  * Provides a convenient method of performing basic date arithmetic.  This method
1878  * does not modify the Date instance being called - it creates and returns
1879  * a new Date instance containing the resulting date value.
1880  *
1881  * Examples:
1882  * <pre><code>
1883 //Basic usage:
1884 var dt = new Date('10/29/2006').add(Date.DAY, 5);
1885 document.write(dt); //returns 'Fri Oct 06 2006 00:00:00'
1886
1887 //Negative values will subtract correctly:
1888 var dt2 = new Date('10/1/2006').add(Date.DAY, -5);
1889 document.write(dt2); //returns 'Tue Sep 26 2006 00:00:00'
1890
1891 //You can even chain several calls together in one line!
1892 var dt3 = new Date('10/1/2006').add(Date.DAY, 5).add(Date.HOUR, 8).add(Date.MINUTE, -30);
1893 document.write(dt3); //returns 'Fri Oct 06 2006 07:30:00'
1894  </code></pre>
1895  *
1896  * @param {String} interval   A valid date interval enum value
1897  * @param {Number} value      The amount to add to the current date
1898  * @return {Date} The new Date instance
1899  */
1900 Date.prototype.add = function(interval, value){
1901   var d = this.clone();
1902   if (!interval || value === 0) { return d; }
1903   switch(interval.toLowerCase()){
1904     case Date.MILLI:
1905       d.setMilliseconds(this.getMilliseconds() + value);
1906       break;
1907     case Date.SECOND:
1908       d.setSeconds(this.getSeconds() + value);
1909       break;
1910     case Date.MINUTE:
1911       d.setMinutes(this.getMinutes() + value);
1912       break;
1913     case Date.HOUR:
1914       d.setHours(this.getHours() + value);
1915       break;
1916     case Date.DAY:
1917       d.setDate(this.getDate() + value);
1918       break;
1919     case Date.MONTH:
1920       var day = this.getDate();
1921       if(day > 28){
1922           day = Math.min(day, this.getFirstDateOfMonth().add('mo', value).getLastDateOfMonth().getDate());
1923       }
1924       d.setDate(day);
1925       d.setMonth(this.getMonth() + value);
1926       break;
1927     case Date.YEAR:
1928       d.setFullYear(this.getFullYear() + value);
1929       break;
1930   }
1931   return d;
1932 };
1933 /**
1934  * @class Roo.lib.Dom
1935  * @licence LGPL
1936  * @static
1937  * 
1938  * Dom utils (from YIU afaik)
1939  *
1940  * 
1941  **/
1942 Roo.lib.Dom = {
1943     /**
1944      * Get the view width
1945      * @param {Boolean} full True will get the full document, otherwise it's the view width
1946      * @return {Number} The width
1947      */
1948      
1949     getViewWidth : function(full) {
1950         return full ? this.getDocumentWidth() : this.getViewportWidth();
1951     },
1952     /**
1953      * Get the view height
1954      * @param {Boolean} full True will get the full document, otherwise it's the view height
1955      * @return {Number} The height
1956      */
1957     getViewHeight : function(full) {
1958         return full ? this.getDocumentHeight() : this.getViewportHeight();
1959     },
1960     /**
1961      * Get the Full Document height 
1962      * @return {Number} The height
1963      */
1964     getDocumentHeight: function() {
1965         var scrollHeight = (document.compatMode != "CSS1Compat") ? document.body.scrollHeight : document.documentElement.scrollHeight;
1966         return Math.max(scrollHeight, this.getViewportHeight());
1967     },
1968     /**
1969      * Get the Full Document width
1970      * @return {Number} The width
1971      */
1972     getDocumentWidth: function() {
1973         var scrollWidth = (document.compatMode != "CSS1Compat") ? document.body.scrollWidth : document.documentElement.scrollWidth;
1974         return Math.max(scrollWidth, this.getViewportWidth());
1975     },
1976     /**
1977      * Get the Window Viewport height
1978      * @return {Number} The height
1979      */
1980     getViewportHeight: function() {
1981         var height = self.innerHeight;
1982         var mode = document.compatMode;
1983
1984         if ((mode || Roo.isIE) && !Roo.isOpera) {
1985             height = (mode == "CSS1Compat") ?
1986                      document.documentElement.clientHeight :
1987                      document.body.clientHeight;
1988         }
1989
1990         return height;
1991     },
1992     /**
1993      * Get the Window Viewport width
1994      * @return {Number} The width
1995      */
1996     getViewportWidth: function() {
1997         var width = self.innerWidth;
1998         var mode = document.compatMode;
1999
2000         if (mode || Roo.isIE) {
2001             width = (mode == "CSS1Compat") ?
2002                     document.documentElement.clientWidth :
2003                     document.body.clientWidth;
2004         }
2005         return width;
2006     },
2007
2008     isAncestor : function(p, c) {
2009         p = Roo.getDom(p);
2010         c = Roo.getDom(c);
2011         if (!p || !c) {
2012             return false;
2013         }
2014
2015         if (p.contains && !Roo.isSafari) {
2016             return p.contains(c);
2017         } else if (p.compareDocumentPosition) {
2018             return !!(p.compareDocumentPosition(c) & 16);
2019         } else {
2020             var parent = c.parentNode;
2021             while (parent) {
2022                 if (parent == p) {
2023                     return true;
2024                 }
2025                 else if (!parent.tagName || parent.tagName.toUpperCase() == "HTML") {
2026                     return false;
2027                 }
2028                 parent = parent.parentNode;
2029             }
2030             return false;
2031         }
2032     },
2033
2034     getRegion : function(el) {
2035         return Roo.lib.Region.getRegion(el);
2036     },
2037
2038     getY : function(el) {
2039         return this.getXY(el)[1];
2040     },
2041
2042     getX : function(el) {
2043         return this.getXY(el)[0];
2044     },
2045
2046     getXY : function(el) {
2047         var p, pe, b, scroll, bd = document.body;
2048         el = Roo.getDom(el);
2049         var fly = Roo.lib.AnimBase.fly;
2050         if (el.getBoundingClientRect) {
2051             b = el.getBoundingClientRect();
2052             scroll = fly(document).getScroll();
2053             return [b.left + scroll.left, b.top + scroll.top];
2054         }
2055         var x = 0, y = 0;
2056
2057         p = el;
2058
2059         var hasAbsolute = fly(el).getStyle("position") == "absolute";
2060
2061         while (p) {
2062
2063             x += p.offsetLeft;
2064             y += p.offsetTop;
2065
2066             if (!hasAbsolute && fly(p).getStyle("position") == "absolute") {
2067                 hasAbsolute = true;
2068             }
2069
2070             if (Roo.isGecko) {
2071                 pe = fly(p);
2072
2073                 var bt = parseInt(pe.getStyle("borderTopWidth"), 10) || 0;
2074                 var bl = parseInt(pe.getStyle("borderLeftWidth"), 10) || 0;
2075
2076
2077                 x += bl;
2078                 y += bt;
2079
2080
2081                 if (p != el && pe.getStyle('overflow') != 'visible') {
2082                     x += bl;
2083                     y += bt;
2084                 }
2085             }
2086             p = p.offsetParent;
2087         }
2088
2089         if (Roo.isSafari && hasAbsolute) {
2090             x -= bd.offsetLeft;
2091             y -= bd.offsetTop;
2092         }
2093
2094         if (Roo.isGecko && !hasAbsolute) {
2095             var dbd = fly(bd);
2096             x += parseInt(dbd.getStyle("borderLeftWidth"), 10) || 0;
2097             y += parseInt(dbd.getStyle("borderTopWidth"), 10) || 0;
2098         }
2099
2100         p = el.parentNode;
2101         while (p && p != bd) {
2102             if (!Roo.isOpera || (p.tagName != 'TR' && fly(p).getStyle("display") != "inline")) {
2103                 x -= p.scrollLeft;
2104                 y -= p.scrollTop;
2105             }
2106             p = p.parentNode;
2107         }
2108         return [x, y];
2109     },
2110  
2111   
2112
2113
2114     setXY : function(el, xy) {
2115         el = Roo.fly(el, '_setXY');
2116         el.position();
2117         var pts = el.translatePoints(xy);
2118         if (xy[0] !== false) {
2119             el.dom.style.left = pts.left + "px";
2120         }
2121         if (xy[1] !== false) {
2122             el.dom.style.top = pts.top + "px";
2123         }
2124     },
2125
2126     setX : function(el, x) {
2127         this.setXY(el, [x, false]);
2128     },
2129
2130     setY : function(el, y) {
2131         this.setXY(el, [false, y]);
2132     }
2133 };
2134 /*
2135  * Portions of this file are based on pieces of Yahoo User Interface Library
2136  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2137  * YUI licensed under the BSD License:
2138  * http://developer.yahoo.net/yui/license.txt
2139  * <script type="text/javascript">
2140  *
2141  */
2142
2143 Roo.lib.Event = function() {
2144     var loadComplete = false;
2145     var listeners = [];
2146     var unloadListeners = [];
2147     var retryCount = 0;
2148     var onAvailStack = [];
2149     var counter = 0;
2150     var lastError = null;
2151
2152     return {
2153         POLL_RETRYS: 200,
2154         POLL_INTERVAL: 20,
2155         EL: 0,
2156         TYPE: 1,
2157         FN: 2,
2158         WFN: 3,
2159         OBJ: 3,
2160         ADJ_SCOPE: 4,
2161         _interval: null,
2162
2163         startInterval: function() {
2164             if (!this._interval) {
2165                 var self = this;
2166                 var callback = function() {
2167                     self._tryPreloadAttach();
2168                 };
2169                 this._interval = setInterval(callback, this.POLL_INTERVAL);
2170
2171             }
2172         },
2173
2174         onAvailable: function(p_id, p_fn, p_obj, p_override) {
2175             onAvailStack.push({ id:         p_id,
2176                 fn:         p_fn,
2177                 obj:        p_obj,
2178                 override:   p_override,
2179                 checkReady: false    });
2180
2181             retryCount = this.POLL_RETRYS;
2182             this.startInterval();
2183         },
2184
2185
2186         addListener: function(el, eventName, fn) {
2187             el = Roo.getDom(el);
2188             if (!el || !fn) {
2189                 return false;
2190             }
2191
2192             if ("unload" == eventName) {
2193                 unloadListeners[unloadListeners.length] =
2194                 [el, eventName, fn];
2195                 return true;
2196             }
2197
2198             var wrappedFn = function(e) {
2199                 return fn(Roo.lib.Event.getEvent(e));
2200             };
2201
2202             var li = [el, eventName, fn, wrappedFn];
2203
2204             var index = listeners.length;
2205             listeners[index] = li;
2206
2207             this.doAdd(el, eventName, wrappedFn, false);
2208             return true;
2209
2210         },
2211
2212
2213         removeListener: function(el, eventName, fn) {
2214             var i, len;
2215
2216             el = Roo.getDom(el);
2217
2218             if(!fn) {
2219                 return this.purgeElement(el, false, eventName);
2220             }
2221
2222
2223             if ("unload" == eventName) {
2224
2225                 for (i = 0,len = unloadListeners.length; i < len; i++) {
2226                     var li = unloadListeners[i];
2227                     if (li &&
2228                         li[0] == el &&
2229                         li[1] == eventName &&
2230                         li[2] == fn) {
2231                         unloadListeners.splice(i, 1);
2232                         return true;
2233                     }
2234                 }
2235
2236                 return false;
2237             }
2238
2239             var cacheItem = null;
2240
2241
2242             var index = arguments[3];
2243
2244             if ("undefined" == typeof index) {
2245                 index = this._getCacheIndex(el, eventName, fn);
2246             }
2247
2248             if (index >= 0) {
2249                 cacheItem = listeners[index];
2250             }
2251
2252             if (!el || !cacheItem) {
2253                 return false;
2254             }
2255
2256             this.doRemove(el, eventName, cacheItem[this.WFN], false);
2257
2258             delete listeners[index][this.WFN];
2259             delete listeners[index][this.FN];
2260             listeners.splice(index, 1);
2261
2262             return true;
2263
2264         },
2265
2266
2267         getTarget: function(ev, resolveTextNode) {
2268             ev = ev.browserEvent || ev;
2269             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2270             var t = ev.target || ev.srcElement;
2271             return this.resolveTextNode(t);
2272         },
2273
2274
2275         resolveTextNode: function(node) {
2276             if (Roo.isSafari && node && 3 == node.nodeType) {
2277                 return node.parentNode;
2278             } else {
2279                 return node;
2280             }
2281         },
2282
2283
2284         getPageX: function(ev) {
2285             ev = ev.browserEvent || ev;
2286             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2287             var x = ev.pageX;
2288             if (!x && 0 !== x) {
2289                 x = ev.clientX || 0;
2290
2291                 if (Roo.isIE) {
2292                     x += this.getScroll()[1];
2293                 }
2294             }
2295
2296             return x;
2297         },
2298
2299
2300         getPageY: function(ev) {
2301             ev = ev.browserEvent || ev;
2302             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2303             var y = ev.pageY;
2304             if (!y && 0 !== y) {
2305                 y = ev.clientY || 0;
2306
2307                 if (Roo.isIE) {
2308                     y += this.getScroll()[0];
2309                 }
2310             }
2311
2312
2313             return y;
2314         },
2315
2316
2317         getXY: function(ev) {
2318             ev = ev.browserEvent || ev;
2319             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2320             return [this.getPageX(ev), this.getPageY(ev)];
2321         },
2322
2323
2324         getRelatedTarget: function(ev) {
2325             ev = ev.browserEvent || ev;
2326             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2327             var t = ev.relatedTarget;
2328             if (!t) {
2329                 if (ev.type == "mouseout") {
2330                     t = ev.toElement;
2331                 } else if (ev.type == "mouseover") {
2332                     t = ev.fromElement;
2333                 }
2334             }
2335
2336             return this.resolveTextNode(t);
2337         },
2338
2339
2340         getTime: function(ev) {
2341             ev = ev.browserEvent || ev;
2342             ev = ev.touches ? (ev.touches[0] || ev.changedTouches[0] || ev )  : ev;
2343             if (!ev.time) {
2344                 var t = new Date().getTime();
2345                 try {
2346                     ev.time = t;
2347                 } catch(ex) {
2348                     this.lastError = ex;
2349                     return t;
2350                 }
2351             }
2352
2353             return ev.time;
2354         },
2355
2356
2357         stopEvent: function(ev) {
2358             this.stopPropagation(ev);
2359             this.preventDefault(ev);
2360         },
2361
2362
2363         stopPropagation: function(ev) {
2364             ev = ev.browserEvent || ev;
2365             if (ev.stopPropagation) {
2366                 ev.stopPropagation();
2367             } else {
2368                 ev.cancelBubble = true;
2369             }
2370         },
2371
2372
2373         preventDefault: function(ev) {
2374             ev = ev.browserEvent || ev;
2375             if(ev.preventDefault) {
2376                 ev.preventDefault();
2377             } else {
2378                 ev.returnValue = false;
2379             }
2380         },
2381
2382
2383         getEvent: function(e) {
2384             var ev = e || window.event;
2385             if (!ev) {
2386                 var c = this.getEvent.caller;
2387                 while (c) {
2388                     ev = c.arguments[0];
2389                     if (ev && Event == ev.constructor) {
2390                         break;
2391                     }
2392                     c = c.caller;
2393                 }
2394             }
2395             return ev;
2396         },
2397
2398
2399         getCharCode: function(ev) {
2400             ev = ev.browserEvent || ev;
2401             return ev.charCode || ev.keyCode || 0;
2402         },
2403
2404
2405         _getCacheIndex: function(el, eventName, fn) {
2406             for (var i = 0,len = listeners.length; i < len; ++i) {
2407                 var li = listeners[i];
2408                 if (li &&
2409                     li[this.FN] == fn &&
2410                     li[this.EL] == el &&
2411                     li[this.TYPE] == eventName) {
2412                     return i;
2413                 }
2414             }
2415
2416             return -1;
2417         },
2418
2419
2420         elCache: {},
2421
2422
2423         getEl: function(id) {
2424             return document.getElementById(id);
2425         },
2426
2427
2428         clearCache: function() {
2429         },
2430
2431
2432         _load: function(e) {
2433             loadComplete = true;
2434             var EU = Roo.lib.Event;
2435
2436
2437             if (Roo.isIE) {
2438                 EU.doRemove(window, "load", EU._load);
2439             }
2440         },
2441
2442
2443         _tryPreloadAttach: function() {
2444
2445             if (this.locked) {
2446                 return false;
2447             }
2448
2449             this.locked = true;
2450
2451
2452             var tryAgain = !loadComplete;
2453             if (!tryAgain) {
2454                 tryAgain = (retryCount > 0);
2455             }
2456
2457
2458             var notAvail = [];
2459             for (var i = 0,len = onAvailStack.length; i < len; ++i) {
2460                 var item = onAvailStack[i];
2461                 if (item) {
2462                     var el = this.getEl(item.id);
2463
2464                     if (el) {
2465                         if (!item.checkReady ||
2466                             loadComplete ||
2467                             el.nextSibling ||
2468                             (document && document.body)) {
2469
2470                             var scope = el;
2471                             if (item.override) {
2472                                 if (item.override === true) {
2473                                     scope = item.obj;
2474                                 } else {
2475                                     scope = item.override;
2476                                 }
2477                             }
2478                             item.fn.call(scope, item.obj);
2479                             onAvailStack[i] = null;
2480                         }
2481                     } else {
2482                         notAvail.push(item);
2483                     }
2484                 }
2485             }
2486
2487             retryCount = (notAvail.length === 0) ? 0 : retryCount - 1;
2488
2489             if (tryAgain) {
2490
2491                 this.startInterval();
2492             } else {
2493                 clearInterval(this._interval);
2494                 this._interval = null;
2495             }
2496
2497             this.locked = false;
2498
2499             return true;
2500
2501         },
2502
2503
2504         purgeElement: function(el, recurse, eventName) {
2505             var elListeners = this.getListeners(el, eventName);
2506             if (elListeners) {
2507                 for (var i = 0,len = elListeners.length; i < len; ++i) {
2508                     var l = elListeners[i];
2509                     this.removeListener(el, l.type, l.fn);
2510                 }
2511             }
2512
2513             if (recurse && el && el.childNodes) {
2514                 for (i = 0,len = el.childNodes.length; i < len; ++i) {
2515                     this.purgeElement(el.childNodes[i], recurse, eventName);
2516                 }
2517             }
2518         },
2519
2520
2521         getListeners: function(el, eventName) {
2522             var results = [], searchLists;
2523             if (!eventName) {
2524                 searchLists = [listeners, unloadListeners];
2525             } else if (eventName == "unload") {
2526                 searchLists = [unloadListeners];
2527             } else {
2528                 searchLists = [listeners];
2529             }
2530
2531             for (var j = 0; j < searchLists.length; ++j) {
2532                 var searchList = searchLists[j];
2533                 if (searchList && searchList.length > 0) {
2534                     for (var i = 0,len = searchList.length; i < len; ++i) {
2535                         var l = searchList[i];
2536                         if (l && l[this.EL] === el &&
2537                             (!eventName || eventName === l[this.TYPE])) {
2538                             results.push({
2539                                 type:   l[this.TYPE],
2540                                 fn:     l[this.FN],
2541                                 obj:    l[this.OBJ],
2542                                 adjust: l[this.ADJ_SCOPE],
2543                                 index:  i
2544                             });
2545                         }
2546                     }
2547                 }
2548             }
2549
2550             return (results.length) ? results : null;
2551         },
2552
2553
2554         _unload: function(e) {
2555
2556             var EU = Roo.lib.Event, i, j, l, len, index;
2557
2558             for (i = 0,len = unloadListeners.length; i < len; ++i) {
2559                 l = unloadListeners[i];
2560                 if (l) {
2561                     var scope = window;
2562                     if (l[EU.ADJ_SCOPE]) {
2563                         if (l[EU.ADJ_SCOPE] === true) {
2564                             scope = l[EU.OBJ];
2565                         } else {
2566                             scope = l[EU.ADJ_SCOPE];
2567                         }
2568                     }
2569                     l[EU.FN].call(scope, EU.getEvent(e), l[EU.OBJ]);
2570                     unloadListeners[i] = null;
2571                     l = null;
2572                     scope = null;
2573                 }
2574             }
2575
2576             unloadListeners = null;
2577
2578             if (listeners && listeners.length > 0) {
2579                 j = listeners.length;
2580                 while (j) {
2581                     index = j - 1;
2582                     l = listeners[index];
2583                     if (l) {
2584                         EU.removeListener(l[EU.EL], l[EU.TYPE],
2585                                 l[EU.FN], index);
2586                     }
2587                     j = j - 1;
2588                 }
2589                 l = null;
2590
2591                 EU.clearCache();
2592             }
2593
2594             EU.doRemove(window, "unload", EU._unload);
2595
2596         },
2597
2598
2599         getScroll: function() {
2600             var dd = document.documentElement, db = document.body;
2601             if (dd && (dd.scrollTop || dd.scrollLeft)) {
2602                 return [dd.scrollTop, dd.scrollLeft];
2603             } else if (db) {
2604                 return [db.scrollTop, db.scrollLeft];
2605             } else {
2606                 return [0, 0];
2607             }
2608         },
2609
2610
2611         doAdd: function () {
2612             if (window.addEventListener) {
2613                 return function(el, eventName, fn, capture) {
2614                     el.addEventListener(eventName, fn, (capture));
2615                 };
2616             } else if (window.attachEvent) {
2617                 return function(el, eventName, fn, capture) {
2618                     el.attachEvent("on" + eventName, fn);
2619                 };
2620             } else {
2621                 return function() {
2622                 };
2623             }
2624         }(),
2625
2626
2627         doRemove: function() {
2628             if (window.removeEventListener) {
2629                 return function (el, eventName, fn, capture) {
2630                     el.removeEventListener(eventName, fn, (capture));
2631                 };
2632             } else if (window.detachEvent) {
2633                 return function (el, eventName, fn) {
2634                     el.detachEvent("on" + eventName, fn);
2635                 };
2636             } else {
2637                 return function() {
2638                 };
2639             }
2640         }()
2641     };
2642     
2643 }();
2644 (function() {     
2645    
2646     var E = Roo.lib.Event;
2647     E.on = E.addListener;
2648     E.un = E.removeListener;
2649
2650     if (document && document.body) {
2651         E._load();
2652     } else {
2653         E.doAdd(window, "load", E._load);
2654     }
2655     E.doAdd(window, "unload", E._unload);
2656     E._tryPreloadAttach();
2657 })();
2658
2659  
2660
2661 (function() {
2662     /**
2663      * @class Roo.lib.Ajax
2664      *
2665      * provide a simple Ajax request utility functions
2666      * 
2667      * Portions of this file are based on pieces of Yahoo User Interface Library
2668     * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
2669     * YUI licensed under the BSD License:
2670     * http://developer.yahoo.net/yui/license.txt
2671     * <script type="text/javascript">
2672     *
2673      *
2674      */
2675     Roo.lib.Ajax = {
2676         /**
2677          * @static 
2678          */
2679         request : function(method, uri, cb, data, options) {
2680             if(options){
2681                 var hs = options.headers;
2682                 if(hs){
2683                     for(var h in hs){
2684                         if(hs.hasOwnProperty(h)){
2685                             this.initHeader(h, hs[h], false);
2686                         }
2687                     }
2688                 }
2689                 if(options.xmlData){
2690                     this.initHeader('Content-Type', 'text/xml', false);
2691                     method = 'POST';
2692                     data = options.xmlData;
2693                 }
2694             }
2695
2696             return this.asyncRequest(method, uri, cb, data);
2697         },
2698         /**
2699          * serialize a form
2700          *
2701          * @static
2702          * @param {DomForm} form element
2703          * @return {String} urlencode form output.
2704          */
2705         serializeForm : function(form) {
2706             if(typeof form == 'string') {
2707                 form = (document.getElementById(form) || document.forms[form]);
2708             }
2709
2710             var el, name, val, disabled, data = '', hasSubmit = false;
2711             for (var i = 0; i < form.elements.length; i++) {
2712                 el = form.elements[i];
2713                 disabled = form.elements[i].disabled;
2714                 name = form.elements[i].name;
2715                 val = form.elements[i].value;
2716
2717                 if (!disabled && name){
2718                     switch (el.type)
2719                             {
2720                         case 'select-one':
2721                         case 'select-multiple':
2722                             for (var j = 0; j < el.options.length; j++) {
2723                                 if (el.options[j].selected) {
2724                                     if (Roo.isIE) {
2725                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].attributes['value'].specified ? el.options[j].value : el.options[j].text) + '&';
2726                                     }
2727                                     else {
2728                                         data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(el.options[j].hasAttribute('value') ? el.options[j].value : el.options[j].text) + '&';
2729                                     }
2730                                 }
2731                             }
2732                             break;
2733                         case 'radio':
2734                         case 'checkbox':
2735                             if (el.checked) {
2736                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2737                             }
2738                             break;
2739                         case 'file':
2740
2741                         case undefined:
2742
2743                         case 'reset':
2744
2745                         case 'button':
2746
2747                             break;
2748                         case 'submit':
2749                             if(hasSubmit == false) {
2750                                 data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2751                                 hasSubmit = true;
2752                             }
2753                             break;
2754                         default:
2755                             data += Roo.encodeURIComponent(name) + '=' + Roo.encodeURIComponent(val) + '&';
2756                             break;
2757                     }
2758                 }
2759             }
2760             data = data.substr(0, data.length - 1);
2761             return data;
2762         },
2763
2764         headers:{},
2765
2766         hasHeaders:false,
2767
2768         useDefaultHeader:true,
2769
2770         defaultPostHeader:'application/x-www-form-urlencoded',
2771
2772         useDefaultXhrHeader:true,
2773
2774         defaultXhrHeader:'XMLHttpRequest',
2775
2776         hasDefaultHeaders:true,
2777
2778         defaultHeaders:{},
2779
2780         poll:{},
2781
2782         timeout:{},
2783
2784         pollInterval:50,
2785
2786         transactionId:0,
2787
2788         setProgId:function(id)
2789         {
2790             this.activeX.unshift(id);
2791         },
2792
2793         setDefaultPostHeader:function(b)
2794         {
2795             this.useDefaultHeader = b;
2796         },
2797
2798         setDefaultXhrHeader:function(b)
2799         {
2800             this.useDefaultXhrHeader = b;
2801         },
2802
2803         setPollingInterval:function(i)
2804         {
2805             if (typeof i == 'number' && isFinite(i)) {
2806                 this.pollInterval = i;
2807             }
2808         },
2809
2810         createXhrObject:function(transactionId)
2811         {
2812             var obj,http;
2813             try
2814             {
2815
2816                 http = new XMLHttpRequest();
2817
2818                 obj = { conn:http, tId:transactionId };
2819             }
2820             catch(e)
2821             {
2822                 for (var i = 0; i < this.activeX.length; ++i) {
2823                     try
2824                     {
2825
2826                         http = new ActiveXObject(this.activeX[i]);
2827
2828                         obj = { conn:http, tId:transactionId };
2829                         break;
2830                     }
2831                     catch(e) {
2832                     }
2833                 }
2834             }
2835             finally
2836             {
2837                 return obj;
2838             }
2839         },
2840
2841         getConnectionObject:function()
2842         {
2843             var o;
2844             var tId = this.transactionId;
2845
2846             try
2847             {
2848                 o = this.createXhrObject(tId);
2849                 if (o) {
2850                     this.transactionId++;
2851                 }
2852             }
2853             catch(e) {
2854             }
2855             finally
2856             {
2857                 return o;
2858             }
2859         },
2860
2861         asyncRequest:function(method, uri, callback, postData)
2862         {
2863             var o = this.getConnectionObject();
2864
2865             if (!o) {
2866                 return null;
2867             }
2868             else {
2869                 o.conn.open(method, uri, true);
2870
2871                 if (this.useDefaultXhrHeader) {
2872                     if (!this.defaultHeaders['X-Requested-With']) {
2873                         this.initHeader('X-Requested-With', this.defaultXhrHeader, true);
2874                     }
2875                 }
2876
2877                 if(postData && this.useDefaultHeader){
2878                     this.initHeader('Content-Type', this.defaultPostHeader);
2879                 }
2880
2881                  if (this.hasDefaultHeaders || this.hasHeaders) {
2882                     this.setHeader(o);
2883                 }
2884
2885                 this.handleReadyState(o, callback);
2886                 o.conn.send(postData || null);
2887
2888                 return o;
2889             }
2890         },
2891
2892         handleReadyState:function(o, callback)
2893         {
2894             var oConn = this;
2895
2896             if (callback && callback.timeout) {
2897                 
2898                 this.timeout[o.tId] = window.setTimeout(function() {
2899                     oConn.abort(o, callback, true);
2900                 }, callback.timeout);
2901             }
2902
2903             this.poll[o.tId] = window.setInterval(
2904                     function() {
2905                         if (o.conn && o.conn.readyState == 4) {
2906                             window.clearInterval(oConn.poll[o.tId]);
2907                             delete oConn.poll[o.tId];
2908
2909                             if(callback && callback.timeout) {
2910                                 window.clearTimeout(oConn.timeout[o.tId]);
2911                                 delete oConn.timeout[o.tId];
2912                             }
2913
2914                             oConn.handleTransactionResponse(o, callback);
2915                         }
2916                     }
2917                     , this.pollInterval);
2918         },
2919
2920         handleTransactionResponse:function(o, callback, isAbort)
2921         {
2922
2923             if (!callback) {
2924                 this.releaseObject(o);
2925                 return;
2926             }
2927
2928             var httpStatus, responseObject;
2929
2930             try
2931             {
2932                 if (o.conn.status !== undefined && o.conn.status != 0) {
2933                     httpStatus = o.conn.status;
2934                 }
2935                 else {
2936                     httpStatus = 13030;
2937                 }
2938             }
2939             catch(e) {
2940
2941
2942                 httpStatus = 13030;
2943             }
2944
2945             if (httpStatus >= 200 && httpStatus < 300) {
2946                 responseObject = this.createResponseObject(o, callback.argument);
2947                 if (callback.success) {
2948                     if (!callback.scope) {
2949                         callback.success(responseObject);
2950                     }
2951                     else {
2952
2953
2954                         callback.success.apply(callback.scope, [responseObject]);
2955                     }
2956                 }
2957             }
2958             else {
2959                 switch (httpStatus) {
2960
2961                     case 12002:
2962                     case 12029:
2963                     case 12030:
2964                     case 12031:
2965                     case 12152:
2966                     case 13030:
2967                         responseObject = this.createExceptionObject(o.tId, callback.argument, (isAbort ? isAbort : false));
2968                         if (callback.failure) {
2969                             if (!callback.scope) {
2970                                 callback.failure(responseObject);
2971                             }
2972                             else {
2973                                 callback.failure.apply(callback.scope, [responseObject]);
2974                             }
2975                         }
2976                         break;
2977                     default:
2978                         responseObject = this.createResponseObject(o, callback.argument);
2979                         if (callback.failure) {
2980                             if (!callback.scope) {
2981                                 callback.failure(responseObject);
2982                             }
2983                             else {
2984                                 callback.failure.apply(callback.scope, [responseObject]);
2985                             }
2986                         }
2987                 }
2988             }
2989
2990             this.releaseObject(o);
2991             responseObject = null;
2992         },
2993
2994         createResponseObject:function(o, callbackArg)
2995         {
2996             var obj = {};
2997             var headerObj = {};
2998
2999             try
3000             {
3001                 var headerStr = o.conn.getAllResponseHeaders();
3002                 var header = headerStr.split('\n');
3003                 for (var i = 0; i < header.length; i++) {
3004                     var delimitPos = header[i].indexOf(':');
3005                     if (delimitPos != -1) {
3006                         headerObj[header[i].substring(0, delimitPos)] = header[i].substring(delimitPos + 2);
3007                     }
3008                 }
3009             }
3010             catch(e) {
3011             }
3012
3013             obj.tId = o.tId;
3014             obj.status = o.conn.status;
3015             obj.statusText = o.conn.statusText;
3016             obj.getResponseHeader = headerObj;
3017             obj.getAllResponseHeaders = headerStr;
3018             obj.responseText = o.conn.responseText;
3019             obj.responseXML = o.conn.responseXML;
3020
3021             if (typeof callbackArg !== undefined) {
3022                 obj.argument = callbackArg;
3023             }
3024
3025             return obj;
3026         },
3027
3028         createExceptionObject:function(tId, callbackArg, isAbort)
3029         {
3030             var COMM_CODE = 0;
3031             var COMM_ERROR = 'communication failure';
3032             var ABORT_CODE = -1;
3033             var ABORT_ERROR = 'transaction aborted';
3034
3035             var obj = {};
3036
3037             obj.tId = tId;
3038             if (isAbort) {
3039                 obj.status = ABORT_CODE;
3040                 obj.statusText = ABORT_ERROR;
3041             }
3042             else {
3043                 obj.status = COMM_CODE;
3044                 obj.statusText = COMM_ERROR;
3045             }
3046
3047             if (callbackArg) {
3048                 obj.argument = callbackArg;
3049             }
3050
3051             return obj;
3052         },
3053
3054         initHeader:function(label, value, isDefault)
3055         {
3056             var headerObj = (isDefault) ? this.defaultHeaders : this.headers;
3057
3058             if (headerObj[label] === undefined) {
3059                 headerObj[label] = value;
3060             }
3061             else {
3062
3063
3064                 headerObj[label] = value + "," + headerObj[label];
3065             }
3066
3067             if (isDefault) {
3068                 this.hasDefaultHeaders = true;
3069             }
3070             else {
3071                 this.hasHeaders = true;
3072             }
3073         },
3074
3075
3076         setHeader:function(o)
3077         {
3078             if (this.hasDefaultHeaders) {
3079                 for (var prop in this.defaultHeaders) {
3080                     if (this.defaultHeaders.hasOwnProperty(prop)) {
3081                         o.conn.setRequestHeader(prop, this.defaultHeaders[prop]);
3082                     }
3083                 }
3084             }
3085
3086             if (this.hasHeaders) {
3087                 for (var prop in this.headers) {
3088                     if (this.headers.hasOwnProperty(prop)) {
3089                         o.conn.setRequestHeader(prop, this.headers[prop]);
3090                     }
3091                 }
3092                 this.headers = {};
3093                 this.hasHeaders = false;
3094             }
3095         },
3096
3097         resetDefaultHeaders:function() {
3098             delete this.defaultHeaders;
3099             this.defaultHeaders = {};
3100             this.hasDefaultHeaders = false;
3101         },
3102
3103         abort:function(o, callback, isTimeout)
3104         {
3105             if(this.isCallInProgress(o)) {
3106                 o.conn.abort();
3107                 window.clearInterval(this.poll[o.tId]);
3108                 delete this.poll[o.tId];
3109                 if (isTimeout) {
3110                     delete this.timeout[o.tId];
3111                 }
3112
3113                 this.handleTransactionResponse(o, callback, true);
3114
3115                 return true;
3116             }
3117             else {
3118                 return false;
3119             }
3120         },
3121
3122
3123         isCallInProgress:function(o)
3124         {
3125             if (o && o.conn) {
3126                 return o.conn.readyState != 4 && o.conn.readyState != 0;
3127             }
3128             else {
3129
3130                 return false;
3131             }
3132         },
3133
3134
3135         releaseObject:function(o)
3136         {
3137
3138             o.conn = null;
3139
3140             o = null;
3141         },
3142
3143         activeX:[
3144         'MSXML2.XMLHTTP.3.0',
3145         'MSXML2.XMLHTTP',
3146         'Microsoft.XMLHTTP'
3147         ]
3148
3149
3150     };
3151 })();/*
3152  * Portions of this file are based on pieces of Yahoo User Interface Library
3153  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3154  * YUI licensed under the BSD License:
3155  * http://developer.yahoo.net/yui/license.txt
3156  * <script type="text/javascript">
3157  *
3158  */
3159
3160 Roo.lib.Region = function(t, r, b, l) {
3161     this.top = t;
3162     this[1] = t;
3163     this.right = r;
3164     this.bottom = b;
3165     this.left = l;
3166     this[0] = l;
3167 };
3168
3169
3170 Roo.lib.Region.prototype = {
3171     contains : function(region) {
3172         return ( region.left >= this.left &&
3173                  region.right <= this.right &&
3174                  region.top >= this.top &&
3175                  region.bottom <= this.bottom    );
3176
3177     },
3178
3179     getArea : function() {
3180         return ( (this.bottom - this.top) * (this.right - this.left) );
3181     },
3182
3183     intersect : function(region) {
3184         var t = Math.max(this.top, region.top);
3185         var r = Math.min(this.right, region.right);
3186         var b = Math.min(this.bottom, region.bottom);
3187         var l = Math.max(this.left, region.left);
3188
3189         if (b >= t && r >= l) {
3190             return new Roo.lib.Region(t, r, b, l);
3191         } else {
3192             return null;
3193         }
3194     },
3195     union : function(region) {
3196         var t = Math.min(this.top, region.top);
3197         var r = Math.max(this.right, region.right);
3198         var b = Math.max(this.bottom, region.bottom);
3199         var l = Math.min(this.left, region.left);
3200
3201         return new Roo.lib.Region(t, r, b, l);
3202     },
3203
3204     adjust : function(t, l, b, r) {
3205         this.top += t;
3206         this.left += l;
3207         this.right += r;
3208         this.bottom += b;
3209         return this;
3210     }
3211 };
3212
3213 Roo.lib.Region.getRegion = function(el) {
3214     var p = Roo.lib.Dom.getXY(el);
3215
3216     var t = p[1];
3217     var r = p[0] + el.offsetWidth;
3218     var b = p[1] + el.offsetHeight;
3219     var l = p[0];
3220
3221     return new Roo.lib.Region(t, r, b, l);
3222 };
3223 /*
3224  * Portions of this file are based on pieces of Yahoo User Interface Library
3225  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3226  * YUI licensed under the BSD License:
3227  * http://developer.yahoo.net/yui/license.txt
3228  * <script type="text/javascript">
3229  *
3230  */
3231 //@@dep Roo.lib.Region
3232
3233
3234 Roo.lib.Point = function(x, y) {
3235     if (x instanceof Array) {
3236         y = x[1];
3237         x = x[0];
3238     }
3239     this.x = this.right = this.left = this[0] = x;
3240     this.y = this.top = this.bottom = this[1] = y;
3241 };
3242
3243 Roo.lib.Point.prototype = new Roo.lib.Region();
3244 /*
3245  * Portions of this file are based on pieces of Yahoo User Interface Library
3246  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3247  * YUI licensed under the BSD License:
3248  * http://developer.yahoo.net/yui/license.txt
3249  * <script type="text/javascript">
3250  *
3251  */
3252  
3253 (function() {   
3254
3255     Roo.lib.Anim = {
3256         scroll : function(el, args, duration, easing, cb, scope) {
3257             this.run(el, args, duration, easing, cb, scope, Roo.lib.Scroll);
3258         },
3259
3260         motion : function(el, args, duration, easing, cb, scope) {
3261             this.run(el, args, duration, easing, cb, scope, Roo.lib.Motion);
3262         },
3263
3264         color : function(el, args, duration, easing, cb, scope) {
3265             this.run(el, args, duration, easing, cb, scope, Roo.lib.ColorAnim);
3266         },
3267
3268         run : function(el, args, duration, easing, cb, scope, type) {
3269             type = type || Roo.lib.AnimBase;
3270             if (typeof easing == "string") {
3271                 easing = Roo.lib.Easing[easing];
3272             }
3273             var anim = new type(el, args, duration, easing);
3274             anim.animateX(function() {
3275                 Roo.callback(cb, scope);
3276             });
3277             return anim;
3278         }
3279     };
3280 })();/*
3281  * Portions of this file are based on pieces of Yahoo User Interface Library
3282  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3283  * YUI licensed under the BSD License:
3284  * http://developer.yahoo.net/yui/license.txt
3285  * <script type="text/javascript">
3286  *
3287  */
3288
3289 (function() {    
3290     var libFlyweight;
3291     
3292     function fly(el) {
3293         if (!libFlyweight) {
3294             libFlyweight = new Roo.Element.Flyweight();
3295         }
3296         libFlyweight.dom = el;
3297         return libFlyweight;
3298     }
3299
3300     // since this uses fly! - it cant be in DOM (which does not have fly yet..)
3301     
3302    
3303     
3304     Roo.lib.AnimBase = function(el, attributes, duration, method) {
3305         if (el) {
3306             this.init(el, attributes, duration, method);
3307         }
3308     };
3309
3310     Roo.lib.AnimBase.fly = fly;
3311     
3312     
3313     
3314     Roo.lib.AnimBase.prototype = {
3315
3316         toString: function() {
3317             var el = this.getEl();
3318             var id = el.id || el.tagName;
3319             return ("Anim " + id);
3320         },
3321
3322         patterns: {
3323             noNegatives:        /width|height|opacity|padding/i,
3324             offsetAttribute:  /^((width|height)|(top|left))$/,
3325             defaultUnit:        /width|height|top$|bottom$|left$|right$/i,
3326             offsetUnit:         /\d+(em|%|en|ex|pt|in|cm|mm|pc)$/i
3327         },
3328
3329
3330         doMethod: function(attr, start, end) {
3331             return this.method(this.currentFrame, start, end - start, this.totalFrames);
3332         },
3333
3334
3335         setAttribute: function(attr, val, unit) {
3336             if (this.patterns.noNegatives.test(attr)) {
3337                 val = (val > 0) ? val : 0;
3338             }
3339
3340             Roo.fly(this.getEl(), '_anim').setStyle(attr, val + unit);
3341         },
3342
3343
3344         getAttribute: function(attr) {
3345             var el = this.getEl();
3346             var val = fly(el).getStyle(attr);
3347
3348             if (val !== 'auto' && !this.patterns.offsetUnit.test(val)) {
3349                 return parseFloat(val);
3350             }
3351
3352             var a = this.patterns.offsetAttribute.exec(attr) || [];
3353             var pos = !!( a[3] );
3354             var box = !!( a[2] );
3355
3356
3357             if (box || (fly(el).getStyle('position') == 'absolute' && pos)) {
3358                 val = el['offset' + a[0].charAt(0).toUpperCase() + a[0].substr(1)];
3359             } else {
3360                 val = 0;
3361             }
3362
3363             return val;
3364         },
3365
3366
3367         getDefaultUnit: function(attr) {
3368             if (this.patterns.defaultUnit.test(attr)) {
3369                 return 'px';
3370             }
3371
3372             return '';
3373         },
3374
3375         animateX : function(callback, scope) {
3376             var f = function() {
3377                 this.onComplete.removeListener(f);
3378                 if (typeof callback == "function") {
3379                     callback.call(scope || this, this);
3380                 }
3381             };
3382             this.onComplete.addListener(f, this);
3383             this.animate();
3384         },
3385
3386
3387         setRuntimeAttribute: function(attr) {
3388             var start;
3389             var end;
3390             var attributes = this.attributes;
3391
3392             this.runtimeAttributes[attr] = {};
3393
3394             var isset = function(prop) {
3395                 return (typeof prop !== 'undefined');
3396             };
3397
3398             if (!isset(attributes[attr]['to']) && !isset(attributes[attr]['by'])) {
3399                 return false;
3400             }
3401
3402             start = ( isset(attributes[attr]['from']) ) ? attributes[attr]['from'] : this.getAttribute(attr);
3403
3404
3405             if (isset(attributes[attr]['to'])) {
3406                 end = attributes[attr]['to'];
3407             } else if (isset(attributes[attr]['by'])) {
3408                 if (start.constructor == Array) {
3409                     end = [];
3410                     for (var i = 0, len = start.length; i < len; ++i) {
3411                         end[i] = start[i] + attributes[attr]['by'][i];
3412                     }
3413                 } else {
3414                     end = start + attributes[attr]['by'];
3415                 }
3416             }
3417
3418             this.runtimeAttributes[attr].start = start;
3419             this.runtimeAttributes[attr].end = end;
3420
3421
3422             this.runtimeAttributes[attr].unit = ( isset(attributes[attr].unit) ) ? attributes[attr]['unit'] : this.getDefaultUnit(attr);
3423         },
3424
3425
3426         init: function(el, attributes, duration, method) {
3427
3428             var isAnimated = false;
3429
3430
3431             var startTime = null;
3432
3433
3434             var actualFrames = 0;
3435
3436
3437             el = Roo.getDom(el);
3438
3439
3440             this.attributes = attributes || {};
3441
3442
3443             this.duration = duration || 1;
3444
3445
3446             this.method = method || Roo.lib.Easing.easeNone;
3447
3448
3449             this.useSeconds = true;
3450
3451
3452             this.currentFrame = 0;
3453
3454
3455             this.totalFrames = Roo.lib.AnimMgr.fps;
3456
3457
3458             this.getEl = function() {
3459                 return el;
3460             };
3461
3462
3463             this.isAnimated = function() {
3464                 return isAnimated;
3465             };
3466
3467
3468             this.getStartTime = function() {
3469                 return startTime;
3470             };
3471
3472             this.runtimeAttributes = {};
3473
3474
3475             this.animate = function() {
3476                 if (this.isAnimated()) {
3477                     return false;
3478                 }
3479
3480                 this.currentFrame = 0;
3481
3482                 this.totalFrames = ( this.useSeconds ) ? Math.ceil(Roo.lib.AnimMgr.fps * this.duration) : this.duration;
3483
3484                 Roo.lib.AnimMgr.registerElement(this);
3485             };
3486
3487
3488             this.stop = function(finish) {
3489                 if (finish) {
3490                     this.currentFrame = this.totalFrames;
3491                     this._onTween.fire();
3492                 }
3493                 Roo.lib.AnimMgr.stop(this);
3494             };
3495
3496             var onStart = function() {
3497                 this.onStart.fire();
3498
3499                 this.runtimeAttributes = {};
3500                 for (var attr in this.attributes) {
3501                     this.setRuntimeAttribute(attr);
3502                 }
3503
3504                 isAnimated = true;
3505                 actualFrames = 0;
3506                 startTime = new Date();
3507             };
3508
3509
3510             var onTween = function() {
3511                 var data = {
3512                     duration: new Date() - this.getStartTime(),
3513                     currentFrame: this.currentFrame
3514                 };
3515
3516                 data.toString = function() {
3517                     return (
3518                             'duration: ' + data.duration +
3519                             ', currentFrame: ' + data.currentFrame
3520                             );
3521                 };
3522
3523                 this.onTween.fire(data);
3524
3525                 var runtimeAttributes = this.runtimeAttributes;
3526
3527                 for (var attr in runtimeAttributes) {
3528                     this.setAttribute(attr, this.doMethod(attr, runtimeAttributes[attr].start, runtimeAttributes[attr].end), runtimeAttributes[attr].unit);
3529                 }
3530
3531                 actualFrames += 1;
3532             };
3533
3534             var onComplete = function() {
3535                 var actual_duration = (new Date() - startTime) / 1000 ;
3536
3537                 var data = {
3538                     duration: actual_duration,
3539                     frames: actualFrames,
3540                     fps: actualFrames / actual_duration
3541                 };
3542
3543                 data.toString = function() {
3544                     return (
3545                             'duration: ' + data.duration +
3546                             ', frames: ' + data.frames +
3547                             ', fps: ' + data.fps
3548                             );
3549                 };
3550
3551                 isAnimated = false;
3552                 actualFrames = 0;
3553                 this.onComplete.fire(data);
3554             };
3555
3556
3557             this._onStart = new Roo.util.Event(this);
3558             this.onStart = new Roo.util.Event(this);
3559             this.onTween = new Roo.util.Event(this);
3560             this._onTween = new Roo.util.Event(this);
3561             this.onComplete = new Roo.util.Event(this);
3562             this._onComplete = new Roo.util.Event(this);
3563             this._onStart.addListener(onStart);
3564             this._onTween.addListener(onTween);
3565             this._onComplete.addListener(onComplete);
3566         }
3567     };
3568 })();
3569 /*
3570  * Portions of this file are based on pieces of Yahoo User Interface Library
3571  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3572  * YUI licensed under the BSD License:
3573  * http://developer.yahoo.net/yui/license.txt
3574  * <script type="text/javascript">
3575  *
3576  */
3577
3578 Roo.lib.AnimMgr = new function() {
3579
3580     var thread = null;
3581
3582
3583     var queue = [];
3584
3585
3586     var tweenCount = 0;
3587
3588
3589     this.fps = 1000;
3590
3591
3592     this.delay = 1;
3593
3594
3595     this.registerElement = function(tween) {
3596         queue[queue.length] = tween;
3597         tweenCount += 1;
3598         tween._onStart.fire();
3599         this.start();
3600     };
3601
3602
3603     this.unRegister = function(tween, index) {
3604         tween._onComplete.fire();
3605         index = index || getIndex(tween);
3606         if (index != -1) {
3607             queue.splice(index, 1);
3608         }
3609
3610         tweenCount -= 1;
3611         if (tweenCount <= 0) {
3612             this.stop();
3613         }
3614     };
3615
3616
3617     this.start = function() {
3618         if (thread === null) {
3619             thread = setInterval(this.run, this.delay);
3620         }
3621     };
3622
3623
3624     this.stop = function(tween) {
3625         if (!tween) {
3626             clearInterval(thread);
3627
3628             for (var i = 0, len = queue.length; i < len; ++i) {
3629                 if (queue[0].isAnimated()) {
3630                     this.unRegister(queue[0], 0);
3631                 }
3632             }
3633
3634             queue = [];
3635             thread = null;
3636             tweenCount = 0;
3637         }
3638         else {
3639             this.unRegister(tween);
3640         }
3641     };
3642
3643
3644     this.run = function() {
3645         for (var i = 0, len = queue.length; i < len; ++i) {
3646             var tween = queue[i];
3647             if (!tween || !tween.isAnimated()) {
3648                 continue;
3649             }
3650
3651             if (tween.currentFrame < tween.totalFrames || tween.totalFrames === null)
3652             {
3653                 tween.currentFrame += 1;
3654
3655                 if (tween.useSeconds) {
3656                     correctFrame(tween);
3657                 }
3658                 tween._onTween.fire();
3659             }
3660             else {
3661                 Roo.lib.AnimMgr.stop(tween, i);
3662             }
3663         }
3664     };
3665
3666     var getIndex = function(anim) {
3667         for (var i = 0, len = queue.length; i < len; ++i) {
3668             if (queue[i] == anim) {
3669                 return i;
3670             }
3671         }
3672         return -1;
3673     };
3674
3675
3676     var correctFrame = function(tween) {
3677         var frames = tween.totalFrames;
3678         var frame = tween.currentFrame;
3679         var expected = (tween.currentFrame * tween.duration * 1000 / tween.totalFrames);
3680         var elapsed = (new Date() - tween.getStartTime());
3681         var tweak = 0;
3682
3683         if (elapsed < tween.duration * 1000) {
3684             tweak = Math.round((elapsed / expected - 1) * tween.currentFrame);
3685         } else {
3686             tweak = frames - (frame + 1);
3687         }
3688         if (tweak > 0 && isFinite(tweak)) {
3689             if (tween.currentFrame + tweak >= frames) {
3690                 tweak = frames - (frame + 1);
3691             }
3692
3693             tween.currentFrame += tweak;
3694         }
3695     };
3696 };
3697
3698     /*
3699  * Portions of this file are based on pieces of Yahoo User Interface Library
3700  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
3701  * YUI licensed under the BSD License:
3702  * http://developer.yahoo.net/yui/license.txt
3703  * <script type="text/javascript">
3704  *
3705  */
3706 Roo.lib.Bezier = new function() {
3707
3708         this.getPosition = function(points, t) {
3709             var n = points.length;
3710             var tmp = [];
3711
3712             for (var i = 0; i < n; ++i) {
3713                 tmp[i] = [points[i][0], points[i][1]];
3714             }
3715
3716             for (var j = 1; j < n; ++j) {
3717                 for (i = 0; i < n - j; ++i) {
3718                     tmp[i][0] = (1 - t) * tmp[i][0] + t * tmp[parseInt(i + 1, 10)][0];
3719                     tmp[i][1] = (1 - t) * tmp[i][1] + t * tmp[parseInt(i + 1, 10)][1];
3720                 }
3721             }
3722
3723             return [ tmp[0][0], tmp[0][1] ];
3724
3725         };
3726     }; 
3727
3728 /**
3729  * @class Roo.lib.Color
3730  * @constructor
3731  * An abstract Color implementation. Concrete Color implementations should use
3732  * an instance of this function as their prototype, and implement the getRGB and
3733  * getHSL functions. getRGB should return an object representing the RGB
3734  * components of this Color, with the red, green, and blue components in the
3735  * range [0,255] and the alpha component in the range [0,100]. getHSL should
3736  * return an object representing the HSL components of this Color, with the hue
3737  * component in the range [0,360), the saturation and lightness components in
3738  * the range [0,100], and the alpha component in the range [0,1].
3739  *
3740  *
3741  * Color.js
3742  *
3743  * Functions for Color handling and processing.
3744  *
3745  * http://www.safalra.com/web-design/javascript/Color-handling-and-processing/
3746  *
3747  * The author of this program, Safalra (Stephen Morley), irrevocably releases all
3748  * rights to this program, with the intention of it becoming part of the public
3749  * domain. Because this program is released into the public domain, it comes with
3750  * no warranty either expressed or implied, to the extent permitted by law.
3751  * 
3752  * For more free and public domain JavaScript code by the same author, visit:
3753  * http://www.safalra.com/web-design/javascript/
3754  * 
3755  */
3756 Roo.lib.Color = function() { }
3757
3758
3759 Roo.apply(Roo.lib.Color.prototype, {
3760   
3761   rgb : null,
3762   hsv : null,
3763   hsl : null,
3764   
3765   /**
3766    * getIntegerRGB
3767    * @return {Object} an object representing the RGBA components of this Color. The red,
3768    * green, and blue components are converted to integers in the range [0,255].
3769    * The alpha is a value in the range [0,1].
3770    */
3771   getIntegerRGB : function(){
3772
3773     // get the RGB components of this Color
3774     var rgb = this.getRGB();
3775
3776     // return the integer components
3777     return {
3778       'r' : Math.round(rgb.r),
3779       'g' : Math.round(rgb.g),
3780       'b' : Math.round(rgb.b),
3781       'a' : rgb.a
3782     };
3783
3784   },
3785
3786   /**
3787    * getPercentageRGB
3788    * @return {Object} an object representing the RGBA components of this Color. The red,
3789    * green, and blue components are converted to numbers in the range [0,100].
3790    * The alpha is a value in the range [0,1].
3791    */
3792   getPercentageRGB : function(){
3793
3794     // get the RGB components of this Color
3795     var rgb = this.getRGB();
3796
3797     // return the percentage components
3798     return {
3799       'r' : 100 * rgb.r / 255,
3800       'g' : 100 * rgb.g / 255,
3801       'b' : 100 * rgb.b / 255,
3802       'a' : rgb.a
3803     };
3804
3805   },
3806
3807   /**
3808    * getCSSHexadecimalRGB
3809    * @return {String} a string representing this Color as a CSS hexadecimal RGB Color
3810    * value - that is, a string of the form #RRGGBB where each of RR, GG, and BB
3811    * are two-digit hexadecimal numbers.
3812    */
3813   getCSSHexadecimalRGB : function()
3814   {
3815
3816     // get the integer RGB components
3817     var rgb = this.getIntegerRGB();
3818
3819     // determine the hexadecimal equivalents
3820     var r16 = rgb.r.toString(16);
3821     var g16 = rgb.g.toString(16);
3822     var b16 = rgb.b.toString(16);
3823
3824     // return the CSS RGB Color value
3825     return '#'
3826         + (r16.length == 2 ? r16 : '0' + r16)
3827         + (g16.length == 2 ? g16 : '0' + g16)
3828         + (b16.length == 2 ? b16 : '0' + b16);
3829
3830   },
3831
3832   /**
3833    * getCSSIntegerRGB
3834    * @return {String} a string representing this Color as a CSS integer RGB Color
3835    * value - that is, a string of the form rgb(r,g,b) where each of r, g, and b
3836    * are integers in the range [0,255].
3837    */
3838   getCSSIntegerRGB : function(){
3839
3840     // get the integer RGB components
3841     var rgb = this.getIntegerRGB();
3842
3843     // return the CSS RGB Color value
3844     return 'rgb(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ')';
3845
3846   },
3847
3848   /**
3849    * getCSSIntegerRGBA
3850    * @return {String} Returns a string representing this Color as a CSS integer RGBA Color
3851    * value - that is, a string of the form rgba(r,g,b,a) where each of r, g, and
3852    * b are integers in the range [0,255] and a is in the range [0,1].
3853    */
3854   getCSSIntegerRGBA : function(){
3855
3856     // get the integer RGB components
3857     var rgb = this.getIntegerRGB();
3858
3859     // return the CSS integer RGBA Color value
3860     return 'rgb(' + rgb.r + ',' + rgb.g + ',' + rgb.b + ',' + rgb.a + ')';
3861
3862   },
3863
3864   /**
3865    * getCSSPercentageRGB
3866    * @return {String} a string representing this Color as a CSS percentage RGB Color
3867    * value - that is, a string of the form rgb(r%,g%,b%) where each of r, g, and
3868    * b are in the range [0,100].
3869    */
3870   getCSSPercentageRGB : function(){
3871
3872     // get the percentage RGB components
3873     var rgb = this.getPercentageRGB();
3874
3875     // return the CSS RGB Color value
3876     return 'rgb(' + rgb.r + '%,' + rgb.g + '%,' + rgb.b + '%)';
3877
3878   },
3879
3880   /**
3881    * getCSSPercentageRGBA
3882    * @return {String} a string representing this Color as a CSS percentage RGBA Color
3883    * value - that is, a string of the form rgba(r%,g%,b%,a) where each of r, g,
3884    * and b are in the range [0,100] and a is in the range [0,1].
3885    */
3886   getCSSPercentageRGBA : function(){
3887
3888     // get the percentage RGB components
3889     var rgb = this.getPercentageRGB();
3890
3891     // return the CSS percentage RGBA Color value
3892     return 'rgb(' + rgb.r + '%,' + rgb.g + '%,' + rgb.b + '%,' + rgb.a + ')';
3893
3894   },
3895
3896   /**
3897    * getCSSHSL
3898    * @return {String} a string representing this Color as a CSS HSL Color value - that
3899    * is, a string of the form hsl(h,s%,l%) where h is in the range [0,100] and
3900    * s and l are in the range [0,100].
3901    */
3902   getCSSHSL : function(){
3903
3904     // get the HSL components
3905     var hsl = this.getHSL();
3906
3907     // return the CSS HSL Color value
3908     return 'hsl(' + hsl.h + ',' + hsl.s + '%,' + hsl.l + '%)';
3909
3910   },
3911
3912   /**
3913    * getCSSHSLA
3914    * @return {String} a string representing this Color as a CSS HSLA Color value - that
3915    * is, a string of the form hsla(h,s%,l%,a) where h is in the range [0,100],
3916    * s and l are in the range [0,100], and a is in the range [0,1].
3917    */
3918   getCSSHSLA : function(){
3919
3920     // get the HSL components
3921     var hsl = this.getHSL();
3922
3923     // return the CSS HSL Color value
3924     return 'hsl(' + hsl.h + ',' + hsl.s + '%,' + hsl.l + '%,' + hsl.a + ')';
3925
3926   },
3927
3928   /**
3929    * Sets the Color of the specified node to this Color. This functions sets
3930    * the CSS 'color' property for the node. The parameter is:
3931    * 
3932    * @param {DomElement} node - the node whose Color should be set
3933    */
3934   setNodeColor : function(node){
3935
3936     // set the Color of the node
3937     node.style.color = this.getCSSHexadecimalRGB();
3938
3939   },
3940
3941   /**
3942    * Sets the background Color of the specified node to this Color. This
3943    * functions sets the CSS 'background-color' property for the node. The
3944    * parameter is:
3945    *
3946    * @param {DomElement} node - the node whose background Color should be set
3947    */
3948   setNodeBackgroundColor : function(node){
3949
3950     // set the background Color of the node
3951     node.style.backgroundColor = this.getCSSHexadecimalRGB();
3952
3953   },
3954   // convert between formats..
3955   toRGB: function()
3956   {
3957     var r = this.getIntegerRGB();
3958     return new Roo.lib.RGBColor(r.r,r.g,r.b,r.a);
3959     
3960   },
3961   toHSL : function()
3962   {
3963      var hsl = this.getHSL();
3964   // return the CSS HSL Color value
3965     return new Roo.lib.HSLColor(hsl.h,  hsl.s, hsl.l ,  hsl.a );
3966     
3967   },
3968   
3969   toHSV : function()
3970   {
3971     var rgb = this.toRGB();
3972     var hsv = rgb.getHSV();
3973    // return the CSS HSL Color value
3974     return new Roo.lib.HSVColor(hsv.h,  hsv.s, hsv.v ,  hsv.a );
3975     
3976   },
3977   
3978   // modify  v = 0 ... 1 (eg. 0.5)
3979   saturate : function(v)
3980   {
3981       var rgb = this.toRGB();
3982       var hsv = rgb.getHSV();
3983       return new Roo.lib.HSVColor(hsv.h,  hsv.s * v, hsv.v ,  hsv.a );
3984       
3985   
3986   },
3987   
3988    
3989   /**
3990    * getRGB
3991    * @return {Object} the RGB and alpha components of this Color as an object with r,
3992    * g, b, and a properties. r, g, and b are in the range [0,255] and a is in
3993    * the range [0,1].
3994    */
3995   getRGB: function(){
3996    
3997     // return the RGB components
3998     return {
3999       'r' : this.rgb.r,
4000       'g' : this.rgb.g,
4001       'b' : this.rgb.b,
4002       'a' : this.alpha
4003     };
4004
4005   },
4006
4007   /**
4008    * getHSV
4009    * @return {Object} the HSV and alpha components of this Color as an object with h,
4010    * s, v, and a properties. h is in the range [0,360), s and v are in the range
4011    * [0,100], and a is in the range [0,1].
4012    */
4013   getHSV : function()
4014   {
4015     
4016     // calculate the HSV components if necessary
4017     if (this.hsv == null) {
4018       this.calculateHSV();
4019     }
4020
4021     // return the HSV components
4022     return {
4023       'h' : this.hsv.h,
4024       's' : this.hsv.s,
4025       'v' : this.hsv.v,
4026       'a' : this.alpha
4027     };
4028
4029   },
4030
4031   /**
4032    * getHSL
4033    * @return {Object} the HSL and alpha components of this Color as an object with h,
4034    * s, l, and a properties. h is in the range [0,360), s and l are in the range
4035    * [0,100], and a is in the range [0,1].
4036    */
4037   getHSL : function(){
4038     
4039      
4040     // calculate the HSV components if necessary
4041     if (this.hsl == null) { this.calculateHSL(); }
4042
4043     // return the HSL components
4044     return {
4045       'h' : this.hsl.h,
4046       's' : this.hsl.s,
4047       'l' : this.hsl.l,
4048       'a' : this.alpha
4049     };
4050
4051   }
4052   
4053
4054 });
4055
4056
4057 /**
4058  * @class Roo.lib.RGBColor
4059  * @extends Roo.lib.Color
4060  * Creates a Color specified in the RGB Color space, with an optional alpha
4061  * component. The parameters are:
4062  * @constructor
4063  * 
4064
4065  * @param {Number} r - the red component, clipped to the range [0,255]
4066  * @param {Number} g - the green component, clipped to the range [0,255]
4067  * @param {Number} b - the blue component, clipped to the range [0,255]
4068  * @param {Number} a - the alpha component, clipped to the range [0,1] - this parameter is
4069  *     optional and defaults to 1
4070  */
4071 Roo.lib.RGBColor = function (r, g, b, a){
4072
4073   // store the alpha component after clipping it if necessary
4074   this.alpha = (a === undefined ? 1 : Math.max(0, Math.min(1, a)));
4075
4076   // store the RGB components after clipping them if necessary
4077   this.rgb =
4078       {
4079         'r' : Math.max(0, Math.min(255, r)),
4080         'g' : Math.max(0, Math.min(255, g)),
4081         'b' : Math.max(0, Math.min(255, b))
4082       };
4083
4084   // initialise the HSV and HSL components to null
4085   
4086
4087   /* 
4088    * //private returns the HSV or HSL hue component of this RGBColor. The hue is in the
4089    * range [0,360). The parameters are:
4090    *
4091    * maximum - the maximum of the RGB component values
4092    * range   - the range of the RGB component values
4093    */
4094    
4095
4096 }
4097 // this does an 'exteds'
4098 Roo.extend(Roo.lib.RGBColor, Roo.lib.Color, {
4099
4100   
4101     getHue  : function(maximum, range)
4102     {
4103       var rgb = this.rgb;
4104        
4105       // check whether the range is zero
4106       if (range == 0){
4107   
4108         // set the hue to zero (any hue is acceptable as the Color is grey)
4109         var hue = 0;
4110   
4111       }else{
4112   
4113         // determine which of the components has the highest value and set the hue
4114         switch (maximum){
4115   
4116           // red has the highest value
4117           case rgb.r:
4118             var hue = (rgb.g - rgb.b) / range * 60;
4119             if (hue < 0) { hue += 360; }
4120             break;
4121   
4122           // green has the highest value
4123           case rgb.g:
4124             var hue = (rgb.b - rgb.r) / range * 60 + 120;
4125             break;
4126   
4127           // blue has the highest value
4128           case rgb.b:
4129             var hue = (rgb.r - rgb.g) / range * 60 + 240;
4130             break;
4131   
4132         }
4133   
4134       }
4135   
4136       // return the hue
4137       return hue;
4138   
4139     },
4140
4141   /* //private Calculates and stores the HSV components of this RGBColor so that they can
4142    * be returned be the getHSV function.
4143    */
4144    calculateHSV : function(){
4145     var rgb = this.rgb;
4146     // get the maximum and range of the RGB component values
4147     var maximum = Math.max(rgb.r, rgb.g, rgb.b);
4148     var range   = maximum - Math.min(rgb.r, rgb.g, rgb.b);
4149
4150     // store the HSV components
4151     this.hsv =
4152         {
4153           'h' : this.getHue(maximum, range),
4154           's' : (maximum == 0 ? 0 : 100 * range / maximum),
4155           'v' : maximum / 2.55
4156         };
4157
4158   },
4159
4160   /* //private Calculates and stores the HSL components of this RGBColor so that they can
4161    * be returned be the getHSL function.
4162    */
4163    calculateHSL : function(){
4164     var rgb = this.rgb;
4165     // get the maximum and range of the RGB component values
4166     var maximum = Math.max(rgb.r, rgb.g, rgb.b);
4167     var range   = maximum - Math.min(rgb.r, rgb.g, rgb.b);
4168
4169     // determine the lightness in the range [0,1]
4170     var l = maximum / 255 - range / 510;
4171
4172     // store the HSL components
4173     this.hsl =
4174         {
4175           'h' : this.getHue(maximum, range),
4176           's' : (range == 0 ? 0 : range / 2.55 / (l < 0.5 ? l * 2 : 2 - l * 2)),
4177           'l' : 100 * l
4178         };
4179
4180   }
4181
4182 });
4183
4184 /**
4185  * @class Roo.lib.HSVColor
4186  * @extends Roo.lib.Color
4187  * Creates a Color specified in the HSV Color space, with an optional alpha
4188  * component. The parameters are:
4189  * @constructor
4190  *
4191  * @param {Number} h - the hue component, wrapped to the range [0,360)
4192  * @param {Number} s - the saturation component, clipped to the range [0,100]
4193  * @param {Number} v - the value component, clipped to the range [0,100]
4194  * @param {Number} a - the alpha component, clipped to the range [0,1] - this parameter is
4195  *     optional and defaults to 1
4196  */
4197 Roo.lib.HSVColor = function (h, s, v, a){
4198
4199   // store the alpha component after clipping it if necessary
4200   this.alpha = (a === undefined ? 1 : Math.max(0, Math.min(1, a)));
4201
4202   // store the HSV components after clipping or wrapping them if necessary
4203   this.hsv =
4204       {
4205         'h' : (h % 360 + 360) % 360,
4206         's' : Math.max(0, Math.min(100, s)),
4207         'v' : Math.max(0, Math.min(100, v))
4208       };
4209
4210   // initialise the RGB and HSL components to null
4211   this.rgb = null;
4212   this.hsl = null;
4213 }
4214
4215 Roo.extend(Roo.lib.HSVColor, Roo.lib.Color, {
4216   /* Calculates and stores the RGB components of this HSVColor so that they can
4217    * be returned be the getRGB function.
4218    */
4219   calculateRGB: function ()
4220   {
4221     var hsv = this.hsv;
4222     // check whether the saturation is zero
4223     if (hsv.s == 0){
4224
4225       // set the Color to the appropriate shade of grey
4226       var r = hsv.v;
4227       var g = hsv.v;
4228       var b = hsv.v;
4229
4230     }else{
4231
4232       // set some temporary values
4233       var f  = hsv.h / 60 - Math.floor(hsv.h / 60);
4234       var p  = hsv.v * (1 - hsv.s / 100);
4235       var q  = hsv.v * (1 - hsv.s / 100 * f);
4236       var t  = hsv.v * (1 - hsv.s / 100 * (1 - f));
4237
4238       // set the RGB Color components to their temporary values
4239       switch (Math.floor(hsv.h / 60)){
4240         case 0: var r = hsv.v; var g = t; var b = p; break;
4241         case 1: var r = q; var g = hsv.v; var b = p; break;
4242         case 2: var r = p; var g = hsv.v; var b = t; break;
4243         case 3: var r = p; var g = q; var b = hsv.v; break;
4244         case 4: var r = t; var g = p; var b = hsv.v; break;
4245         case 5: var r = hsv.v; var g = p; var b = q; break;
4246       }
4247
4248     }
4249
4250     // store the RGB components
4251     this.rgb =
4252         {
4253           'r' : r * 2.55,
4254           'g' : g * 2.55,
4255           'b' : b * 2.55
4256         };
4257
4258   },
4259
4260   /* Calculates and stores the HSL components of this HSVColor so that they can
4261    * be returned be the getHSL function.
4262    */
4263   calculateHSL : function (){
4264
4265     var hsv = this.hsv;
4266     // determine the lightness in the range [0,100]
4267     var l = (2 - hsv.s / 100) * hsv.v / 2;
4268
4269     // store the HSL components
4270     this.hsl =
4271         {
4272           'h' : hsv.h,
4273           's' : hsv.s * hsv.v / (l < 50 ? l * 2 : 200 - l * 2),
4274           'l' : l
4275         };
4276
4277     // correct a division-by-zero error
4278     if (isNaN(hsl.s)) { hsl.s = 0; }
4279
4280   } 
4281  
4282
4283 });
4284  
4285
4286 /**
4287  * @class Roo.lib.HSLColor
4288  * @extends Roo.lib.Color
4289  *
4290  * @constructor
4291  * Creates a Color specified in the HSL Color space, with an optional alpha
4292  * component. The parameters are:
4293  *
4294  * @param {Number} h - the hue component, wrapped to the range [0,360)
4295  * @param {Number} s - the saturation component, clipped to the range [0,100]
4296  * @param {Number} l - the lightness component, clipped to the range [0,100]
4297  * @param {Number} a - the alpha component, clipped to the range [0,1] - this parameter is
4298  *     optional and defaults to 1
4299  */
4300
4301 Roo.lib.HSLColor = function(h, s, l, a){
4302
4303   // store the alpha component after clipping it if necessary
4304   this.alpha = (a === undefined ? 1 : Math.max(0, Math.min(1, a)));
4305
4306   // store the HSL components after clipping or wrapping them if necessary
4307   this.hsl =
4308       {
4309         'h' : (h % 360 + 360) % 360,
4310         's' : Math.max(0, Math.min(100, s)),
4311         'l' : Math.max(0, Math.min(100, l))
4312       };
4313
4314   // initialise the RGB and HSV components to null
4315 }
4316
4317 Roo.extend(Roo.lib.HSLColor, Roo.lib.Color, {
4318
4319   /* Calculates and stores the RGB components of this HSLColor so that they can
4320    * be returned be the getRGB function.
4321    */
4322   calculateRGB: function (){
4323
4324     // check whether the saturation is zero
4325     if (this.hsl.s == 0){
4326
4327       // store the RGB components representing the appropriate shade of grey
4328       this.rgb =
4329           {
4330             'r' : this.hsl.l * 2.55,
4331             'g' : this.hsl.l * 2.55,
4332             'b' : this.hsl.l * 2.55
4333           };
4334
4335     }else{
4336
4337       // set some temporary values
4338       var p = this.hsl.l < 50
4339             ? this.hsl.l * (1 + hsl.s / 100)
4340             : this.hsl.l + hsl.s - hsl.l * hsl.s / 100;
4341       var q = 2 * hsl.l - p;
4342
4343       // initialise the RGB components
4344       this.rgb =
4345           {
4346             'r' : (h + 120) / 60 % 6,
4347             'g' : h / 60,
4348             'b' : (h + 240) / 60 % 6
4349           };
4350
4351       // loop over the RGB components
4352       for (var key in this.rgb){
4353
4354         // ensure that the property is not inherited from the root object
4355         if (this.rgb.hasOwnProperty(key)){
4356
4357           // set the component to its value in the range [0,100]
4358           if (this.rgb[key] < 1){
4359             this.rgb[key] = q + (p - q) * this.rgb[key];
4360           }else if (this.rgb[key] < 3){
4361             this.rgb[key] = p;
4362           }else if (this.rgb[key] < 4){
4363             this.rgb[key] = q + (p - q) * (4 - this.rgb[key]);
4364           }else{
4365             this.rgb[key] = q;
4366           }
4367
4368           // set the component to its value in the range [0,255]
4369           this.rgb[key] *= 2.55;
4370
4371         }
4372
4373       }
4374
4375     }
4376
4377   },
4378
4379   /* Calculates and stores the HSV components of this HSLColor so that they can
4380    * be returned be the getHSL function.
4381    */
4382    calculateHSV : function(){
4383
4384     // set a temporary value
4385     var t = this.hsl.s * (this.hsl.l < 50 ? this.hsl.l : 100 - this.hsl.l) / 100;
4386
4387     // store the HSV components
4388     this.hsv =
4389         {
4390           'h' : this.hsl.h,
4391           's' : 200 * t / (this.hsl.l + t),
4392           'v' : t + this.hsl.l
4393         };
4394
4395     // correct a division-by-zero error
4396     if (isNaN(this.hsv.s)) { this.hsv.s = 0; }
4397
4398   }
4399  
4400
4401 });
4402 /*
4403  * Portions of this file are based on pieces of Yahoo User Interface Library
4404  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4405  * YUI licensed under the BSD License:
4406  * http://developer.yahoo.net/yui/license.txt
4407  * <script type="text/javascript">
4408  *
4409  */
4410 (function() {
4411
4412     Roo.lib.ColorAnim = function(el, attributes, duration, method) {
4413         Roo.lib.ColorAnim.superclass.constructor.call(this, el, attributes, duration, method);
4414     };
4415
4416     Roo.extend(Roo.lib.ColorAnim, Roo.lib.AnimBase);
4417
4418     var fly = Roo.lib.AnimBase.fly;
4419     var Y = Roo.lib;
4420     var superclass = Y.ColorAnim.superclass;
4421     var proto = Y.ColorAnim.prototype;
4422
4423     proto.toString = function() {
4424         var el = this.getEl();
4425         var id = el.id || el.tagName;
4426         return ("ColorAnim " + id);
4427     };
4428
4429     proto.patterns.color = /color$/i;
4430     proto.patterns.rgb = /^rgb\(([0-9]+)\s*,\s*([0-9]+)\s*,\s*([0-9]+)\)$/i;
4431     proto.patterns.hex = /^#?([0-9A-F]{2})([0-9A-F]{2})([0-9A-F]{2})$/i;
4432     proto.patterns.hex3 = /^#?([0-9A-F]{1})([0-9A-F]{1})([0-9A-F]{1})$/i;
4433     proto.patterns.transparent = /^transparent|rgba\(0, 0, 0, 0\)$/;
4434
4435
4436     proto.parseColor = function(s) {
4437         if (s.length == 3) {
4438             return s;
4439         }
4440
4441         var c = this.patterns.hex.exec(s);
4442         if (c && c.length == 4) {
4443             return [ parseInt(c[1], 16), parseInt(c[2], 16), parseInt(c[3], 16) ];
4444         }
4445
4446         c = this.patterns.rgb.exec(s);
4447         if (c && c.length == 4) {
4448             return [ parseInt(c[1], 10), parseInt(c[2], 10), parseInt(c[3], 10) ];
4449         }
4450
4451         c = this.patterns.hex3.exec(s);
4452         if (c && c.length == 4) {
4453             return [ parseInt(c[1] + c[1], 16), parseInt(c[2] + c[2], 16), parseInt(c[3] + c[3], 16) ];
4454         }
4455
4456         return null;
4457     };
4458     // since this uses fly! - it cant be in ColorAnim (which does not have fly yet..)
4459     proto.getAttribute = function(attr) {
4460         var el = this.getEl();
4461         if (this.patterns.color.test(attr)) {
4462             var val = fly(el).getStyle(attr);
4463
4464             if (this.patterns.transparent.test(val)) {
4465                 var parent = el.parentNode;
4466                 val = fly(parent).getStyle(attr);
4467
4468                 while (parent && this.patterns.transparent.test(val)) {
4469                     parent = parent.parentNode;
4470                     val = fly(parent).getStyle(attr);
4471                     if (parent.tagName.toUpperCase() == 'HTML') {
4472                         val = '#fff';
4473                     }
4474                 }
4475             }
4476         } else {
4477             val = superclass.getAttribute.call(this, attr);
4478         }
4479
4480         return val;
4481     };
4482     proto.getAttribute = function(attr) {
4483         var el = this.getEl();
4484         if (this.patterns.color.test(attr)) {
4485             var val = fly(el).getStyle(attr);
4486
4487             if (this.patterns.transparent.test(val)) {
4488                 var parent = el.parentNode;
4489                 val = fly(parent).getStyle(attr);
4490
4491                 while (parent && this.patterns.transparent.test(val)) {
4492                     parent = parent.parentNode;
4493                     val = fly(parent).getStyle(attr);
4494                     if (parent.tagName.toUpperCase() == 'HTML') {
4495                         val = '#fff';
4496                     }
4497                 }
4498             }
4499         } else {
4500             val = superclass.getAttribute.call(this, attr);
4501         }
4502
4503         return val;
4504     };
4505
4506     proto.doMethod = function(attr, start, end) {
4507         var val;
4508
4509         if (this.patterns.color.test(attr)) {
4510             val = [];
4511             for (var i = 0, len = start.length; i < len; ++i) {
4512                 val[i] = superclass.doMethod.call(this, attr, start[i], end[i]);
4513             }
4514
4515             val = 'rgb(' + Math.floor(val[0]) + ',' + Math.floor(val[1]) + ',' + Math.floor(val[2]) + ')';
4516         }
4517         else {
4518             val = superclass.doMethod.call(this, attr, start, end);
4519         }
4520
4521         return val;
4522     };
4523
4524     proto.setRuntimeAttribute = function(attr) {
4525         superclass.setRuntimeAttribute.call(this, attr);
4526
4527         if (this.patterns.color.test(attr)) {
4528             var attributes = this.attributes;
4529             var start = this.parseColor(this.runtimeAttributes[attr].start);
4530             var end = this.parseColor(this.runtimeAttributes[attr].end);
4531
4532             if (typeof attributes[attr]['to'] === 'undefined' && typeof attributes[attr]['by'] !== 'undefined') {
4533                 end = this.parseColor(attributes[attr].by);
4534
4535                 for (var i = 0, len = start.length; i < len; ++i) {
4536                     end[i] = start[i] + end[i];
4537                 }
4538             }
4539
4540             this.runtimeAttributes[attr].start = start;
4541             this.runtimeAttributes[attr].end = end;
4542         }
4543     };
4544 })();
4545
4546 /*
4547  * Portions of this file are based on pieces of Yahoo User Interface Library
4548  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4549  * YUI licensed under the BSD License:
4550  * http://developer.yahoo.net/yui/license.txt
4551  * <script type="text/javascript">
4552  *
4553  */
4554 Roo.lib.Easing = {
4555
4556
4557     easeNone: function (t, b, c, d) {
4558         return c * t / d + b;
4559     },
4560
4561
4562     easeIn: function (t, b, c, d) {
4563         return c * (t /= d) * t + b;
4564     },
4565
4566
4567     easeOut: function (t, b, c, d) {
4568         return -c * (t /= d) * (t - 2) + b;
4569     },
4570
4571
4572     easeBoth: function (t, b, c, d) {
4573         if ((t /= d / 2) < 1) {
4574             return c / 2 * t * t + b;
4575         }
4576
4577         return -c / 2 * ((--t) * (t - 2) - 1) + b;
4578     },
4579
4580
4581     easeInStrong: function (t, b, c, d) {
4582         return c * (t /= d) * t * t * t + b;
4583     },
4584
4585
4586     easeOutStrong: function (t, b, c, d) {
4587         return -c * ((t = t / d - 1) * t * t * t - 1) + b;
4588     },
4589
4590
4591     easeBothStrong: function (t, b, c, d) {
4592         if ((t /= d / 2) < 1) {
4593             return c / 2 * t * t * t * t + b;
4594         }
4595
4596         return -c / 2 * ((t -= 2) * t * t * t - 2) + b;
4597     },
4598
4599
4600
4601     elasticIn: function (t, b, c, d, a, p) {
4602         if (t == 0) {
4603             return b;
4604         }
4605         if ((t /= d) == 1) {
4606             return b + c;
4607         }
4608         if (!p) {
4609             p = d * .3;
4610         }
4611
4612         if (!a || a < Math.abs(c)) {
4613             a = c;
4614             var s = p / 4;
4615         }
4616         else {
4617             var s = p / (2 * Math.PI) * Math.asin(c / a);
4618         }
4619
4620         return -(a * Math.pow(2, 10 * (t -= 1)) * Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
4621     },
4622
4623
4624     elasticOut: function (t, b, c, d, a, p) {
4625         if (t == 0) {
4626             return b;
4627         }
4628         if ((t /= d) == 1) {
4629             return b + c;
4630         }
4631         if (!p) {
4632             p = d * .3;
4633         }
4634
4635         if (!a || a < Math.abs(c)) {
4636             a = c;
4637             var s = p / 4;
4638         }
4639         else {
4640             var s = p / (2 * Math.PI) * Math.asin(c / a);
4641         }
4642
4643         return a * Math.pow(2, -10 * t) * Math.sin((t * d - s) * (2 * Math.PI) / p) + c + b;
4644     },
4645
4646
4647     elasticBoth: function (t, b, c, d, a, p) {
4648         if (t == 0) {
4649             return b;
4650         }
4651
4652         if ((t /= d / 2) == 2) {
4653             return b + c;
4654         }
4655
4656         if (!p) {
4657             p = d * (.3 * 1.5);
4658         }
4659
4660         if (!a || a < Math.abs(c)) {
4661             a = c;
4662             var s = p / 4;
4663         }
4664         else {
4665             var s = p / (2 * Math.PI) * Math.asin(c / a);
4666         }
4667
4668         if (t < 1) {
4669             return -.5 * (a * Math.pow(2, 10 * (t -= 1)) *
4670                           Math.sin((t * d - s) * (2 * Math.PI) / p)) + b;
4671         }
4672         return a * Math.pow(2, -10 * (t -= 1)) *
4673                Math.sin((t * d - s) * (2 * Math.PI) / p) * .5 + c + b;
4674     },
4675
4676
4677
4678     backIn: function (t, b, c, d, s) {
4679         if (typeof s == 'undefined') {
4680             s = 1.70158;
4681         }
4682         return c * (t /= d) * t * ((s + 1) * t - s) + b;
4683     },
4684
4685
4686     backOut: function (t, b, c, d, s) {
4687         if (typeof s == 'undefined') {
4688             s = 1.70158;
4689         }
4690         return c * ((t = t / d - 1) * t * ((s + 1) * t + s) + 1) + b;
4691     },
4692
4693
4694     backBoth: function (t, b, c, d, s) {
4695         if (typeof s == 'undefined') {
4696             s = 1.70158;
4697         }
4698
4699         if ((t /= d / 2 ) < 1) {
4700             return c / 2 * (t * t * (((s *= (1.525)) + 1) * t - s)) + b;
4701         }
4702         return c / 2 * ((t -= 2) * t * (((s *= (1.525)) + 1) * t + s) + 2) + b;
4703     },
4704
4705
4706     bounceIn: function (t, b, c, d) {
4707         return c - Roo.lib.Easing.bounceOut(d - t, 0, c, d) + b;
4708     },
4709
4710
4711     bounceOut: function (t, b, c, d) {
4712         if ((t /= d) < (1 / 2.75)) {
4713             return c * (7.5625 * t * t) + b;
4714         } else if (t < (2 / 2.75)) {
4715             return c * (7.5625 * (t -= (1.5 / 2.75)) * t + .75) + b;
4716         } else if (t < (2.5 / 2.75)) {
4717             return c * (7.5625 * (t -= (2.25 / 2.75)) * t + .9375) + b;
4718         }
4719         return c * (7.5625 * (t -= (2.625 / 2.75)) * t + .984375) + b;
4720     },
4721
4722
4723     bounceBoth: function (t, b, c, d) {
4724         if (t < d / 2) {
4725             return Roo.lib.Easing.bounceIn(t * 2, 0, c, d) * .5 + b;
4726         }
4727         return Roo.lib.Easing.bounceOut(t * 2 - d, 0, c, d) * .5 + c * .5 + b;
4728     }
4729 };/*
4730  * Portions of this file are based on pieces of Yahoo User Interface Library
4731  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4732  * YUI licensed under the BSD License:
4733  * http://developer.yahoo.net/yui/license.txt
4734  * <script type="text/javascript">
4735  *
4736  */
4737     (function() {
4738         Roo.lib.Motion = function(el, attributes, duration, method) {
4739             if (el) {
4740                 Roo.lib.Motion.superclass.constructor.call(this, el, attributes, duration, method);
4741             }
4742         };
4743
4744         Roo.extend(Roo.lib.Motion, Roo.lib.ColorAnim);
4745
4746
4747         var Y = Roo.lib;
4748         var superclass = Y.Motion.superclass;
4749         var proto = Y.Motion.prototype;
4750
4751         proto.toString = function() {
4752             var el = this.getEl();
4753             var id = el.id || el.tagName;
4754             return ("Motion " + id);
4755         };
4756
4757         proto.patterns.points = /^points$/i;
4758
4759         proto.setAttribute = function(attr, val, unit) {
4760             if (this.patterns.points.test(attr)) {
4761                 unit = unit || 'px';
4762                 superclass.setAttribute.call(this, 'left', val[0], unit);
4763                 superclass.setAttribute.call(this, 'top', val[1], unit);
4764             } else {
4765                 superclass.setAttribute.call(this, attr, val, unit);
4766             }
4767         };
4768
4769         proto.getAttribute = function(attr) {
4770             if (this.patterns.points.test(attr)) {
4771                 var val = [
4772                         superclass.getAttribute.call(this, 'left'),
4773                         superclass.getAttribute.call(this, 'top')
4774                         ];
4775             } else {
4776                 val = superclass.getAttribute.call(this, attr);
4777             }
4778
4779             return val;
4780         };
4781
4782         proto.doMethod = function(attr, start, end) {
4783             var val = null;
4784
4785             if (this.patterns.points.test(attr)) {
4786                 var t = this.method(this.currentFrame, 0, 100, this.totalFrames) / 100;
4787                 val = Y.Bezier.getPosition(this.runtimeAttributes[attr], t);
4788             } else {
4789                 val = superclass.doMethod.call(this, attr, start, end);
4790             }
4791             return val;
4792         };
4793
4794         proto.setRuntimeAttribute = function(attr) {
4795             if (this.patterns.points.test(attr)) {
4796                 var el = this.getEl();
4797                 var attributes = this.attributes;
4798                 var start;
4799                 var control = attributes['points']['control'] || [];
4800                 var end;
4801                 var i, len;
4802
4803                 if (control.length > 0 && !(control[0] instanceof Array)) {
4804                     control = [control];
4805                 } else {
4806                     var tmp = [];
4807                     for (i = 0,len = control.length; i < len; ++i) {
4808                         tmp[i] = control[i];
4809                     }
4810                     control = tmp;
4811                 }
4812
4813                 Roo.fly(el).position();
4814
4815                 if (isset(attributes['points']['from'])) {
4816                     Roo.lib.Dom.setXY(el, attributes['points']['from']);
4817                 }
4818                 else {
4819                     Roo.lib.Dom.setXY(el, Roo.lib.Dom.getXY(el));
4820                 }
4821
4822                 start = this.getAttribute('points');
4823
4824
4825                 if (isset(attributes['points']['to'])) {
4826                     end = translateValues.call(this, attributes['points']['to'], start);
4827
4828                     var pageXY = Roo.lib.Dom.getXY(this.getEl());
4829                     for (i = 0,len = control.length; i < len; ++i) {
4830                         control[i] = translateValues.call(this, control[i], start);
4831                     }
4832
4833
4834                 } else if (isset(attributes['points']['by'])) {
4835                     end = [ start[0] + attributes['points']['by'][0], start[1] + attributes['points']['by'][1] ];
4836
4837                     for (i = 0,len = control.length; i < len; ++i) {
4838                         control[i] = [ start[0] + control[i][0], start[1] + control[i][1] ];
4839                     }
4840                 }
4841
4842                 this.runtimeAttributes[attr] = [start];
4843
4844                 if (control.length > 0) {
4845                     this.runtimeAttributes[attr] = this.runtimeAttributes[attr].concat(control);
4846                 }
4847
4848                 this.runtimeAttributes[attr][this.runtimeAttributes[attr].length] = end;
4849             }
4850             else {
4851                 superclass.setRuntimeAttribute.call(this, attr);
4852             }
4853         };
4854
4855         var translateValues = function(val, start) {
4856             var pageXY = Roo.lib.Dom.getXY(this.getEl());
4857             val = [ val[0] - pageXY[0] + start[0], val[1] - pageXY[1] + start[1] ];
4858
4859             return val;
4860         };
4861
4862         var isset = function(prop) {
4863             return (typeof prop !== 'undefined');
4864         };
4865     })();
4866 /*
4867  * Portions of this file are based on pieces of Yahoo User Interface Library
4868  * Copyright (c) 2007, Yahoo! Inc. All rights reserved.
4869  * YUI licensed under the BSD License:
4870  * http://developer.yahoo.net/yui/license.txt
4871  * <script type="text/javascript">
4872  *
4873  */
4874     (function() {
4875         Roo.lib.Scroll = function(el, attributes, duration, method) {
4876             if (el) {
4877                 Roo.lib.Scroll.superclass.constructor.call(this, el, attributes, duration, method);
4878             }
4879         };
4880
4881         Roo.extend(Roo.lib.Scroll, Roo.lib.ColorAnim);
4882
4883
4884         var Y = Roo.lib;
4885         var superclass = Y.Scroll.superclass;
4886         var proto = Y.Scroll.prototype;
4887
4888         proto.toString = function() {
4889             var el = this.getEl();
4890             var id = el.id || el.tagName;
4891             return ("Scroll " + id);
4892         };
4893
4894         proto.doMethod = function(attr, start, end) {
4895             var val = null;
4896
4897             if (attr == 'scroll') {
4898                 val = [
4899                         this.method(this.currentFrame, start[0], end[0] - start[0], this.totalFrames),
4900                         this.method(this.currentFrame, start[1], end[1] - start[1], this.totalFrames)
4901                         ];
4902
4903             } else {
4904                 val = superclass.doMethod.call(this, attr, start, end);
4905             }
4906             return val;
4907         };
4908
4909         proto.getAttribute = function(attr) {
4910             var val = null;
4911             var el = this.getEl();
4912
4913             if (attr == 'scroll') {
4914                 val = [ el.scrollLeft, el.scrollTop ];
4915             } else {
4916                 val = superclass.getAttribute.call(this, attr);
4917             }
4918
4919             return val;
4920         };
4921
4922         proto.setAttribute = function(attr, val, unit) {
4923             var el = this.getEl();
4924
4925             if (attr == 'scroll') {
4926                 el.scrollLeft = val[0];
4927                 el.scrollTop = val[1];
4928             } else {
4929                 superclass.setAttribute.call(this, attr, val, unit);
4930             }
4931         };
4932     })();
4933 /**
4934  * Originally based of this code... - refactored for Roo...
4935  * https://github.com/aaalsaleh/undo-manager
4936  
4937  * undo-manager.js
4938  * @author  Abdulrahman Alsaleh 
4939  * @copyright 2015 Abdulrahman Alsaleh 
4940  * @license  MIT License (c) 
4941  *
4942  * Hackily modifyed by alan@roojs.com
4943  *
4944  *
4945  *  
4946  *
4947  *  TOTALLY UNTESTED...
4948  *
4949  *  Documentation to be done....
4950  */
4951  
4952
4953 /**
4954 * @class Roo.lib.UndoManager
4955 * An undo manager implementation in JavaScript. It follows the W3C UndoManager and DOM Transaction
4956 * Draft and the undocumented and disabled Mozilla Firefox's UndoManager implementation.
4957
4958  * Usage:
4959  * <pre><code>
4960
4961
4962 editor.undoManager = new Roo.lib.UndoManager(1000, editor);
4963  
4964 </code></pre>
4965
4966 * For more information see this blog post with examples:
4967 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
4968      - Create Elements using DOM, HTML fragments and Templates</a>. 
4969 * @constructor
4970 * @param {Number} limit how far back to go ... use 1000?
4971 * @param {Object} scope usually use document..
4972 */
4973
4974 Roo.lib.UndoManager = function (limit, undoScopeHost)
4975 {
4976     this.stack = [];
4977     this.limit = limit;
4978     this.scope = undoScopeHost;
4979     this.fireEvent = typeof CustomEvent != 'undefined' && undoScopeHost && undoScopeHost.dispatchEvent;
4980     if (this.fireEvent) {
4981         this.bindEvents();
4982     }
4983     this.reset();
4984     
4985 };
4986         
4987 Roo.lib.UndoManager.prototype = {
4988     
4989     limit : false,
4990     stack : false,
4991     scope :  false,
4992     fireEvent : false,
4993     position : 0,
4994     length : 0,
4995     
4996     
4997      /**
4998      * To push and execute a transaction, the method undoManager.transact
4999      * must be called by passing a transaction object as the first argument, and a merge
5000      * flag as the second argument. A transaction object has the following properties:
5001      *
5002      * Usage:
5003 <pre><code>
5004 undoManager.transact({
5005     label: 'Typing',
5006     execute: function() { ... },
5007     undo: function() { ... },
5008     // redo same as execute
5009     redo: function() { this.execute(); }
5010 }, false);
5011
5012 // merge transaction
5013 undoManager.transact({
5014     label: 'Typing',
5015     execute: function() { ... },  // this will be run...
5016     undo: function() { ... }, // what to do when undo is run.
5017     // redo same as execute
5018     redo: function() { this.execute(); }
5019 }, true); 
5020 </code></pre> 
5021      *
5022      * 
5023      * @param {Object} transaction The transaction to add to the stack.
5024      * @return {String} The HTML fragment
5025      */
5026     
5027     
5028     transact : function (transaction, merge)
5029     {
5030         if (arguments.length < 2) {
5031             throw new TypeError('Not enough arguments to UndoManager.transact.');
5032         }
5033
5034         transaction.execute();
5035
5036         this.stack.splice(0, this.position);
5037         if (merge && this.length) {
5038             this.stack[0].push(transaction);
5039         } else {
5040             this.stack.unshift([transaction]);
5041         }
5042     
5043         this.position = 0;
5044
5045         if (this.limit && this.stack.length > this.limit) {
5046             this.length = this.stack.length = this.limit;
5047         } else {
5048             this.length = this.stack.length;
5049         }
5050
5051         if (this.fireEvent) {
5052             this.scope.dispatchEvent(
5053                 new CustomEvent('DOMTransaction', {
5054                     detail: {
5055                         transactions: this.stack[0].slice()
5056                     },
5057                     bubbles: true,
5058                     cancelable: false
5059                 })
5060             );
5061         }
5062         
5063         //Roo.log("transaction: pos:" + this.position + " len: " + this.length + " slen:" + this.stack.length);
5064       
5065         
5066     },
5067
5068     undo : function ()
5069     {
5070         //Roo.log("undo: pos:" + this.position + " len: " + this.length + " slen:" + this.stack.length);
5071         
5072         if (this.position < this.length) {
5073             for (var i = this.stack[this.position].length - 1; i >= 0; i--) {
5074                 this.stack[this.position][i].undo();
5075             }
5076             this.position++;
5077
5078             if (this.fireEvent) {
5079                 this.scope.dispatchEvent(
5080                     new CustomEvent('undo', {
5081                         detail: {
5082                             transactions: this.stack[this.position - 1].slice()
5083                         },
5084                         bubbles: true,
5085                         cancelable: false
5086                     })
5087                 );
5088             }
5089         }
5090     },
5091
5092     redo : function ()
5093     {
5094         if (this.position > 0) {
5095             for (var i = 0, n = this.stack[this.position - 1].length; i < n; i++) {
5096                 this.stack[this.position - 1][i].redo();
5097             }
5098             this.position--;
5099
5100             if (this.fireEvent) {
5101                 this.scope.dispatchEvent(
5102                     new CustomEvent('redo', {
5103                         detail: {
5104                             transactions: this.stack[this.position].slice()
5105                         },
5106                         bubbles: true,
5107                         cancelable: false
5108                     })
5109                 );
5110             }
5111         }
5112     },
5113
5114     item : function (index)
5115     {
5116         if (index >= 0 && index < this.length) {
5117             return this.stack[index].slice();
5118         }
5119         return null;
5120     },
5121
5122     clearUndo : function () {
5123         this.stack.length = this.length = this.position;
5124     },
5125
5126     clearRedo : function () {
5127         this.stack.splice(0, this.position);
5128         this.position = 0;
5129         this.length = this.stack.length;
5130     },
5131     /**
5132      * Reset the undo - probaly done on load to clear all history.
5133      */
5134     reset : function()
5135     {
5136         this.stack = [];
5137         this.position = 0;
5138         this.length = 0;
5139         this.current_html = this.scope.innerHTML;
5140         if (this.timer !== false) {
5141             clearTimeout(this.timer);
5142         }
5143         this.timer = false;
5144         this.merge = false;
5145         this.addEvent();
5146         
5147     },
5148     current_html : '',
5149     timer : false,
5150     merge : false,
5151     
5152     
5153     // this will handle the undo/redo on the element.?
5154     bindEvents : function()
5155     {
5156         var el  = this.scope;
5157         el.undoManager = this;
5158         
5159         
5160         this.scope.addEventListener('keydown', function(e) {
5161             if ((e.ctrlKey || e.metaKey) && e.keyCode === 90) {
5162                 if (e.shiftKey) {
5163                     el.undoManager.redo(); // Ctrl/Command + Shift + Z
5164                 } else {
5165                     el.undoManager.undo(); // Ctrl/Command + Z
5166                 }
5167         
5168                 e.preventDefault();
5169             }
5170         });
5171         /// ignore keyup..
5172         this.scope.addEventListener('keyup', function(e) {
5173             if ((e.ctrlKey || e.metaKey) && e.keyCode === 90) {
5174                 e.preventDefault();
5175             }
5176         });
5177         
5178         
5179         
5180         var t = this;
5181         
5182         el.addEventListener('input', function(e) {
5183             if(el.innerHTML == t.current_html) {
5184                 return;
5185             }
5186             // only record events every second.
5187             if (t.timer !== false) {
5188                clearTimeout(t.timer);
5189                t.timer = false;
5190             }
5191             t.timer = setTimeout(function() { t.merge = false; }, 1000);
5192             
5193             t.addEvent(t.merge);
5194             t.merge = true; // ignore changes happening every second..
5195         });
5196         },
5197     /**
5198      * Manually add an event.
5199      * Normall called without arguements - and it will just get added to the stack.
5200      * 
5201      */
5202     
5203     addEvent : function(merge)
5204     {
5205         //Roo.log("undomanager +" + (merge ? 'Y':'n'));
5206         // not sure if this should clear the timer 
5207         merge = typeof(merge) == 'undefined' ? false : merge; 
5208         
5209         this.scope.undoManager.transact({
5210             scope : this.scope,
5211             oldHTML: this.current_html,
5212             newHTML: this.scope.innerHTML,
5213             // nothing to execute (content already changed when input is fired)
5214             execute: function() { },
5215             undo: function() {
5216                 this.scope.innerHTML = this.current_html = this.oldHTML;
5217             },
5218             redo: function() {
5219                 this.scope.innerHTML = this.current_html = this.newHTML;
5220             }
5221         }, false); //merge);
5222         
5223         this.merge = merge;
5224         
5225         this.current_html = this.scope.innerHTML;
5226     }
5227     
5228     
5229      
5230     
5231     
5232     
5233 };
5234 /**
5235  * @class Roo.lib.Range
5236  * @constructor
5237  * This is a toolkit, normally used to copy features into a Dom Range element
5238  * Roo.lib.Range.wrap(x);
5239  *
5240  *
5241  *
5242  */
5243 Roo.lib.Range = function() { };
5244
5245 /**
5246  * Wrap a Dom Range object, to give it new features...
5247  * @static
5248  * @param {Range} the range to wrap
5249  */
5250 Roo.lib.Range.wrap = function(r) {
5251     return Roo.apply(r, Roo.lib.Range.prototype);
5252 };
5253 /**
5254  * find a parent node eg. LI / OL
5255  * @param {string|Array} node name or array of nodenames
5256  * @return {DomElement|false}
5257  */
5258 Roo.apply(Roo.lib.Range.prototype,
5259 {
5260     
5261     closest : function(str)
5262     {
5263         if (typeof(str) != 'string') {
5264             // assume it's a array.
5265             for(var i = 0;i < str.length;i++) {
5266                 var r = this.closest(str[i]);
5267                 if (r !== false) {
5268                     return r;
5269                 }
5270                 
5271             }
5272             return false;
5273         }
5274         str = str.toLowerCase();
5275         var n = this.commonAncestorContainer; // might not be a node
5276         while (n.nodeType != 1) {
5277             n = n.parentNode;
5278         }
5279         
5280         if (n.nodeName.toLowerCase() == str ) {
5281             return n;
5282         }
5283         if (n.nodeName.toLowerCase() == 'body') {
5284             return false;
5285         }
5286             
5287         return n.closest(str) || false;
5288         
5289     },
5290     cloneRange : function()
5291     {
5292         return Roo.lib.Range.wrap(Range.prototype.cloneRange.call(this));
5293     }
5294 });/**
5295  * @class Roo.lib.Selection
5296  * @constructor
5297  * This is a toolkit, normally used to copy features into a Dom Selection element
5298  * Roo.lib.Selection.wrap(x);
5299  *
5300  *
5301  *
5302  */
5303 Roo.lib.Selection = function() { };
5304
5305 /**
5306  * Wrap a Dom Range object, to give it new features...
5307  * @static
5308  * @param {Range} the range to wrap
5309  */
5310 Roo.lib.Selection.wrap = function(r, doc) {
5311     Roo.apply(r, Roo.lib.Selection.prototype);
5312     r.ownerDocument = doc; // usefull so we dont have to keep referening to it.
5313     return r;
5314 };
5315 /**
5316  * find a parent node eg. LI / OL
5317  * @param {string|Array} node name or array of nodenames
5318  * @return {DomElement|false}
5319  */
5320 Roo.apply(Roo.lib.Selection.prototype,
5321 {
5322     /**
5323      * the owner document
5324      */
5325     ownerDocument : false,
5326     
5327     getRangeAt : function(n)
5328     {
5329         return Roo.lib.Range.wrap(Selection.prototype.getRangeAt.call(this,n));
5330     },
5331     
5332     /**
5333      * insert node at selection 
5334      * @param {DomElement|string} node
5335      * @param {string} cursor (after|in|none) where to place the cursor after inserting.
5336      */
5337     insertNode: function(node, cursor)
5338     {
5339         if (typeof(node) == 'string') {
5340             node = this.ownerDocument.createElement(node);
5341             if (cursor == 'in') {
5342                 node.innerHTML = '&nbsp;';
5343             }
5344         }
5345         
5346         var range = this.getRangeAt(0);
5347         
5348         if (this.type != 'Caret') {
5349             range.deleteContents();
5350         }
5351         var sn = node.childNodes[0]; // select the contents.
5352
5353         
5354         
5355         range.insertNode(node);
5356         if (cursor == 'after') {
5357             node.insertAdjacentHTML('afterend', '&nbsp;');
5358             sn = node.nextSibling;
5359         }
5360         
5361         if (cursor == 'none') {
5362             return;
5363         }
5364         
5365         this.cursorText(sn);
5366     },
5367     
5368     cursorText : function(n)
5369     {
5370        
5371         //var range = this.getRangeAt(0);
5372         range = Roo.lib.Range.wrap(new Range());
5373         //range.selectNode(n);
5374         
5375         var ix = Array.from(n.parentNode.childNodes).indexOf(n);
5376         range.setStart(n.parentNode,ix);
5377         range.setEnd(n.parentNode,ix+1);
5378         //range.collapse(false);
5379          
5380         this.removeAllRanges();
5381         this.addRange(range);
5382         
5383         Roo.log([n, range, this,this.baseOffset,this.extentOffset, this.type]);
5384     },
5385     cursorAfter : function(n)
5386     {
5387         if (!n.nextSibling || n.nextSibling.nodeValue != '&nbsp;') {
5388             n.insertAdjacentHTML('afterend', '&nbsp;');
5389         }
5390         this.cursorText (n.nextSibling);
5391     }
5392         
5393     
5394 });/*
5395  * Based on:
5396  * Ext JS Library 1.1.1
5397  * Copyright(c) 2006-2007, Ext JS, LLC.
5398  *
5399  * Originally Released Under LGPL - original licence link has changed is not relivant.
5400  *
5401  * Fork - LGPL
5402  * <script type="text/javascript">
5403  */
5404
5405
5406 // nasty IE9 hack - what a pile of crap that is..
5407
5408  if (typeof Range != "undefined" && typeof Range.prototype.createContextualFragment == "undefined") {
5409     Range.prototype.createContextualFragment = function (html) {
5410         var doc = window.document;
5411         var container = doc.createElement("div");
5412         container.innerHTML = html;
5413         var frag = doc.createDocumentFragment(), n;
5414         while ((n = container.firstChild)) {
5415             frag.appendChild(n);
5416         }
5417         return frag;
5418     };
5419 }
5420
5421 /**
5422  * @class Roo.DomHelper
5423  * Utility class for working with DOM and/or Templates. It transparently supports using HTML fragments or DOM.
5424  * For more information see <a href="http://web.archive.org/web/20071221063734/http://www.jackslocum.com/blog/2006/10/06/domhelper-create-elements-using-dom-html-fragments-or-templates/">this blog post with examples</a>.
5425  * @static
5426  */
5427 Roo.DomHelper = function(){
5428     var tempTableEl = null;
5429     var emptyTags = /^(?:br|frame|hr|img|input|link|meta|range|spacer|wbr|area|param|col)$/i;
5430     var tableRe = /^table|tbody|tr|td$/i;
5431     var xmlns = {};
5432     // build as innerHTML where available
5433     /** @ignore */
5434     var createHtml = function(o){
5435         if(typeof o == 'string'){
5436             return o;
5437         }
5438         var b = "";
5439         if(!o.tag){
5440             o.tag = "div";
5441         }
5442         b += "<" + o.tag;
5443         for(var attr in o){
5444             if(attr == "tag" || attr == "children" || attr == "cn" || attr == "html" || typeof o[attr] == "function") { continue; }
5445             if(attr == "style"){
5446                 var s = o["style"];
5447                 if(typeof s == "function"){
5448                     s = s.call();
5449                 }
5450                 if(typeof s == "string"){
5451                     b += ' style="' + s + '"';
5452                 }else if(typeof s == "object"){
5453                     b += ' style="';
5454                     for(var key in s){
5455                         if(typeof s[key] != "function"){
5456                             b += key + ":" + s[key] + ";";
5457                         }
5458                     }
5459                     b += '"';
5460                 }
5461             }else{
5462                 if(attr == "cls"){
5463                     b += ' class="' + o["cls"] + '"';
5464                 }else if(attr == "htmlFor"){
5465                     b += ' for="' + o["htmlFor"] + '"';
5466                 }else{
5467                     b += " " + attr + '="' + o[attr] + '"';
5468                 }
5469             }
5470         }
5471         if(emptyTags.test(o.tag)){
5472             b += "/>";
5473         }else{
5474             b += ">";
5475             var cn = o.children || o.cn;
5476             if(cn){
5477                 //http://bugs.kde.org/show_bug.cgi?id=71506
5478                 if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
5479                     for(var i = 0, len = cn.length; i < len; i++) {
5480                         b += createHtml(cn[i], b);
5481                     }
5482                 }else{
5483                     b += createHtml(cn, b);
5484                 }
5485             }
5486             if(o.html){
5487                 b += o.html;
5488             }
5489             b += "</" + o.tag + ">";
5490         }
5491         return b;
5492     };
5493
5494     // build as dom
5495     /** @ignore */
5496     var createDom = function(o, parentNode){
5497          
5498         // defininition craeted..
5499         var ns = false;
5500         if (o.ns && o.ns != 'html') {
5501                
5502             if (o.xmlns && typeof(xmlns[o.ns]) == 'undefined') {
5503                 xmlns[o.ns] = o.xmlns;
5504                 ns = o.xmlns;
5505             }
5506             if (typeof(xmlns[o.ns]) == 'undefined') {
5507                 console.log("Trying to create namespace element " + o.ns + ", however no xmlns was sent to builder previously");
5508             }
5509             ns = xmlns[o.ns];
5510         }
5511         
5512         
5513         if (typeof(o) == 'string') {
5514             return parentNode.appendChild(document.createTextNode(o));
5515         }
5516         o.tag = o.tag || div;
5517         if (o.ns && Roo.isIE) {
5518             ns = false;
5519             o.tag = o.ns + ':' + o.tag;
5520             
5521         }
5522         var el = ns ? document.createElementNS( ns, o.tag||'div') :  document.createElement(o.tag||'div');
5523         var useSet = el.setAttribute ? true : false; // In IE some elements don't have setAttribute
5524         for(var attr in o){
5525             
5526             if(attr == "tag" || attr == "ns" ||attr == "xmlns" ||attr == "children" || attr == "cn" || attr == "html" || 
5527                     attr == "style" || typeof o[attr] == "function") { continue; }
5528                     
5529             if(attr=="cls" && Roo.isIE){
5530                 el.className = o["cls"];
5531             }else{
5532                 if(useSet) { el.setAttribute(attr=="cls" ? 'class' : attr, o[attr]);}
5533                 else { 
5534                     el[attr] = o[attr];
5535                 }
5536             }
5537         }
5538         Roo.DomHelper.applyStyles(el, o.style);
5539         var cn = o.children || o.cn;
5540         if(cn){
5541             //http://bugs.kde.org/show_bug.cgi?id=71506
5542              if((cn instanceof Array) || (Roo.isSafari && typeof(cn.join) == "function")){
5543                 for(var i = 0, len = cn.length; i < len; i++) {
5544                     createDom(cn[i], el);
5545                 }
5546             }else{
5547                 createDom(cn, el);
5548             }
5549         }
5550         if(o.html){
5551             el.innerHTML = o.html;
5552         }
5553         if(parentNode){
5554            parentNode.appendChild(el);
5555         }
5556         return el;
5557     };
5558
5559     var ieTable = function(depth, s, h, e){
5560         tempTableEl.innerHTML = [s, h, e].join('');
5561         var i = -1, el = tempTableEl;
5562         while(++i < depth && el.firstChild){
5563             el = el.firstChild;
5564         }
5565         return el;
5566     };
5567
5568     // kill repeat to save bytes
5569     var ts = '<table>',
5570         te = '</table>',
5571         tbs = ts+'<tbody>',
5572         tbe = '</tbody>'+te,
5573         trs = tbs + '<tr>',
5574         tre = '</tr>'+tbe;
5575
5576     /**
5577      * @ignore
5578      * Nasty code for IE's broken table implementation
5579      */
5580     var insertIntoTable = function(tag, where, el, html){
5581         if(!tempTableEl){
5582             tempTableEl = document.createElement('div');
5583         }
5584         var node;
5585         var before = null;
5586         if(tag == 'td'){
5587             if(where == 'afterbegin' || where == 'beforeend'){ // INTO a TD
5588                 return;
5589             }
5590             if(where == 'beforebegin'){
5591                 before = el;
5592                 el = el.parentNode;
5593             } else{
5594                 before = el.nextSibling;
5595                 el = el.parentNode;
5596             }
5597             node = ieTable(4, trs, html, tre);
5598         }
5599         else if(tag == 'tr'){
5600             if(where == 'beforebegin'){
5601                 before = el;
5602                 el = el.parentNode;
5603                 node = ieTable(3, tbs, html, tbe);
5604             } else if(where == 'afterend'){
5605                 before = el.nextSibling;
5606                 el = el.parentNode;
5607                 node = ieTable(3, tbs, html, tbe);
5608             } else{ // INTO a TR
5609                 if(where == 'afterbegin'){
5610                     before = el.firstChild;
5611                 }
5612                 node = ieTable(4, trs, html, tre);
5613             }
5614         } else if(tag == 'tbody'){
5615             if(where == 'beforebegin'){
5616                 before = el;
5617                 el = el.parentNode;
5618                 node = ieTable(2, ts, html, te);
5619             } else if(where == 'afterend'){
5620                 before = el.nextSibling;
5621                 el = el.parentNode;
5622                 node = ieTable(2, ts, html, te);
5623             } else{
5624                 if(where == 'afterbegin'){
5625                     before = el.firstChild;
5626                 }
5627                 node = ieTable(3, tbs, html, tbe);
5628             }
5629         } else{ // TABLE
5630             if(where == 'beforebegin' || where == 'afterend'){ // OUTSIDE the table
5631                 return;
5632             }
5633             if(where == 'afterbegin'){
5634                 before = el.firstChild;
5635             }
5636             node = ieTable(2, ts, html, te);
5637         }
5638         el.insertBefore(node, before);
5639         return node;
5640     };
5641     
5642     // this is a bit like the react update code...
5643     // 
5644     
5645     var updateNode = function(from, to)
5646     {
5647         // should we handle non-standard elements?
5648         Roo.log(["UpdateNode" , from, to]);
5649         if (from.nodeType != to.nodeType) {
5650             Roo.log(["ReplaceChild - mismatch notType" , to, from ]);
5651             from.parentNode.replaceChild(to, from);
5652         }
5653         
5654         if (from.nodeType == 3) {
5655             // assume it's text?!
5656             if (from.data == to.data) {
5657                 return;
5658             }
5659             from.data = to.data;
5660             return;
5661         }
5662         if (!from.parentNode) {
5663             // not sure why this is happening?
5664             return;
5665         }
5666         // assume 'to' doesnt have '1/3 nodetypes!
5667         // not sure why, by from, parent node might not exist?
5668         if (from.nodeType !=1 || from.tagName != to.tagName) {
5669             Roo.log(["ReplaceChild" , from, to ]);
5670             
5671             from.parentNode.replaceChild(to, from);
5672             return;
5673         }
5674         // compare attributes
5675         var ar = Array.from(from.attributes);
5676         for(var i = 0; i< ar.length;i++) {
5677             if (to.hasAttribute(ar[i].name)) {
5678                 continue;
5679             }
5680             if (ar[i].name == 'id') { // always keep ids?
5681                continue;
5682             }
5683             //if (ar[i].name == 'style') {
5684             //   throw "style removed?";
5685             //}
5686             Roo.log("removeAttribute" + ar[i].name);
5687             from.removeAttribute(ar[i].name);
5688         }
5689         ar = to.attributes;
5690         for(var i = 0; i< ar.length;i++) {
5691             if (from.getAttribute(ar[i].name) == to.getAttribute(ar[i].name)) {
5692                 Roo.log("skipAttribute " + ar[i].name  + '=' + to.getAttribute(ar[i].name));
5693                 continue;
5694             }
5695             Roo.log("updateAttribute " + ar[i].name + '=>' + to.getAttribute(ar[i].name));
5696             from.setAttribute(ar[i].name, to.getAttribute(ar[i].name));
5697         }
5698         // children
5699         var far = Array.from(from.childNodes);
5700         var tar = Array.from(to.childNodes);
5701         // if the lengths are different.. then it's probably a editable content change, rather than
5702         // a change of the block definition..
5703         
5704         // this did notwork , as our rebuilt nodes did not include ID's so did not match at all.
5705          /*if (from.innerHTML == to.innerHTML) {
5706             return;
5707         }
5708         if (far.length != tar.length) {
5709             from.innerHTML = to.innerHTML;
5710             return;
5711         }
5712         */
5713         
5714         for(var i = 0; i < Math.max(tar.length, far.length); i++) {
5715             if (i >= far.length) {
5716                 from.appendChild(tar[i]);
5717                 Roo.log(["add", tar[i]]);
5718                 
5719             } else if ( i  >= tar.length) {
5720                 from.removeChild(far[i]);
5721                 Roo.log(["remove", far[i]]);
5722             } else {
5723                 
5724                 updateNode(far[i], tar[i]);
5725             }    
5726         }
5727         
5728         
5729         
5730         
5731     };
5732     
5733     
5734
5735     return {
5736         /** True to force the use of DOM instead of html fragments @type Boolean */
5737         useDom : false,
5738     
5739         /**
5740          * Returns the markup for the passed Element(s) config
5741          * @param {Object} o The Dom object spec (and children)
5742          * @return {String}
5743          */
5744         markup : function(o){
5745             return createHtml(o);
5746         },
5747     
5748         /**
5749          * Applies a style specification to an element
5750          * @param {String/HTMLElement} el The element to apply styles to
5751          * @param {String/Object/Function} styles A style specification string eg "width:100px", or object in the form {width:"100px"}, or
5752          * a function which returns such a specification.
5753          */
5754         applyStyles : function(el, styles){
5755             if(styles){
5756                el = Roo.fly(el);
5757                if(typeof styles == "string"){
5758                    var re = /\s?([a-z\-]*)\:\s?([^;]*);?/gi;
5759                    var matches;
5760                    while ((matches = re.exec(styles)) != null){
5761                        el.setStyle(matches[1], matches[2]);
5762                    }
5763                }else if (typeof styles == "object"){
5764                    for (var style in styles){
5765                       el.setStyle(style, styles[style]);
5766                    }
5767                }else if (typeof styles == "function"){
5768                     Roo.DomHelper.applyStyles(el, styles.call());
5769                }
5770             }
5771         },
5772     
5773         /**
5774          * Inserts an HTML fragment into the Dom
5775          * @param {String} where Where to insert the html in relation to el - beforeBegin, afterBegin, beforeEnd, afterEnd.
5776          * @param {HTMLElement} el The context element
5777          * @param {String} html The HTML fragmenet
5778          * @return {HTMLElement} The new node
5779          */
5780         insertHtml : function(where, el, html){
5781             where = where.toLowerCase();
5782             if(el.insertAdjacentHTML){
5783                 if(tableRe.test(el.tagName)){
5784                     var rs;
5785                     if(rs = insertIntoTable(el.tagName.toLowerCase(), where, el, html)){
5786                         return rs;
5787                     }
5788                 }
5789                 switch(where){
5790                     case "beforebegin":
5791                         el.insertAdjacentHTML('BeforeBegin', html);
5792                         return el.previousSibling;
5793                     case "afterbegin":
5794                         el.insertAdjacentHTML('AfterBegin', html);
5795                         return el.firstChild;
5796                     case "beforeend":
5797                         el.insertAdjacentHTML('BeforeEnd', html);
5798                         return el.lastChild;
5799                     case "afterend":
5800                         el.insertAdjacentHTML('AfterEnd', html);
5801                         return el.nextSibling;
5802                 }
5803                 throw 'Illegal insertion point -> "' + where + '"';
5804             }
5805             var range = el.ownerDocument.createRange();
5806             var frag;
5807             switch(where){
5808                  case "beforebegin":
5809                     range.setStartBefore(el);
5810                     frag = range.createContextualFragment(html);
5811                     el.parentNode.insertBefore(frag, el);
5812                     return el.previousSibling;
5813                  case "afterbegin":
5814                     if(el.firstChild){
5815                         range.setStartBefore(el.firstChild);
5816                         frag = range.createContextualFragment(html);
5817                         el.insertBefore(frag, el.firstChild);
5818                         return el.firstChild;
5819                     }else{
5820                         el.innerHTML = html;
5821                         return el.firstChild;
5822                     }
5823                 case "beforeend":
5824                     if(el.lastChild){
5825                         range.setStartAfter(el.lastChild);
5826                         frag = range.createContextualFragment(html);
5827                         el.appendChild(frag);
5828                         return el.lastChild;
5829                     }else{
5830                         el.innerHTML = html;
5831                         return el.lastChild;
5832                     }
5833                 case "afterend":
5834                     range.setStartAfter(el);
5835                     frag = range.createContextualFragment(html);
5836                     el.parentNode.insertBefore(frag, el.nextSibling);
5837                     return el.nextSibling;
5838                 }
5839                 throw 'Illegal insertion point -> "' + where + '"';
5840         },
5841     
5842         /**
5843          * Creates new Dom element(s) and inserts them before el
5844          * @param {String/HTMLElement/Element} el The context element
5845          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5846          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5847          * @return {HTMLElement/Roo.Element} The new node
5848          */
5849         insertBefore : function(el, o, returnElement){
5850             return this.doInsert(el, o, returnElement, "beforeBegin");
5851         },
5852     
5853         /**
5854          * Creates new Dom element(s) and inserts them after el
5855          * @param {String/HTMLElement/Element} el The context element
5856          * @param {Object} o The Dom object spec (and children)
5857          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5858          * @return {HTMLElement/Roo.Element} The new node
5859          */
5860         insertAfter : function(el, o, returnElement){
5861             return this.doInsert(el, o, returnElement, "afterEnd", "nextSibling");
5862         },
5863     
5864         /**
5865          * Creates new Dom element(s) and inserts them as the first child of el
5866          * @param {String/HTMLElement/Element} el The context element
5867          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5868          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5869          * @return {HTMLElement/Roo.Element} The new node
5870          */
5871         insertFirst : function(el, o, returnElement){
5872             return this.doInsert(el, o, returnElement, "afterBegin");
5873         },
5874     
5875         // private
5876         doInsert : function(el, o, returnElement, pos, sibling){
5877             el = Roo.getDom(el);
5878             var newNode;
5879             if(this.useDom || o.ns){
5880                 newNode = createDom(o, null);
5881                 el.parentNode.insertBefore(newNode, sibling ? el[sibling] : el);
5882             }else{
5883                 var html = createHtml(o);
5884                 newNode = this.insertHtml(pos, el, html);
5885             }
5886             return returnElement ? Roo.get(newNode, true) : newNode;
5887         },
5888     
5889         /**
5890          * Creates new Dom element(s) and appends them to el
5891          * @param {String/HTMLElement/Element} el The context element
5892          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5893          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5894          * @return {HTMLElement/Roo.Element} The new node
5895          */
5896         append : function(el, o, returnElement){
5897             el = Roo.getDom(el);
5898             var newNode;
5899             if(this.useDom || o.ns){
5900                 newNode = createDom(o, null);
5901                 el.appendChild(newNode);
5902             }else{
5903                 var html = createHtml(o);
5904                 newNode = this.insertHtml("beforeEnd", el, html);
5905             }
5906             return returnElement ? Roo.get(newNode, true) : newNode;
5907         },
5908     
5909         /**
5910          * Creates new Dom element(s) and overwrites the contents of el with them
5911          * @param {String/HTMLElement/Element} el The context element
5912          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5913          * @param {Boolean} returnElement (optional) true to return a Roo.Element
5914          * @return {HTMLElement/Roo.Element} The new node
5915          */
5916         overwrite : function(el, o, returnElement)
5917         {
5918             el = Roo.getDom(el);
5919             if (o.ns) {
5920               
5921                 while (el.childNodes.length) {
5922                     el.removeChild(el.firstChild);
5923                 }
5924                 createDom(o, el);
5925             } else {
5926                 el.innerHTML = createHtml(o);   
5927             }
5928             
5929             return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
5930         },
5931     
5932         /**
5933          * Creates a new Roo.DomHelper.Template from the Dom object spec
5934          * @param {Object} o The Dom object spec (and children)
5935          * @return {Roo.DomHelper.Template} The new template
5936          */
5937         createTemplate : function(o){
5938             var html = createHtml(o);
5939             return new Roo.Template(html);
5940         },
5941          /**
5942          * Updates the first element with the spec from the o (replacing if necessary)
5943          * This iterates through the children, and updates attributes / children etc..
5944          * @param {String/HTMLElement/Element} el The context element
5945          * @param {Object/String} o The Dom object spec (and children) or raw HTML blob
5946          */
5947         
5948         update : function(el, o)
5949         {
5950             updateNode(Roo.getDom(el), createDom(o));
5951             
5952         }
5953         
5954         
5955     };
5956 }();
5957 /*
5958  * Based on:
5959  * Ext JS Library 1.1.1
5960  * Copyright(c) 2006-2007, Ext JS, LLC.
5961  *
5962  * Originally Released Under LGPL - original licence link has changed is not relivant.
5963  *
5964  * Fork - LGPL
5965  * <script type="text/javascript">
5966  */
5967  
5968 /**
5969 * @class Roo.Template
5970 * Represents an HTML fragment template. Templates can be precompiled for greater performance.
5971 * For a list of available format functions, see {@link Roo.util.Format}.<br />
5972 * Usage:
5973 <pre><code>
5974 var t = new Roo.Template({
5975     html :  '&lt;div name="{id}"&gt;' + 
5976         '&lt;span class="{cls}"&gt;{name:trim} {someval:this.myformat}{value:ellipsis(10)}&lt;/span&gt;' +
5977         '&lt;/div&gt;',
5978     myformat: function (value, allValues) {
5979         return 'XX' + value;
5980     }
5981 });
5982 t.append('some-element', {id: 'myid', cls: 'myclass', name: 'foo', value: 'bar'});
5983 </code></pre>
5984 * For more information see this blog post with examples:
5985 *  <a href="http://www.cnitblog.com/seeyeah/archive/2011/12/30/38728.html/">DomHelper
5986      - Create Elements using DOM, HTML fragments and Templates</a>. 
5987 * @constructor
5988 * @param {Object} cfg - Configuration object.
5989 */
5990 Roo.Template = function(cfg){
5991     // BC!
5992     if(cfg instanceof Array){
5993         cfg = cfg.join("");
5994     }else if(arguments.length > 1){
5995         cfg = Array.prototype.join.call(arguments, "");
5996     }
5997     
5998     
5999     if (typeof(cfg) == 'object') {
6000         Roo.apply(this,cfg)
6001     } else {
6002         // bc
6003         this.html = cfg;
6004     }
6005     if (this.url) {
6006         this.load();
6007     }
6008     
6009 };
6010 Roo.Template.prototype = {
6011     
6012     /**
6013      * @cfg {Function} onLoad Called after the template has been loaded and complied (usually from a remove source)
6014      */
6015     onLoad : false,
6016     
6017     
6018     /**
6019      * @cfg {String} url  The Url to load the template from. beware if you are loading from a url, the data may not be ready if you use it instantly..
6020      *                    it should be fixed so that template is observable...
6021      */
6022     url : false,
6023     /**
6024      * @cfg {String} html  The HTML fragment or an array of fragments to join("") or multiple arguments to join("")
6025      */
6026     html : '',
6027     
6028     
6029     compiled : false,
6030     loaded : false,
6031     /**
6032      * Returns an HTML fragment of this template with the specified values applied.
6033      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
6034      * @return {String} The HTML fragment
6035      */
6036     
6037    
6038     
6039     applyTemplate : function(values){
6040         //Roo.log(["applyTemplate", values]);
6041         try {
6042            
6043             if(this.compiled){
6044                 return this.compiled(values);
6045             }
6046             var useF = this.disableFormats !== true;
6047             var fm = Roo.util.Format, tpl = this;
6048             var fn = function(m, name, format, args){
6049                 if(format && useF){
6050                     if(format.substr(0, 5) == "this."){
6051                         return tpl.call(format.substr(5), values[name], values);
6052                     }else{
6053                         if(args){
6054                             // quoted values are required for strings in compiled templates, 
6055                             // but for non compiled we need to strip them
6056                             // quoted reversed for jsmin
6057                             var re = /^\s*['"](.*)["']\s*$/;
6058                             args = args.split(',');
6059                             for(var i = 0, len = args.length; i < len; i++){
6060                                 args[i] = args[i].replace(re, "$1");
6061                             }
6062                             args = [values[name]].concat(args);
6063                         }else{
6064                             args = [values[name]];
6065                         }
6066                         return fm[format].apply(fm, args);
6067                     }
6068                 }else{
6069                     return values[name] !== undefined ? values[name] : "";
6070                 }
6071             };
6072             return this.html.replace(this.re, fn);
6073         } catch (e) {
6074             Roo.log(e);
6075             throw e;
6076         }
6077          
6078     },
6079     
6080     loading : false,
6081       
6082     load : function ()
6083     {
6084          
6085         if (this.loading) {
6086             return;
6087         }
6088         var _t = this;
6089         
6090         this.loading = true;
6091         this.compiled = false;
6092         
6093         var cx = new Roo.data.Connection();
6094         cx.request({
6095             url : this.url,
6096             method : 'GET',
6097             success : function (response) {
6098                 _t.loading = false;
6099                 _t.url = false;
6100                 
6101                 _t.set(response.responseText,true);
6102                 _t.loaded = true;
6103                 if (_t.onLoad) {
6104                     _t.onLoad();
6105                 }
6106              },
6107             failure : function(response) {
6108                 Roo.log("Template failed to load from " + _t.url);
6109                 _t.loading = false;
6110             }
6111         });
6112     },
6113
6114     /**
6115      * Sets the HTML used as the template and optionally compiles it.
6116      * @param {String} html
6117      * @param {Boolean} compile (optional) True to compile the template (defaults to undefined)
6118      * @return {Roo.Template} this
6119      */
6120     set : function(html, compile){
6121         this.html = html;
6122         this.compiled = false;
6123         if(compile){
6124             this.compile();
6125         }
6126         return this;
6127     },
6128     
6129     /**
6130      * True to disable format functions (defaults to false)
6131      * @type Boolean
6132      */
6133     disableFormats : false,
6134     
6135     /**
6136     * The regular expression used to match template variables 
6137     * @type RegExp
6138     * @property 
6139     */
6140     re : /\{([\w-]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
6141     
6142     /**
6143      * Compiles the template into an internal function, eliminating the RegEx overhead.
6144      * @return {Roo.Template} this
6145      */
6146     compile : function(){
6147         var fm = Roo.util.Format;
6148         var useF = this.disableFormats !== true;
6149         var sep = Roo.isGecko ? "+" : ",";
6150         var fn = function(m, name, format, args){
6151             if(format && useF){
6152                 args = args ? ',' + args : "";
6153                 if(format.substr(0, 5) != "this."){
6154                     format = "fm." + format + '(';
6155                 }else{
6156                     format = 'this.call("'+ format.substr(5) + '", ';
6157                     args = ", values";
6158                 }
6159             }else{
6160                 args= ''; format = "(values['" + name + "'] == undefined ? '' : ";
6161             }
6162             return "'"+ sep + format + "values['" + name + "']" + args + ")"+sep+"'";
6163         };
6164         var body;
6165         // branched to use + in gecko and [].join() in others
6166         if(Roo.isGecko){
6167             body = "this.compiled = function(values){ return '" +
6168                    this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
6169                     "';};";
6170         }else{
6171             body = ["this.compiled = function(values){ return ['"];
6172             body.push(this.html.replace(/\\/g, '\\\\').replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn));
6173             body.push("'].join('');};");
6174             body = body.join('');
6175         }
6176         /**
6177          * eval:var:values
6178          * eval:var:fm
6179          */
6180         eval(body);
6181         return this;
6182     },
6183     
6184     // private function used to call members
6185     call : function(fnName, value, allValues){
6186         return this[fnName](value, allValues);
6187     },
6188     
6189     /**
6190      * Applies the supplied values to the template and inserts the new node(s) as the first child of el.
6191      * @param {String/HTMLElement/Roo.Element} el The context element
6192      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
6193      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6194      * @return {HTMLElement/Roo.Element} The new node or Element
6195      */
6196     insertFirst: function(el, values, returnElement){
6197         return this.doInsert('afterBegin', el, values, returnElement);
6198     },
6199
6200     /**
6201      * Applies the supplied values to the template and inserts the new node(s) before el.
6202      * @param {String/HTMLElement/Roo.Element} el The context element
6203      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
6204      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6205      * @return {HTMLElement/Roo.Element} The new node or Element
6206      */
6207     insertBefore: function(el, values, returnElement){
6208         return this.doInsert('beforeBegin', el, values, returnElement);
6209     },
6210
6211     /**
6212      * Applies the supplied values to the template and inserts the new node(s) after el.
6213      * @param {String/HTMLElement/Roo.Element} el The context element
6214      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
6215      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6216      * @return {HTMLElement/Roo.Element} The new node or Element
6217      */
6218     insertAfter : function(el, values, returnElement){
6219         return this.doInsert('afterEnd', el, values, returnElement);
6220     },
6221     
6222     /**
6223      * Applies the supplied values to the template and appends the new node(s) to el.
6224      * @param {String/HTMLElement/Roo.Element} el The context element
6225      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
6226      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6227      * @return {HTMLElement/Roo.Element} The new node or Element
6228      */
6229     append : function(el, values, returnElement){
6230         return this.doInsert('beforeEnd', el, values, returnElement);
6231     },
6232
6233     doInsert : function(where, el, values, returnEl){
6234         el = Roo.getDom(el);
6235         var newNode = Roo.DomHelper.insertHtml(where, el, this.applyTemplate(values));
6236         return returnEl ? Roo.get(newNode, true) : newNode;
6237     },
6238
6239     /**
6240      * Applies the supplied values to the template and overwrites the content of el with the new node(s).
6241      * @param {String/HTMLElement/Roo.Element} el The context element
6242      * @param {Object} values The template values. Can be an array if your params are numeric (i.e. {0}) or an object (i.e. {foo: 'bar'})
6243      * @param {Boolean} returnElement (optional) true to return a Roo.Element (defaults to undefined)
6244      * @return {HTMLElement/Roo.Element} The new node or Element
6245      */
6246     overwrite : function(el, values, returnElement){
6247         el = Roo.getDom(el);
6248         el.innerHTML = this.applyTemplate(values);
6249         return returnElement ? Roo.get(el.firstChild, true) : el.firstChild;
6250     }
6251 };
6252 /**
6253  * Alias for {@link #applyTemplate}
6254  * @method
6255  */
6256 Roo.Template.prototype.apply = Roo.Template.prototype.applyTemplate;
6257
6258 // backwards compat
6259 Roo.DomHelper.Template = Roo.Template;
6260
6261 /**
6262  * Creates a template from the passed element's value (<i>display:none</i> textarea, preferred) or innerHTML.
6263  * @param {String/HTMLElement} el A DOM element or its id
6264  * @returns {Roo.Template} The created template
6265  * @static
6266  */
6267 Roo.Template.from = function(el){
6268     el = Roo.getDom(el);
6269     return new Roo.Template(el.value || el.innerHTML);
6270 };/*
6271  * Based on:
6272  * Ext JS Library 1.1.1
6273  * Copyright(c) 2006-2007, Ext JS, LLC.
6274  *
6275  * Originally Released Under LGPL - original licence link has changed is not relivant.
6276  *
6277  * Fork - LGPL
6278  * <script type="text/javascript">
6279  */
6280  
6281
6282 /*
6283  * This is code is also distributed under MIT license for use
6284  * with jQuery and prototype JavaScript libraries.
6285  */
6286 /**
6287  * @class Roo.DomQuery
6288 Provides high performance selector/xpath processing by compiling queries into reusable functions. New pseudo classes and matchers can be plugged. It works on HTML and XML documents (if a content node is passed in).
6289 <p>
6290 DomQuery supports most of the <a href="http://www.w3.org/TR/2005/WD-css3-selectors-20051215/">CSS3 selectors spec</a>, along with some custom selectors and basic XPath.</p>
6291
6292 <p>
6293 All selectors, attribute filters and pseudos below can be combined infinitely in any order. For example "div.foo:nth-child(odd)[@foo=bar].bar:first" would be a perfectly valid selector. Node filters are processed in the order in which they appear, which allows you to optimize your queries for your document structure.
6294 </p>
6295 <h4>Element Selectors:</h4>
6296 <ul class="list">
6297     <li> <b>*</b> any element</li>
6298     <li> <b>E</b> an element with the tag E</li>
6299     <li> <b>E F</b> All descendent elements of E that have the tag F</li>
6300     <li> <b>E > F</b> or <b>E/F</b> all direct children elements of E that have the tag F</li>
6301     <li> <b>E + F</b> all elements with the tag F that are immediately preceded by an element with the tag E</li>
6302     <li> <b>E ~ F</b> all elements with the tag F that are preceded by a sibling element with the tag E</li>
6303 </ul>
6304 <h4>Attribute Selectors:</h4>
6305 <p>The use of @ and quotes are optional. For example, div[@foo='bar'] is also a valid attribute selector.</p>
6306 <ul class="list">
6307     <li> <b>E[foo]</b> has an attribute "foo"</li>
6308     <li> <b>E[foo=bar]</b> has an attribute "foo" that equals "bar"</li>
6309     <li> <b>E[foo^=bar]</b> has an attribute "foo" that starts with "bar"</li>
6310     <li> <b>E[foo$=bar]</b> has an attribute "foo" that ends with "bar"</li>
6311     <li> <b>E[foo*=bar]</b> has an attribute "foo" that contains the substring "bar"</li>
6312     <li> <b>E[foo%=2]</b> has an attribute "foo" that is evenly divisible by 2</li>
6313     <li> <b>E[foo!=bar]</b> has an attribute "foo" that does not equal "bar"</li>
6314 </ul>
6315 <h4>Pseudo Classes:</h4>
6316 <ul class="list">
6317     <li> <b>E:first-child</b> E is the first child of its parent</li>
6318     <li> <b>E:last-child</b> E is the last child of its parent</li>
6319     <li> <b>E:nth-child(<i>n</i>)</b> E is the <i>n</i>th child of its parent (1 based as per the spec)</li>
6320     <li> <b>E:nth-child(odd)</b> E is an odd child of its parent</li>
6321     <li> <b>E:nth-child(even)</b> E is an even child of its parent</li>
6322     <li> <b>E:only-child</b> E is the only child of its parent</li>
6323     <li> <b>E:checked</b> E is an element that is has a checked attribute that is true (e.g. a radio or checkbox) </li>
6324     <li> <b>E:first</b> the first E in the resultset</li>
6325     <li> <b>E:last</b> the last E in the resultset</li>
6326     <li> <b>E:nth(<i>n</i>)</b> the <i>n</i>th E in the resultset (1 based)</li>
6327     <li> <b>E:odd</b> shortcut for :nth-child(odd)</li>
6328     <li> <b>E:even</b> shortcut for :nth-child(even)</li>
6329     <li> <b>E:contains(foo)</b> E's innerHTML contains the substring "foo"</li>
6330     <li> <b>E:nodeValue(foo)</b> E contains a textNode with a nodeValue that equals "foo"</li>
6331     <li> <b>E:not(S)</b> an E element that does not match simple selector S</li>
6332     <li> <b>E:has(S)</b> an E element that has a descendent that matches simple selector S</li>
6333     <li> <b>E:next(S)</b> an E element whose next sibling matches simple selector S</li>
6334     <li> <b>E:prev(S)</b> an E element whose previous sibling matches simple selector S</li>
6335 </ul>
6336 <h4>CSS Value Selectors:</h4>
6337 <ul class="list">
6338     <li> <b>E{display=none}</b> css value "display" that equals "none"</li>
6339     <li> <b>E{display^=none}</b> css value "display" that starts with "none"</li>
6340     <li> <b>E{display$=none}</b> css value "display" that ends with "none"</li>
6341     <li> <b>E{display*=none}</b> css value "display" that contains the substring "none"</li>
6342     <li> <b>E{display%=2}</b> css value "display" that is evenly divisible by 2</li>
6343     <li> <b>E{display!=none}</b> css value "display" that does not equal "none"</li>
6344 </ul>
6345  * @static
6346  */
6347 Roo.DomQuery = function(){
6348     var cache = {}, simpleCache = {}, valueCache = {};
6349     var nonSpace = /\S/;
6350     var trimRe = /^\s+|\s+$/g;
6351     var tplRe = /\{(\d+)\}/g;
6352     var modeRe = /^(\s?[\/>+~]\s?|\s|$)/;
6353     var tagTokenRe = /^(#)?([\w-\*]+)/;
6354     var nthRe = /(\d*)n\+?(\d*)/, nthRe2 = /\D/;
6355
6356     function child(p, index){
6357         var i = 0;
6358         var n = p.firstChild;
6359         while(n){
6360             if(n.nodeType == 1){
6361                if(++i == index){
6362                    return n;
6363                }
6364             }
6365             n = n.nextSibling;
6366         }
6367         return null;
6368     };
6369
6370     function next(n){
6371         while((n = n.nextSibling) && n.nodeType != 1);
6372         return n;
6373     };
6374
6375     function prev(n){
6376         while((n = n.previousSibling) && n.nodeType != 1);
6377         return n;
6378     };
6379
6380     function children(d){
6381         var n = d.firstChild, ni = -1;
6382             while(n){
6383                 var nx = n.nextSibling;
6384                 if(n.nodeType == 3 && !nonSpace.test(n.nodeValue)){
6385                     d.removeChild(n);
6386                 }else{
6387                     n.nodeIndex = ++ni;
6388                 }
6389                 n = nx;
6390             }
6391             return this;
6392         };
6393
6394     function byClassName(c, a, v){
6395         if(!v){
6396             return c;
6397         }
6398         var r = [], ri = -1, cn;
6399         for(var i = 0, ci; ci = c[i]; i++){
6400             
6401             
6402             if((' '+
6403                 ( (ci instanceof SVGElement) ? ci.className.baseVal : ci.className)
6404                  +' ').indexOf(v) != -1){
6405                 r[++ri] = ci;
6406             }
6407         }
6408         return r;
6409     };
6410
6411     function attrValue(n, attr){
6412         if(!n.tagName && typeof n.length != "undefined"){
6413             n = n[0];
6414         }
6415         if(!n){
6416             return null;
6417         }
6418         if(attr == "for"){
6419             return n.htmlFor;
6420         }
6421         if(attr == "class" || attr == "className"){
6422             return (n instanceof SVGElement) ? n.className.baseVal : n.className;
6423         }
6424         return n.getAttribute(attr) || n[attr];
6425
6426     };
6427
6428     function getNodes(ns, mode, tagName){
6429         var result = [], ri = -1, cs;
6430         if(!ns){
6431             return result;
6432         }
6433         tagName = tagName || "*";
6434         if(typeof ns.getElementsByTagName != "undefined"){
6435             ns = [ns];
6436         }
6437         if(!mode){
6438             for(var i = 0, ni; ni = ns[i]; i++){
6439                 cs = ni.getElementsByTagName(tagName);
6440                 for(var j = 0, ci; ci = cs[j]; j++){
6441                     result[++ri] = ci;
6442                 }
6443             }
6444         }else if(mode == "/" || mode == ">"){
6445             var utag = tagName.toUpperCase();
6446             for(var i = 0, ni, cn; ni = ns[i]; i++){
6447                 cn = ni.children || ni.childNodes;
6448                 for(var j = 0, cj; cj = cn[j]; j++){
6449                     if(cj.nodeName == utag || cj.nodeName == tagName  || tagName == '*'){
6450                         result[++ri] = cj;
6451                     }
6452                 }
6453             }
6454         }else if(mode == "+"){
6455             var utag = tagName.toUpperCase();
6456             for(var i = 0, n; n = ns[i]; i++){
6457                 while((n = n.nextSibling) && n.nodeType != 1);
6458                 if(n && (n.nodeName == utag || n.nodeName == tagName || tagName == '*')){
6459                     result[++ri] = n;
6460                 }
6461             }
6462         }else if(mode == "~"){
6463             for(var i = 0, n; n = ns[i]; i++){
6464                 while((n = n.nextSibling) && (n.nodeType != 1 || (tagName == '*' || n.tagName.toLowerCase()!=tagName)));
6465                 if(n){
6466                     result[++ri] = n;
6467                 }
6468             }
6469         }
6470         return result;
6471     };
6472
6473     function concat(a, b){
6474         if(b.slice){
6475             return a.concat(b);
6476         }
6477         for(var i = 0, l = b.length; i < l; i++){
6478             a[a.length] = b[i];
6479         }
6480         return a;
6481     }
6482
6483     function byTag(cs, tagName){
6484         if(cs.tagName || cs == document){
6485             cs = [cs];
6486         }
6487         if(!tagName){
6488             return cs;
6489         }
6490         var r = [], ri = -1;
6491         tagName = tagName.toLowerCase();
6492         for(var i = 0, ci; ci = cs[i]; i++){
6493             if(ci.nodeType == 1 && ci.tagName.toLowerCase()==tagName){
6494                 r[++ri] = ci;
6495             }
6496         }
6497         return r;
6498     };
6499
6500     function byId(cs, attr, id){
6501         if(cs.tagName || cs == document){
6502             cs = [cs];
6503         }
6504         if(!id){
6505             return cs;
6506         }
6507         var r = [], ri = -1;
6508         for(var i = 0,ci; ci = cs[i]; i++){
6509             if(ci && ci.id == id){
6510                 r[++ri] = ci;
6511                 return r;
6512             }
6513         }
6514         return r;
6515     };
6516
6517     function byAttribute(cs, attr, value, op, custom){
6518         var r = [], ri = -1, st = custom=="{";
6519         var f = Roo.DomQuery.operators[op];
6520         for(var i = 0, ci; ci = cs[i]; i++){
6521             var a;
6522             if(st){
6523                 a = Roo.DomQuery.getStyle(ci, attr);
6524             }
6525             else if(attr == "class" || attr == "className"){
6526                 a = (ci instanceof SVGElement) ? ci.className.baseVal : ci.className;
6527             }else if(attr == "for"){
6528                 a = ci.htmlFor;
6529             }else if(attr == "href"){
6530                 a = ci.getAttribute("href", 2);
6531             }else{
6532                 a = ci.getAttribute(attr);
6533             }
6534             if((f && f(a, value)) || (!f && a)){
6535                 r[++ri] = ci;
6536             }
6537         }
6538         return r;
6539     };
6540
6541     function byPseudo(cs, name, value){
6542         return Roo.DomQuery.pseudos[name](cs, value);
6543     };
6544
6545     // This is for IE MSXML which does not support expandos.
6546     // IE runs the same speed using setAttribute, however FF slows way down
6547     // and Safari completely fails so they need to continue to use expandos.
6548     var isIE = window.ActiveXObject ? true : false;
6549
6550     // this eval is stop the compressor from
6551     // renaming the variable to something shorter
6552     
6553     /** eval:var:batch */
6554     var batch = 30803; 
6555
6556     var key = 30803;
6557
6558     function nodupIEXml(cs){
6559         var d = ++key;
6560         cs[0].setAttribute("_nodup", d);
6561         var r = [cs[0]];
6562         for(var i = 1, len = cs.length; i < len; i++){
6563             var c = cs[i];
6564             if(!c.getAttribute("_nodup") != d){
6565                 c.setAttribute("_nodup", d);
6566                 r[r.length] = c;
6567             }
6568         }
6569         for(var i = 0, len = cs.length; i < len; i++){
6570             cs[i].removeAttribute("_nodup");
6571         }
6572         return r;
6573     }
6574
6575     function nodup(cs){
6576         if(!cs){
6577             return [];
6578         }
6579         var len = cs.length, c, i, r = cs, cj, ri = -1;
6580         if(!len || typeof cs.nodeType != "undefined" || len == 1){
6581             return cs;
6582         }
6583         if(isIE && typeof cs[0].selectSingleNode != "undefined"){
6584             return nodupIEXml(cs);
6585         }
6586         var d = ++key;
6587         cs[0]._nodup = d;
6588         for(i = 1; c = cs[i]; i++){
6589             if(c._nodup != d){
6590                 c._nodup = d;
6591             }else{
6592                 r = [];
6593                 for(var j = 0; j < i; j++){
6594                     r[++ri] = cs[j];
6595                 }
6596                 for(j = i+1; cj = cs[j]; j++){
6597                     if(cj._nodup != d){
6598                         cj._nodup = d;
6599                         r[++ri] = cj;
6600                     }
6601                 }
6602                 return r;
6603             }
6604         }
6605         return r;
6606     }
6607
6608     function quickDiffIEXml(c1, c2){
6609         var d = ++key;
6610         for(var i = 0, len = c1.length; i < len; i++){
6611             c1[i].setAttribute("_qdiff", d);
6612         }
6613         var r = [];
6614         for(var i = 0, len = c2.length; i < len; i++){
6615             if(c2[i].getAttribute("_qdiff") != d){
6616                 r[r.length] = c2[i];
6617             }
6618         }
6619         for(var i = 0, len = c1.length; i < len; i++){
6620            c1[i].removeAttribute("_qdiff");
6621         }
6622         return r;
6623     }
6624
6625     function quickDiff(c1, c2){
6626         var len1 = c1.length;
6627         if(!len1){
6628             return c2;
6629         }
6630         if(isIE && c1[0].selectSingleNode){
6631             return quickDiffIEXml(c1, c2);
6632         }
6633         var d = ++key;
6634         for(var i = 0; i < len1; i++){
6635             c1[i]._qdiff = d;
6636         }
6637         var r = [];
6638         for(var i = 0, len = c2.length; i < len; i++){
6639             if(c2[i]._qdiff != d){
6640                 r[r.length] = c2[i];
6641             }
6642         }
6643         return r;
6644     }
6645
6646     function quickId(ns, mode, root, id){
6647         if(ns == root){
6648            var d = root.ownerDocument || root;
6649            return d.getElementById(id);
6650         }
6651         ns = getNodes(ns, mode, "*");
6652         return byId(ns, null, id);
6653     }
6654
6655     return {
6656         getStyle : function(el, name){
6657             return Roo.fly(el).getStyle(name);
6658         },
6659         /**
6660          * Compiles a selector/xpath query into a reusable function. The returned function
6661          * takes one parameter "root" (optional), which is the context node from where the query should start.
6662          * @param {String} selector The selector/xpath query
6663          * @param {String} type (optional) Either "select" (the default) or "simple" for a simple selector match
6664          * @return {Function}
6665          */
6666         compile : function(path, type){
6667             type = type || "select";
6668             
6669             var fn = ["var f = function(root){\n var mode; ++batch; var n = root || document;\n"];
6670             var q = path, mode, lq;
6671             var tk = Roo.DomQuery.matchers;
6672             var tklen = tk.length;
6673             var mm;
6674
6675             // accept leading mode switch
6676             var lmode = q.match(modeRe);
6677             if(lmode && lmode[1]){
6678                 fn[fn.length] = 'mode="'+lmode[1].replace(trimRe, "")+'";';
6679                 q = q.replace(lmode[1], "");
6680             }
6681             // strip leading slashes
6682             while(path.substr(0, 1)=="/"){
6683                 path = path.substr(1);
6684             }
6685
6686             while(q && lq != q){
6687                 lq = q;
6688                 var tm = q.match(tagTokenRe);
6689                 if(type == "select"){
6690                     if(tm){
6691                         if(tm[1] == "#"){
6692                             fn[fn.length] = 'n = quickId(n, mode, root, "'+tm[2]+'");';
6693                         }else{
6694                             fn[fn.length] = 'n = getNodes(n, mode, "'+tm[2]+'");';
6695                         }
6696                         q = q.replace(tm[0], "");
6697                     }else if(q.substr(0, 1) != '@'){
6698                         fn[fn.length] = 'n = getNodes(n, mode, "*");';
6699                     }
6700                 }else{
6701                     if(tm){
6702                         if(tm[1] == "#"){
6703                             fn[fn.length] = 'n = byId(n, null, "'+tm[2]+'");';
6704                         }else{
6705                             fn[fn.length] = 'n = byTag(n, "'+tm[2]+'");';
6706                         }
6707                         q = q.replace(tm[0], "");
6708                     }
6709                 }
6710                 while(!(mm = q.match(modeRe))){
6711                     var matched = false;
6712                     for(var j = 0; j < tklen; j++){
6713                         var t = tk[j];
6714                         var m = q.match(t.re);
6715                         if(m){
6716                             fn[fn.length] = t.select.replace(tplRe, function(x, i){
6717                                                     return m[i];
6718                                                 });
6719                             q = q.replace(m[0], "");
6720                             matched = true;
6721                             break;
6722                         }
6723                     }
6724                     // prevent infinite loop on bad selector
6725                     if(!matched){
6726                         throw 'Error parsing selector, parsing failed at "' + q + '"';
6727                     }
6728                 }
6729                 if(mm[1]){
6730                     fn[fn.length] = 'mode="'+mm[1].replace(trimRe, "")+'";';
6731                     q = q.replace(mm[1], "");
6732                 }
6733             }
6734             fn[fn.length] = "return nodup(n);\n}";
6735             
6736              /** 
6737               * list of variables that need from compression as they are used by eval.
6738              *  eval:var:batch 
6739              *  eval:var:nodup
6740              *  eval:var:byTag
6741              *  eval:var:ById
6742              *  eval:var:getNodes
6743              *  eval:var:quickId
6744              *  eval:var:mode
6745              *  eval:var:root
6746              *  eval:var:n
6747              *  eval:var:byClassName
6748              *  eval:var:byPseudo
6749              *  eval:var:byAttribute
6750              *  eval:var:attrValue
6751              * 
6752              **/ 
6753             eval(fn.join(""));
6754             return f;
6755         },
6756
6757         /**
6758          * Selects a group of elements.
6759          * @param {String} selector The selector/xpath query (can be a comma separated list of selectors)
6760          * @param {Node} root (optional) The start of the query (defaults to document).
6761          * @return {Array}
6762          */
6763         select : function(path, root, type){
6764             if(!root || root == document){
6765                 root = document;
6766             }
6767             if(typeof root == "string"){
6768                 root = document.getElementById(root);
6769             }
6770             var paths = path.split(",");
6771             var results = [];
6772             for(var i = 0, len = paths.length; i < len; i++){
6773                 var p = paths[i].replace(trimRe, "");
6774                 if(!cache[p]){
6775                     cache[p] = Roo.DomQuery.compile(p);
6776                     if(!cache[p]){
6777                         throw p + " is not a valid selector";
6778                     }
6779                 }
6780                 var result = cache[p](root);
6781                 if(result && result != document){
6782                     results = results.concat(result);
6783                 }
6784             }
6785             if(paths.length > 1){
6786                 return nodup(results);
6787             }
6788             return results;
6789         },
6790
6791         /**
6792          * Selects a single element.
6793          * @param {String} selector The selector/xpath query
6794          * @param {Node} root (optional) The start of the query (defaults to document).
6795          * @return {Element}
6796          */
6797         selectNode : function(path, root){
6798             return Roo.DomQuery.select(path, root)[0];
6799         },
6800
6801         /**
6802          * Selects the value of a node, optionally replacing null with the defaultValue.
6803          * @param {String} selector The selector/xpath query
6804          * @param {Node} root (optional) The start of the query (defaults to document).
6805          * @param {String} defaultValue
6806          */
6807         selectValue : function(path, root, defaultValue){
6808             path = path.replace(trimRe, "");
6809             if(!valueCache[path]){
6810                 valueCache[path] = Roo.DomQuery.compile(path, "select");
6811             }
6812             var n = valueCache[path](root);
6813             n = n[0] ? n[0] : n;
6814             var v = (n && n.firstChild ? n.firstChild.nodeValue : null);
6815             return ((v === null||v === undefined||v==='') ? defaultValue : v);
6816         },
6817
6818         /**
6819          * Selects the value of a node, parsing integers and floats.
6820          * @param {String} selector The selector/xpath query
6821          * @param {Node} root (optional) The start of the query (defaults to document).
6822          * @param {Number} defaultValue
6823          * @return {Number}
6824          */
6825         selectNumber : function(path, root, defaultValue){
6826             var v = Roo.DomQuery.selectValue(path, root, defaultValue || 0);
6827             return parseFloat(v);
6828         },
6829
6830         /**
6831          * Returns true if the passed element(s) match the passed simple selector (e.g. div.some-class or span:first-child)
6832          * @param {String/HTMLElement/Array} el An element id, element or array of elements
6833          * @param {String} selector The simple selector to test
6834          * @return {Boolean}
6835          */
6836         is : function(el, ss){
6837             if(typeof el == "string"){
6838                 el = document.getElementById(el);
6839             }
6840             var isArray = (el instanceof Array);
6841             var result = Roo.DomQuery.filter(isArray ? el : [el], ss);
6842             return isArray ? (result.length == el.length) : (result.length > 0);
6843         },
6844
6845         /**
6846          * Filters an array of elements to only include matches of a simple selector (e.g. div.some-class or span:first-child)
6847          * @param {Array} el An array of elements to filter
6848          * @param {String} selector The simple selector to test
6849          * @param {Boolean} nonMatches If true, it returns the elements that DON'T match
6850          * the selector instead of the ones that match
6851          * @return {Array}
6852          */
6853         filter : function(els, ss, nonMatches){
6854             ss = ss.replace(trimRe, "");
6855             if(!simpleCache[ss]){
6856                 simpleCache[ss] = Roo.DomQuery.compile(ss, "simple");
6857             }
6858             var result = simpleCache[ss](els);
6859             return nonMatches ? quickDiff(result, els) : result;
6860         },
6861
6862         /**
6863          * Collection of matching regular expressions and code snippets.
6864          */
6865         matchers : [{
6866                 re: /^\.([\w-]+)/,
6867                 select: 'n = byClassName(n, null, " {1} ");'
6868             }, {
6869                 re: /^\:([\w-]+)(?:\(((?:[^\s>\/]*|.*?))\))?/,
6870                 select: 'n = byPseudo(n, "{1}", "{2}");'
6871             },{
6872                 re: /^(?:([\[\{])(?:@)?([\w-]+)\s?(?:(=|.=)\s?['"]?(.*?)["']?)?[\]\}])/,
6873                 select: 'n = byAttribute(n, "{2}", "{4}", "{3}", "{1}");'
6874             }, {
6875                 re: /^#([\w-]+)/,
6876                 select: 'n = byId(n, null, "{1}");'
6877             },{
6878                 re: /^@([\w-]+)/,
6879                 select: 'return {firstChild:{nodeValue:attrValue(n, "{1}")}};'
6880             }
6881         ],
6882
6883         /**
6884          * Collection of operator comparison functions. The default operators are =, !=, ^=, $=, *=, %=, |= and ~=.
6885          * New operators can be added as long as the match the format <i>c</i>= where <i>c</i> is any character other than space, &gt; &lt;.
6886          */
6887         operators : {
6888             "=" : function(a, v){
6889                 return a == v;
6890             },
6891             "!=" : function(a, v){
6892                 return a != v;
6893             },
6894             "^=" : function(a, v){
6895                 return a && a.substr(0, v.length) == v;
6896             },
6897             "$=" : function(a, v){
6898                 return a && a.substr(a.length-v.length) == v;
6899             },
6900             "*=" : function(a, v){
6901                 return a && a.indexOf(v) !== -1;
6902             },
6903             "%=" : function(a, v){
6904                 return (a % v) == 0;
6905             },
6906             "|=" : function(a, v){
6907                 return a && (a == v || a.substr(0, v.length+1) == v+'-');
6908             },
6909             "~=" : function(a, v){
6910                 return a && (' '+a+' ').indexOf(' '+v+' ') != -1;
6911             }
6912         },
6913
6914         /**
6915          * Collection of "pseudo class" processors. Each processor is passed the current nodeset (array)
6916          * and the argument (if any) supplied in the selector.
6917          */
6918         pseudos : {
6919             "first-child" : function(c){
6920                 var r = [], ri = -1, n;
6921                 for(var i = 0, ci; ci = n = c[i]; i++){
6922                     while((n = n.previousSibling) && n.nodeType != 1);
6923                     if(!n){
6924                         r[++ri] = ci;
6925                     }
6926                 }
6927                 return r;
6928             },
6929
6930             "last-child" : function(c){
6931                 var r = [], ri = -1, n;
6932                 for(var i = 0, ci; ci = n = c[i]; i++){
6933                     while((n = n.nextSibling) && n.nodeType != 1);
6934                     if(!n){
6935                         r[++ri] = ci;
6936                     }
6937                 }
6938                 return r;
6939             },
6940
6941             "nth-child" : function(c, a) {
6942                 var r = [], ri = -1;
6943                 var m = nthRe.exec(a == "even" && "2n" || a == "odd" && "2n+1" || !nthRe2.test(a) && "n+" + a || a);
6944                 var f = (m[1] || 1) - 0, l = m[2] - 0;
6945                 for(var i = 0, n; n = c[i]; i++){
6946                     var pn = n.parentNode;
6947                     if (batch != pn._batch) {
6948                         var j = 0;
6949                         for(var cn = pn.firstChild; cn; cn = cn.nextSibling){
6950                             if(cn.nodeType == 1){
6951                                cn.nodeIndex = ++j;
6952                             }
6953                         }
6954                         pn._batch = batch;
6955                     }
6956                     if (f == 1) {
6957                         if (l == 0 || n.nodeIndex == l){
6958                             r[++ri] = n;
6959                         }
6960                     } else if ((n.nodeIndex + l) % f == 0){
6961                         r[++ri] = n;
6962                     }
6963                 }
6964
6965                 return r;
6966             },
6967
6968             "only-child" : function(c){
6969                 var r = [], ri = -1;;
6970                 for(var i = 0, ci; ci = c[i]; i++){
6971                     if(!prev(ci) && !next(ci)){
6972                         r[++ri] = ci;
6973                     }
6974                 }
6975                 return r;
6976             },
6977
6978             "empty" : function(c){
6979                 var r = [], ri = -1;
6980                 for(var i = 0, ci; ci = c[i]; i++){
6981                     var cns = ci.childNodes, j = 0, cn, empty = true;
6982                     while(cn = cns[j]){
6983                         ++j;
6984                         if(cn.nodeType == 1 || cn.nodeType == 3){
6985                             empty = false;
6986                             break;
6987                         }
6988                     }
6989                     if(empty){
6990                         r[++ri] = ci;
6991                     }
6992                 }
6993                 return r;
6994             },
6995
6996             "contains" : function(c, v){
6997                 var r = [], ri = -1;
6998                 for(var i = 0, ci; ci = c[i]; i++){
6999                     if((ci.textContent||ci.innerText||'').indexOf(v) != -1){
7000                         r[++ri] = ci;
7001                     }
7002                 }
7003                 return r;
7004             },
7005
7006             "nodeValue" : function(c, v){
7007                 var r = [], ri = -1;
7008                 for(var i = 0, ci; ci = c[i]; i++){
7009                     if(ci.firstChild && ci.firstChild.nodeValue == v){
7010                         r[++ri] = ci;
7011                     }
7012                 }
7013                 return r;
7014             },
7015
7016             "checked" : function(c){
7017                 var r = [], ri = -1;
7018                 for(var i = 0, ci; ci = c[i]; i++){
7019                     if(ci.checked == true){
7020                         r[++ri] = ci;
7021                     }
7022                 }
7023                 return r;
7024             },
7025
7026             "not" : function(c, ss){
7027                 return Roo.DomQuery.filter(c, ss, true);
7028             },
7029
7030             "odd" : function(c){
7031                 return this["nth-child"](c, "odd");
7032             },
7033
7034             "even" : function(c){
7035                 return this["nth-child"](c, "even");
7036             },
7037
7038             "nth" : function(c, a){
7039                 return c[a-1] || [];
7040             },
7041
7042             "first" : function(c){
7043                 return c[0] || [];
7044             },
7045
7046             "last" : function(c){
7047                 return c[c.length-1] || [];
7048             },
7049
7050             "has" : function(c, ss){
7051                 var s = Roo.DomQuery.select;
7052                 var r = [], ri = -1;
7053                 for(var i = 0, ci; ci = c[i]; i++){
7054                     if(s(ss, ci).length > 0){
7055                         r[++ri] = ci;
7056                     }
7057                 }
7058                 return r;
7059             },
7060
7061             "next" : function(c, ss){
7062                 var is = Roo.DomQuery.is;
7063                 var r = [], ri = -1;
7064                 for(var i = 0, ci; ci = c[i]; i++){
7065                     var n = next(ci);
7066                     if(n && is(n, ss)){
7067                         r[++ri] = ci;
7068                     }
7069                 }
7070                 return r;
7071             },
7072
7073             "prev" : function(c, ss){
7074                 var is = Roo.DomQuery.is;
7075                 var r = [], ri = -1;
7076                 for(var i = 0, ci; ci = c[i]; i++){
7077                     var n = prev(ci);
7078                     if(n && is(n, ss)){
7079                         r[++ri] = ci;
7080                     }
7081                 }
7082                 return r;
7083             }
7084         }
7085     };
7086 }();
7087
7088 /**
7089  * Selects an array of DOM nodes by CSS/XPath selector. Shorthand of {@link Roo.DomQuery#select}
7090  * @param {String} path The selector/xpath query
7091  * @param {Node} root (optional) The start of the query (defaults to document).
7092  * @return {Array}
7093  * @member Roo
7094  * @method query
7095  */
7096 Roo.query = Roo.DomQuery.select;
7097 /*
7098  * Based on:
7099  * Ext JS Library 1.1.1
7100  * Copyright(c) 2006-2007, Ext JS, LLC.
7101  *
7102  * Originally Released Under LGPL - original licence link has changed is not relivant.
7103  *
7104  * Fork - LGPL
7105  * <script type="text/javascript">
7106  */
7107
7108 /**
7109  * @class Roo.util.Observable
7110  * Base class that provides a common interface for publishing events. Subclasses are expected to
7111  * to have a property "events" with all the events defined.<br>
7112  * For example:
7113  * <pre><code>
7114  Employee = function(name){
7115     this.name = name;
7116     this.addEvents({
7117         "fired" : true,
7118         "quit" : true
7119     });
7120  }
7121  Roo.extend(Employee, Roo.util.Observable);
7122 </code></pre>
7123  * @param {Object} config properties to use (incuding events / listeners)
7124  */
7125
7126 Roo.util.Observable = function(cfg){
7127     
7128     cfg = cfg|| {};
7129     this.addEvents(cfg.events || {});
7130     if (cfg.events) {
7131         delete cfg.events; // make sure
7132     }
7133      
7134     Roo.apply(this, cfg);
7135     
7136     if(this.listeners){
7137         this.on(this.listeners);
7138         delete this.listeners;
7139     }
7140 };
7141 Roo.util.Observable.prototype = {
7142     /** 
7143  * @cfg {Object} listeners  list of events and functions to call for this object, 
7144  * For example :
7145  * <pre><code>
7146     listeners :  { 
7147        'click' : function(e) {
7148            ..... 
7149         } ,
7150         .... 
7151     } 
7152   </code></pre>
7153  */
7154     
7155     
7156     /**
7157      * Fires the specified event with the passed parameters (minus the event name).
7158      * @param {String} eventName
7159      * @param {Object...} args Variable number of parameters are passed to handlers
7160      * @return {Boolean} returns false if any of the handlers return false otherwise it returns true
7161      */
7162     fireEvent : function(){
7163         var ce = this.events[arguments[0].toLowerCase()];
7164         if(typeof ce == "object"){
7165             return ce.fire.apply(ce, Array.prototype.slice.call(arguments, 1));
7166         }else{
7167             return true;
7168         }
7169     },
7170
7171     // private
7172     filterOptRe : /^(?:scope|delay|buffer|single)$/,
7173
7174     /**
7175      * Appends an event handler to this component
7176      * @param {String}   eventName The type of event to listen for
7177      * @param {Function} handler The method the event invokes
7178      * @param {Object}   scope (optional) The scope in which to execute the handler
7179      * function. The handler function's "this" context.
7180      * @param {Object}   options (optional) An object containing handler configuration
7181      * properties. This may contain any of the following properties:<ul>
7182      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
7183      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
7184      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
7185      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
7186      * by the specified number of milliseconds. If the event fires again within that time, the original
7187      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
7188      * </ul><br>
7189      * <p>
7190      * <b>Combining Options</b><br>
7191      * Using the options argument, it is possible to combine different types of listeners:<br>
7192      * <br>
7193      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)
7194                 <pre><code>
7195                 el.on('click', this.onClick, this, {
7196                         single: true,
7197                 delay: 100,
7198                 forumId: 4
7199                 });
7200                 </code></pre>
7201      * <p>
7202      * <b>Attaching multiple handlers in 1 call</b><br>
7203      * The method also allows for a single argument to be passed which is a config object containing properties
7204      * which specify multiple handlers.
7205      * <pre><code>
7206                 el.on({
7207                         'click': {
7208                         fn: this.onClick,
7209                         scope: this,
7210                         delay: 100
7211                 }, 
7212                 'mouseover': {
7213                         fn: this.onMouseOver,
7214                         scope: this
7215                 },
7216                 'mouseout': {
7217                         fn: this.onMouseOut,
7218                         scope: this
7219                 }
7220                 });
7221                 </code></pre>
7222      * <p>
7223      * Or a shorthand syntax which passes the same scope object to all handlers:
7224         <pre><code>
7225                 el.on({
7226                         'click': this.onClick,
7227                 'mouseover': this.onMouseOver,
7228                 'mouseout': this.onMouseOut,
7229                 scope: this
7230                 });
7231                 </code></pre>
7232      */
7233     addListener : function(eventName, fn, scope, o){
7234         if(typeof eventName == "object"){
7235             o = eventName;
7236             for(var e in o){
7237                 if(this.filterOptRe.test(e)){
7238                     continue;
7239                 }
7240                 if(typeof o[e] == "function"){
7241                     // shared options
7242                     this.addListener(e, o[e], o.scope,  o);
7243                 }else{
7244                     // individual options
7245                     this.addListener(e, o[e].fn, o[e].scope, o[e]);
7246                 }
7247             }
7248             return;
7249         }
7250         o = (!o || typeof o == "boolean") ? {} : o;
7251         eventName = eventName.toLowerCase();
7252         var ce = this.events[eventName] || true;
7253         if(typeof ce == "boolean"){
7254             ce = new Roo.util.Event(this, eventName);
7255             this.events[eventName] = ce;
7256         }
7257         ce.addListener(fn, scope, o);
7258     },
7259
7260     /**
7261      * Removes a listener
7262      * @param {String}   eventName     The type of event to listen for
7263      * @param {Function} handler        The handler to remove
7264      * @param {Object}   scope  (optional) The scope (this object) for the handler
7265      */
7266     removeListener : function(eventName, fn, scope){
7267         var ce = this.events[eventName.toLowerCase()];
7268         if(typeof ce == "object"){
7269             ce.removeListener(fn, scope);
7270         }
7271     },
7272
7273     /**
7274      * Removes all listeners for this object
7275      */
7276     purgeListeners : function(){
7277         for(var evt in this.events){
7278             if(typeof this.events[evt] == "object"){
7279                  this.events[evt].clearListeners();
7280             }
7281         }
7282     },
7283
7284     relayEvents : function(o, events){
7285         var createHandler = function(ename){
7286             return function(){
7287                  
7288                 return this.fireEvent.apply(this, Roo.combine(ename, Array.prototype.slice.call(arguments, 0)));
7289             };
7290         };
7291         for(var i = 0, len = events.length; i < len; i++){
7292             var ename = events[i];
7293             if(!this.events[ename]){
7294                 this.events[ename] = true;
7295             };
7296             o.on(ename, createHandler(ename), this);
7297         }
7298     },
7299
7300     /**
7301      * Used to define events on this Observable
7302      * @param {Object} object The object with the events defined
7303      */
7304     addEvents : function(o){
7305         if(!this.events){
7306             this.events = {};
7307         }
7308         Roo.applyIf(this.events, o);
7309     },
7310
7311     /**
7312      * Checks to see if this object has any listeners for a specified event
7313      * @param {String} eventName The name of the event to check for
7314      * @return {Boolean} True if the event is being listened for, else false
7315      */
7316     hasListener : function(eventName){
7317         var e = this.events[eventName];
7318         return typeof e == "object" && e.listeners.length > 0;
7319     }
7320 };
7321 /**
7322  * Appends an event handler to this element (shorthand for addListener)
7323  * @param {String}   eventName     The type of event to listen for
7324  * @param {Function} handler        The method the event invokes
7325  * @param {Object}   scope (optional) The scope in which to execute the handler
7326  * function. The handler function's "this" context.
7327  * @param {Object}   options  (optional)
7328  * @method
7329  */
7330 Roo.util.Observable.prototype.on = Roo.util.Observable.prototype.addListener;
7331 /**
7332  * Removes a listener (shorthand for removeListener)
7333  * @param {String}   eventName     The type of event to listen for
7334  * @param {Function} handler        The handler to remove
7335  * @param {Object}   scope  (optional) The scope (this object) for the handler
7336  * @method
7337  */
7338 Roo.util.Observable.prototype.un = Roo.util.Observable.prototype.removeListener;
7339
7340 /**
7341  * Starts capture on the specified Observable. All events will be passed
7342  * to the supplied function with the event name + standard signature of the event
7343  * <b>before</b> the event is fired. If the supplied function returns false,
7344  * the event will not fire.
7345  * @param {Observable} o The Observable to capture
7346  * @param {Function} fn The function to call
7347  * @param {Object} scope (optional) The scope (this object) for the fn
7348  * @static
7349  */
7350 Roo.util.Observable.capture = function(o, fn, scope){
7351     o.fireEvent = o.fireEvent.createInterceptor(fn, scope);
7352 };
7353
7354 /**
7355  * Removes <b>all</b> added captures from the Observable.
7356  * @param {Observable} o The Observable to release
7357  * @static
7358  */
7359 Roo.util.Observable.releaseCapture = function(o){
7360     o.fireEvent = Roo.util.Observable.prototype.fireEvent;
7361 };
7362
7363 (function(){
7364
7365     var createBuffered = function(h, o, scope){
7366         var task = new Roo.util.DelayedTask();
7367         return function(){
7368             task.delay(o.buffer, h, scope, Array.prototype.slice.call(arguments, 0));
7369         };
7370     };
7371
7372     var createSingle = function(h, e, fn, scope){
7373         return function(){
7374             e.removeListener(fn, scope);
7375             return h.apply(scope, arguments);
7376         };
7377     };
7378
7379     var createDelayed = function(h, o, scope){
7380         return function(){
7381             var args = Array.prototype.slice.call(arguments, 0);
7382             setTimeout(function(){
7383                 h.apply(scope, args);
7384             }, o.delay || 10);
7385         };
7386     };
7387
7388     Roo.util.Event = function(obj, name){
7389         this.name = name;
7390         this.obj = obj;
7391         this.listeners = [];
7392     };
7393
7394     Roo.util.Event.prototype = {
7395         addListener : function(fn, scope, options){
7396             var o = options || {};
7397             scope = scope || this.obj;
7398             if(!this.isListening(fn, scope)){
7399                 var l = {fn: fn, scope: scope, options: o};
7400                 var h = fn;
7401                 if(o.delay){
7402                     h = createDelayed(h, o, scope);
7403                 }
7404                 if(o.single){
7405                     h = createSingle(h, this, fn, scope);
7406                 }
7407                 if(o.buffer){
7408                     h = createBuffered(h, o, scope);
7409                 }
7410                 l.fireFn = h;
7411                 if(!this.firing){ // if we are currently firing this event, don't disturb the listener loop
7412                     this.listeners.push(l);
7413                 }else{
7414                     this.listeners = this.listeners.slice(0);
7415                     this.listeners.push(l);
7416                 }
7417             }
7418         },
7419
7420         findListener : function(fn, scope){
7421             scope = scope || this.obj;
7422             var ls = this.listeners;
7423             for(var i = 0, len = ls.length; i < len; i++){
7424                 var l = ls[i];
7425                 if(l.fn == fn && l.scope == scope){
7426                     return i;
7427                 }
7428             }
7429             return -1;
7430         },
7431
7432         isListening : function(fn, scope){
7433             return this.findListener(fn, scope) != -1;
7434         },
7435
7436         removeListener : function(fn, scope){
7437             var index;
7438             if((index = this.findListener(fn, scope)) != -1){
7439                 if(!this.firing){
7440                     this.listeners.splice(index, 1);
7441                 }else{
7442                     this.listeners = this.listeners.slice(0);
7443                     this.listeners.splice(index, 1);
7444                 }
7445                 return true;
7446             }
7447             return false;
7448         },
7449
7450         clearListeners : function(){
7451             this.listeners = [];
7452         },
7453
7454         fire : function(){
7455             var ls = this.listeners, scope, len = ls.length;
7456             if(len > 0){
7457                 this.firing = true;
7458                 var args = Array.prototype.slice.call(arguments, 0);                
7459                 for(var i = 0; i < len; i++){
7460                     var l = ls[i];
7461                     if(l.fireFn.apply(l.scope||this.obj||window, args) === false){
7462                         this.firing = false;
7463                         return false;
7464                     }
7465                 }
7466                 this.firing = false;
7467             }
7468             return true;
7469         }
7470     };
7471 })();/*
7472  * RooJS Library 
7473  * Copyright(c) 2007-2017, Roo J Solutions Ltd
7474  *
7475  * Licence LGPL 
7476  *
7477  */
7478  
7479 /**
7480  * @class Roo.Document
7481  * @extends Roo.util.Observable
7482  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
7483  * 
7484  * @param {Object} config the methods and properties of the 'base' class for the application.
7485  * 
7486  *  Generic Page handler - implement this to start your app..
7487  * 
7488  * eg.
7489  *  MyProject = new Roo.Document({
7490         events : {
7491             'load' : true // your events..
7492         },
7493         listeners : {
7494             'ready' : function() {
7495                 // fired on Roo.onReady()
7496             }
7497         }
7498  * 
7499  */
7500 Roo.Document = function(cfg) {
7501      
7502     this.addEvents({ 
7503         'ready' : true
7504     });
7505     Roo.util.Observable.call(this,cfg);
7506     
7507     var _this = this;
7508     
7509     Roo.onReady(function() {
7510         _this.fireEvent('ready');
7511     },null,false);
7512     
7513     
7514 }
7515
7516 Roo.extend(Roo.Document, Roo.util.Observable, {});/*
7517  * Based on:
7518  * Ext JS Library 1.1.1
7519  * Copyright(c) 2006-2007, Ext JS, LLC.
7520  *
7521  * Originally Released Under LGPL - original licence link has changed is not relivant.
7522  *
7523  * Fork - LGPL
7524  * <script type="text/javascript">
7525  */
7526
7527 /**
7528  * @class Roo.EventManager
7529  * Registers event handlers that want to receive a normalized EventObject instead of the standard browser event and provides 
7530  * several useful events directly.
7531  * See {@link Roo.EventObject} for more details on normalized event objects.
7532  * @static
7533  */
7534 Roo.EventManager = function(){
7535     var docReadyEvent, docReadyProcId, docReadyState = false;
7536     var resizeEvent, resizeTask, textEvent, textSize;
7537     var E = Roo.lib.Event;
7538     var D = Roo.lib.Dom;
7539
7540     
7541     
7542
7543     var fireDocReady = function(){
7544         if(!docReadyState){
7545             docReadyState = true;
7546             Roo.isReady = true;
7547             if(docReadyProcId){
7548                 clearInterval(docReadyProcId);
7549             }
7550             if(Roo.isGecko || Roo.isOpera) {
7551                 document.removeEventListener("DOMContentLoaded", fireDocReady, false);
7552             }
7553             if(Roo.isIE){
7554                 var defer = document.getElementById("ie-deferred-loader");
7555                 if(defer){
7556                     defer.onreadystatechange = null;
7557                     defer.parentNode.removeChild(defer);
7558                 }
7559             }
7560             if(docReadyEvent){
7561                 docReadyEvent.fire();
7562                 docReadyEvent.clearListeners();
7563             }
7564         }
7565     };
7566     
7567     var initDocReady = function(){
7568         docReadyEvent = new Roo.util.Event();
7569         if(Roo.isGecko || Roo.isOpera) {
7570             document.addEventListener("DOMContentLoaded", fireDocReady, false);
7571         }else if(Roo.isIE){
7572             document.write("<s"+'cript id="ie-deferred-loader" defer="defer" src="/'+'/:"></s'+"cript>");
7573             var defer = document.getElementById("ie-deferred-loader");
7574             defer.onreadystatechange = function(){
7575                 if(this.readyState == "complete"){
7576                     fireDocReady();
7577                 }
7578             };
7579         }else if(Roo.isSafari){ 
7580             docReadyProcId = setInterval(function(){
7581                 var rs = document.readyState;
7582                 if(rs == "complete") {
7583                     fireDocReady();     
7584                  }
7585             }, 10);
7586         }
7587         // no matter what, make sure it fires on load
7588         E.on(window, "load", fireDocReady);
7589     };
7590
7591     var createBuffered = function(h, o){
7592         var task = new Roo.util.DelayedTask(h);
7593         return function(e){
7594             // create new event object impl so new events don't wipe out properties
7595             e = new Roo.EventObjectImpl(e);
7596             task.delay(o.buffer, h, null, [e]);
7597         };
7598     };
7599
7600     var createSingle = function(h, el, ename, fn){
7601         return function(e){
7602             Roo.EventManager.removeListener(el, ename, fn);
7603             h(e);
7604         };
7605     };
7606
7607     var createDelayed = function(h, o){
7608         return function(e){
7609             // create new event object impl so new events don't wipe out properties
7610             e = new Roo.EventObjectImpl(e);
7611             setTimeout(function(){
7612                 h(e);
7613             }, o.delay || 10);
7614         };
7615     };
7616     var transitionEndVal = false;
7617     
7618     var transitionEnd = function()
7619     {
7620         if (transitionEndVal) {
7621             return transitionEndVal;
7622         }
7623         var el = document.createElement('div');
7624
7625         var transEndEventNames = {
7626             WebkitTransition : 'webkitTransitionEnd',
7627             MozTransition    : 'transitionend',
7628             OTransition      : 'oTransitionEnd otransitionend',
7629             transition       : 'transitionend'
7630         };
7631     
7632         for (var name in transEndEventNames) {
7633             if (el.style[name] !== undefined) {
7634                 transitionEndVal = transEndEventNames[name];
7635                 return  transitionEndVal ;
7636             }
7637         }
7638     }
7639     
7640   
7641
7642     var listen = function(element, ename, opt, fn, scope)
7643     {
7644         var o = (!opt || typeof opt == "boolean") ? {} : opt;
7645         fn = fn || o.fn; scope = scope || o.scope;
7646         var el = Roo.getDom(element);
7647         
7648         
7649         if(!el){
7650             throw "Error listening for \"" + ename + '\". Element "' + element + '" doesn\'t exist.';
7651         }
7652         
7653         if (ename == 'transitionend') {
7654             ename = transitionEnd();
7655         }
7656         var h = function(e){
7657             e = Roo.EventObject.setEvent(e);
7658             var t;
7659             if(o.delegate){
7660                 t = e.getTarget(o.delegate, el);
7661                 if(!t){
7662                     return;
7663                 }
7664             }else{
7665                 t = e.target;
7666             }
7667             if(o.stopEvent === true){
7668                 e.stopEvent();
7669             }
7670             if(o.preventDefault === true){
7671                e.preventDefault();
7672             }
7673             if(o.stopPropagation === true){
7674                 e.stopPropagation();
7675             }
7676
7677             if(o.normalized === false){
7678                 e = e.browserEvent;
7679             }
7680
7681             fn.call(scope || el, e, t, o);
7682         };
7683         if(o.delay){
7684             h = createDelayed(h, o);
7685         }
7686         if(o.single){
7687             h = createSingle(h, el, ename, fn);
7688         }
7689         if(o.buffer){
7690             h = createBuffered(h, o);
7691         }
7692         
7693         fn._handlers = fn._handlers || [];
7694         
7695         
7696         fn._handlers.push([Roo.id(el), ename, h]);
7697         
7698         
7699          
7700         E.on(el, ename, h); // this adds the actuall listener to the object..
7701         
7702         
7703         if(ename == "mousewheel" && el.addEventListener){ // workaround for jQuery
7704             el.addEventListener("DOMMouseScroll", h, false);
7705             E.on(window, 'unload', function(){
7706                 el.removeEventListener("DOMMouseScroll", h, false);
7707             });
7708         }
7709         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
7710             Roo.EventManager.stoppedMouseDownEvent.addListener(h);
7711         }
7712         return h;
7713     };
7714
7715     var stopListening = function(el, ename, fn){
7716         var id = Roo.id(el), hds = fn._handlers, hd = fn;
7717         if(hds){
7718             for(var i = 0, len = hds.length; i < len; i++){
7719                 var h = hds[i];
7720                 if(h[0] == id && h[1] == ename){
7721                     hd = h[2];
7722                     hds.splice(i, 1);
7723                     break;
7724                 }
7725             }
7726         }
7727         E.un(el, ename, hd);
7728         el = Roo.getDom(el);
7729         if(ename == "mousewheel" && el.addEventListener){
7730             el.removeEventListener("DOMMouseScroll", hd, false);
7731         }
7732         if(ename == "mousedown" && el == document){ // fix stopped mousedowns on the document
7733             Roo.EventManager.stoppedMouseDownEvent.removeListener(hd);
7734         }
7735     };
7736
7737     var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
7738     
7739     var pub = {
7740         
7741         
7742         /** 
7743          * Fix for doc tools
7744          * @scope Roo.EventManager
7745          */
7746         
7747         
7748         /** 
7749          * This is no longer needed and is deprecated. Places a simple wrapper around an event handler to override the browser event
7750          * object with a Roo.EventObject
7751          * @param {Function} fn        The method the event invokes
7752          * @param {Object}   scope    An object that becomes the scope of the handler
7753          * @param {boolean}  override If true, the obj passed in becomes
7754          *                             the execution scope of the listener
7755          * @return {Function} The wrapped function
7756          * @deprecated
7757          */
7758         wrap : function(fn, scope, override){
7759             return function(e){
7760                 Roo.EventObject.setEvent(e);
7761                 fn.call(override ? scope || window : window, Roo.EventObject, scope);
7762             };
7763         },
7764         
7765         /**
7766      * Appends an event handler to an element (shorthand for addListener)
7767      * @param {String/HTMLElement}   element        The html element or id to assign the
7768      * @param {String}   eventName The type of event to listen for
7769      * @param {Function} handler The method the event invokes
7770      * @param {Object}   scope (optional) The scope in which to execute the handler
7771      * function. The handler function's "this" context.
7772      * @param {Object}   options (optional) An object containing handler configuration
7773      * properties. This may contain any of the following properties:<ul>
7774      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
7775      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
7776      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
7777      * <li>preventDefault {Boolean} True to prevent the default action</li>
7778      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
7779      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
7780      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
7781      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
7782      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
7783      * by the specified number of milliseconds. If the event fires again within that time, the original
7784      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
7785      * </ul><br>
7786      * <p>
7787      * <b>Combining Options</b><br>
7788      * Using the options argument, it is possible to combine different types of listeners:<br>
7789      * <br>
7790      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
7791      * Code:<pre><code>
7792 el.on('click', this.onClick, this, {
7793     single: true,
7794     delay: 100,
7795     stopEvent : true,
7796     forumId: 4
7797 });</code></pre>
7798      * <p>
7799      * <b>Attaching multiple handlers in 1 call</b><br>
7800       * The method also allows for a single argument to be passed which is a config object containing properties
7801      * which specify multiple handlers.
7802      * <p>
7803      * Code:<pre><code>
7804 el.on({
7805     'click' : {
7806         fn: this.onClick
7807         scope: this,
7808         delay: 100
7809     },
7810     'mouseover' : {
7811         fn: this.onMouseOver
7812         scope: this
7813     },
7814     'mouseout' : {
7815         fn: this.onMouseOut
7816         scope: this
7817     }
7818 });</code></pre>
7819      * <p>
7820      * Or a shorthand syntax:<br>
7821      * Code:<pre><code>
7822 el.on({
7823     'click' : this.onClick,
7824     'mouseover' : this.onMouseOver,
7825     'mouseout' : this.onMouseOut
7826     scope: this
7827 });</code></pre>
7828      */
7829         addListener : function(element, eventName, fn, scope, options){
7830             if(typeof eventName == "object"){
7831                 var o = eventName;
7832                 for(var e in o){
7833                     if(propRe.test(e)){
7834                         continue;
7835                     }
7836                     if(typeof o[e] == "function"){
7837                         // shared options
7838                         listen(element, e, o, o[e], o.scope);
7839                     }else{
7840                         // individual options
7841                         listen(element, e, o[e]);
7842                     }
7843                 }
7844                 return;
7845             }
7846             return listen(element, eventName, options, fn, scope);
7847         },
7848         
7849         /**
7850          * Removes an event handler
7851          *
7852          * @param {String/HTMLElement}   element        The id or html element to remove the 
7853          *                             event from
7854          * @param {String}   eventName     The type of event
7855          * @param {Function} fn
7856          * @return {Boolean} True if a listener was actually removed
7857          */
7858         removeListener : function(element, eventName, fn){
7859             return stopListening(element, eventName, fn);
7860         },
7861         
7862         /**
7863          * Fires when the document is ready (before onload and before images are loaded). Can be 
7864          * accessed shorthanded Roo.onReady().
7865          * @param {Function} fn        The method the event invokes
7866          * @param {Object}   scope    An  object that becomes the scope of the handler
7867          * @param {boolean}  options
7868          */
7869         onDocumentReady : function(fn, scope, options){
7870             if(docReadyState){ // if it already fired
7871                 docReadyEvent.addListener(fn, scope, options);
7872                 docReadyEvent.fire();
7873                 docReadyEvent.clearListeners();
7874                 return;
7875             }
7876             if(!docReadyEvent){
7877                 initDocReady();
7878             }
7879             docReadyEvent.addListener(fn, scope, options);
7880         },
7881         
7882         /**
7883          * Fires when the window is resized and provides resize event buffering (50 milliseconds), passes new viewport width and height to handlers.
7884          * @param {Function} fn        The method the event invokes
7885          * @param {Object}   scope    An object that becomes the scope of the handler
7886          * @param {boolean}  options
7887          */
7888         onWindowResize : function(fn, scope, options)
7889         {
7890             if(!resizeEvent){
7891                 resizeEvent = new Roo.util.Event();
7892                 resizeTask = new Roo.util.DelayedTask(function(){
7893                     resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
7894                 });
7895                 E.on(window, "resize", function()
7896                 {
7897                     if (Roo.isIE) {
7898                         resizeTask.delay(50);
7899                     } else {
7900                         resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
7901                     }
7902                 });
7903             }
7904             resizeEvent.addListener(fn, scope, options);
7905         },
7906
7907         /**
7908          * Fires when the user changes the active text size. Handler gets called with 2 params, the old size and the new size.
7909          * @param {Function} fn        The method the event invokes
7910          * @param {Object}   scope    An object that becomes the scope of the handler
7911          * @param {boolean}  options
7912          */
7913         onTextResize : function(fn, scope, options){
7914             if(!textEvent){
7915                 textEvent = new Roo.util.Event();
7916                 var textEl = new Roo.Element(document.createElement('div'));
7917                 textEl.dom.className = 'x-text-resize';
7918                 textEl.dom.innerHTML = 'X';
7919                 textEl.appendTo(document.body);
7920                 textSize = textEl.dom.offsetHeight;
7921                 setInterval(function(){
7922                     if(textEl.dom.offsetHeight != textSize){
7923                         textEvent.fire(textSize, textSize = textEl.dom.offsetHeight);
7924                     }
7925                 }, this.textResizeInterval);
7926             }
7927             textEvent.addListener(fn, scope, options);
7928         },
7929
7930         /**
7931          * Removes the passed window resize listener.
7932          * @param {Function} fn        The method the event invokes
7933          * @param {Object}   scope    The scope of handler
7934          */
7935         removeResizeListener : function(fn, scope){
7936             if(resizeEvent){
7937                 resizeEvent.removeListener(fn, scope);
7938             }
7939         },
7940
7941         // private
7942         fireResize : function(){
7943             if(resizeEvent){
7944                 resizeEvent.fire(D.getViewWidth(), D.getViewHeight());
7945             }   
7946         },
7947         /**
7948          * Url used for onDocumentReady with using SSL (defaults to Roo.SSL_SECURE_URL)
7949          */
7950         ieDeferSrc : false,
7951         /**
7952          * The frequency, in milliseconds, to check for text resize events (defaults to 50)
7953          */
7954         textResizeInterval : 50
7955     };
7956     
7957     /**
7958      * Fix for doc tools
7959      * @scopeAlias pub=Roo.EventManager
7960      */
7961     
7962      /**
7963      * Appends an event handler to an element (shorthand for addListener)
7964      * @param {String/HTMLElement}   element        The html element or id to assign the
7965      * @param {String}   eventName The type of event to listen for
7966      * @param {Function} handler The method the event invokes
7967      * @param {Object}   scope (optional) The scope in which to execute the handler
7968      * function. The handler function's "this" context.
7969      * @param {Object}   options (optional) An object containing handler configuration
7970      * properties. This may contain any of the following properties:<ul>
7971      * <li>scope {Object} The scope in which to execute the handler function. The handler function's "this" context.</li>
7972      * <li>delegate {String} A simple selector to filter the target or look for a descendant of the target</li>
7973      * <li>stopEvent {Boolean} True to stop the event. That is stop propagation, and prevent the default action.</li>
7974      * <li>preventDefault {Boolean} True to prevent the default action</li>
7975      * <li>stopPropagation {Boolean} True to prevent event propagation</li>
7976      * <li>normalized {Boolean} False to pass a browser event to the handler function instead of an Roo.EventObject</li>
7977      * <li>delay {Number} The number of milliseconds to delay the invocation of the handler after te event fires.</li>
7978      * <li>single {Boolean} True to add a handler to handle just the next firing of the event, and then remove itself.</li>
7979      * <li>buffer {Number} Causes the handler to be scheduled to run in an {@link Roo.util.DelayedTask} delayed
7980      * by the specified number of milliseconds. If the event fires again within that time, the original
7981      * handler is <em>not</em> invoked, but the new handler is scheduled in its place.</li>
7982      * </ul><br>
7983      * <p>
7984      * <b>Combining Options</b><br>
7985      * Using the options argument, it is possible to combine different types of listeners:<br>
7986      * <br>
7987      * A normalized, delayed, one-time listener that auto stops the event and passes a custom argument (forumId)<div style="margin: 5px 20px 20px;">
7988      * Code:<pre><code>
7989 el.on('click', this.onClick, this, {
7990     single: true,
7991     delay: 100,
7992     stopEvent : true,
7993     forumId: 4
7994 });</code></pre>
7995      * <p>
7996      * <b>Attaching multiple handlers in 1 call</b><br>
7997       * The method also allows for a single argument to be passed which is a config object containing properties
7998      * which specify multiple handlers.
7999      * <p>
8000      * Code:<pre><code>
8001 el.on({
8002     'click' : {
8003         fn: this.onClick
8004         scope: this,
8005         delay: 100
8006     },
8007     'mouseover' : {
8008         fn: this.onMouseOver
8009         scope: this
8010     },
8011     'mouseout' : {
8012         fn: this.onMouseOut
8013         scope: this
8014     }
8015 });</code></pre>
8016      * <p>
8017      * Or a shorthand syntax:<br>
8018      * Code:<pre><code>
8019 el.on({
8020     'click' : this.onClick,
8021     'mouseover' : this.onMouseOver,
8022     'mouseout' : this.onMouseOut
8023     scope: this
8024 });</code></pre>
8025      */
8026     pub.on = pub.addListener;
8027     pub.un = pub.removeListener;
8028
8029     pub.stoppedMouseDownEvent = new Roo.util.Event();
8030     return pub;
8031 }();
8032 /**
8033   * Fires when the document is ready (before onload and before images are loaded).  Shorthand of {@link Roo.EventManager#onDocumentReady}.
8034   * @param {Function} fn        The method the event invokes
8035   * @param {Object}   scope    An  object that becomes the scope of the handler
8036   * @param {boolean}  override If true, the obj passed in becomes
8037   *                             the execution scope of the listener
8038   * @member Roo
8039   * @method onReady
8040  */
8041 Roo.onReady = Roo.EventManager.onDocumentReady;
8042
8043 Roo.onReady(function(){
8044     var bd = Roo.get(document.body);
8045     if(!bd){ return; }
8046
8047     var cls = [
8048             Roo.isIE ? "roo-ie"
8049             : Roo.isIE11 ? "roo-ie11"
8050             : Roo.isEdge ? "roo-edge"
8051             : Roo.isGecko ? "roo-gecko"
8052             : Roo.isOpera ? "roo-opera"
8053             : Roo.isSafari ? "roo-safari" : ""];
8054
8055     if(Roo.isMac){
8056         cls.push("roo-mac");
8057     }
8058     if(Roo.isLinux){
8059         cls.push("roo-linux");
8060     }
8061     if(Roo.isIOS){
8062         cls.push("roo-ios");
8063     }
8064     if(Roo.isTouch){
8065         cls.push("roo-touch");
8066     }
8067     if(Roo.isBorderBox){
8068         cls.push('roo-border-box');
8069     }
8070     if(Roo.isStrict){ // add to the parent to allow for selectors like ".ext-strict .ext-ie"
8071         var p = bd.dom.parentNode;
8072         if(p){
8073             p.className += ' roo-strict';
8074         }
8075     }
8076     bd.addClass(cls.join(' '));
8077 });
8078
8079 /**
8080  * @class Roo.EventObject
8081  * EventObject exposes the Yahoo! UI Event functionality directly on the object
8082  * passed to your event handler. It exists mostly for convenience. It also fixes the annoying null checks automatically to cleanup your code 
8083  * Example:
8084  * <pre><code>
8085  function handleClick(e){ // e is not a standard event object, it is a Roo.EventObject
8086     e.preventDefault();
8087     var target = e.getTarget();
8088     ...
8089  }
8090  var myDiv = Roo.get("myDiv");
8091  myDiv.on("click", handleClick);
8092  //or
8093  Roo.EventManager.on("myDiv", 'click', handleClick);
8094  Roo.EventManager.addListener("myDiv", 'click', handleClick);
8095  </code></pre>
8096  * @static
8097  */
8098 Roo.EventObject = function(){
8099     
8100     var E = Roo.lib.Event;
8101     
8102     // safari keypress events for special keys return bad keycodes
8103     var safariKeys = {
8104         63234 : 37, // left
8105         63235 : 39, // right
8106         63232 : 38, // up
8107         63233 : 40, // down
8108         63276 : 33, // page up
8109         63277 : 34, // page down
8110         63272 : 46, // delete
8111         63273 : 36, // home
8112         63275 : 35  // end
8113     };
8114
8115     // normalize button clicks
8116     var btnMap = Roo.isIE ? {1:0,4:1,2:2} :
8117                 (Roo.isSafari ? {1:0,2:1,3:2} : {0:0,1:1,2:2});
8118
8119     Roo.EventObjectImpl = function(e){
8120         if(e){
8121             this.setEvent(e.browserEvent || e);
8122         }
8123     };
8124     Roo.EventObjectImpl.prototype = {
8125         /**
8126          * Used to fix doc tools.
8127          * @scope Roo.EventObject.prototype
8128          */
8129             
8130
8131         
8132         
8133         /** The normal browser event */
8134         browserEvent : null,
8135         /** The button pressed in a mouse event */
8136         button : -1,
8137         /** True if the shift key was down during the event */
8138         shiftKey : false,
8139         /** True if the control key was down during the event */
8140         ctrlKey : false,
8141         /** True if the alt key was down during the event */
8142         altKey : false,
8143
8144         /** Key constant 
8145         * @type Number */
8146         BACKSPACE : 8,
8147         /** Key constant 
8148         * @type Number */
8149         TAB : 9,
8150         /** Key constant 
8151         * @type Number */
8152         RETURN : 13,
8153         /** Key constant 
8154         * @type Number */
8155         ENTER : 13,
8156         /** Key constant 
8157         * @type Number */
8158         SHIFT : 16,
8159         /** Key constant 
8160         * @type Number */
8161         CONTROL : 17,
8162         /** Key constant 
8163         * @type Number */
8164         ESC : 27,
8165         /** Key constant 
8166         * @type Number */
8167         SPACE : 32,
8168         /** Key constant 
8169         * @type Number */
8170         PAGEUP : 33,
8171         /** Key constant 
8172         * @type Number */
8173         PAGEDOWN : 34,
8174         /** Key constant 
8175         * @type Number */
8176         END : 35,
8177         /** Key constant 
8178         * @type Number */
8179         HOME : 36,
8180         /** Key constant 
8181         * @type Number */
8182         LEFT : 37,
8183         /** Key constant 
8184         * @type Number */
8185         UP : 38,
8186         /** Key constant 
8187         * @type Number */
8188         RIGHT : 39,
8189         /** Key constant 
8190         * @type Number */
8191         DOWN : 40,
8192         /** Key constant 
8193         * @type Number */
8194         DELETE : 46,
8195         /** Key constant 
8196         * @type Number */
8197         F5 : 116,
8198
8199            /** @private */
8200         setEvent : function(e){
8201             if(e == this || (e && e.browserEvent)){ // already wrapped
8202                 return e;
8203             }
8204             this.browserEvent = e;
8205             if(e){
8206                 // normalize buttons
8207                 this.button = e.button ? btnMap[e.button] : (e.which ? e.which-1 : -1);
8208                 if(e.type == 'click' && this.button == -1){
8209                     this.button = 0;
8210                 }
8211                 this.type = e.type;
8212                 this.shiftKey = e.shiftKey;
8213                 // mac metaKey behaves like ctrlKey
8214                 this.ctrlKey = e.ctrlKey || e.metaKey;
8215                 this.altKey = e.altKey;
8216                 // in getKey these will be normalized for the mac
8217                 this.keyCode = e.keyCode;
8218                 // keyup warnings on firefox.
8219                 this.charCode = (e.type == 'keyup' || e.type == 'keydown') ? 0 : e.charCode;
8220                 // cache the target for the delayed and or buffered events
8221                 this.target = E.getTarget(e);
8222                 // same for XY
8223                 this.xy = E.getXY(e);
8224             }else{
8225                 this.button = -1;
8226                 this.shiftKey = false;
8227                 this.ctrlKey = false;
8228                 this.altKey = false;
8229                 this.keyCode = 0;
8230                 this.charCode =0;
8231                 this.target = null;
8232                 this.xy = [0, 0];
8233             }
8234             return this;
8235         },
8236
8237         /**
8238          * Stop the event (preventDefault and stopPropagation)
8239          */
8240         stopEvent : function(){
8241             if(this.browserEvent){
8242                 if(this.browserEvent.type == 'mousedown'){
8243                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
8244                 }
8245                 E.stopEvent(this.browserEvent);
8246             }
8247         },
8248
8249         /**
8250          * Prevents the browsers default handling of the event.
8251          */
8252         preventDefault : function(){
8253             if(this.browserEvent){
8254                 E.preventDefault(this.browserEvent);
8255             }
8256         },
8257
8258         /** @private */
8259         isNavKeyPress : function(){
8260             var k = this.keyCode;
8261             k = Roo.isSafari ? (safariKeys[k] || k) : k;
8262             return (k >= 33 && k <= 40) || k == this.RETURN || k == this.TAB || k == this.ESC;
8263         },
8264
8265         isSpecialKey : function(){
8266             var k = this.keyCode;
8267             return (this.type == 'keypress' && this.ctrlKey) || k == 9 || k == 13  || k == 40 || k == 27 ||
8268             (k == 16) || (k == 17) ||
8269             (k >= 18 && k <= 20) ||
8270             (k >= 33 && k <= 35) ||
8271             (k >= 36 && k <= 39) ||
8272             (k >= 44 && k <= 45);
8273         },
8274         /**
8275          * Cancels bubbling of the event.
8276          */
8277         stopPropagation : function(){
8278             if(this.browserEvent){
8279                 if(this.type == 'mousedown'){
8280                     Roo.EventManager.stoppedMouseDownEvent.fire(this);
8281                 }
8282                 E.stopPropagation(this.browserEvent);
8283             }
8284         },
8285
8286         /**
8287          * Gets the key code for the event.
8288          * @return {Number}
8289          */
8290         getCharCode : function(){
8291             return this.charCode || this.keyCode;
8292         },
8293
8294         /**
8295          * Returns a normalized keyCode for the event.
8296          * @return {Number} The key code
8297          */
8298         getKey : function(){
8299             var k = this.keyCode || this.charCode;
8300             return Roo.isSafari ? (safariKeys[k] || k) : k;
8301         },
8302
8303         /**
8304          * Gets the x coordinate of the event.
8305          * @return {Number}
8306          */
8307         getPageX : function(){
8308             return this.xy[0];
8309         },
8310
8311         /**
8312          * Gets the y coordinate of the event.
8313          * @return {Number}
8314          */
8315         getPageY : function(){
8316             return this.xy[1];
8317         },
8318
8319         /**
8320          * Gets the time of the event.
8321          * @return {Number}
8322          */
8323         getTime : function(){
8324             if(this.browserEvent){
8325                 return E.getTime(this.browserEvent);
8326             }
8327             return null;
8328         },
8329
8330         /**
8331          * Gets the page coordinates of the event.
8332          * @return {Array} The xy values like [x, y]
8333          */
8334         getXY : function(){
8335             return this.xy;
8336         },
8337
8338         /**
8339          * Gets the target for the event.
8340          * @param {String} selector (optional) A simple selector to filter the target or look for an ancestor of the target
8341          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
8342                 search as a number or element (defaults to 10 || document.body)
8343          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
8344          * @return {HTMLelement}
8345          */
8346         getTarget : function(selector, maxDepth, returnEl){
8347             return selector ? Roo.fly(this.target).findParent(selector, maxDepth, returnEl) : this.target;
8348         },
8349         /**
8350          * Gets the related target.
8351          * @return {HTMLElement}
8352          */
8353         getRelatedTarget : function(){
8354             if(this.browserEvent){
8355                 return E.getRelatedTarget(this.browserEvent);
8356             }
8357             return null;
8358         },
8359
8360         /**
8361          * Normalizes mouse wheel delta across browsers
8362          * @return {Number} The delta
8363          */
8364         getWheelDelta : function(){
8365             var e = this.browserEvent;
8366             var delta = 0;
8367             if(e.wheelDelta){ /* IE/Opera. */
8368                 delta = e.wheelDelta/120;
8369             }else if(e.detail){ /* Mozilla case. */
8370                 delta = -e.detail/3;
8371             }
8372             return delta;
8373         },
8374
8375         /**
8376          * Returns true if the control, meta, shift or alt key was pressed during this event.
8377          * @return {Boolean}
8378          */
8379         hasModifier : function(){
8380             return !!((this.ctrlKey || this.altKey) || this.shiftKey);
8381         },
8382
8383         /**
8384          * Returns true if the target of this event equals el or is a child of el
8385          * @param {String/HTMLElement/Element} el
8386          * @param {Boolean} related (optional) true to test if the related target is within el instead of the target
8387          * @return {Boolean}
8388          */
8389         within : function(el, related){
8390             var t = this[related ? "getRelatedTarget" : "getTarget"]();
8391             return t && Roo.fly(el).contains(t);
8392         },
8393
8394         getPoint : function(){
8395             return new Roo.lib.Point(this.xy[0], this.xy[1]);
8396         }
8397     };
8398
8399     return new Roo.EventObjectImpl();
8400 }();
8401             
8402     /*
8403  * Based on:
8404  * Ext JS Library 1.1.1
8405  * Copyright(c) 2006-2007, Ext JS, LLC.
8406  *
8407  * Originally Released Under LGPL - original licence link has changed is not relivant.
8408  *
8409  * Fork - LGPL
8410  * <script type="text/javascript">
8411  */
8412
8413  
8414 // was in Composite Element!??!?!
8415  
8416 (function(){
8417     var D = Roo.lib.Dom;
8418     var E = Roo.lib.Event;
8419     var A = Roo.lib.Anim;
8420
8421     // local style camelizing for speed
8422     var propCache = {};
8423     var camelRe = /(-[a-z])/gi;
8424     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
8425     var view = document.defaultView;
8426
8427 /**
8428  * @class Roo.Element
8429  * Represents an Element in the DOM.<br><br>
8430  * Usage:<br>
8431 <pre><code>
8432 var el = Roo.get("my-div");
8433
8434 // or with getEl
8435 var el = getEl("my-div");
8436
8437 // or with a DOM element
8438 var el = Roo.get(myDivElement);
8439 </code></pre>
8440  * Using Roo.get() or getEl() instead of calling the constructor directly ensures you get the same object
8441  * each call instead of constructing a new one.<br><br>
8442  * <b>Animations</b><br />
8443  * Many of the functions for manipulating an element have an optional "animate" parameter. The animate parameter
8444  * should either be a boolean (true) or an object literal with animation options. The animation options are:
8445 <pre>
8446 Option    Default   Description
8447 --------- --------  ---------------------------------------------
8448 duration  .35       The duration of the animation in seconds
8449 easing    easeOut   The YUI easing method
8450 callback  none      A function to execute when the anim completes
8451 scope     this      The scope (this) of the callback function
8452 </pre>
8453 * Also, the Anim object being used for the animation will be set on your options object as "anim", which allows you to stop or
8454 * manipulate the animation. Here's an example:
8455 <pre><code>
8456 var el = Roo.get("my-div");
8457
8458 // no animation
8459 el.setWidth(100);
8460
8461 // default animation
8462 el.setWidth(100, true);
8463
8464 // animation with some options set
8465 el.setWidth(100, {
8466     duration: 1,
8467     callback: this.foo,
8468     scope: this
8469 });
8470
8471 // using the "anim" property to get the Anim object
8472 var opt = {
8473     duration: 1,
8474     callback: this.foo,
8475     scope: this
8476 };
8477 el.setWidth(100, opt);
8478 ...
8479 if(opt.anim.isAnimated()){
8480     opt.anim.stop();
8481 }
8482 </code></pre>
8483 * <b> Composite (Collections of) Elements</b><br />
8484  * For working with collections of Elements, see <a href="Roo.CompositeElement.html">Roo.CompositeElement</a>
8485  * @constructor Create a new Element directly.
8486  * @param {String/HTMLElement} element
8487  * @param {Boolean} forceNew (optional) By default the constructor checks to see if there is already an instance of this element in the cache and if there is it returns the same instance. This will skip that check (useful for extending this class).
8488  */
8489     Roo.Element = function(element, forceNew)
8490     {
8491         var dom = typeof element == "string" ?
8492                 document.getElementById(element) : element;
8493         
8494         this.listeners = {};
8495         
8496         if(!dom){ // invalid id/element
8497             return null;
8498         }
8499         var id = dom.id;
8500         if(forceNew !== true && id && Roo.Element.cache[id]){ // element object already exists
8501             return Roo.Element.cache[id];
8502         }
8503
8504         /**
8505          * The DOM element
8506          * @type HTMLElement
8507          */
8508         this.dom = dom;
8509
8510         /**
8511          * The DOM element ID
8512          * @type String
8513          */
8514         this.id = id || Roo.id(dom);
8515         
8516         return this; // assumed for cctor?
8517     };
8518
8519     var El = Roo.Element;
8520
8521     El.prototype = {
8522         /**
8523          * The element's default display mode  (defaults to "") 
8524          * @type String
8525          */
8526         originalDisplay : "",
8527
8528         
8529         // note this is overridden in BS version..
8530         visibilityMode : 1, 
8531         /**
8532          * The default unit to append to CSS values where a unit isn't provided (defaults to px).
8533          * @type String
8534          */
8535         defaultUnit : "px",
8536         
8537         /**
8538          * Sets the element's visibility mode. When setVisible() is called it
8539          * will use this to determine whether to set the visibility or the display property.
8540          * @param visMode Element.VISIBILITY or Element.DISPLAY
8541          * @return {Roo.Element} this
8542          */
8543         setVisibilityMode : function(visMode){
8544             this.visibilityMode = visMode;
8545             return this;
8546         },
8547         /**
8548          * Convenience method for setVisibilityMode(Element.DISPLAY)
8549          * @param {String} display (optional) What to set display to when visible
8550          * @return {Roo.Element} this
8551          */
8552         enableDisplayMode : function(display){
8553             this.setVisibilityMode(El.DISPLAY);
8554             if(typeof display != "undefined") { this.originalDisplay = display; }
8555             return this;
8556         },
8557
8558         /**
8559          * Looks at this node and then at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
8560          * @param {String} selector The simple selector to test
8561          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
8562                 search as a number or element (defaults to 10 || document.body)
8563          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
8564          * @return {HTMLElement} The matching DOM node (or null if no match was found)
8565          */
8566         findParent : function(simpleSelector, maxDepth, returnEl){
8567             var p = this.dom, b = document.body, depth = 0, dq = Roo.DomQuery, stopEl;
8568             maxDepth = maxDepth || 50;
8569             if(typeof maxDepth != "number"){
8570                 stopEl = Roo.getDom(maxDepth);
8571                 maxDepth = 10;
8572             }
8573             while(p && p.nodeType == 1 && depth < maxDepth && p != b && p != stopEl){
8574                 if(dq.is(p, simpleSelector)){
8575                     return returnEl ? Roo.get(p) : p;
8576                 }
8577                 depth++;
8578                 p = p.parentNode;
8579             }
8580             return null;
8581         },
8582
8583
8584         /**
8585          * Looks at parent nodes for a match of the passed simple selector (e.g. div.some-class or span:first-child)
8586          * @param {String} selector The simple selector to test
8587          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
8588                 search as a number or element (defaults to 10 || document.body)
8589          * @param {Boolean} returnEl (optional) True to return a Roo.Element object instead of DOM node
8590          * @return {HTMLElement} The matching DOM node (or null if no match was found)
8591          */
8592         findParentNode : function(simpleSelector, maxDepth, returnEl){
8593             var p = Roo.fly(this.dom.parentNode, '_internal');
8594             return p ? p.findParent(simpleSelector, maxDepth, returnEl) : null;
8595         },
8596         
8597         /**
8598          * Looks at  the scrollable parent element
8599          */
8600         findScrollableParent : function()
8601         {
8602             var overflowRegex = /(auto|scroll)/;
8603             
8604             if(this.getStyle('position') === 'fixed'){
8605                 return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
8606             }
8607             
8608             var excludeStaticParent = this.getStyle('position') === "absolute";
8609             
8610             for (var parent = this; (parent = Roo.get(parent.dom.parentNode));){
8611                 
8612                 if (excludeStaticParent && parent.getStyle('position') === "static") {
8613                     continue;
8614                 }
8615                 
8616                 if (overflowRegex.test(parent.getStyle('overflow') + parent.getStyle('overflow-x') + parent.getStyle('overflow-y'))){
8617                     return parent;
8618                 }
8619                 
8620                 if(parent.dom.nodeName.toLowerCase() == 'body'){
8621                     return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
8622                 }
8623             }
8624             
8625             return Roo.isAndroid ? Roo.get(document.documentElement) : Roo.get(document.body);
8626         },
8627
8628         /**
8629          * Walks up the dom looking for a parent node that matches the passed simple selector (e.g. div.some-class or span:first-child).
8630          * This is a shortcut for findParentNode() that always returns an Roo.Element.
8631          * @param {String} selector The simple selector to test
8632          * @param {Number/String/HTMLElement/Element} maxDepth (optional) The max depth to
8633                 search as a number or element (defaults to 10 || document.body)
8634          * @return {Roo.Element} The matching DOM node (or null if no match was found)
8635          */
8636         up : function(simpleSelector, maxDepth){
8637             return this.findParentNode(simpleSelector, maxDepth, true);
8638         },
8639
8640
8641
8642         /**
8643          * Returns true if this element matches the passed simple selector (e.g. div.some-class or span:first-child)
8644          * @param {String} selector The simple selector to test
8645          * @return {Boolean} True if this element matches the selector, else false
8646          */
8647         is : function(simpleSelector){
8648             return Roo.DomQuery.is(this.dom, simpleSelector);
8649         },
8650
8651         /**
8652          * Perform animation on this element.
8653          * @param {Object} args The YUI animation control args
8654          * @param {Float} duration (optional) How long the animation lasts in seconds (defaults to .35)
8655          * @param {Function} onComplete (optional) Function to call when animation completes
8656          * @param {String} easing (optional) Easing method to use (defaults to 'easeOut')
8657          * @param {String} animType (optional) 'run' is the default. Can also be 'color', 'motion', or 'scroll'
8658          * @return {Roo.Element} this
8659          */
8660         animate : function(args, duration, onComplete, easing, animType){
8661             this.anim(args, {duration: duration, callback: onComplete, easing: easing}, animType);
8662             return this;
8663         },
8664
8665         /*
8666          * @private Internal animation call
8667          */
8668         anim : function(args, opt, animType, defaultDur, defaultEase, cb){
8669             animType = animType || 'run';
8670             opt = opt || {};
8671             var anim = Roo.lib.Anim[animType](
8672                 this.dom, args,
8673                 (opt.duration || defaultDur) || .35,
8674                 (opt.easing || defaultEase) || 'easeOut',
8675                 function(){
8676                     Roo.callback(cb, this);
8677                     Roo.callback(opt.callback, opt.scope || this, [this, opt]);
8678                 },
8679                 this
8680             );
8681             opt.anim = anim;
8682             return anim;
8683         },
8684
8685         // private legacy anim prep
8686         preanim : function(a, i){
8687             return !a[i] ? false : (typeof a[i] == "object" ? a[i]: {duration: a[i+1], callback: a[i+2], easing: a[i+3]});
8688         },
8689
8690         /**
8691          * Removes worthless text nodes
8692          * @param {Boolean} forceReclean (optional) By default the element
8693          * keeps track if it has been cleaned already so
8694          * you can call this over and over. However, if you update the element and
8695          * need to force a reclean, you can pass true.
8696          */
8697         clean : function(forceReclean){
8698             if(this.isCleaned && forceReclean !== true){
8699                 return this;
8700             }
8701             var ns = /\S/;
8702             var d = this.dom, n = d.firstChild, ni = -1;
8703             while(n){
8704                 var nx = n.nextSibling;
8705                 if(n.nodeType == 3 && !ns.test(n.nodeValue)){
8706                     d.removeChild(n);
8707                 }else{
8708                     n.nodeIndex = ++ni;
8709                 }
8710                 n = nx;
8711             }
8712             this.isCleaned = true;
8713             return this;
8714         },
8715
8716         // private
8717         calcOffsetsTo : function(el){
8718             el = Roo.get(el);
8719             var d = el.dom;
8720             var restorePos = false;
8721             if(el.getStyle('position') == 'static'){
8722                 el.position('relative');
8723                 restorePos = true;
8724             }
8725             var x = 0, y =0;
8726             var op = this.dom;
8727             while(op && op != d && op.tagName != 'HTML'){
8728                 x+= op.offsetLeft;
8729                 y+= op.offsetTop;
8730                 op = op.offsetParent;
8731             }
8732             if(restorePos){
8733                 el.position('static');
8734             }
8735             return [x, y];
8736         },
8737
8738         /**
8739          * Scrolls this element into view within the passed container.
8740          * @param {String/HTMLElement/Element} container (optional) The container element to scroll (defaults to document.body)
8741          * @param {Boolean} hscroll (optional) False to disable horizontal scroll (defaults to true)
8742          * @return {Roo.Element} this
8743          */
8744         scrollIntoView : function(container, hscroll){
8745             var c = Roo.getDom(container) || document.body;
8746             var el = this.dom;
8747
8748             var o = this.calcOffsetsTo(c),
8749                 l = o[0],
8750                 t = o[1],
8751                 b = t+el.offsetHeight,
8752                 r = l+el.offsetWidth;
8753
8754             var ch = c.clientHeight;
8755             var ct = parseInt(c.scrollTop, 10);
8756             var cl = parseInt(c.scrollLeft, 10);
8757             var cb = ct + ch;
8758             var cr = cl + c.clientWidth;
8759
8760             if(t < ct){
8761                 c.scrollTop = t;
8762             }else if(b > cb){
8763                 c.scrollTop = b-ch;
8764             }
8765
8766             if(hscroll !== false){
8767                 if(l < cl){
8768                     c.scrollLeft = l;
8769                 }else if(r > cr){
8770                     c.scrollLeft = r-c.clientWidth;
8771                 }
8772             }
8773             return this;
8774         },
8775
8776         // private
8777         scrollChildIntoView : function(child, hscroll){
8778             Roo.fly(child, '_scrollChildIntoView').scrollIntoView(this, hscroll);
8779         },
8780
8781         /**
8782          * Measures the element's content height and updates height to match. Note: this function uses setTimeout so
8783          * the new height may not be available immediately.
8784          * @param {Boolean} animate (optional) Animate the transition (defaults to false)
8785          * @param {Float} duration (optional) Length of the animation in seconds (defaults to .35)
8786          * @param {Function} onComplete (optional) Function to call when animation completes
8787          * @param {String} easing (optional) Easing method to use (defaults to easeOut)
8788          * @return {Roo.Element} this
8789          */
8790         autoHeight : function(animate, duration, onComplete, easing){
8791             var oldHeight = this.getHeight();
8792             this.clip();
8793             this.setHeight(1); // force clipping
8794             setTimeout(function(){
8795                 var height = parseInt(this.dom.scrollHeight, 10); // parseInt for Safari
8796                 if(!animate){
8797                     this.setHeight(height);
8798                     this.unclip();
8799                     if(typeof onComplete == "function"){
8800                         onComplete();
8801                     }
8802                 }else{
8803                     this.setHeight(oldHeight); // restore original height
8804                     this.setHeight(height, animate, duration, function(){
8805                         this.unclip();
8806                         if(typeof onComplete == "function") { onComplete(); }
8807                     }.createDelegate(this), easing);
8808                 }
8809             }.createDelegate(this), 0);
8810             return this;
8811         },
8812
8813         /**
8814          * Returns true if this element is an ancestor of the passed element
8815          * @param {HTMLElement/String} el The element to check
8816          * @return {Boolean} True if this element is an ancestor of el, else false
8817          */
8818         contains : function(el){
8819             if(!el){return false;}
8820             return D.isAncestor(this.dom, el.dom ? el.dom : el);
8821         },
8822
8823         /**
8824          * Checks whether the element is currently visible using both visibility and display properties.
8825          * @param {Boolean} deep (optional) True to walk the dom and see if parent elements are hidden (defaults to false)
8826          * @return {Boolean} True if the element is currently visible, else false
8827          */
8828         isVisible : function(deep) {
8829             var vis = !(this.getStyle("visibility") == "hidden" || this.getStyle("display") == "none");
8830             if(deep !== true || !vis){
8831                 return vis;
8832             }
8833             var p = this.dom.parentNode;
8834             while(p && p.tagName.toLowerCase() != "body"){
8835                 if(!Roo.fly(p, '_isVisible').isVisible()){
8836                     return false;
8837                 }
8838                 p = p.parentNode;
8839             }
8840             return true;
8841         },
8842
8843         /**
8844          * Creates a {@link Roo.CompositeElement} for child nodes based on the passed CSS selector (the selector should not contain an id).
8845          * @param {String} selector The CSS selector
8846          * @param {Boolean} unique (optional) True to create a unique Roo.Element for each child (defaults to false, which creates a single shared flyweight object)
8847          * @return {CompositeElement/CompositeElementLite} The composite element
8848          */
8849         select : function(selector, unique){
8850             return El.select(selector, unique, this.dom);
8851         },
8852
8853         /**
8854          * Selects child nodes based on the passed CSS selector (the selector should not contain an id).
8855          * @param {String} selector The CSS selector
8856          * @return {Array} An array of the matched nodes
8857          */
8858         query : function(selector, unique){
8859             return Roo.DomQuery.select(selector, this.dom);
8860         },
8861
8862         /**
8863          * Selects a single child at any depth below this element based on the passed CSS selector (the selector should not contain an id).
8864          * @param {String} selector The CSS selector
8865          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
8866          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
8867          */
8868         child : function(selector, returnDom){
8869             var n = Roo.DomQuery.selectNode(selector, this.dom);
8870             return returnDom ? n : Roo.get(n);
8871         },
8872
8873         /**
8874          * Selects a single *direct* child based on the passed CSS selector (the selector should not contain an id).
8875          * @param {String} selector The CSS selector
8876          * @param {Boolean} returnDom (optional) True to return the DOM node instead of Roo.Element (defaults to false)
8877          * @return {HTMLElement/Roo.Element} The child Roo.Element (or DOM node if returnDom = true)
8878          */
8879         down : function(selector, returnDom){
8880             var n = Roo.DomQuery.selectNode(" > " + selector, this.dom);
8881             return returnDom ? n : Roo.get(n);
8882         },
8883
8884         /**
8885          * Initializes a {@link Roo.dd.DD} drag drop object for this element.
8886          * @param {String} group The group the DD object is member of
8887          * @param {Object} config The DD config object
8888          * @param {Object} overrides An object containing methods to override/implement on the DD object
8889          * @return {Roo.dd.DD} The DD object
8890          */
8891         initDD : function(group, config, overrides){
8892             var dd = new Roo.dd.DD(Roo.id(this.dom), group, config);
8893             return Roo.apply(dd, overrides);
8894         },
8895
8896         /**
8897          * Initializes a {@link Roo.dd.DDProxy} object for this element.
8898          * @param {String} group The group the DDProxy object is member of
8899          * @param {Object} config The DDProxy config object
8900          * @param {Object} overrides An object containing methods to override/implement on the DDProxy object
8901          * @return {Roo.dd.DDProxy} The DDProxy object
8902          */
8903         initDDProxy : function(group, config, overrides){
8904             var dd = new Roo.dd.DDProxy(Roo.id(this.dom), group, config);
8905             return Roo.apply(dd, overrides);
8906         },
8907
8908         /**
8909          * Initializes a {@link Roo.dd.DDTarget} object for this element.
8910          * @param {String} group The group the DDTarget object is member of
8911          * @param {Object} config The DDTarget config object
8912          * @param {Object} overrides An object containing methods to override/implement on the DDTarget object
8913          * @return {Roo.dd.DDTarget} The DDTarget object
8914          */
8915         initDDTarget : function(group, config, overrides){
8916             var dd = new Roo.dd.DDTarget(Roo.id(this.dom), group, config);
8917             return Roo.apply(dd, overrides);
8918         },
8919
8920         /**
8921          * Sets the visibility of the element (see details). If the visibilityMode is set to Element.DISPLAY, it will use
8922          * the display property to hide the element, otherwise it uses visibility. The default is to hide and show using the visibility property.
8923          * @param {Boolean} visible Whether the element is visible
8924          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8925          * @return {Roo.Element} this
8926          */
8927          setVisible : function(visible, animate){
8928             if(!animate || !A){
8929                 if(this.visibilityMode == El.DISPLAY){
8930                     this.setDisplayed(visible);
8931                 }else{
8932                     this.fixDisplay();
8933                     this.dom.style.visibility = visible ? "visible" : "hidden";
8934                 }
8935             }else{
8936                 // closure for composites
8937                 var dom = this.dom;
8938                 var visMode = this.visibilityMode;
8939                 if(visible){
8940                     this.setOpacity(.01);
8941                     this.setVisible(true);
8942                 }
8943                 this.anim({opacity: { to: (visible?1:0) }},
8944                       this.preanim(arguments, 1),
8945                       null, .35, 'easeIn', function(){
8946                          if(!visible){
8947                              if(visMode == El.DISPLAY){
8948                                  dom.style.display = "none";
8949                              }else{
8950                                  dom.style.visibility = "hidden";
8951                              }
8952                              Roo.get(dom).setOpacity(1);
8953                          }
8954                      });
8955             }
8956             return this;
8957         },
8958
8959         /**
8960          * Returns true if display is not "none"
8961          * @return {Boolean}
8962          */
8963         isDisplayed : function() {
8964             return this.getStyle("display") != "none";
8965         },
8966
8967         /**
8968          * Toggles the element's visibility or display, depending on visibility mode.
8969          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
8970          * @return {Roo.Element} this
8971          */
8972         toggle : function(animate){
8973             this.setVisible(!this.isVisible(), this.preanim(arguments, 0));
8974             return this;
8975         },
8976
8977         /**
8978          * Sets the CSS display property. Uses originalDisplay if the specified value is a boolean true.
8979          * @param {Boolean} value Boolean value to display the element using its default display, or a string to set the display directly
8980          * @return {Roo.Element} this
8981          */
8982         setDisplayed : function(value) {
8983             if(typeof value == "boolean"){
8984                value = value ? this.originalDisplay : "none";
8985             }
8986             this.setStyle("display", value);
8987             return this;
8988         },
8989
8990         /**
8991          * Tries to focus the element. Any exceptions are caught and ignored.
8992          * @return {Roo.Element} this
8993          */
8994         focus : function() {
8995             try{
8996                 this.dom.focus();
8997             }catch(e){}
8998             return this;
8999         },
9000
9001         /**
9002          * Tries to blur the element. Any exceptions are caught and ignored.
9003          * @return {Roo.Element} this
9004          */
9005         blur : function() {
9006             try{
9007                 this.dom.blur();
9008             }catch(e){}
9009             return this;
9010         },
9011
9012         /**
9013          * Adds one or more CSS classes to the element. Duplicate classes are automatically filtered out.
9014          * @param {String/Array} className The CSS class to add, or an array of classes
9015          * @return {Roo.Element} this
9016          */
9017         addClass : function(className){
9018             if(className instanceof Array){
9019                 for(var i = 0, len = className.length; i < len; i++) {
9020                     this.addClass(className[i]);
9021                 }
9022             }else{
9023                 if(className && !this.hasClass(className)){
9024                     if (this.dom instanceof SVGElement) {
9025                         this.dom.className.baseVal =this.dom.className.baseVal  + " " + className;
9026                     } else {
9027                         this.dom.className = this.dom.className + " " + className;
9028                     }
9029                 }
9030             }
9031             return this;
9032         },
9033
9034         /**
9035          * Adds one or more CSS classes to this element and removes the same class(es) from all siblings.
9036          * @param {String/Array} className The CSS class to add, or an array of classes
9037          * @return {Roo.Element} this
9038          */
9039         radioClass : function(className){
9040             var siblings = this.dom.parentNode.childNodes;
9041             for(var i = 0; i < siblings.length; i++) {
9042                 var s = siblings[i];
9043                 if(s.nodeType == 1){
9044                     Roo.get(s).removeClass(className);
9045                 }
9046             }
9047             this.addClass(className);
9048             return this;
9049         },
9050
9051         /**
9052          * Removes one or more CSS classes from the element.
9053          * @param {String/Array} className The CSS class to remove, or an array of classes
9054          * @return {Roo.Element} this
9055          */
9056         removeClass : function(className){
9057             
9058             var cn = this.dom instanceof SVGElement ? this.dom.className.baseVal : this.dom.className;
9059             if(!className || !cn){
9060                 return this;
9061             }
9062             if(className instanceof Array){
9063                 for(var i = 0, len = className.length; i < len; i++) {
9064                     this.removeClass(className[i]);
9065                 }
9066             }else{
9067                 if(this.hasClass(className)){
9068                     var re = this.classReCache[className];
9069                     if (!re) {
9070                        re = new RegExp('(?:^|\\s+)' + className + '(?:\\s+|$)', "g");
9071                        this.classReCache[className] = re;
9072                     }
9073                     if (this.dom instanceof SVGElement) {
9074                         this.dom.className.baseVal = cn.replace(re, " ");
9075                     } else {
9076                         this.dom.className = cn.replace(re, " ");
9077                     }
9078                 }
9079             }
9080             return this;
9081         },
9082
9083         // private
9084         classReCache: {},
9085
9086         /**
9087          * Toggles the specified CSS class on this element (removes it if it already exists, otherwise adds it).
9088          * @param {String} className The CSS class to toggle
9089          * @return {Roo.Element} this
9090          */
9091         toggleClass : function(className){
9092             if(this.hasClass(className)){
9093                 this.removeClass(className);
9094             }else{
9095                 this.addClass(className);
9096             }
9097             return this;
9098         },
9099
9100         /**
9101          * Checks if the specified CSS class exists on this element's DOM node.
9102          * @param {String} className The CSS class to check for
9103          * @return {Boolean} True if the class exists, else false
9104          */
9105         hasClass : function(className){
9106             if (this.dom instanceof SVGElement) {
9107                 return className && (' '+this.dom.className.baseVal +' ').indexOf(' '+className+' ') != -1; 
9108             } 
9109             return className && (' '+this.dom.className+' ').indexOf(' '+className+' ') != -1;
9110         },
9111
9112         /**
9113          * Replaces a CSS class on the element with another.  If the old name does not exist, the new name will simply be added.
9114          * @param {String} oldClassName The CSS class to replace
9115          * @param {String} newClassName The replacement CSS class
9116          * @return {Roo.Element} this
9117          */
9118         replaceClass : function(oldClassName, newClassName){
9119             this.removeClass(oldClassName);
9120             this.addClass(newClassName);
9121             return this;
9122         },
9123
9124         /**
9125          * Returns an object with properties matching the styles requested.
9126          * For example, el.getStyles('color', 'font-size', 'width') might return
9127          * {'color': '#FFFFFF', 'font-size': '13px', 'width': '100px'}.
9128          * @param {String} style1 A style name
9129          * @param {String} style2 A style name
9130          * @param {String} etc.
9131          * @return {Object} The style object
9132          */
9133         getStyles : function(){
9134             var a = arguments, len = a.length, r = {};
9135             for(var i = 0; i < len; i++){
9136                 r[a[i]] = this.getStyle(a[i]);
9137             }
9138             return r;
9139         },
9140
9141         /**
9142          * Normalizes currentStyle and computedStyle. This is not YUI getStyle, it is an optimised version.
9143          * @param {String} property The style property whose value is returned.
9144          * @return {String} The current value of the style property for this element.
9145          */
9146         getStyle : function(){
9147             return view && view.getComputedStyle ?
9148                 function(prop){
9149                     var el = this.dom, v, cs, camel;
9150                     if(prop == 'float'){
9151                         prop = "cssFloat";
9152                     }
9153                     if(el.style && (v = el.style[prop])){
9154                         return v;
9155                     }
9156                     if(cs = view.getComputedStyle(el, "")){
9157                         if(!(camel = propCache[prop])){
9158                             camel = propCache[prop] = prop.replace(camelRe, camelFn);
9159                         }
9160                         return cs[camel];
9161                     }
9162                     return null;
9163                 } :
9164                 function(prop){
9165                     var el = this.dom, v, cs, camel;
9166                     if(prop == 'opacity'){
9167                         if(typeof el.style.filter == 'string'){
9168                             var m = el.style.filter.match(/alpha\(opacity=(.*)\)/i);
9169                             if(m){
9170                                 var fv = parseFloat(m[1]);
9171                                 if(!isNaN(fv)){
9172                                     return fv ? fv / 100 : 0;
9173                                 }
9174                             }
9175                         }
9176                         return 1;
9177                     }else if(prop == 'float'){
9178                         prop = "styleFloat";
9179                     }
9180                     if(!(camel = propCache[prop])){
9181                         camel = propCache[prop] = prop.replace(camelRe, camelFn);
9182                     }
9183                     if(v = el.style[camel]){
9184                         return v;
9185                     }
9186                     if(cs = el.currentStyle){
9187                         return cs[camel];
9188                     }
9189                     return null;
9190                 };
9191         }(),
9192
9193         /**
9194          * Wrapper for setting style properties, also takes single object parameter of multiple styles.
9195          * @param {String/Object} property The style property to be set, or an object of multiple styles.
9196          * @param {String} value (optional) The value to apply to the given property, or null if an object was passed.
9197          * @return {Roo.Element} this
9198          */
9199         setStyle : function(prop, value){
9200             if(typeof prop == "string"){
9201                 
9202                 if (prop == 'float') {
9203                     this.setStyle(Roo.isIE ? 'styleFloat'  : 'cssFloat', value);
9204                     return this;
9205                 }
9206                 
9207                 var camel;
9208                 if(!(camel = propCache[prop])){
9209                     camel = propCache[prop] = prop.replace(camelRe, camelFn);
9210                 }
9211                 
9212                 if(camel == 'opacity') {
9213                     this.setOpacity(value);
9214                 }else{
9215                     this.dom.style[camel] = value;
9216                 }
9217             }else{
9218                 for(var style in prop){
9219                     if(typeof prop[style] != "function"){
9220                        this.setStyle(style, prop[style]);
9221                     }
9222                 }
9223             }
9224             return this;
9225         },
9226
9227         /**
9228          * More flexible version of {@link #setStyle} for setting style properties.
9229          * @param {String/Object/Function} styles A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
9230          * a function which returns such a specification.
9231          * @return {Roo.Element} this
9232          */
9233         applyStyles : function(style){
9234             Roo.DomHelper.applyStyles(this.dom, style);
9235             return this;
9236         },
9237
9238         /**
9239           * Gets the current X position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9240           * @return {Number} The X position of the element
9241           */
9242         getX : function(){
9243             return D.getX(this.dom);
9244         },
9245
9246         /**
9247           * Gets the current Y position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9248           * @return {Number} The Y position of the element
9249           */
9250         getY : function(){
9251             return D.getY(this.dom);
9252         },
9253
9254         /**
9255           * Gets the current position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9256           * @return {Array} The XY position of the element
9257           */
9258         getXY : function(){
9259             return D.getXY(this.dom);
9260         },
9261
9262         /**
9263          * Sets the X position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9264          * @param {Number} The X position of the element
9265          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9266          * @return {Roo.Element} this
9267          */
9268         setX : function(x, animate){
9269             if(!animate || !A){
9270                 D.setX(this.dom, x);
9271             }else{
9272                 this.setXY([x, this.getY()], this.preanim(arguments, 1));
9273             }
9274             return this;
9275         },
9276
9277         /**
9278          * Sets the Y position of the element based on page coordinates.  Element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9279          * @param {Number} The Y position of the element
9280          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9281          * @return {Roo.Element} this
9282          */
9283         setY : function(y, animate){
9284             if(!animate || !A){
9285                 D.setY(this.dom, y);
9286             }else{
9287                 this.setXY([this.getX(), y], this.preanim(arguments, 1));
9288             }
9289             return this;
9290         },
9291
9292         /**
9293          * Sets the element's left position directly using CSS style (instead of {@link #setX}).
9294          * @param {String} left The left CSS property value
9295          * @return {Roo.Element} this
9296          */
9297         setLeft : function(left){
9298             this.setStyle("left", this.addUnits(left));
9299             return this;
9300         },
9301
9302         /**
9303          * Sets the element's top position directly using CSS style (instead of {@link #setY}).
9304          * @param {String} top The top CSS property value
9305          * @return {Roo.Element} this
9306          */
9307         setTop : function(top){
9308             this.setStyle("top", this.addUnits(top));
9309             return this;
9310         },
9311
9312         /**
9313          * Sets the element's CSS right style.
9314          * @param {String} right The right CSS property value
9315          * @return {Roo.Element} this
9316          */
9317         setRight : function(right){
9318             this.setStyle("right", this.addUnits(right));
9319             return this;
9320         },
9321
9322         /**
9323          * Sets the element's CSS bottom style.
9324          * @param {String} bottom The bottom CSS property value
9325          * @return {Roo.Element} this
9326          */
9327         setBottom : function(bottom){
9328             this.setStyle("bottom", this.addUnits(bottom));
9329             return this;
9330         },
9331
9332         /**
9333          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
9334          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9335          * @param {Array} pos Contains X & Y [x, y] values for new position (coordinates are page-based)
9336          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9337          * @return {Roo.Element} this
9338          */
9339         setXY : function(pos, animate){
9340             if(!animate || !A){
9341                 D.setXY(this.dom, pos);
9342             }else{
9343                 this.anim({points: {to: pos}}, this.preanim(arguments, 1), 'motion');
9344             }
9345             return this;
9346         },
9347
9348         /**
9349          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
9350          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9351          * @param {Number} x X value for new position (coordinates are page-based)
9352          * @param {Number} y Y value for new position (coordinates are page-based)
9353          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9354          * @return {Roo.Element} this
9355          */
9356         setLocation : function(x, y, animate){
9357             this.setXY([x, y], this.preanim(arguments, 2));
9358             return this;
9359         },
9360
9361         /**
9362          * Sets the position of the element in page coordinates, regardless of how the element is positioned.
9363          * The element must be part of the DOM tree to have page coordinates (display:none or elements not appended return false).
9364          * @param {Number} x X value for new position (coordinates are page-based)
9365          * @param {Number} y Y value for new position (coordinates are page-based)
9366          * @param {Boolean/Object} animate (optional) True for the default animation, or a standard Element animation config object
9367          * @return {Roo.Element} this
9368          */
9369         moveTo : function(x, y, animate){
9370             this.setXY([x, y], this.preanim(arguments, 2));
9371             return this;
9372         },
9373
9374         /**
9375          * Returns the region of the given element.
9376          * The element must be part of the DOM tree to have a region (display:none or elements not appended return false).
9377          * @return {Region} A Roo.lib.Region containing "top, left, bottom, right" member data.
9378          */
9379         getRegion : function(){
9380             return D.getRegion(this.dom);
9381         },
9382
9383         /**
9384          * Returns the offset height of the element
9385          * @param {Boolean} contentHeight (optional) true to get the height minus borders and padding
9386          * @return {Number} The element's height
9387          */
9388         getHeight : function(contentHeight){
9389             var h = this.dom.offsetHeight || 0;
9390             return contentHeight !== true ? h : h-this.getBorderWidth("tb")-this.getPadding("tb");
9391         },
9392
9393         /**
9394          * Returns the offset width of the element
9395          * @param {Boolean} contentWidth (optional) true to get the width minus borders and padding
9396          * @return {Number} The element's width
9397          */
9398         getWidth : function(contentWidth){
9399             var w = this.dom.offsetWidth || 0;
9400             return contentWidth !== true ? w : w-this.getBorderWidth("lr")-this.getPadding("lr");
9401         },
9402
9403         /**
9404          * Returns either the offsetHeight or the height of this element based on CSS height adjusted by padding or borders
9405          * when needed to simulate offsetHeight when offsets aren't available. This may not work on display:none elements
9406          * if a height has not been set using CSS.
9407          * @return {Number}
9408          */
9409         getComputedHeight : function(){
9410             var h = Math.max(this.dom.offsetHeight, this.dom.clientHeight);
9411             if(!h){
9412                 h = parseInt(this.getStyle('height'), 10) || 0;
9413                 if(!this.isBorderBox()){
9414                     h += this.getFrameWidth('tb');
9415                 }
9416             }
9417             return h;
9418         },
9419
9420         /**
9421          * Returns either the offsetWidth or the width of this element based on CSS width adjusted by padding or borders
9422          * when needed to simulate offsetWidth when offsets aren't available. This may not work on display:none elements
9423          * if a width has not been set using CSS.
9424          * @return {Number}
9425          */
9426         getComputedWidth : function(){
9427             var w = Math.max(this.dom.offsetWidth, this.dom.clientWidth);
9428             if(!w){
9429                 w = parseInt(this.getStyle('width'), 10) || 0;
9430                 if(!this.isBorderBox()){
9431                     w += this.getFrameWidth('lr');
9432                 }
9433             }
9434             return w;
9435         },
9436
9437         /**
9438          * Returns the size of the element.
9439          * @param {Boolean} contentSize (optional) true to get the width/size minus borders and padding
9440          * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
9441          */
9442         getSize : function(contentSize){
9443             return {width: this.getWidth(contentSize), height: this.getHeight(contentSize)};
9444         },
9445
9446         /**
9447          * Returns the width and height of the viewport.
9448          * @return {Object} An object containing the viewport's size {width: (viewport width), height: (viewport height)}
9449          */
9450         getViewSize : function(){
9451             var d = this.dom, doc = document, aw = 0, ah = 0;
9452             if(d == doc || d == doc.body){
9453                 return {width : D.getViewWidth(), height: D.getViewHeight()};
9454             }else{
9455                 return {
9456                     width : d.clientWidth,
9457                     height: d.clientHeight
9458                 };
9459             }
9460         },
9461
9462         /**
9463          * Returns the value of the "value" attribute
9464          * @param {Boolean} asNumber true to parse the value as a number
9465          * @return {String/Number}
9466          */
9467         getValue : function(asNumber){
9468             return asNumber ? parseInt(this.dom.value, 10) : this.dom.value;
9469         },
9470
9471         // private
9472         adjustWidth : function(width){
9473             if(typeof width == "number"){
9474                 if(this.autoBoxAdjust && !this.isBorderBox()){
9475                    width -= (this.getBorderWidth("lr") + this.getPadding("lr"));
9476                 }
9477                 if(width < 0){
9478                     width = 0;
9479                 }
9480             }
9481             return width;
9482         },
9483
9484         // private
9485         adjustHeight : function(height){
9486             if(typeof height == "number"){
9487                if(this.autoBoxAdjust && !this.isBorderBox()){
9488                    height -= (this.getBorderWidth("tb") + this.getPadding("tb"));
9489                }
9490                if(height < 0){
9491                    height = 0;
9492                }
9493             }
9494             return height;
9495         },
9496
9497         /**
9498          * Set the width of the element
9499          * @param {Number} width The new width
9500          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9501          * @return {Roo.Element} this
9502          */
9503         setWidth : function(width, animate){
9504             width = this.adjustWidth(width);
9505             if(!animate || !A){
9506                 this.dom.style.width = this.addUnits(width);
9507             }else{
9508                 this.anim({width: {to: width}}, this.preanim(arguments, 1));
9509             }
9510             return this;
9511         },
9512
9513         /**
9514          * Set the height of the element
9515          * @param {Number} height The new height
9516          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9517          * @return {Roo.Element} this
9518          */
9519          setHeight : function(height, animate){
9520             height = this.adjustHeight(height);
9521             if(!animate || !A){
9522                 this.dom.style.height = this.addUnits(height);
9523             }else{
9524                 this.anim({height: {to: height}}, this.preanim(arguments, 1));
9525             }
9526             return this;
9527         },
9528
9529         /**
9530          * Set the size of the element. If animation is true, both width an height will be animated concurrently.
9531          * @param {Number} width The new width
9532          * @param {Number} height The new height
9533          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9534          * @return {Roo.Element} this
9535          */
9536          setSize : function(width, height, animate){
9537             if(typeof width == "object"){ // in case of object from getSize()
9538                 height = width.height; width = width.width;
9539             }
9540             width = this.adjustWidth(width); height = this.adjustHeight(height);
9541             if(!animate || !A){
9542                 this.dom.style.width = this.addUnits(width);
9543                 this.dom.style.height = this.addUnits(height);
9544             }else{
9545                 this.anim({width: {to: width}, height: {to: height}}, this.preanim(arguments, 2));
9546             }
9547             return this;
9548         },
9549
9550         /**
9551          * Sets the element's position and size in one shot. If animation is true then width, height, x and y will be animated concurrently.
9552          * @param {Number} x X value for new position (coordinates are page-based)
9553          * @param {Number} y Y value for new position (coordinates are page-based)
9554          * @param {Number} width The new width
9555          * @param {Number} height The new height
9556          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9557          * @return {Roo.Element} this
9558          */
9559         setBounds : function(x, y, width, height, animate){
9560             if(!animate || !A){
9561                 this.setSize(width, height);
9562                 this.setLocation(x, y);
9563             }else{
9564                 width = this.adjustWidth(width); height = this.adjustHeight(height);
9565                 this.anim({points: {to: [x, y]}, width: {to: width}, height: {to: height}},
9566                               this.preanim(arguments, 4), 'motion');
9567             }
9568             return this;
9569         },
9570
9571         /**
9572          * Sets the element's position and size the the specified region. If animation is true then width, height, x and y will be animated concurrently.
9573          * @param {Roo.lib.Region} region The region to fill
9574          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9575          * @return {Roo.Element} this
9576          */
9577         setRegion : function(region, animate){
9578             this.setBounds(region.left, region.top, region.right-region.left, region.bottom-region.top, this.preanim(arguments, 1));
9579             return this;
9580         },
9581
9582         /**
9583          * Appends an event handler
9584          *
9585          * @param {String}   eventName     The type of event to append
9586          * @param {Function} fn        The method the event invokes
9587          * @param {Object} scope       (optional) The scope (this object) of the fn
9588          * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
9589          */
9590         addListener : function(eventName, fn, scope, options)
9591         {
9592             if (eventName == 'dblclick') { // doublclick (touchstart) - faked on touch.
9593                 this.addListener('touchstart', this.onTapHandler, this);
9594             }
9595             
9596             // we need to handle a special case where dom element is a svg element.
9597             // in this case we do not actua
9598             if (!this.dom) {
9599                 return;
9600             }
9601             
9602             if (this.dom instanceof SVGElement && !(this.dom instanceof SVGSVGElement)) {
9603                 if (typeof(this.listeners[eventName]) == 'undefined') {
9604                     this.listeners[eventName] =  new Roo.util.Event(this, eventName);
9605                 }
9606                 this.listeners[eventName].addListener(fn, scope, options);
9607                 return;
9608             }
9609             
9610                 
9611             Roo.EventManager.on(this.dom,  eventName, fn, scope || this, options);
9612             
9613             
9614         },
9615         tapedTwice : false,
9616         onTapHandler : function(event)
9617         {
9618             if(!this.tapedTwice) {
9619                 this.tapedTwice = true;
9620                 var s = this;
9621                 setTimeout( function() {
9622                     s.tapedTwice = false;
9623                 }, 300 );
9624                 return;
9625             }
9626             event.preventDefault();
9627             var revent = new MouseEvent('dblclick',  {
9628                 view: window,
9629                 bubbles: true,
9630                 cancelable: true
9631             });
9632              
9633             this.dom.dispatchEvent(revent);
9634             //action on double tap goes below
9635              
9636         }, 
9637  
9638         /**
9639          * Removes an event handler from this element
9640          * @param {String} eventName the type of event to remove
9641          * @param {Function} fn the method the event invokes
9642          * @param {Function} scope (needed for svg fake listeners)
9643          * @return {Roo.Element} this
9644          */
9645         removeListener : function(eventName, fn, scope){
9646             Roo.EventManager.removeListener(this.dom,  eventName, fn);
9647             if (typeof(this.listeners) == 'undefined'  || typeof(this.listeners[eventName]) == 'undefined') {
9648                 return this;
9649             }
9650             this.listeners[eventName].removeListener(fn, scope);
9651             return this;
9652         },
9653
9654         /**
9655          * Removes all previous added listeners from this element
9656          * @return {Roo.Element} this
9657          */
9658         removeAllListeners : function(){
9659             E.purgeElement(this.dom);
9660             this.listeners = {};
9661             return this;
9662         },
9663
9664         relayEvent : function(eventName, observable){
9665             this.on(eventName, function(e){
9666                 observable.fireEvent(eventName, e);
9667             });
9668         },
9669
9670         
9671         /**
9672          * Set the opacity of the element
9673          * @param {Float} opacity The new opacity. 0 = transparent, .5 = 50% visibile, 1 = fully visible, etc
9674          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9675          * @return {Roo.Element} this
9676          */
9677          setOpacity : function(opacity, animate){
9678             if(!animate || !A){
9679                 var s = this.dom.style;
9680                 if(Roo.isIE){
9681                     s.zoom = 1;
9682                     s.filter = (s.filter || '').replace(/alpha\([^\)]*\)/gi,"") +
9683                                (opacity == 1 ? "" : "alpha(opacity=" + opacity * 100 + ")");
9684                 }else{
9685                     s.opacity = opacity;
9686                 }
9687             }else{
9688                 this.anim({opacity: {to: opacity}}, this.preanim(arguments, 1), null, .35, 'easeIn');
9689             }
9690             return this;
9691         },
9692
9693         /**
9694          * Gets the left X coordinate
9695          * @param {Boolean} local True to get the local css position instead of page coordinate
9696          * @return {Number}
9697          */
9698         getLeft : function(local){
9699             if(!local){
9700                 return this.getX();
9701             }else{
9702                 return parseInt(this.getStyle("left"), 10) || 0;
9703             }
9704         },
9705
9706         /**
9707          * Gets the right X coordinate of the element (element X position + element width)
9708          * @param {Boolean} local True to get the local css position instead of page coordinate
9709          * @return {Number}
9710          */
9711         getRight : function(local){
9712             if(!local){
9713                 return this.getX() + this.getWidth();
9714             }else{
9715                 return (this.getLeft(true) + this.getWidth()) || 0;
9716             }
9717         },
9718
9719         /**
9720          * Gets the top Y coordinate
9721          * @param {Boolean} local True to get the local css position instead of page coordinate
9722          * @return {Number}
9723          */
9724         getTop : function(local) {
9725             if(!local){
9726                 return this.getY();
9727             }else{
9728                 return parseInt(this.getStyle("top"), 10) || 0;
9729             }
9730         },
9731
9732         /**
9733          * Gets the bottom Y coordinate of the element (element Y position + element height)
9734          * @param {Boolean} local True to get the local css position instead of page coordinate
9735          * @return {Number}
9736          */
9737         getBottom : function(local){
9738             if(!local){
9739                 return this.getY() + this.getHeight();
9740             }else{
9741                 return (this.getTop(true) + this.getHeight()) || 0;
9742             }
9743         },
9744
9745         /**
9746         * Initializes positioning on this element. If a desired position is not passed, it will make the
9747         * the element positioned relative IF it is not already positioned.
9748         * @param {String} pos (optional) Positioning to use "relative", "absolute" or "fixed"
9749         * @param {Number} zIndex (optional) The zIndex to apply
9750         * @param {Number} x (optional) Set the page X position
9751         * @param {Number} y (optional) Set the page Y position
9752         */
9753         position : function(pos, zIndex, x, y){
9754             if(!pos){
9755                if(this.getStyle('position') == 'static'){
9756                    this.setStyle('position', 'relative');
9757                }
9758             }else{
9759                 this.setStyle("position", pos);
9760             }
9761             if(zIndex){
9762                 this.setStyle("z-index", zIndex);
9763             }
9764             if(x !== undefined && y !== undefined){
9765                 this.setXY([x, y]);
9766             }else if(x !== undefined){
9767                 this.setX(x);
9768             }else if(y !== undefined){
9769                 this.setY(y);
9770             }
9771         },
9772
9773         /**
9774         * Clear positioning back to the default when the document was loaded
9775         * @param {String} value (optional) The value to use for the left,right,top,bottom, defaults to '' (empty string). You could use 'auto'.
9776         * @return {Roo.Element} this
9777          */
9778         clearPositioning : function(value){
9779             value = value ||'';
9780             this.setStyle({
9781                 "left": value,
9782                 "right": value,
9783                 "top": value,
9784                 "bottom": value,
9785                 "z-index": "",
9786                 "position" : "static"
9787             });
9788             return this;
9789         },
9790
9791         /**
9792         * Gets an object with all CSS positioning properties. Useful along with setPostioning to get
9793         * snapshot before performing an update and then restoring the element.
9794         * @return {Object}
9795         */
9796         getPositioning : function(){
9797             var l = this.getStyle("left");
9798             var t = this.getStyle("top");
9799             return {
9800                 "position" : this.getStyle("position"),
9801                 "left" : l,
9802                 "right" : l ? "" : this.getStyle("right"),
9803                 "top" : t,
9804                 "bottom" : t ? "" : this.getStyle("bottom"),
9805                 "z-index" : this.getStyle("z-index")
9806             };
9807         },
9808
9809         /**
9810          * Gets the width of the border(s) for the specified side(s)
9811          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
9812          * passing lr would get the border (l)eft width + the border (r)ight width.
9813          * @return {Number} The width of the sides passed added together
9814          */
9815         getBorderWidth : function(side){
9816             return this.addStyles(side, El.borders);
9817         },
9818
9819         /**
9820          * Gets the width of the padding(s) for the specified side(s)
9821          * @param {String} side Can be t, l, r, b or any combination of those to add multiple values. For example,
9822          * passing lr would get the padding (l)eft + the padding (r)ight.
9823          * @return {Number} The padding of the sides passed added together
9824          */
9825         getPadding : function(side){
9826             return this.addStyles(side, El.paddings);
9827         },
9828
9829         /**
9830         * Set positioning with an object returned by getPositioning().
9831         * @param {Object} posCfg
9832         * @return {Roo.Element} this
9833          */
9834         setPositioning : function(pc){
9835             this.applyStyles(pc);
9836             if(pc.right == "auto"){
9837                 this.dom.style.right = "";
9838             }
9839             if(pc.bottom == "auto"){
9840                 this.dom.style.bottom = "";
9841             }
9842             return this;
9843         },
9844
9845         // private
9846         fixDisplay : function(){
9847             if(this.getStyle("display") == "none"){
9848                 this.setStyle("visibility", "hidden");
9849                 this.setStyle("display", this.originalDisplay); // first try reverting to default
9850                 if(this.getStyle("display") == "none"){ // if that fails, default to block
9851                     this.setStyle("display", "block");
9852                 }
9853             }
9854         },
9855
9856         /**
9857          * Quick set left and top adding default units
9858          * @param {String} left The left CSS property value
9859          * @param {String} top The top CSS property value
9860          * @return {Roo.Element} this
9861          */
9862          setLeftTop : function(left, top){
9863             this.dom.style.left = this.addUnits(left);
9864             this.dom.style.top = this.addUnits(top);
9865             return this;
9866         },
9867
9868         /**
9869          * Move this element relative to its current position.
9870          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
9871          * @param {Number} distance How far to move the element in pixels
9872          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
9873          * @return {Roo.Element} this
9874          */
9875          move : function(direction, distance, animate){
9876             var xy = this.getXY();
9877             direction = direction.toLowerCase();
9878             switch(direction){
9879                 case "l":
9880                 case "left":
9881                     this.moveTo(xy[0]-distance, xy[1], this.preanim(arguments, 2));
9882                     break;
9883                case "r":
9884                case "right":
9885                     this.moveTo(xy[0]+distance, xy[1], this.preanim(arguments, 2));
9886                     break;
9887                case "t":
9888                case "top":
9889                case "up":
9890                     this.moveTo(xy[0], xy[1]-distance, this.preanim(arguments, 2));
9891                     break;
9892                case "b":
9893                case "bottom":
9894                case "down":
9895                     this.moveTo(xy[0], xy[1]+distance, this.preanim(arguments, 2));
9896                     break;
9897             }
9898             return this;
9899         },
9900
9901         /**
9902          *  Store the current overflow setting and clip overflow on the element - use {@link #unclip} to remove
9903          * @return {Roo.Element} this
9904          */
9905         clip : function(){
9906             if(!this.isClipped){
9907                this.isClipped = true;
9908                this.originalClip = {
9909                    "o": this.getStyle("overflow"),
9910                    "x": this.getStyle("overflow-x"),
9911                    "y": this.getStyle("overflow-y")
9912                };
9913                this.setStyle("overflow", "hidden");
9914                this.setStyle("overflow-x", "hidden");
9915                this.setStyle("overflow-y", "hidden");
9916             }
9917             return this;
9918         },
9919
9920         /**
9921          *  Return clipping (overflow) to original clipping before clip() was called
9922          * @return {Roo.Element} this
9923          */
9924         unclip : function(){
9925             if(this.isClipped){
9926                 this.isClipped = false;
9927                 var o = this.originalClip;
9928                 if(o.o){this.setStyle("overflow", o.o);}
9929                 if(o.x){this.setStyle("overflow-x", o.x);}
9930                 if(o.y){this.setStyle("overflow-y", o.y);}
9931             }
9932             return this;
9933         },
9934
9935
9936         /**
9937          * Gets the x,y coordinates specified by the anchor position on the element.
9938          * @param {String} anchor (optional) The specified anchor position (defaults to "c").  See {@link #alignTo} for details on supported anchor positions.
9939          * @param {Object} size (optional) An object containing the size to use for calculating anchor position
9940          *                       {width: (target width), height: (target height)} (defaults to the element's current size)
9941          * @param {Boolean} local (optional) True to get the local (element top/left-relative) anchor position instead of page coordinates
9942          * @return {Array} [x, y] An array containing the element's x and y coordinates
9943          */
9944         getAnchorXY : function(anchor, local, s){
9945             //Passing a different size is useful for pre-calculating anchors,
9946             //especially for anchored animations that change the el size.
9947
9948             var w, h, vp = false;
9949             if(!s){
9950                 var d = this.dom;
9951                 if(d == document.body || d == document){
9952                     vp = true;
9953                     w = D.getViewWidth(); h = D.getViewHeight();
9954                 }else{
9955                     w = this.getWidth(); h = this.getHeight();
9956                 }
9957             }else{
9958                 w = s.width;  h = s.height;
9959             }
9960             var x = 0, y = 0, r = Math.round;
9961             switch((anchor || "tl").toLowerCase()){
9962                 case "c":
9963                     x = r(w*.5);
9964                     y = r(h*.5);
9965                 break;
9966                 case "t":
9967                     x = r(w*.5);
9968                     y = 0;
9969                 break;
9970                 case "l":
9971                     x = 0;
9972                     y = r(h*.5);
9973                 break;
9974                 case "r":
9975                     x = w;
9976                     y = r(h*.5);
9977                 break;
9978                 case "b":
9979                     x = r(w*.5);
9980                     y = h;
9981                 break;
9982                 case "tl":
9983                     x = 0;
9984                     y = 0;
9985                 break;
9986                 case "bl":
9987                     x = 0;
9988                     y = h;
9989                 break;
9990                 case "br":
9991                     x = w;
9992                     y = h;
9993                 break;
9994                 case "tr":
9995                     x = w;
9996                     y = 0;
9997                 break;
9998             }
9999             if(local === true){
10000                 return [x, y];
10001             }
10002             if(vp){
10003                 var sc = this.getScroll();
10004                 return [x + sc.left, y + sc.top];
10005             }
10006             //Add the element's offset xy
10007             var o = this.getXY();
10008             return [x+o[0], y+o[1]];
10009         },
10010
10011         /**
10012          * Gets the x,y coordinates to align this element with another element. See {@link #alignTo} for more info on the
10013          * supported position values.
10014          * @param {String/HTMLElement/Roo.Element} element The element to align to.
10015          * @param {String} position The position to align to.
10016          * @param {Array} offsets (optional) Offset the positioning by [x, y]
10017          * @return {Array} [x, y]
10018          */
10019         getAlignToXY : function(el, p, o)
10020         {
10021             el = Roo.get(el);
10022             var d = this.dom;
10023             if(!el.dom){
10024                 throw "Element.alignTo with an element that doesn't exist";
10025             }
10026             var c = false; //constrain to viewport
10027             var p1 = "", p2 = "";
10028             o = o || [0,0];
10029
10030             if(!p){
10031                 p = "tl-bl";
10032             }else if(p == "?"){
10033                 p = "tl-bl?";
10034             }else if(p.indexOf("-") == -1){
10035                 p = "tl-" + p;
10036             }
10037             p = p.toLowerCase();
10038             var m = p.match(/^([a-z]+)-([a-z]+)(\?)?$/);
10039             if(!m){
10040                throw "Element.alignTo with an invalid alignment " + p;
10041             }
10042             p1 = m[1]; p2 = m[2]; c = !!m[3];
10043
10044             //Subtract the aligned el's internal xy from the target's offset xy
10045             //plus custom offset to get the aligned el's new offset xy
10046             var a1 = this.getAnchorXY(p1, true);
10047             var a2 = el.getAnchorXY(p2, false);
10048             var x = a2[0] - a1[0] + o[0];
10049             var y = a2[1] - a1[1] + o[1];
10050             if(c){
10051                 //constrain the aligned el to viewport if necessary
10052                 var w = this.getWidth(), h = this.getHeight(), r = el.getRegion();
10053                 // 5px of margin for ie
10054                 var dw = D.getViewWidth()-5, dh = D.getViewHeight()-5;
10055
10056                 //If we are at a viewport boundary and the aligned el is anchored on a target border that is
10057                 //perpendicular to the vp border, allow the aligned el to slide on that border,
10058                 //otherwise swap the aligned el to the opposite border of the target.
10059                 var p1y = p1.charAt(0), p1x = p1.charAt(p1.length-1);
10060                var p2y = p2.charAt(0), p2x = p2.charAt(p2.length-1);
10061                var swapY = ((p1y=="t" && p2y=="b") || (p1y=="b" && p2y=="t")  );
10062                var swapX = ((p1x=="r" && p2x=="l") || (p1x=="l" && p2x=="r"));
10063
10064                var doc = document;
10065                var scrollX = (doc.documentElement.scrollLeft || doc.body.scrollLeft || 0)+5;
10066                var scrollY = (doc.documentElement.scrollTop || doc.body.scrollTop || 0)+5;
10067
10068                if((x+w) > dw + scrollX){
10069                     x = swapX ? r.left-w : dw+scrollX-w;
10070                 }
10071                if(x < scrollX){
10072                    x = swapX ? r.right : scrollX;
10073                }
10074                if((y+h) > dh + scrollY){
10075                     y = swapY ? r.top-h : dh+scrollY-h;
10076                 }
10077                if (y < scrollY){
10078                    y = swapY ? r.bottom : scrollY;
10079                }
10080             }
10081             return [x,y];
10082         },
10083
10084         // private
10085         getConstrainToXY : function(){
10086             var os = {top:0, left:0, bottom:0, right: 0};
10087
10088             return function(el, local, offsets, proposedXY){
10089                 el = Roo.get(el);
10090                 offsets = offsets ? Roo.applyIf(offsets, os) : os;
10091
10092                 var vw, vh, vx = 0, vy = 0;
10093                 if(el.dom == document.body || el.dom == document){
10094                     vw = Roo.lib.Dom.getViewWidth();
10095                     vh = Roo.lib.Dom.getViewHeight();
10096                 }else{
10097                     vw = el.dom.clientWidth;
10098                     vh = el.dom.clientHeight;
10099                     if(!local){
10100                         var vxy = el.getXY();
10101                         vx = vxy[0];
10102                         vy = vxy[1];
10103                     }
10104                 }
10105
10106                 var s = el.getScroll();
10107
10108                 vx += offsets.left + s.left;
10109                 vy += offsets.top + s.top;
10110
10111                 vw -= offsets.right;
10112                 vh -= offsets.bottom;
10113
10114                 var vr = vx+vw;
10115                 var vb = vy+vh;
10116
10117                 var xy = proposedXY || (!local ? this.getXY() : [this.getLeft(true), this.getTop(true)]);
10118                 var x = xy[0], y = xy[1];
10119                 var w = this.dom.offsetWidth, h = this.dom.offsetHeight;
10120
10121                 // only move it if it needs it
10122                 var moved = false;
10123
10124                 // first validate right/bottom
10125                 if((x + w) > vr){
10126                     x = vr - w;
10127                     moved = true;
10128                 }
10129                 if((y + h) > vb){
10130                     y = vb - h;
10131                     moved = true;
10132                 }
10133                 // then make sure top/left isn't negative
10134                 if(x < vx){
10135                     x = vx;
10136                     moved = true;
10137                 }
10138                 if(y < vy){
10139                     y = vy;
10140                     moved = true;
10141                 }
10142                 return moved ? [x, y] : false;
10143             };
10144         }(),
10145
10146         // private
10147         adjustForConstraints : function(xy, parent, offsets){
10148             return this.getConstrainToXY(parent || document, false, offsets, xy) ||  xy;
10149         },
10150
10151         /**
10152          * Aligns this element with another element relative to the specified anchor points. If the other element is the
10153          * document it aligns it to the viewport.
10154          * The position parameter is optional, and can be specified in any one of the following formats:
10155          * <ul>
10156          *   <li><b>Blank</b>: Defaults to aligning the element's top-left corner to the target's bottom-left corner ("tl-bl").</li>
10157          *   <li><b>One anchor (deprecated)</b>: The passed anchor position is used as the target element's anchor point.
10158          *       The element being aligned will position its top-left corner (tl) to that point.  <i>This method has been
10159          *       deprecated in favor of the newer two anchor syntax below</i>.</li>
10160          *   <li><b>Two anchors</b>: If two values from the table below are passed separated by a dash, the first value is used as the
10161          *       element's anchor point, and the second value is used as the target's anchor point.</li>
10162          * </ul>
10163          * In addition to the anchor points, the position parameter also supports the "?" character.  If "?" is passed at the end of
10164          * the position string, the element will attempt to align as specified, but the position will be adjusted to constrain to
10165          * the viewport if necessary.  Note that the element being aligned might be swapped to align to a different position than
10166          * that specified in order to enforce the viewport constraints.
10167          * Following are all of the supported anchor positions:
10168     <pre>
10169     Value  Description
10170     -----  -----------------------------
10171     tl     The top left corner (default)
10172     t      The center of the top edge
10173     tr     The top right corner
10174     l      The center of the left edge
10175     c      In the center of the element
10176     r      The center of the right edge
10177     bl     The bottom left corner
10178     b      The center of the bottom edge
10179     br     The bottom right corner
10180     </pre>
10181     Example Usage:
10182     <pre><code>
10183     // align el to other-el using the default positioning ("tl-bl", non-constrained)
10184     el.alignTo("other-el");
10185
10186     // align the top left corner of el with the top right corner of other-el (constrained to viewport)
10187     el.alignTo("other-el", "tr?");
10188
10189     // align the bottom right corner of el with the center left edge of other-el
10190     el.alignTo("other-el", "br-l?");
10191
10192     // align the center of el with the bottom left corner of other-el and
10193     // adjust the x position by -6 pixels (and the y position by 0)
10194     el.alignTo("other-el", "c-bl", [-6, 0]);
10195     </code></pre>
10196          * @param {String/HTMLElement/Roo.Element} element The element to align to.
10197          * @param {String} position The position to align to.
10198          * @param {Array} offsets (optional) Offset the positioning by [x, y]
10199          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
10200          * @return {Roo.Element} this
10201          */
10202         alignTo : function(element, position, offsets, animate){
10203             var xy = this.getAlignToXY(element, position, offsets);
10204             this.setXY(xy, this.preanim(arguments, 3));
10205             return this;
10206         },
10207
10208         /**
10209          * Anchors an element to another element and realigns it when the window is resized.
10210          * @param {String/HTMLElement/Roo.Element} element The element to align to.
10211          * @param {String} position The position to align to.
10212          * @param {Array} offsets (optional) Offset the positioning by [x, y]
10213          * @param {Boolean/Object} animate (optional) True for the default animation or a standard Element animation config object
10214          * @param {Boolean/Number} monitorScroll (optional) True to monitor body scroll and reposition. If this parameter
10215          * is a number, it is used as the buffer delay (defaults to 50ms).
10216          * @param {Function} callback The function to call after the animation finishes
10217          * @return {Roo.Element} this
10218          */
10219         anchorTo : function(el, alignment, offsets, animate, monitorScroll, callback){
10220             var action = function(){
10221                 this.alignTo(el, alignment, offsets, animate);
10222                 Roo.callback(callback, this);
10223             };
10224             Roo.EventManager.onWindowResize(action, this);
10225             var tm = typeof monitorScroll;
10226             if(tm != 'undefined'){
10227                 Roo.EventManager.on(window, 'scroll', action, this,
10228                     {buffer: tm == 'number' ? monitorScroll : 50});
10229             }
10230             action.call(this); // align immediately
10231             return this;
10232         },
10233         /**
10234          * Clears any opacity settings from this element. Required in some cases for IE.
10235          * @return {Roo.Element} this
10236          */
10237         clearOpacity : function(){
10238             if (window.ActiveXObject) {
10239                 if(typeof this.dom.style.filter == 'string' && (/alpha/i).test(this.dom.style.filter)){
10240                     this.dom.style.filter = "";
10241                 }
10242             } else {
10243                 this.dom.style.opacity = "";
10244                 this.dom.style["-moz-opacity"] = "";
10245                 this.dom.style["-khtml-opacity"] = "";
10246             }
10247             return this;
10248         },
10249
10250         /**
10251          * Hide this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
10252          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
10253          * @return {Roo.Element} this
10254          */
10255         hide : function(animate){
10256             this.setVisible(false, this.preanim(arguments, 0));
10257             return this;
10258         },
10259
10260         /**
10261         * Show this element - Uses display mode to determine whether to use "display" or "visibility". See {@link #setVisible}.
10262         * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
10263          * @return {Roo.Element} this
10264          */
10265         show : function(animate){
10266             this.setVisible(true, this.preanim(arguments, 0));
10267             return this;
10268         },
10269
10270         /**
10271          * @private Test if size has a unit, otherwise appends the default
10272          */
10273         addUnits : function(size){
10274             return Roo.Element.addUnits(size, this.defaultUnit);
10275         },
10276
10277         /**
10278          * Temporarily enables offsets (width,height,x,y) for an element with display:none, use endMeasure() when done.
10279          * @return {Roo.Element} this
10280          */
10281         beginMeasure : function(){
10282             var el = this.dom;
10283             if(el.offsetWidth || el.offsetHeight){
10284                 return this; // offsets work already
10285             }
10286             var changed = [];
10287             var p = this.dom, b = document.body; // start with this element
10288             while((!el.offsetWidth && !el.offsetHeight) && p && p.tagName && p != b){
10289                 var pe = Roo.get(p);
10290                 if(pe.getStyle('display') == 'none'){
10291                     changed.push({el: p, visibility: pe.getStyle("visibility")});
10292                     p.style.visibility = "hidden";
10293                     p.style.display = "block";
10294                 }
10295                 p = p.parentNode;
10296             }
10297             this._measureChanged = changed;
10298             return this;
10299
10300         },
10301
10302         /**
10303          * Restores displays to before beginMeasure was called
10304          * @return {Roo.Element} this
10305          */
10306         endMeasure : function(){
10307             var changed = this._measureChanged;
10308             if(changed){
10309                 for(var i = 0, len = changed.length; i < len; i++) {
10310                     var r = changed[i];
10311                     r.el.style.visibility = r.visibility;
10312                     r.el.style.display = "none";
10313                 }
10314                 this._measureChanged = null;
10315             }
10316             return this;
10317         },
10318
10319         /**
10320         * Update the innerHTML of this element, optionally searching for and processing scripts
10321         * @param {String} html The new HTML
10322         * @param {Boolean} loadScripts (optional) true to look for and process scripts
10323         * @param {Function} callback For async script loading you can be noticed when the update completes
10324         * @return {Roo.Element} this
10325          */
10326         update : function(html, loadScripts, callback){
10327             if(typeof html == "undefined"){
10328                 html = "";
10329             }
10330             if(loadScripts !== true){
10331                 this.dom.innerHTML = html;
10332                 if(typeof callback == "function"){
10333                     callback();
10334                 }
10335                 return this;
10336             }
10337             var id = Roo.id();
10338             var dom = this.dom;
10339
10340             html += '<span id="' + id + '"></span>';
10341
10342             E.onAvailable(id, function(){
10343                 var hd = document.getElementsByTagName("head")[0];
10344                 var re = /(?:<script([^>]*)?>)((\n|\r|.)*?)(?:<\/script>)/ig;
10345                 var srcRe = /\ssrc=([\'\"])(.*?)\1/i;
10346                 var typeRe = /\stype=([\'\"])(.*?)\1/i;
10347
10348                 var match;
10349                 while(match = re.exec(html)){
10350                     var attrs = match[1];
10351                     var srcMatch = attrs ? attrs.match(srcRe) : false;
10352                     if(srcMatch && srcMatch[2]){
10353                        var s = document.createElement("script");
10354                        s.src = srcMatch[2];
10355                        var typeMatch = attrs.match(typeRe);
10356                        if(typeMatch && typeMatch[2]){
10357                            s.type = typeMatch[2];
10358                        }
10359                        hd.appendChild(s);
10360                     }else if(match[2] && match[2].length > 0){
10361                         if(window.execScript) {
10362                            window.execScript(match[2]);
10363                         } else {
10364                             /**
10365                              * eval:var:id
10366                              * eval:var:dom
10367                              * eval:var:html
10368                              * 
10369                              */
10370                            window.eval(match[2]);
10371                         }
10372                     }
10373                 }
10374                 var el = document.getElementById(id);
10375                 if(el){el.parentNode.removeChild(el);}
10376                 if(typeof callback == "function"){
10377                     callback();
10378                 }
10379             });
10380             dom.innerHTML = html.replace(/(?:<script.*?>)((\n|\r|.)*?)(?:<\/script>)/ig, "");
10381             return this;
10382         },
10383
10384         /**
10385          * Direct access to the UpdateManager update() method (takes the same parameters).
10386          * @param {String/Function} url The url for this request or a function to call to get the url
10387          * @param {String/Object} params (optional) The parameters to pass as either a url encoded string "param1=1&amp;param2=2" or an object {param1: 1, param2: 2}
10388          * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
10389          * @param {Boolean} discardUrl (optional) By default when you execute an update the defaultUrl is changed to the last used url. If true, it will not store the url.
10390          * @return {Roo.Element} this
10391          */
10392         load : function(){
10393             var um = this.getUpdateManager();
10394             um.update.apply(um, arguments);
10395             return this;
10396         },
10397
10398         /**
10399         * Gets this element's UpdateManager
10400         * @return {Roo.UpdateManager} The UpdateManager
10401         */
10402         getUpdateManager : function(){
10403             if(!this.updateManager){
10404                 this.updateManager = new Roo.UpdateManager(this);
10405             }
10406             return this.updateManager;
10407         },
10408
10409         /**
10410          * Disables text selection for this element (normalized across browsers)
10411          * @return {Roo.Element} this
10412          */
10413         unselectable : function(){
10414             this.dom.unselectable = "on";
10415             this.swallowEvent("selectstart", true);
10416             this.applyStyles("-moz-user-select:none;-khtml-user-select:none;");
10417             this.addClass("x-unselectable");
10418             return this;
10419         },
10420
10421         /**
10422         * Calculates the x, y to center this element on the screen
10423         * @return {Array} The x, y values [x, y]
10424         */
10425         getCenterXY : function(){
10426             return this.getAlignToXY(document, 'c-c');
10427         },
10428
10429         /**
10430         * Centers the Element in either the viewport, or another Element.
10431         * @param {String/HTMLElement/Roo.Element} centerIn (optional) The element in which to center the element.
10432         */
10433         center : function(centerIn){
10434             this.alignTo(centerIn || document, 'c-c');
10435             return this;
10436         },
10437
10438         /**
10439          * Tests various css rules/browsers to determine if this element uses a border box
10440          * @return {Boolean}
10441          */
10442         isBorderBox : function(){
10443             return noBoxAdjust[this.dom.tagName.toLowerCase()] || Roo.isBorderBox;
10444         },
10445
10446         /**
10447          * Return a box {x, y, width, height} that can be used to set another elements
10448          * size/location to match this element.
10449          * @param {Boolean} contentBox (optional) If true a box for the content of the element is returned.
10450          * @param {Boolean} local (optional) If true the element's left and top are returned instead of page x/y.
10451          * @return {Object} box An object in the format {x, y, width, height}
10452          */
10453         getBox : function(contentBox, local){
10454             var xy;
10455             if(!local){
10456                 xy = this.getXY();
10457             }else{
10458                 var left = parseInt(this.getStyle("left"), 10) || 0;
10459                 var top = parseInt(this.getStyle("top"), 10) || 0;
10460                 xy = [left, top];
10461             }
10462             var el = this.dom, w = el.offsetWidth, h = el.offsetHeight, bx;
10463             if(!contentBox){
10464                 bx = {x: xy[0], y: xy[1], 0: xy[0], 1: xy[1], width: w, height: h};
10465             }else{
10466                 var l = this.getBorderWidth("l")+this.getPadding("l");
10467                 var r = this.getBorderWidth("r")+this.getPadding("r");
10468                 var t = this.getBorderWidth("t")+this.getPadding("t");
10469                 var b = this.getBorderWidth("b")+this.getPadding("b");
10470                 bx = {x: xy[0]+l, y: xy[1]+t, 0: xy[0]+l, 1: xy[1]+t, width: w-(l+r), height: h-(t+b)};
10471             }
10472             bx.right = bx.x + bx.width;
10473             bx.bottom = bx.y + bx.height;
10474             return bx;
10475         },
10476
10477         /**
10478          * Returns the sum width of the padding and borders for the passed "sides". See getBorderWidth()
10479          for more information about the sides.
10480          * @param {String} sides
10481          * @return {Number}
10482          */
10483         getFrameWidth : function(sides, onlyContentBox){
10484             return onlyContentBox && Roo.isBorderBox ? 0 : (this.getPadding(sides) + this.getBorderWidth(sides));
10485         },
10486
10487         /**
10488          * Sets the element's box. Use getBox() on another element to get a box obj. If animate is true then width, height, x and y will be animated concurrently.
10489          * @param {Object} box The box to fill {x, y, width, height}
10490          * @param {Boolean} adjust (optional) Whether to adjust for box-model issues automatically
10491          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
10492          * @return {Roo.Element} this
10493          */
10494         setBox : function(box, adjust, animate){
10495             var w = box.width, h = box.height;
10496             if((adjust && !this.autoBoxAdjust) && !this.isBorderBox()){
10497                w -= (this.getBorderWidth("lr") + this.getPadding("lr"));
10498                h -= (this.getBorderWidth("tb") + this.getPadding("tb"));
10499             }
10500             this.setBounds(box.x, box.y, w, h, this.preanim(arguments, 2));
10501             return this;
10502         },
10503
10504         /**
10505          * Forces the browser to repaint this element
10506          * @return {Roo.Element} this
10507          */
10508          repaint : function(){
10509             var dom = this.dom;
10510             this.addClass("x-repaint");
10511             setTimeout(function(){
10512                 Roo.get(dom).removeClass("x-repaint");
10513             }, 1);
10514             return this;
10515         },
10516
10517         /**
10518          * Returns an object with properties top, left, right and bottom representing the margins of this element unless sides is passed,
10519          * then it returns the calculated width of the sides (see getPadding)
10520          * @param {String} sides (optional) Any combination of l, r, t, b to get the sum of those sides
10521          * @return {Object/Number}
10522          */
10523         getMargins : function(side){
10524             if(!side){
10525                 return {
10526                     top: parseInt(this.getStyle("margin-top"), 10) || 0,
10527                     left: parseInt(this.getStyle("margin-left"), 10) || 0,
10528                     bottom: parseInt(this.getStyle("margin-bottom"), 10) || 0,
10529                     right: parseInt(this.getStyle("margin-right"), 10) || 0
10530                 };
10531             }else{
10532                 return this.addStyles(side, El.margins);
10533              }
10534         },
10535
10536         // private
10537         addStyles : function(sides, styles){
10538             var val = 0, v, w;
10539             for(var i = 0, len = sides.length; i < len; i++){
10540                 v = this.getStyle(styles[sides.charAt(i)]);
10541                 if(v){
10542                      w = parseInt(v, 10);
10543                      if(w){ val += w; }
10544                 }
10545             }
10546             return val;
10547         },
10548
10549         /**
10550          * Creates a proxy element of this element
10551          * @param {String/Object} config The class name of the proxy element or a DomHelper config object
10552          * @param {String/HTMLElement} renderTo (optional) The element or element id to render the proxy to (defaults to document.body)
10553          * @param {Boolean} matchBox (optional) True to align and size the proxy to this element now (defaults to false)
10554          * @return {Roo.Element} The new proxy element
10555          */
10556         createProxy : function(config, renderTo, matchBox){
10557             if(renderTo){
10558                 renderTo = Roo.getDom(renderTo);
10559             }else{
10560                 renderTo = document.body;
10561             }
10562             config = typeof config == "object" ?
10563                 config : {tag : "div", cls: config};
10564             var proxy = Roo.DomHelper.append(renderTo, config, true);
10565             if(matchBox){
10566                proxy.setBox(this.getBox());
10567             }
10568             return proxy;
10569         },
10570
10571         /**
10572          * Puts a mask over this element to disable user interaction. Requires core.css.
10573          * This method can only be applied to elements which accept child nodes.
10574          * @param {String} msg (optional) A message to display in the mask
10575          * @param {String} msgCls (optional) A css class to apply to the msg element - use no-spinner to hide the spinner on bootstrap
10576          * @return {Element} The mask  element
10577          */
10578         mask : function(msg, msgCls)
10579         {
10580             if(this.getStyle("position") == "static" && this.dom.tagName !== 'BODY'){
10581                 this.setStyle("position", "relative");
10582             }
10583             if(!this._mask){
10584                 this._mask = Roo.DomHelper.append(this.dom, {cls:"roo-el-mask"}, true);
10585             }
10586             
10587             this.addClass("x-masked");
10588             this._mask.setDisplayed(true);
10589             
10590             // we wander
10591             var z = 0;
10592             var dom = this.dom;
10593             while (dom && dom.style) {
10594                 if (!isNaN(parseInt(dom.style.zIndex))) {
10595                     z = Math.max(z, parseInt(dom.style.zIndex));
10596                 }
10597                 dom = dom.parentNode;
10598             }
10599             // if we are masking the body - then it hides everything..
10600             if (this.dom == document.body) {
10601                 z = 1000000;
10602                 this._mask.setWidth(Roo.lib.Dom.getDocumentWidth());
10603                 this._mask.setHeight(Roo.lib.Dom.getDocumentHeight());
10604             }
10605            
10606             if(typeof msg == 'string'){
10607                 if(!this._maskMsg){
10608                     this._maskMsg = Roo.DomHelper.append(this.dom, {
10609                         cls: "roo-el-mask-msg", 
10610                         cn: [
10611                             {
10612                                 tag: 'i',
10613                                 cls: 'fa fa-spinner fa-spin'
10614                             },
10615                             {
10616                                 tag: 'div'
10617                             }   
10618                         ]
10619                     }, true);
10620                 }
10621                 var mm = this._maskMsg;
10622                 mm.dom.className = msgCls ? "roo-el-mask-msg " + msgCls : "roo-el-mask-msg";
10623                 if (mm.dom.lastChild) { // weird IE issue?
10624                     mm.dom.lastChild.innerHTML = msg;
10625                 }
10626                 mm.setDisplayed(true);
10627                 mm.center(this);
10628                 mm.setStyle('z-index', z + 102);
10629             }
10630             if(Roo.isIE && !(Roo.isIE7 && Roo.isStrict) && this.getStyle('height') == 'auto'){ // ie will not expand full height automatically
10631                 this._mask.setHeight(this.getHeight());
10632             }
10633             this._mask.setStyle('z-index', z + 100);
10634             
10635             return this._mask;
10636         },
10637
10638         /**
10639          * Removes a previously applied mask. If removeEl is true the mask overlay is destroyed, otherwise
10640          * it is cached for reuse.
10641          */
10642         unmask : function(removeEl){
10643             if(this._mask){
10644                 if(removeEl === true){
10645                     this._mask.remove();
10646                     delete this._mask;
10647                     if(this._maskMsg){
10648                         this._maskMsg.remove();
10649                         delete this._maskMsg;
10650                     }
10651                 }else{
10652                     this._mask.setDisplayed(false);
10653                     if(this._maskMsg){
10654                         this._maskMsg.setDisplayed(false);
10655                     }
10656                 }
10657             }
10658             this.removeClass("x-masked");
10659         },
10660
10661         /**
10662          * Returns true if this element is masked
10663          * @return {Boolean}
10664          */
10665         isMasked : function(){
10666             return this._mask && this._mask.isVisible();
10667         },
10668
10669         /**
10670          * Creates an iframe shim for this element to keep selects and other windowed objects from
10671          * showing through.
10672          * @return {Roo.Element} The new shim element
10673          */
10674         createShim : function(){
10675             var el = document.createElement('iframe');
10676             el.frameBorder = 'no';
10677             el.className = 'roo-shim';
10678             if(Roo.isIE && Roo.isSecure){
10679                 el.src = Roo.SSL_SECURE_URL;
10680             }
10681             var shim = Roo.get(this.dom.parentNode.insertBefore(el, this.dom));
10682             shim.autoBoxAdjust = false;
10683             return shim;
10684         },
10685
10686         /**
10687          * Removes this element from the DOM and deletes it from the cache
10688          */
10689         remove : function(){
10690             if(this.dom.parentNode){
10691                 this.dom.parentNode.removeChild(this.dom);
10692             }
10693             delete El.cache[this.dom.id];
10694         },
10695
10696         /**
10697          * Sets up event handlers to add and remove a css class when the mouse is over this element
10698          * @param {String} className
10699          * @param {Boolean} preventFlicker (optional) If set to true, it prevents flickering by filtering
10700          * mouseout events for children elements
10701          * @return {Roo.Element} this
10702          */
10703         addClassOnOver : function(className, preventFlicker){
10704             this.on("mouseover", function(){
10705                 Roo.fly(this, '_internal').addClass(className);
10706             }, this.dom);
10707             var removeFn = function(e){
10708                 if(preventFlicker !== true || !e.within(this, true)){
10709                     Roo.fly(this, '_internal').removeClass(className);
10710                 }
10711             };
10712             this.on("mouseout", removeFn, this.dom);
10713             return this;
10714         },
10715
10716         /**
10717          * Sets up event handlers to add and remove a css class when this element has the focus
10718          * @param {String} className
10719          * @return {Roo.Element} this
10720          */
10721         addClassOnFocus : function(className){
10722             this.on("focus", function(){
10723                 Roo.fly(this, '_internal').addClass(className);
10724             }, this.dom);
10725             this.on("blur", function(){
10726                 Roo.fly(this, '_internal').removeClass(className);
10727             }, this.dom);
10728             return this;
10729         },
10730         /**
10731          * Sets up event handlers to add and remove a css class when the mouse is down and then up on this element (a click effect)
10732          * @param {String} className
10733          * @return {Roo.Element} this
10734          */
10735         addClassOnClick : function(className){
10736             var dom = this.dom;
10737             this.on("mousedown", function(){
10738                 Roo.fly(dom, '_internal').addClass(className);
10739                 var d = Roo.get(document);
10740                 var fn = function(){
10741                     Roo.fly(dom, '_internal').removeClass(className);
10742                     d.removeListener("mouseup", fn);
10743                 };
10744                 d.on("mouseup", fn);
10745             });
10746             return this;
10747         },
10748
10749         /**
10750          * Stops the specified event from bubbling and optionally prevents the default action
10751          * @param {String} eventName
10752          * @param {Boolean} preventDefault (optional) true to prevent the default action too
10753          * @return {Roo.Element} this
10754          */
10755         swallowEvent : function(eventName, preventDefault){
10756             var fn = function(e){
10757                 e.stopPropagation();
10758                 if(preventDefault){
10759                     e.preventDefault();
10760                 }
10761             };
10762             if(eventName instanceof Array){
10763                 for(var i = 0, len = eventName.length; i < len; i++){
10764                      this.on(eventName[i], fn);
10765                 }
10766                 return this;
10767             }
10768             this.on(eventName, fn);
10769             return this;
10770         },
10771
10772         /**
10773          * @private
10774          */
10775         fitToParentDelegate : Roo.emptyFn, // keep a reference to the fitToParent delegate
10776
10777         /**
10778          * Sizes this element to its parent element's dimensions performing
10779          * neccessary box adjustments.
10780          * @param {Boolean} monitorResize (optional) If true maintains the fit when the browser window is resized.
10781          * @param {String/HTMLElment/Element} targetParent (optional) The target parent, default to the parentNode.
10782          * @return {Roo.Element} this
10783          */
10784         fitToParent : function(monitorResize, targetParent) {
10785           Roo.EventManager.removeResizeListener(this.fitToParentDelegate); // always remove previous fitToParent delegate from onWindowResize
10786           this.fitToParentDelegate = Roo.emptyFn; // remove reference to previous delegate
10787           if (monitorResize === true && !this.dom.parentNode) { // check if this Element still exists
10788             return this;
10789           }
10790           var p = Roo.get(targetParent || this.dom.parentNode);
10791           this.setSize(p.getComputedWidth() - p.getFrameWidth('lr'), p.getComputedHeight() - p.getFrameWidth('tb'));
10792           if (monitorResize === true) {
10793             this.fitToParentDelegate = this.fitToParent.createDelegate(this, [true, targetParent]);
10794             Roo.EventManager.onWindowResize(this.fitToParentDelegate);
10795           }
10796           return this;
10797         },
10798
10799         /**
10800          * Gets the next sibling, skipping text nodes
10801          * @return {HTMLElement} The next sibling or null
10802          */
10803         getNextSibling : function(){
10804             var n = this.dom.nextSibling;
10805             while(n && n.nodeType != 1){
10806                 n = n.nextSibling;
10807             }
10808             return n;
10809         },
10810
10811         /**
10812          * Gets the previous sibling, skipping text nodes
10813          * @return {HTMLElement} The previous sibling or null
10814          */
10815         getPrevSibling : function(){
10816             var n = this.dom.previousSibling;
10817             while(n && n.nodeType != 1){
10818                 n = n.previousSibling;
10819             }
10820             return n;
10821         },
10822
10823
10824         /**
10825          * Appends the passed element(s) to this element
10826          * @param {String/HTMLElement/Array/Element/CompositeElement} el
10827          * @return {Roo.Element} this
10828          */
10829         appendChild: function(el){
10830             el = Roo.get(el);
10831             el.appendTo(this);
10832             return this;
10833         },
10834
10835         /**
10836          * Creates the passed DomHelper config and appends it to this element or optionally inserts it before the passed child element.
10837          * @param {Object} config DomHelper element config object.  If no tag is specified (e.g., {tag:'input'}) then a div will be
10838          * automatically generated with the specified attributes.
10839          * @param {HTMLElement} insertBefore (optional) a child element of this element
10840          * @param {Boolean} returnDom (optional) true to return the dom node instead of creating an Element
10841          * @return {Roo.Element} The new child element
10842          */
10843         createChild: function(config, insertBefore, returnDom){
10844             config = config || {tag:'div'};
10845             if(insertBefore){
10846                 return Roo.DomHelper.insertBefore(insertBefore, config, returnDom !== true);
10847             }
10848             return Roo.DomHelper[!this.dom.firstChild ? 'overwrite' : 'append'](this.dom, config,  returnDom !== true);
10849         },
10850
10851         /**
10852          * Appends this element to the passed element
10853          * @param {String/HTMLElement/Element} el The new parent element
10854          * @return {Roo.Element} this
10855          */
10856         appendTo: function(el){
10857             el = Roo.getDom(el);
10858             el.appendChild(this.dom);
10859             return this;
10860         },
10861
10862         /**
10863          * Inserts this element before the passed element in the DOM
10864          * @param {String/HTMLElement/Element} el The element to insert before
10865          * @return {Roo.Element} this
10866          */
10867         insertBefore: function(el){
10868             el = Roo.getDom(el);
10869             el.parentNode.insertBefore(this.dom, el);
10870             return this;
10871         },
10872
10873         /**
10874          * Inserts this element after the passed element in the DOM
10875          * @param {String/HTMLElement/Element} el The element to insert after
10876          * @return {Roo.Element} this
10877          */
10878         insertAfter: function(el){
10879             el = Roo.getDom(el);
10880             el.parentNode.insertBefore(this.dom, el.nextSibling);
10881             return this;
10882         },
10883
10884         /**
10885          * Inserts (or creates) an element (or DomHelper config) as the first child of the this element
10886          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
10887          * @return {Roo.Element} The new child
10888          */
10889         insertFirst: function(el, returnDom){
10890             el = el || {};
10891             if(typeof el == 'object' && !el.nodeType){ // dh config
10892                 return this.createChild(el, this.dom.firstChild, returnDom);
10893             }else{
10894                 el = Roo.getDom(el);
10895                 this.dom.insertBefore(el, this.dom.firstChild);
10896                 return !returnDom ? Roo.get(el) : el;
10897             }
10898         },
10899
10900         /**
10901          * Inserts (or creates) the passed element (or DomHelper config) as a sibling of this element
10902          * @param {String/HTMLElement/Element/Object} el The id or element to insert or a DomHelper config to create and insert
10903          * @param {String} where (optional) 'before' or 'after' defaults to before
10904          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
10905          * @return {Roo.Element} the inserted Element
10906          */
10907         insertSibling: function(el, where, returnDom){
10908             where = where ? where.toLowerCase() : 'before';
10909             el = el || {};
10910             var rt, refNode = where == 'before' ? this.dom : this.dom.nextSibling;
10911
10912             if(typeof el == 'object' && !el.nodeType){ // dh config
10913                 if(where == 'after' && !this.dom.nextSibling){
10914                     rt = Roo.DomHelper.append(this.dom.parentNode, el, !returnDom);
10915                 }else{
10916                     rt = Roo.DomHelper[where == 'after' ? 'insertAfter' : 'insertBefore'](this.dom, el, !returnDom);
10917                 }
10918
10919             }else{
10920                 rt = this.dom.parentNode.insertBefore(Roo.getDom(el),
10921                             where == 'before' ? this.dom : this.dom.nextSibling);
10922                 if(!returnDom){
10923                     rt = Roo.get(rt);
10924                 }
10925             }
10926             return rt;
10927         },
10928
10929         /**
10930          * Creates and wraps this element with another element
10931          * @param {Object} config (optional) DomHelper element config object for the wrapper element or null for an empty div
10932          * @param {Boolean} returnDom (optional) True to return the raw DOM element instead of Roo.Element
10933          * @return {HTMLElement/Element} The newly created wrapper element
10934          */
10935         wrap: function(config, returnDom){
10936             if(!config){
10937                 config = {tag: "div"};
10938             }
10939             var newEl = Roo.DomHelper.insertBefore(this.dom, config, !returnDom);
10940             newEl.dom ? newEl.dom.appendChild(this.dom) : newEl.appendChild(this.dom);
10941             return newEl;
10942         },
10943
10944         /**
10945          * Replaces the passed element with this element
10946          * @param {String/HTMLElement/Element} el The element to replace
10947          * @return {Roo.Element} this
10948          */
10949         replace: function(el){
10950             el = Roo.get(el);
10951             this.insertBefore(el);
10952             el.remove();
10953             return this;
10954         },
10955
10956         /**
10957          * Inserts an html fragment into this element
10958          * @param {String} where Where to insert the html in relation to the this element - beforeBegin, afterBegin, beforeEnd, afterEnd.
10959          * @param {String} html The HTML fragment
10960          * @param {Boolean} returnEl True to return an Roo.Element
10961          * @return {HTMLElement/Roo.Element} The inserted node (or nearest related if more than 1 inserted)
10962          */
10963         insertHtml : function(where, html, returnEl){
10964             var el = Roo.DomHelper.insertHtml(where, this.dom, html);
10965             return returnEl ? Roo.get(el) : el;
10966         },
10967
10968         /**
10969          * Sets the passed attributes as attributes of this element (a style attribute can be a string, object or function)
10970          * @param {Object} o The object with the attributes
10971          * @param {Boolean} useSet (optional) false to override the default setAttribute to use expandos.
10972          * @return {Roo.Element} this
10973          */
10974         set : function(o, useSet){
10975             var el = this.dom;
10976             useSet = typeof useSet == 'undefined' ? (el.setAttribute ? true : false) : useSet;
10977             for(var attr in o){
10978                 if(attr == "style" || typeof o[attr] == "function")  { continue; }
10979                 if(attr=="cls"){
10980                     el.className = o["cls"];
10981                 }else{
10982                     if(useSet) {
10983                         el.setAttribute(attr, o[attr]);
10984                     } else {
10985                         el[attr] = o[attr];
10986                     }
10987                 }
10988             }
10989             if(o.style){
10990                 Roo.DomHelper.applyStyles(el, o.style);
10991             }
10992             return this;
10993         },
10994
10995         /**
10996          * Convenience method for constructing a KeyMap
10997          * @param {Number/Array/Object/String} key Either a string with the keys to listen for, the numeric key code, array of key codes or an object with the following options:
10998          *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
10999          * @param {Function} fn The function to call
11000          * @param {Object} scope (optional) The scope of the function
11001          * @return {Roo.KeyMap} The KeyMap created
11002          */
11003         addKeyListener : function(key, fn, scope){
11004             var config;
11005             if(typeof key != "object" || key instanceof Array){
11006                 config = {
11007                     key: key,
11008                     fn: fn,
11009                     scope: scope
11010                 };
11011             }else{
11012                 config = {
11013                     key : key.key,
11014                     shift : key.shift,
11015                     ctrl : key.ctrl,
11016                     alt : key.alt,
11017                     fn: fn,
11018                     scope: scope
11019                 };
11020             }
11021             return new Roo.KeyMap(this, config);
11022         },
11023
11024         /**
11025          * Creates a KeyMap for this element
11026          * @param {Object} config The KeyMap config. See {@link Roo.KeyMap} for more details
11027          * @return {Roo.KeyMap} The KeyMap created
11028          */
11029         addKeyMap : function(config){
11030             return new Roo.KeyMap(this, config);
11031         },
11032
11033         /**
11034          * Returns true if this element is scrollable.
11035          * @return {Boolean}
11036          */
11037          isScrollable : function(){
11038             var dom = this.dom;
11039             return dom.scrollHeight > dom.clientHeight || dom.scrollWidth > dom.clientWidth;
11040         },
11041
11042         /**
11043          * Scrolls this element the specified scroll point. It does NOT do bounds checking so if you scroll to a weird value it will try to do it. For auto bounds checking, use scroll().
11044          * @param {String} side Either "left" for scrollLeft values or "top" for scrollTop values.
11045          * @param {Number} value The new scroll value
11046          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
11047          * @return {Element} this
11048          */
11049
11050         scrollTo : function(side, value, animate){
11051             var prop = side.toLowerCase() == "left" ? "scrollLeft" : "scrollTop";
11052             if(!animate || !A){
11053                 this.dom[prop] = value;
11054             }else{
11055                 var to = prop == "scrollLeft" ? [value, this.dom.scrollTop] : [this.dom.scrollLeft, value];
11056                 this.anim({scroll: {"to": to}}, this.preanim(arguments, 2), 'scroll');
11057             }
11058             return this;
11059         },
11060
11061         /**
11062          * Scrolls this element the specified direction. Does bounds checking to make sure the scroll is
11063          * within this element's scrollable range.
11064          * @param {String} direction Possible values are: "l","left" - "r","right" - "t","top","up" - "b","bottom","down".
11065          * @param {Number} distance How far to scroll the element in pixels
11066          * @param {Boolean/Object} animate (optional) true for the default animation or a standard Element animation config object
11067          * @return {Boolean} Returns true if a scroll was triggered or false if the element
11068          * was scrolled as far as it could go.
11069          */
11070          scroll : function(direction, distance, animate){
11071              if(!this.isScrollable()){
11072                  return;
11073              }
11074              var el = this.dom;
11075              var l = el.scrollLeft, t = el.scrollTop;
11076              var w = el.scrollWidth, h = el.scrollHeight;
11077              var cw = el.clientWidth, ch = el.clientHeight;
11078              direction = direction.toLowerCase();
11079              var scrolled = false;
11080              var a = this.preanim(arguments, 2);
11081              switch(direction){
11082                  case "l":
11083                  case "left":
11084                      if(w - l > cw){
11085                          var v = Math.min(l + distance, w-cw);
11086                          this.scrollTo("left", v, a);
11087                          scrolled = true;
11088                      }
11089                      break;
11090                 case "r":
11091                 case "right":
11092                      if(l > 0){
11093                          var v = Math.max(l - distance, 0);
11094                          this.scrollTo("left", v, a);
11095                          scrolled = true;
11096                      }
11097                      break;
11098                 case "t":
11099                 case "top":
11100                 case "up":
11101                      if(t > 0){
11102                          var v = Math.max(t - distance, 0);
11103                          this.scrollTo("top", v, a);
11104                          scrolled = true;
11105                      }
11106                      break;
11107                 case "b":
11108                 case "bottom":
11109                 case "down":
11110                      if(h - t > ch){
11111                          var v = Math.min(t + distance, h-ch);
11112                          this.scrollTo("top", v, a);
11113                          scrolled = true;
11114                      }
11115                      break;
11116              }
11117              return scrolled;
11118         },
11119
11120         /**
11121          * Translates the passed page coordinates into left/top css values for this element
11122          * @param {Number/Array} x The page x or an array containing [x, y]
11123          * @param {Number} y The page y
11124          * @return {Object} An object with left and top properties. e.g. {left: (value), top: (value)}
11125          */
11126         translatePoints : function(x, y){
11127             if(typeof x == 'object' || x instanceof Array){
11128                 y = x[1]; x = x[0];
11129             }
11130             var p = this.getStyle('position');
11131             var o = this.getXY();
11132
11133             var l = parseInt(this.getStyle('left'), 10);
11134             var t = parseInt(this.getStyle('top'), 10);
11135
11136             if(isNaN(l)){
11137                 l = (p == "relative") ? 0 : this.dom.offsetLeft;
11138             }
11139             if(isNaN(t)){
11140                 t = (p == "relative") ? 0 : this.dom.offsetTop;
11141             }
11142
11143             return {left: (x - o[0] + l), top: (y - o[1] + t)};
11144         },
11145
11146         /**
11147          * Returns the current scroll position of the element.
11148          * @return {Object} An object containing the scroll position in the format {left: (scrollLeft), top: (scrollTop)}
11149          */
11150         getScroll : function(){
11151             var d = this.dom, doc = document;
11152             if(d == doc || d == doc.body){
11153                 var l = window.pageXOffset || doc.documentElement.scrollLeft || doc.body.scrollLeft || 0;
11154                 var t = window.pageYOffset || doc.documentElement.scrollTop || doc.body.scrollTop || 0;
11155                 return {left: l, top: t};
11156             }else{
11157                 return {left: d.scrollLeft, top: d.scrollTop};
11158             }
11159         },
11160
11161         /**
11162          * Return the CSS color for the specified CSS attribute. rgb, 3 digit (like #fff) and valid values
11163          * are convert to standard 6 digit hex color.
11164          * @param {String} attr The css attribute
11165          * @param {String} defaultValue The default value to use when a valid color isn't found
11166          * @param {String} prefix (optional) defaults to #. Use an empty string when working with
11167          * YUI color anims.
11168          */
11169         getColor : function(attr, defaultValue, prefix){
11170             var v = this.getStyle(attr);
11171             if(!v || v == "transparent" || v == "inherit") {
11172                 return defaultValue;
11173             }
11174             var color = typeof prefix == "undefined" ? "#" : prefix;
11175             if(v.substr(0, 4) == "rgb("){
11176                 var rvs = v.slice(4, v.length -1).split(",");
11177                 for(var i = 0; i < 3; i++){
11178                     var h = parseInt(rvs[i]).toString(16);
11179                     if(h < 16){
11180                         h = "0" + h;
11181                     }
11182                     color += h;
11183                 }
11184             } else {
11185                 if(v.substr(0, 1) == "#"){
11186                     if(v.length == 4) {
11187                         for(var i = 1; i < 4; i++){
11188                             var c = v.charAt(i);
11189                             color +=  c + c;
11190                         }
11191                     }else if(v.length == 7){
11192                         color += v.substr(1);
11193                     }
11194                 }
11195             }
11196             return(color.length > 5 ? color.toLowerCase() : defaultValue);
11197         },
11198
11199         /**
11200          * Wraps the specified element with a special markup/CSS block that renders by default as a gray container with a
11201          * gradient background, rounded corners and a 4-way shadow.
11202          * @param {String} class (optional) A base CSS class to apply to the containing wrapper element (defaults to 'x-box').
11203          * Note that there are a number of CSS rules that are dependent on this name to make the overall effect work,
11204          * so if you supply an alternate base class, make sure you also supply all of the necessary rules.
11205          * @return {Roo.Element} this
11206          */
11207         boxWrap : function(cls){
11208             cls = cls || 'x-box';
11209             var el = Roo.get(this.insertHtml('beforeBegin', String.format('<div class="{0}">'+El.boxMarkup+'</div>', cls)));
11210             el.child('.'+cls+'-mc').dom.appendChild(this.dom);
11211             return el;
11212         },
11213
11214         /**
11215          * Returns the value of a namespaced attribute from the element's underlying DOM node.
11216          * @param {String} namespace The namespace in which to look for the attribute
11217          * @param {String} name The attribute name
11218          * @return {String} The attribute value
11219          */
11220         getAttributeNS : Roo.isIE ? function(ns, name){
11221             var d = this.dom;
11222             var type = typeof d[ns+":"+name];
11223             if(type != 'undefined' && type != 'unknown'){
11224                 return d[ns+":"+name];
11225             }
11226             return d[name];
11227         } : function(ns, name){
11228             var d = this.dom;
11229             return d.getAttributeNS(ns, name) || d.getAttribute(ns+":"+name) || d.getAttribute(name) || d[name];
11230         },
11231         
11232         
11233         /**
11234          * Sets or Returns the value the dom attribute value
11235          * @param {String|Object} name The attribute name (or object to set multiple attributes)
11236          * @param {String} value (optional) The value to set the attribute to
11237          * @return {String} The attribute value
11238          */
11239         attr : function(name){
11240             if (arguments.length > 1) {
11241                 this.dom.setAttribute(name, arguments[1]);
11242                 return arguments[1];
11243             }
11244             if (typeof(name) == 'object') {
11245                 for(var i in name) {
11246                     this.attr(i, name[i]);
11247                 }
11248                 return name;
11249             }
11250             
11251             
11252             if (!this.dom.hasAttribute(name)) {
11253                 return undefined;
11254             }
11255             return this.dom.getAttribute(name);
11256         }
11257         
11258         
11259         
11260     };
11261
11262     var ep = El.prototype;
11263
11264     /**
11265      * Appends an event handler (Shorthand for addListener)
11266      * @param {String}   eventName     The type of event to append
11267      * @param {Function} fn        The method the event invokes
11268      * @param {Object} scope       (optional) The scope (this object) of the fn
11269      * @param {Object}   options   (optional)An object with standard {@link Roo.EventManager#addListener} options
11270      * @method
11271      */
11272     ep.on = ep.addListener;
11273         // backwards compat
11274     ep.mon = ep.addListener;
11275
11276     /**
11277      * Removes an event handler from this element (shorthand for removeListener)
11278      * @param {String} eventName the type of event to remove
11279      * @param {Function} fn the method the event invokes
11280      * @return {Roo.Element} this
11281      * @method
11282      */
11283     ep.un = ep.removeListener;
11284
11285     /**
11286      * true to automatically adjust width and height settings for box-model issues (default to true)
11287      */
11288     ep.autoBoxAdjust = true;
11289
11290     // private
11291     El.unitPattern = /\d+(px|em|%|en|ex|pt|in|cm|mm|pc)$/i;
11292
11293     // private
11294     El.addUnits = function(v, defaultUnit){
11295         if(v === "" || v == "auto"){
11296             return v;
11297         }
11298         if(v === undefined){
11299             return '';
11300         }
11301         if(typeof v == "number" || !El.unitPattern.test(v)){
11302             return v + (defaultUnit || 'px');
11303         }
11304         return v;
11305     };
11306
11307     // special markup used throughout Roo when box wrapping elements
11308     El.boxMarkup = '<div class="{0}-tl"><div class="{0}-tr"><div class="{0}-tc"></div></div></div><div class="{0}-ml"><div class="{0}-mr"><div class="{0}-mc"></div></div></div><div class="{0}-bl"><div class="{0}-br"><div class="{0}-bc"></div></div></div>';
11309     /**
11310      * Visibility mode constant - Use visibility to hide element
11311      * @static
11312      * @type Number
11313      */
11314     El.VISIBILITY = 1;
11315     /**
11316      * Visibility mode constant - Use display to hide element
11317      * @static
11318      * @type Number
11319      */
11320     El.DISPLAY = 2;
11321
11322     El.borders = {l: "border-left-width", r: "border-right-width", t: "border-top-width", b: "border-bottom-width"};
11323     El.paddings = {l: "padding-left", r: "padding-right", t: "padding-top", b: "padding-bottom"};
11324     El.margins = {l: "margin-left", r: "margin-right", t: "margin-top", b: "margin-bottom"};
11325
11326
11327
11328     /**
11329      * @private
11330      */
11331     El.cache = {};
11332
11333     var docEl;
11334
11335     /**
11336      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
11337      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
11338      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
11339      * @return {Element} The Element object
11340      * @static
11341      */
11342     El.get = function(el){
11343         var ex, elm, id;
11344         if(!el){ return null; }
11345         if(typeof el == "string"){ // element id
11346             if(!(elm = document.getElementById(el))){
11347                 return null;
11348             }
11349             if(ex = El.cache[el]){
11350                 ex.dom = elm;
11351             }else{
11352                 ex = El.cache[el] = new El(elm);
11353             }
11354             return ex;
11355         }else if(el.tagName){ // dom element
11356             if(!(id = el.id)){
11357                 id = Roo.id(el);
11358             }
11359             if(ex = El.cache[id]){
11360                 ex.dom = el;
11361             }else{
11362                 ex = El.cache[id] = new El(el);
11363             }
11364             return ex;
11365         }else if(el instanceof El){
11366             if(el != docEl){
11367                 el.dom = document.getElementById(el.id) || el.dom; // refresh dom element in case no longer valid,
11368                                                               // catch case where it hasn't been appended
11369                 El.cache[el.id] = el; // in case it was created directly with Element(), let's cache it
11370             }
11371             return el;
11372         }else if(el.isComposite){
11373             return el;
11374         }else if(el instanceof Array){
11375             return El.select(el);
11376         }else if(el == document){
11377             // create a bogus element object representing the document object
11378             if(!docEl){
11379                 var f = function(){};
11380                 f.prototype = El.prototype;
11381                 docEl = new f();
11382                 docEl.dom = document;
11383             }
11384             return docEl;
11385         }
11386         return null;
11387     };
11388
11389     // private
11390     El.uncache = function(el){
11391         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
11392             if(a[i]){
11393                 delete El.cache[a[i].id || a[i]];
11394             }
11395         }
11396     };
11397
11398     // private
11399     // Garbage collection - uncache elements/purge listeners on orphaned elements
11400     // so we don't hold a reference and cause the browser to retain them
11401     El.garbageCollect = function(){
11402         if(!Roo.enableGarbageCollector){
11403             clearInterval(El.collectorThread);
11404             return;
11405         }
11406         for(var eid in El.cache){
11407             var el = El.cache[eid], d = el.dom;
11408             // -------------------------------------------------------
11409             // Determining what is garbage:
11410             // -------------------------------------------------------
11411             // !d
11412             // dom node is null, definitely garbage
11413             // -------------------------------------------------------
11414             // !d.parentNode
11415             // no parentNode == direct orphan, definitely garbage
11416             // -------------------------------------------------------
11417             // !d.offsetParent && !document.getElementById(eid)
11418             // display none elements have no offsetParent so we will
11419             // also try to look it up by it's id. However, check
11420             // offsetParent first so we don't do unneeded lookups.
11421             // This enables collection of elements that are not orphans
11422             // directly, but somewhere up the line they have an orphan
11423             // parent.
11424             // -------------------------------------------------------
11425             if(!d || !d.parentNode || (!d.offsetParent && !document.getElementById(eid))){
11426                 delete El.cache[eid];
11427                 if(d && Roo.enableListenerCollection){
11428                     E.purgeElement(d);
11429                 }
11430             }
11431         }
11432     }
11433     El.collectorThreadId = setInterval(El.garbageCollect, 30000);
11434
11435
11436     // dom is optional
11437     El.Flyweight = function(dom){
11438         this.dom = dom;
11439     };
11440     El.Flyweight.prototype = El.prototype;
11441
11442     El._flyweights = {};
11443     /**
11444      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
11445      * the dom node can be overwritten by other code.
11446      * @param {String/HTMLElement} el The dom node or id
11447      * @param {String} named (optional) Allows for creation of named reusable flyweights to
11448      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
11449      * @static
11450      * @return {Element} The shared Element object
11451      */
11452     El.fly = function(el, named){
11453         named = named || '_global';
11454         el = Roo.getDom(el);
11455         if(!el){
11456             return null;
11457         }
11458         if(!El._flyweights[named]){
11459             El._flyweights[named] = new El.Flyweight();
11460         }
11461         El._flyweights[named].dom = el;
11462         return El._flyweights[named];
11463     };
11464
11465     /**
11466      * Static method to retrieve Element objects. Uses simple caching to consistently return the same object.
11467      * Automatically fixes if an object was recreated with the same id via AJAX or DOM.
11468      * Shorthand of {@link Roo.Element#get}
11469      * @param {String/HTMLElement/Element} el The id of the node, a DOM Node or an existing Element.
11470      * @return {Element} The Element object
11471      * @member Roo
11472      * @method get
11473      */
11474     Roo.get = El.get;
11475     /**
11476      * Gets the globally shared flyweight Element, with the passed node as the active element. Do not store a reference to this element -
11477      * the dom node can be overwritten by other code.
11478      * Shorthand of {@link Roo.Element#fly}
11479      * @param {String/HTMLElement} el The dom node or id
11480      * @param {String} named (optional) Allows for creation of named reusable flyweights to
11481      *                                  prevent conflicts (e.g. internally Roo uses "_internal")
11482      * @static
11483      * @return {Element} The shared Element object
11484      * @member Roo
11485      * @method fly
11486      */
11487     Roo.fly = El.fly;
11488
11489     // speedy lookup for elements never to box adjust
11490     var noBoxAdjust = Roo.isStrict ? {
11491         select:1
11492     } : {
11493         input:1, select:1, textarea:1
11494     };
11495     if(Roo.isIE || Roo.isGecko){
11496         noBoxAdjust['button'] = 1;
11497     }
11498
11499
11500     Roo.EventManager.on(window, 'unload', function(){
11501         delete El.cache;
11502         delete El._flyweights;
11503     });
11504 })();
11505
11506
11507
11508
11509 if(Roo.DomQuery){
11510     Roo.Element.selectorFunction = Roo.DomQuery.select;
11511 }
11512
11513 Roo.Element.select = function(selector, unique, root){
11514     var els;
11515     if(typeof selector == "string"){
11516         els = Roo.Element.selectorFunction(selector, root);
11517     }else if(selector.length !== undefined){
11518         els = selector;
11519     }else{
11520         throw "Invalid selector";
11521     }
11522     if(unique === true){
11523         return new Roo.CompositeElement(els);
11524     }else{
11525         return new Roo.CompositeElementLite(els);
11526     }
11527 };
11528 /**
11529  * Selects elements based on the passed CSS selector to enable working on them as 1.
11530  * @param {String/Array} selector The CSS selector or an array of elements
11531  * @param {Boolean} unique (optional) true to create a unique Roo.Element for each element (defaults to a shared flyweight object)
11532  * @param {HTMLElement/String} root (optional) The root element of the query or id of the root
11533  * @return {CompositeElementLite/CompositeElement}
11534  * @member Roo
11535  * @method select
11536  */
11537 Roo.select = Roo.Element.select;
11538
11539
11540
11541
11542
11543
11544
11545
11546
11547
11548
11549
11550
11551
11552 /*
11553  * Based on:
11554  * Ext JS Library 1.1.1
11555  * Copyright(c) 2006-2007, Ext JS, LLC.
11556  *
11557  * Originally Released Under LGPL - original licence link has changed is not relivant.
11558  *
11559  * Fork - LGPL
11560  * <script type="text/javascript">
11561  */
11562
11563
11564
11565 //Notifies Element that fx methods are available
11566 Roo.enableFx = true;
11567
11568 /**
11569  * @class Roo.Fx
11570  * <p>A class to provide basic animation and visual effects support.  <b>Note:</b> This class is automatically applied
11571  * to the {@link Roo.Element} interface when included, so all effects calls should be performed via Element.
11572  * Conversely, since the effects are not actually defined in Element, Roo.Fx <b>must</b> be included in order for the 
11573  * Element effects to work.</p><br/>
11574  *
11575  * <p>It is important to note that although the Fx methods and many non-Fx Element methods support "method chaining" in that
11576  * they return the Element object itself as the method return value, it is not always possible to mix the two in a single
11577  * method chain.  The Fx methods use an internal effects queue so that each effect can be properly timed and sequenced.
11578  * Non-Fx methods, on the other hand, have no such internal queueing and will always execute immediately.  For this reason,
11579  * while it may be possible to mix certain Fx and non-Fx method calls in a single chain, it may not always provide the
11580  * expected results and should be done with care.</p><br/>
11581  *
11582  * <p>Motion effects support 8-way anchoring, meaning that you can choose one of 8 different anchor points on the Element
11583  * that will serve as either the start or end point of the animation.  Following are all of the supported anchor positions:</p>
11584 <pre>
11585 Value  Description
11586 -----  -----------------------------
11587 tl     The top left corner
11588 t      The center of the top edge
11589 tr     The top right corner
11590 l      The center of the left edge
11591 r      The center of the right edge
11592 bl     The bottom left corner
11593 b      The center of the bottom edge
11594 br     The bottom right corner
11595 </pre>
11596  * <b>Although some Fx methods accept specific custom config parameters, the ones shown in the Config Options section
11597  * below are common options that can be passed to any Fx method.</b>
11598  * @cfg {Function} callback A function called when the effect is finished
11599  * @cfg {Object} scope The scope of the effect function
11600  * @cfg {String} easing A valid Easing value for the effect
11601  * @cfg {String} afterCls A css class to apply after the effect
11602  * @cfg {Number} duration The length of time (in seconds) that the effect should last
11603  * @cfg {Boolean} remove Whether the Element should be removed from the DOM and destroyed after the effect finishes
11604  * @cfg {Boolean} useDisplay Whether to use the <i>display</i> CSS property instead of <i>visibility</i> when hiding Elements (only applies to 
11605  * effects that end with the element being visually hidden, ignored otherwise)
11606  * @cfg {String/Object/Function} afterStyle A style specification string, e.g. "width:100px", or an object in the form {width:"100px"}, or
11607  * a function which returns such a specification that will be applied to the Element after the effect finishes
11608  * @cfg {Boolean} block Whether the effect should block other effects from queueing while it runs
11609  * @cfg {Boolean} concurrent Whether to allow subsequently-queued effects to run at the same time as the current effect, or to ensure that they run in sequence
11610  * @cfg {Boolean} stopFx Whether subsequent effects should be stopped and removed after the current effect finishes
11611  */
11612 Roo.Fx = {
11613         /**
11614          * Slides the element into view.  An anchor point can be optionally passed to set the point of
11615          * origin for the slide effect.  This function automatically handles wrapping the element with
11616          * a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
11617          * Usage:
11618          *<pre><code>
11619 // default: slide the element in from the top
11620 el.slideIn();
11621
11622 // custom: slide the element in from the right with a 2-second duration
11623 el.slideIn('r', { duration: 2 });
11624
11625 // common config options shown with default values
11626 el.slideIn('t', {
11627     easing: 'easeOut',
11628     duration: .5
11629 });
11630 </code></pre>
11631          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
11632          * @param {Object} options (optional) Object literal with any of the Fx config options
11633          * @return {Roo.Element} The Element
11634          */
11635     slideIn : function(anchor, o){
11636         var el = this.getFxEl();
11637         o = o || {};
11638
11639         el.queueFx(o, function(){
11640
11641             anchor = anchor || "t";
11642
11643             // fix display to visibility
11644             this.fixDisplay();
11645
11646             // restore values after effect
11647             var r = this.getFxRestore();
11648             var b = this.getBox();
11649             // fixed size for slide
11650             this.setSize(b);
11651
11652             // wrap if needed
11653             var wrap = this.fxWrap(r.pos, o, "hidden");
11654
11655             var st = this.dom.style;
11656             st.visibility = "visible";
11657             st.position = "absolute";
11658
11659             // clear out temp styles after slide and unwrap
11660             var after = function(){
11661                 el.fxUnwrap(wrap, r.pos, o);
11662                 st.width = r.width;
11663                 st.height = r.height;
11664                 el.afterFx(o);
11665             };
11666             // time to calc the positions
11667             var a, pt = {to: [b.x, b.y]}, bw = {to: b.width}, bh = {to: b.height};
11668
11669             switch(anchor.toLowerCase()){
11670                 case "t":
11671                     wrap.setSize(b.width, 0);
11672                     st.left = st.bottom = "0";
11673                     a = {height: bh};
11674                 break;
11675                 case "l":
11676                     wrap.setSize(0, b.height);
11677                     st.right = st.top = "0";
11678                     a = {width: bw};
11679                 break;
11680                 case "r":
11681                     wrap.setSize(0, b.height);
11682                     wrap.setX(b.right);
11683                     st.left = st.top = "0";
11684                     a = {width: bw, points: pt};
11685                 break;
11686                 case "b":
11687                     wrap.setSize(b.width, 0);
11688                     wrap.setY(b.bottom);
11689                     st.left = st.top = "0";
11690                     a = {height: bh, points: pt};
11691                 break;
11692                 case "tl":
11693                     wrap.setSize(0, 0);
11694                     st.right = st.bottom = "0";
11695                     a = {width: bw, height: bh};
11696                 break;
11697                 case "bl":
11698                     wrap.setSize(0, 0);
11699                     wrap.setY(b.y+b.height);
11700                     st.right = st.top = "0";
11701                     a = {width: bw, height: bh, points: pt};
11702                 break;
11703                 case "br":
11704                     wrap.setSize(0, 0);
11705                     wrap.setXY([b.right, b.bottom]);
11706                     st.left = st.top = "0";
11707                     a = {width: bw, height: bh, points: pt};
11708                 break;
11709                 case "tr":
11710                     wrap.setSize(0, 0);
11711                     wrap.setX(b.x+b.width);
11712                     st.left = st.bottom = "0";
11713                     a = {width: bw, height: bh, points: pt};
11714                 break;
11715             }
11716             this.dom.style.visibility = "visible";
11717             wrap.show();
11718
11719             arguments.callee.anim = wrap.fxanim(a,
11720                 o,
11721                 'motion',
11722                 .5,
11723                 'easeOut', after);
11724         });
11725         return this;
11726     },
11727     
11728         /**
11729          * Slides the element out of view.  An anchor point can be optionally passed to set the end point
11730          * for the slide effect.  When the effect is completed, the element will be hidden (visibility = 
11731          * 'hidden') but block elements will still take up space in the document.  The element must be removed
11732          * from the DOM using the 'remove' config option if desired.  This function automatically handles 
11733          * wrapping the element with a fixed-size container if needed.  See the Fx class overview for valid anchor point options.
11734          * Usage:
11735          *<pre><code>
11736 // default: slide the element out to the top
11737 el.slideOut();
11738
11739 // custom: slide the element out to the right with a 2-second duration
11740 el.slideOut('r', { duration: 2 });
11741
11742 // common config options shown with default values
11743 el.slideOut('t', {
11744     easing: 'easeOut',
11745     duration: .5,
11746     remove: false,
11747     useDisplay: false
11748 });
11749 </code></pre>
11750          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to top: 't')
11751          * @param {Object} options (optional) Object literal with any of the Fx config options
11752          * @return {Roo.Element} The Element
11753          */
11754     slideOut : function(anchor, o){
11755         var el = this.getFxEl();
11756         o = o || {};
11757
11758         el.queueFx(o, function(){
11759
11760             anchor = anchor || "t";
11761
11762             // restore values after effect
11763             var r = this.getFxRestore();
11764             
11765             var b = this.getBox();
11766             // fixed size for slide
11767             this.setSize(b);
11768
11769             // wrap if needed
11770             var wrap = this.fxWrap(r.pos, o, "visible");
11771
11772             var st = this.dom.style;
11773             st.visibility = "visible";
11774             st.position = "absolute";
11775
11776             wrap.setSize(b);
11777
11778             var after = function(){
11779                 if(o.useDisplay){
11780                     el.setDisplayed(false);
11781                 }else{
11782                     el.hide();
11783                 }
11784
11785                 el.fxUnwrap(wrap, r.pos, o);
11786
11787                 st.width = r.width;
11788                 st.height = r.height;
11789
11790                 el.afterFx(o);
11791             };
11792
11793             var a, zero = {to: 0};
11794             switch(anchor.toLowerCase()){
11795                 case "t":
11796                     st.left = st.bottom = "0";
11797                     a = {height: zero};
11798                 break;
11799                 case "l":
11800                     st.right = st.top = "0";
11801                     a = {width: zero};
11802                 break;
11803                 case "r":
11804                     st.left = st.top = "0";
11805                     a = {width: zero, points: {to:[b.right, b.y]}};
11806                 break;
11807                 case "b":
11808                     st.left = st.top = "0";
11809                     a = {height: zero, points: {to:[b.x, b.bottom]}};
11810                 break;
11811                 case "tl":
11812                     st.right = st.bottom = "0";
11813                     a = {width: zero, height: zero};
11814                 break;
11815                 case "bl":
11816                     st.right = st.top = "0";
11817                     a = {width: zero, height: zero, points: {to:[b.x, b.bottom]}};
11818                 break;
11819                 case "br":
11820                     st.left = st.top = "0";
11821                     a = {width: zero, height: zero, points: {to:[b.x+b.width, b.bottom]}};
11822                 break;
11823                 case "tr":
11824                     st.left = st.bottom = "0";
11825                     a = {width: zero, height: zero, points: {to:[b.right, b.y]}};
11826                 break;
11827             }
11828
11829             arguments.callee.anim = wrap.fxanim(a,
11830                 o,
11831                 'motion',
11832                 .5,
11833                 "easeOut", after);
11834         });
11835         return this;
11836     },
11837
11838         /**
11839          * Fades the element out while slowly expanding it in all directions.  When the effect is completed, the 
11840          * element will be hidden (visibility = 'hidden') but block elements will still take up space in the document. 
11841          * The element must be removed from the DOM using the 'remove' config option if desired.
11842          * Usage:
11843          *<pre><code>
11844 // default
11845 el.puff();
11846
11847 // common config options shown with default values
11848 el.puff({
11849     easing: 'easeOut',
11850     duration: .5,
11851     remove: false,
11852     useDisplay: false
11853 });
11854 </code></pre>
11855          * @param {Object} options (optional) Object literal with any of the Fx config options
11856          * @return {Roo.Element} The Element
11857          */
11858     puff : function(o){
11859         var el = this.getFxEl();
11860         o = o || {};
11861
11862         el.queueFx(o, function(){
11863             this.clearOpacity();
11864             this.show();
11865
11866             // restore values after effect
11867             var r = this.getFxRestore();
11868             var st = this.dom.style;
11869
11870             var after = function(){
11871                 if(o.useDisplay){
11872                     el.setDisplayed(false);
11873                 }else{
11874                     el.hide();
11875                 }
11876
11877                 el.clearOpacity();
11878
11879                 el.setPositioning(r.pos);
11880                 st.width = r.width;
11881                 st.height = r.height;
11882                 st.fontSize = '';
11883                 el.afterFx(o);
11884             };
11885
11886             var width = this.getWidth();
11887             var height = this.getHeight();
11888
11889             arguments.callee.anim = this.fxanim({
11890                     width : {to: this.adjustWidth(width * 2)},
11891                     height : {to: this.adjustHeight(height * 2)},
11892                     points : {by: [-(width * .5), -(height * .5)]},
11893                     opacity : {to: 0},
11894                     fontSize: {to:200, unit: "%"}
11895                 },
11896                 o,
11897                 'motion',
11898                 .5,
11899                 "easeOut", after);
11900         });
11901         return this;
11902     },
11903
11904         /**
11905          * Blinks the element as if it was clicked and then collapses on its center (similar to switching off a television).
11906          * When the effect is completed, the element will be hidden (visibility = 'hidden') but block elements will still 
11907          * take up space in the document. The element must be removed from the DOM using the 'remove' config option if desired.
11908          * Usage:
11909          *<pre><code>
11910 // default
11911 el.switchOff();
11912
11913 // all config options shown with default values
11914 el.switchOff({
11915     easing: 'easeIn',
11916     duration: .3,
11917     remove: false,
11918     useDisplay: false
11919 });
11920 </code></pre>
11921          * @param {Object} options (optional) Object literal with any of the Fx config options
11922          * @return {Roo.Element} The Element
11923          */
11924     switchOff : function(o){
11925         var el = this.getFxEl();
11926         o = o || {};
11927
11928         el.queueFx(o, function(){
11929             this.clearOpacity();
11930             this.clip();
11931
11932             // restore values after effect
11933             var r = this.getFxRestore();
11934             var st = this.dom.style;
11935
11936             var after = function(){
11937                 if(o.useDisplay){
11938                     el.setDisplayed(false);
11939                 }else{
11940                     el.hide();
11941                 }
11942
11943                 el.clearOpacity();
11944                 el.setPositioning(r.pos);
11945                 st.width = r.width;
11946                 st.height = r.height;
11947
11948                 el.afterFx(o);
11949             };
11950
11951             this.fxanim({opacity:{to:0.3}}, null, null, .1, null, function(){
11952                 this.clearOpacity();
11953                 (function(){
11954                     this.fxanim({
11955                         height:{to:1},
11956                         points:{by:[0, this.getHeight() * .5]}
11957                     }, o, 'motion', 0.3, 'easeIn', after);
11958                 }).defer(100, this);
11959             });
11960         });
11961         return this;
11962     },
11963
11964     /**
11965      * Highlights the Element by setting a color (applies to the background-color by default, but can be
11966      * changed using the "attr" config option) and then fading back to the original color. If no original
11967      * color is available, you should provide the "endColor" config option which will be cleared after the animation.
11968      * Usage:
11969 <pre><code>
11970 // default: highlight background to yellow
11971 el.highlight();
11972
11973 // custom: highlight foreground text to blue for 2 seconds
11974 el.highlight("0000ff", { attr: 'color', duration: 2 });
11975
11976 // common config options shown with default values
11977 el.highlight("ffff9c", {
11978     attr: "background-color", //can be any valid CSS property (attribute) that supports a color value
11979     endColor: (current color) or "ffffff",
11980     easing: 'easeIn',
11981     duration: 1
11982 });
11983 </code></pre>
11984      * @param {String} color (optional) The highlight color. Should be a 6 char hex color without the leading # (defaults to yellow: 'ffff9c')
11985      * @param {Object} options (optional) Object literal with any of the Fx config options
11986      * @return {Roo.Element} The Element
11987      */ 
11988     highlight : function(color, o){
11989         var el = this.getFxEl();
11990         o = o || {};
11991
11992         el.queueFx(o, function(){
11993             color = color || "ffff9c";
11994             attr = o.attr || "backgroundColor";
11995
11996             this.clearOpacity();
11997             this.show();
11998
11999             var origColor = this.getColor(attr);
12000             var restoreColor = this.dom.style[attr];
12001             endColor = (o.endColor || origColor) || "ffffff";
12002
12003             var after = function(){
12004                 el.dom.style[attr] = restoreColor;
12005                 el.afterFx(o);
12006             };
12007
12008             var a = {};
12009             a[attr] = {from: color, to: endColor};
12010             arguments.callee.anim = this.fxanim(a,
12011                 o,
12012                 'color',
12013                 1,
12014                 'easeIn', after);
12015         });
12016         return this;
12017     },
12018
12019    /**
12020     * Shows a ripple of exploding, attenuating borders to draw attention to an Element.
12021     * Usage:
12022 <pre><code>
12023 // default: a single light blue ripple
12024 el.frame();
12025
12026 // custom: 3 red ripples lasting 3 seconds total
12027 el.frame("ff0000", 3, { duration: 3 });
12028
12029 // common config options shown with default values
12030 el.frame("C3DAF9", 1, {
12031     duration: 1 //duration of entire animation (not each individual ripple)
12032     // Note: Easing is not configurable and will be ignored if included
12033 });
12034 </code></pre>
12035     * @param {String} color (optional) The color of the border.  Should be a 6 char hex color without the leading # (defaults to light blue: 'C3DAF9').
12036     * @param {Number} count (optional) The number of ripples to display (defaults to 1)
12037     * @param {Object} options (optional) Object literal with any of the Fx config options
12038     * @return {Roo.Element} The Element
12039     */
12040     frame : function(color, count, o){
12041         var el = this.getFxEl();
12042         o = o || {};
12043
12044         el.queueFx(o, function(){
12045             color = color || "#C3DAF9";
12046             if(color.length == 6){
12047                 color = "#" + color;
12048             }
12049             count = count || 1;
12050             duration = o.duration || 1;
12051             this.show();
12052
12053             var b = this.getBox();
12054             var animFn = function(){
12055                 var proxy = this.createProxy({
12056
12057                      style:{
12058                         visbility:"hidden",
12059                         position:"absolute",
12060                         "z-index":"35000", // yee haw
12061                         border:"0px solid " + color
12062                      }
12063                   });
12064                 var scale = Roo.isBorderBox ? 2 : 1;
12065                 proxy.animate({
12066                     top:{from:b.y, to:b.y - 20},
12067                     left:{from:b.x, to:b.x - 20},
12068                     borderWidth:{from:0, to:10},
12069                     opacity:{from:1, to:0},
12070                     height:{from:b.height, to:(b.height + (20*scale))},
12071                     width:{from:b.width, to:(b.width + (20*scale))}
12072                 }, duration, function(){
12073                     proxy.remove();
12074                 });
12075                 if(--count > 0){
12076                      animFn.defer((duration/2)*1000, this);
12077                 }else{
12078                     el.afterFx(o);
12079                 }
12080             };
12081             animFn.call(this);
12082         });
12083         return this;
12084     },
12085
12086    /**
12087     * Creates a pause before any subsequent queued effects begin.  If there are
12088     * no effects queued after the pause it will have no effect.
12089     * Usage:
12090 <pre><code>
12091 el.pause(1);
12092 </code></pre>
12093     * @param {Number} seconds The length of time to pause (in seconds)
12094     * @return {Roo.Element} The Element
12095     */
12096     pause : function(seconds){
12097         var el = this.getFxEl();
12098         var o = {};
12099
12100         el.queueFx(o, function(){
12101             setTimeout(function(){
12102                 el.afterFx(o);
12103             }, seconds * 1000);
12104         });
12105         return this;
12106     },
12107
12108    /**
12109     * Fade an element in (from transparent to opaque).  The ending opacity can be specified
12110     * using the "endOpacity" config option.
12111     * Usage:
12112 <pre><code>
12113 // default: fade in from opacity 0 to 100%
12114 el.fadeIn();
12115
12116 // custom: fade in from opacity 0 to 75% over 2 seconds
12117 el.fadeIn({ endOpacity: .75, duration: 2});
12118
12119 // common config options shown with default values
12120 el.fadeIn({
12121     endOpacity: 1, //can be any value between 0 and 1 (e.g. .5)
12122     easing: 'easeOut',
12123     duration: .5
12124 });
12125 </code></pre>
12126     * @param {Object} options (optional) Object literal with any of the Fx config options
12127     * @return {Roo.Element} The Element
12128     */
12129     fadeIn : function(o){
12130         var el = this.getFxEl();
12131         o = o || {};
12132         el.queueFx(o, function(){
12133             this.setOpacity(0);
12134             this.fixDisplay();
12135             this.dom.style.visibility = 'visible';
12136             var to = o.endOpacity || 1;
12137             arguments.callee.anim = this.fxanim({opacity:{to:to}},
12138                 o, null, .5, "easeOut", function(){
12139                 if(to == 1){
12140                     this.clearOpacity();
12141                 }
12142                 el.afterFx(o);
12143             });
12144         });
12145         return this;
12146     },
12147
12148    /**
12149     * Fade an element out (from opaque to transparent).  The ending opacity can be specified
12150     * using the "endOpacity" config option.
12151     * Usage:
12152 <pre><code>
12153 // default: fade out from the element's current opacity to 0
12154 el.fadeOut();
12155
12156 // custom: fade out from the element's current opacity to 25% over 2 seconds
12157 el.fadeOut({ endOpacity: .25, duration: 2});
12158
12159 // common config options shown with default values
12160 el.fadeOut({
12161     endOpacity: 0, //can be any value between 0 and 1 (e.g. .5)
12162     easing: 'easeOut',
12163     duration: .5
12164     remove: false,
12165     useDisplay: false
12166 });
12167 </code></pre>
12168     * @param {Object} options (optional) Object literal with any of the Fx config options
12169     * @return {Roo.Element} The Element
12170     */
12171     fadeOut : function(o){
12172         var el = this.getFxEl();
12173         o = o || {};
12174         el.queueFx(o, function(){
12175             arguments.callee.anim = this.fxanim({opacity:{to:o.endOpacity || 0}},
12176                 o, null, .5, "easeOut", function(){
12177                 if(this.visibilityMode == Roo.Element.DISPLAY || o.useDisplay){
12178                      this.dom.style.display = "none";
12179                 }else{
12180                      this.dom.style.visibility = "hidden";
12181                 }
12182                 this.clearOpacity();
12183                 el.afterFx(o);
12184             });
12185         });
12186         return this;
12187     },
12188
12189    /**
12190     * Animates the transition of an element's dimensions from a starting height/width
12191     * to an ending height/width.
12192     * Usage:
12193 <pre><code>
12194 // change height and width to 100x100 pixels
12195 el.scale(100, 100);
12196
12197 // common config options shown with default values.  The height and width will default to
12198 // the element's existing values if passed as null.
12199 el.scale(
12200     [element's width],
12201     [element's height], {
12202     easing: 'easeOut',
12203     duration: .35
12204 });
12205 </code></pre>
12206     * @param {Number} width  The new width (pass undefined to keep the original width)
12207     * @param {Number} height  The new height (pass undefined to keep the original height)
12208     * @param {Object} options (optional) Object literal with any of the Fx config options
12209     * @return {Roo.Element} The Element
12210     */
12211     scale : function(w, h, o){
12212         this.shift(Roo.apply({}, o, {
12213             width: w,
12214             height: h
12215         }));
12216         return this;
12217     },
12218
12219    /**
12220     * Animates the transition of any combination of an element's dimensions, xy position and/or opacity.
12221     * Any of these properties not specified in the config object will not be changed.  This effect 
12222     * requires that at least one new dimension, position or opacity setting must be passed in on
12223     * the config object in order for the function to have any effect.
12224     * Usage:
12225 <pre><code>
12226 // slide the element horizontally to x position 200 while changing the height and opacity
12227 el.shift({ x: 200, height: 50, opacity: .8 });
12228
12229 // common config options shown with default values.
12230 el.shift({
12231     width: [element's width],
12232     height: [element's height],
12233     x: [element's x position],
12234     y: [element's y position],
12235     opacity: [element's opacity],
12236     easing: 'easeOut',
12237     duration: .35
12238 });
12239 </code></pre>
12240     * @param {Object} options  Object literal with any of the Fx config options
12241     * @return {Roo.Element} The Element
12242     */
12243     shift : function(o){
12244         var el = this.getFxEl();
12245         o = o || {};
12246         el.queueFx(o, function(){
12247             var a = {}, w = o.width, h = o.height, x = o.x, y = o.y,  op = o.opacity;
12248             if(w !== undefined){
12249                 a.width = {to: this.adjustWidth(w)};
12250             }
12251             if(h !== undefined){
12252                 a.height = {to: this.adjustHeight(h)};
12253             }
12254             if(x !== undefined || y !== undefined){
12255                 a.points = {to: [
12256                     x !== undefined ? x : this.getX(),
12257                     y !== undefined ? y : this.getY()
12258                 ]};
12259             }
12260             if(op !== undefined){
12261                 a.opacity = {to: op};
12262             }
12263             if(o.xy !== undefined){
12264                 a.points = {to: o.xy};
12265             }
12266             arguments.callee.anim = this.fxanim(a,
12267                 o, 'motion', .35, "easeOut", function(){
12268                 el.afterFx(o);
12269             });
12270         });
12271         return this;
12272     },
12273
12274         /**
12275          * Slides the element while fading it out of view.  An anchor point can be optionally passed to set the 
12276          * ending point of the effect.
12277          * Usage:
12278          *<pre><code>
12279 // default: slide the element downward while fading out
12280 el.ghost();
12281
12282 // custom: slide the element out to the right with a 2-second duration
12283 el.ghost('r', { duration: 2 });
12284
12285 // common config options shown with default values
12286 el.ghost('b', {
12287     easing: 'easeOut',
12288     duration: .5
12289     remove: false,
12290     useDisplay: false
12291 });
12292 </code></pre>
12293          * @param {String} anchor (optional) One of the valid Fx anchor positions (defaults to bottom: 'b')
12294          * @param {Object} options (optional) Object literal with any of the Fx config options
12295          * @return {Roo.Element} The Element
12296          */
12297     ghost : function(anchor, o){
12298         var el = this.getFxEl();
12299         o = o || {};
12300
12301         el.queueFx(o, function(){
12302             anchor = anchor || "b";
12303
12304             // restore values after effect
12305             var r = this.getFxRestore();
12306             var w = this.getWidth(),
12307                 h = this.getHeight();
12308
12309             var st = this.dom.style;
12310
12311             var after = function(){
12312                 if(o.useDisplay){
12313                     el.setDisplayed(false);
12314                 }else{
12315                     el.hide();
12316                 }
12317
12318                 el.clearOpacity();
12319                 el.setPositioning(r.pos);
12320                 st.width = r.width;
12321                 st.height = r.height;
12322
12323                 el.afterFx(o);
12324             };
12325
12326             var a = {opacity: {to: 0}, points: {}}, pt = a.points;
12327             switch(anchor.toLowerCase()){
12328                 case "t":
12329                     pt.by = [0, -h];
12330                 break;
12331                 case "l":
12332                     pt.by = [-w, 0];
12333                 break;
12334                 case "r":
12335                     pt.by = [w, 0];
12336                 break;
12337                 case "b":
12338                     pt.by = [0, h];
12339                 break;
12340                 case "tl":
12341                     pt.by = [-w, -h];
12342                 break;
12343                 case "bl":
12344                     pt.by = [-w, h];
12345                 break;
12346                 case "br":
12347                     pt.by = [w, h];
12348                 break;
12349                 case "tr":
12350                     pt.by = [w, -h];
12351                 break;
12352             }
12353
12354             arguments.callee.anim = this.fxanim(a,
12355                 o,
12356                 'motion',
12357                 .5,
12358                 "easeOut", after);
12359         });
12360         return this;
12361     },
12362
12363         /**
12364          * Ensures that all effects queued after syncFx is called on the element are
12365          * run concurrently.  This is the opposite of {@link #sequenceFx}.
12366          * @return {Roo.Element} The Element
12367          */
12368     syncFx : function(){
12369         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
12370             block : false,
12371             concurrent : true,
12372             stopFx : false
12373         });
12374         return this;
12375     },
12376
12377         /**
12378          * Ensures that all effects queued after sequenceFx is called on the element are
12379          * run in sequence.  This is the opposite of {@link #syncFx}.
12380          * @return {Roo.Element} The Element
12381          */
12382     sequenceFx : function(){
12383         this.fxDefaults = Roo.apply(this.fxDefaults || {}, {
12384             block : false,
12385             concurrent : false,
12386             stopFx : false
12387         });
12388         return this;
12389     },
12390
12391         /* @private */
12392     nextFx : function(){
12393         var ef = this.fxQueue[0];
12394         if(ef){
12395             ef.call(this);
12396         }
12397     },
12398
12399         /**
12400          * Returns true if the element has any effects actively running or queued, else returns false.
12401          * @return {Boolean} True if element has active effects, else false
12402          */
12403     hasActiveFx : function(){
12404         return this.fxQueue && this.fxQueue[0];
12405     },
12406
12407         /**
12408          * Stops any running effects and clears the element's internal effects queue if it contains
12409          * any additional effects that haven't started yet.
12410          * @return {Roo.Element} The Element
12411          */
12412     stopFx : function(){
12413         if(this.hasActiveFx()){
12414             var cur = this.fxQueue[0];
12415             if(cur && cur.anim && cur.anim.isAnimated()){
12416                 this.fxQueue = [cur]; // clear out others
12417                 cur.anim.stop(true);
12418             }
12419         }
12420         return this;
12421     },
12422
12423         /* @private */
12424     beforeFx : function(o){
12425         if(this.hasActiveFx() && !o.concurrent){
12426            if(o.stopFx){
12427                this.stopFx();
12428                return true;
12429            }
12430            return false;
12431         }
12432         return true;
12433     },
12434
12435         /**
12436          * Returns true if the element is currently blocking so that no other effect can be queued
12437          * until this effect is finished, else returns false if blocking is not set.  This is commonly
12438          * used to ensure that an effect initiated by a user action runs to completion prior to the
12439          * same effect being restarted (e.g., firing only one effect even if the user clicks several times).
12440          * @return {Boolean} True if blocking, else false
12441          */
12442     hasFxBlock : function(){
12443         var q = this.fxQueue;
12444         return q && q[0] && q[0].block;
12445     },
12446
12447         /* @private */
12448     queueFx : function(o, fn){
12449         if(!this.fxQueue){
12450             this.fxQueue = [];
12451         }
12452         if(!this.hasFxBlock()){
12453             Roo.applyIf(o, this.fxDefaults);
12454             if(!o.concurrent){
12455                 var run = this.beforeFx(o);
12456                 fn.block = o.block;
12457                 this.fxQueue.push(fn);
12458                 if(run){
12459                     this.nextFx();
12460                 }
12461             }else{
12462                 fn.call(this);
12463             }
12464         }
12465         return this;
12466     },
12467
12468         /* @private */
12469     fxWrap : function(pos, o, vis){
12470         var wrap;
12471         if(!o.wrap || !(wrap = Roo.get(o.wrap))){
12472             var wrapXY;
12473             if(o.fixPosition){
12474                 wrapXY = this.getXY();
12475             }
12476             var div = document.createElement("div");
12477             div.style.visibility = vis;
12478             wrap = Roo.get(this.dom.parentNode.insertBefore(div, this.dom));
12479             wrap.setPositioning(pos);
12480             if(wrap.getStyle("position") == "static"){
12481                 wrap.position("relative");
12482             }
12483             this.clearPositioning('auto');
12484             wrap.clip();
12485             wrap.dom.appendChild(this.dom);
12486             if(wrapXY){
12487                 wrap.setXY(wrapXY);
12488             }
12489         }
12490         return wrap;
12491     },
12492
12493         /* @private */
12494     fxUnwrap : function(wrap, pos, o){
12495         this.clearPositioning();
12496         this.setPositioning(pos);
12497         if(!o.wrap){
12498             wrap.dom.parentNode.insertBefore(this.dom, wrap.dom);
12499             wrap.remove();
12500         }
12501     },
12502
12503         /* @private */
12504     getFxRestore : function(){
12505         var st = this.dom.style;
12506         return {pos: this.getPositioning(), width: st.width, height : st.height};
12507     },
12508
12509         /* @private */
12510     afterFx : function(o){
12511         if(o.afterStyle){
12512             this.applyStyles(o.afterStyle);
12513         }
12514         if(o.afterCls){
12515             this.addClass(o.afterCls);
12516         }
12517         if(o.remove === true){
12518             this.remove();
12519         }
12520         Roo.callback(o.callback, o.scope, [this]);
12521         if(!o.concurrent){
12522             this.fxQueue.shift();
12523             this.nextFx();
12524         }
12525     },
12526
12527         /* @private */
12528     getFxEl : function(){ // support for composite element fx
12529         return Roo.get(this.dom);
12530     },
12531
12532         /* @private */
12533     fxanim : function(args, opt, animType, defaultDur, defaultEase, cb){
12534         animType = animType || 'run';
12535         opt = opt || {};
12536         var anim = Roo.lib.Anim[animType](
12537             this.dom, args,
12538             (opt.duration || defaultDur) || .35,
12539             (opt.easing || defaultEase) || 'easeOut',
12540             function(){
12541                 Roo.callback(cb, this);
12542             },
12543             this
12544         );
12545         opt.anim = anim;
12546         return anim;
12547     }
12548 };
12549
12550 // backwords compat
12551 Roo.Fx.resize = Roo.Fx.scale;
12552
12553 //When included, Roo.Fx is automatically applied to Element so that all basic
12554 //effects are available directly via the Element API
12555 Roo.apply(Roo.Element.prototype, Roo.Fx);/*
12556  * Based on:
12557  * Ext JS Library 1.1.1
12558  * Copyright(c) 2006-2007, Ext JS, LLC.
12559  *
12560  * Originally Released Under LGPL - original licence link has changed is not relivant.
12561  *
12562  * Fork - LGPL
12563  * <script type="text/javascript">
12564  */
12565
12566
12567 /**
12568  * @class Roo.CompositeElement
12569  * Standard composite class. Creates a Roo.Element for every element in the collection.
12570  * <br><br>
12571  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
12572  * actions will be performed on all the elements in this collection.</b>
12573  * <br><br>
12574  * All methods return <i>this</i> and can be chained.
12575  <pre><code>
12576  var els = Roo.select("#some-el div.some-class", true);
12577  // or select directly from an existing element
12578  var el = Roo.get('some-el');
12579  el.select('div.some-class', true);
12580
12581  els.setWidth(100); // all elements become 100 width
12582  els.hide(true); // all elements fade out and hide
12583  // or
12584  els.setWidth(100).hide(true);
12585  </code></pre>
12586  */
12587 Roo.CompositeElement = function(els){
12588     this.elements = [];
12589     this.addElements(els);
12590 };
12591 Roo.CompositeElement.prototype = {
12592     isComposite: true,
12593     addElements : function(els){
12594         if(!els) {
12595             return this;
12596         }
12597         if(typeof els == "string"){
12598             els = Roo.Element.selectorFunction(els);
12599         }
12600         var yels = this.elements;
12601         var index = yels.length-1;
12602         for(var i = 0, len = els.length; i < len; i++) {
12603                 yels[++index] = Roo.get(els[i]);
12604         }
12605         return this;
12606     },
12607
12608     /**
12609     * Clears this composite and adds the elements returned by the passed selector.
12610     * @param {String/Array} els A string CSS selector, an array of elements or an element
12611     * @return {CompositeElement} this
12612     */
12613     fill : function(els){
12614         this.elements = [];
12615         this.add(els);
12616         return this;
12617     },
12618
12619     /**
12620     * Filters this composite to only elements that match the passed selector.
12621     * @param {String} selector A string CSS selector
12622     * @param {Boolean} inverse return inverse filter (not matches)
12623     * @return {CompositeElement} this
12624     */
12625     filter : function(selector, inverse){
12626         var els = [];
12627         inverse = inverse || false;
12628         this.each(function(el){
12629             var match = inverse ? !el.is(selector) : el.is(selector);
12630             if(match){
12631                 els[els.length] = el.dom;
12632             }
12633         });
12634         this.fill(els);
12635         return this;
12636     },
12637
12638     invoke : function(fn, args){
12639         var els = this.elements;
12640         for(var i = 0, len = els.length; i < len; i++) {
12641                 Roo.Element.prototype[fn].apply(els[i], args);
12642         }
12643         return this;
12644     },
12645     /**
12646     * Adds elements to this composite.
12647     * @param {String/Array} els A string CSS selector, an array of elements or an element
12648     * @return {CompositeElement} this
12649     */
12650     add : function(els){
12651         if(typeof els == "string"){
12652             this.addElements(Roo.Element.selectorFunction(els));
12653         }else if(els.length !== undefined){
12654             this.addElements(els);
12655         }else{
12656             this.addElements([els]);
12657         }
12658         return this;
12659     },
12660     /**
12661     * Calls the passed function passing (el, this, index) for each element in this composite.
12662     * @param {Function} fn The function to call
12663     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
12664     * @return {CompositeElement} this
12665     */
12666     each : function(fn, scope){
12667         var els = this.elements;
12668         for(var i = 0, len = els.length; i < len; i++){
12669             if(fn.call(scope || els[i], els[i], this, i) === false) {
12670                 break;
12671             }
12672         }
12673         return this;
12674     },
12675
12676     /**
12677      * Returns the Element object at the specified index
12678      * @param {Number} index
12679      * @return {Roo.Element}
12680      */
12681     item : function(index){
12682         return this.elements[index] || null;
12683     },
12684
12685     /**
12686      * Returns the first Element
12687      * @return {Roo.Element}
12688      */
12689     first : function(){
12690         return this.item(0);
12691     },
12692
12693     /**
12694      * Returns the last Element
12695      * @return {Roo.Element}
12696      */
12697     last : function(){
12698         return this.item(this.elements.length-1);
12699     },
12700
12701     /**
12702      * Returns the number of elements in this composite
12703      * @return Number
12704      */
12705     getCount : function(){
12706         return this.elements.length;
12707     },
12708
12709     /**
12710      * Returns true if this composite contains the passed element
12711      * @return Boolean
12712      */
12713     contains : function(el){
12714         return this.indexOf(el) !== -1;
12715     },
12716
12717     /**
12718      * Returns true if this composite contains the passed element
12719      * @return Boolean
12720      */
12721     indexOf : function(el){
12722         return this.elements.indexOf(Roo.get(el));
12723     },
12724
12725
12726     /**
12727     * Removes the specified element(s).
12728     * @param {Mixed} el The id of an element, the Element itself, the index of the element in this composite
12729     * or an array of any of those.
12730     * @param {Boolean} removeDom (optional) True to also remove the element from the document
12731     * @return {CompositeElement} this
12732     */
12733     removeElement : function(el, removeDom){
12734         if(el instanceof Array){
12735             for(var i = 0, len = el.length; i < len; i++){
12736                 this.removeElement(el[i]);
12737             }
12738             return this;
12739         }
12740         var index = typeof el == 'number' ? el : this.indexOf(el);
12741         if(index !== -1){
12742             if(removeDom){
12743                 var d = this.elements[index];
12744                 if(d.dom){
12745                     d.remove();
12746                 }else{
12747                     d.parentNode.removeChild(d);
12748                 }
12749             }
12750             this.elements.splice(index, 1);
12751         }
12752         return this;
12753     },
12754
12755     /**
12756     * Replaces the specified element with the passed element.
12757     * @param {String/HTMLElement/Element/Number} el The id of an element, the Element itself, the index of the element in this composite
12758     * to replace.
12759     * @param {String/HTMLElement/Element} replacement The id of an element or the Element itself.
12760     * @param {Boolean} domReplace (Optional) True to remove and replace the element in the document too.
12761     * @return {CompositeElement} this
12762     */
12763     replaceElement : function(el, replacement, domReplace){
12764         var index = typeof el == 'number' ? el : this.indexOf(el);
12765         if(index !== -1){
12766             if(domReplace){
12767                 this.elements[index].replaceWith(replacement);
12768             }else{
12769                 this.elements.splice(index, 1, Roo.get(replacement))
12770             }
12771         }
12772         return this;
12773     },
12774
12775     /**
12776      * Removes all elements.
12777      */
12778     clear : function(){
12779         this.elements = [];
12780     }
12781 };
12782 (function(){
12783     Roo.CompositeElement.createCall = function(proto, fnName){
12784         if(!proto[fnName]){
12785             proto[fnName] = function(){
12786                 return this.invoke(fnName, arguments);
12787             };
12788         }
12789     };
12790     for(var fnName in Roo.Element.prototype){
12791         if(typeof Roo.Element.prototype[fnName] == "function"){
12792             Roo.CompositeElement.createCall(Roo.CompositeElement.prototype, fnName);
12793         }
12794     };
12795 })();
12796 /*
12797  * Based on:
12798  * Ext JS Library 1.1.1
12799  * Copyright(c) 2006-2007, Ext JS, LLC.
12800  *
12801  * Originally Released Under LGPL - original licence link has changed is not relivant.
12802  *
12803  * Fork - LGPL
12804  * <script type="text/javascript">
12805  */
12806
12807 /**
12808  * @class Roo.CompositeElementLite
12809  * @extends Roo.CompositeElement
12810  * Flyweight composite class. Reuses the same Roo.Element for element operations.
12811  <pre><code>
12812  var els = Roo.select("#some-el div.some-class");
12813  // or select directly from an existing element
12814  var el = Roo.get('some-el');
12815  el.select('div.some-class');
12816
12817  els.setWidth(100); // all elements become 100 width
12818  els.hide(true); // all elements fade out and hide
12819  // or
12820  els.setWidth(100).hide(true);
12821  </code></pre><br><br>
12822  * <b>NOTE: Although they are not listed, this class supports all of the set/update methods of Roo.Element. All Roo.Element
12823  * actions will be performed on all the elements in this collection.</b>
12824  */
12825 Roo.CompositeElementLite = function(els){
12826     Roo.CompositeElementLite.superclass.constructor.call(this, els);
12827     this.el = new Roo.Element.Flyweight();
12828 };
12829 Roo.extend(Roo.CompositeElementLite, Roo.CompositeElement, {
12830     addElements : function(els){
12831         if(els){
12832             if(els instanceof Array){
12833                 this.elements = this.elements.concat(els);
12834             }else{
12835                 var yels = this.elements;
12836                 var index = yels.length-1;
12837                 for(var i = 0, len = els.length; i < len; i++) {
12838                     yels[++index] = els[i];
12839                 }
12840             }
12841         }
12842         return this;
12843     },
12844     invoke : function(fn, args){
12845         var els = this.elements;
12846         var el = this.el;
12847         for(var i = 0, len = els.length; i < len; i++) {
12848             el.dom = els[i];
12849                 Roo.Element.prototype[fn].apply(el, args);
12850         }
12851         return this;
12852     },
12853     /**
12854      * Returns a flyweight Element of the dom element object at the specified index
12855      * @param {Number} index
12856      * @return {Roo.Element}
12857      */
12858     item : function(index){
12859         if(!this.elements[index]){
12860             return null;
12861         }
12862         this.el.dom = this.elements[index];
12863         return this.el;
12864     },
12865
12866     // fixes scope with flyweight
12867     addListener : function(eventName, handler, scope, opt){
12868         var els = this.elements;
12869         for(var i = 0, len = els.length; i < len; i++) {
12870             Roo.EventManager.on(els[i], eventName, handler, scope || els[i], opt);
12871         }
12872         return this;
12873     },
12874
12875     /**
12876     * Calls the passed function passing (el, this, index) for each element in this composite. <b>The element
12877     * passed is the flyweight (shared) Roo.Element instance, so if you require a
12878     * a reference to the dom node, use el.dom.</b>
12879     * @param {Function} fn The function to call
12880     * @param {Object} scope (optional) The <i>this</i> object (defaults to the element)
12881     * @return {CompositeElement} this
12882     */
12883     each : function(fn, scope){
12884         var els = this.elements;
12885         var el = this.el;
12886         for(var i = 0, len = els.length; i < len; i++){
12887             el.dom = els[i];
12888                 if(fn.call(scope || el, el, this, i) === false){
12889                 break;
12890             }
12891         }
12892         return this;
12893     },
12894
12895     indexOf : function(el){
12896         return this.elements.indexOf(Roo.getDom(el));
12897     },
12898
12899     replaceElement : function(el, replacement, domReplace){
12900         var index = typeof el == 'number' ? el : this.indexOf(el);
12901         if(index !== -1){
12902             replacement = Roo.getDom(replacement);
12903             if(domReplace){
12904                 var d = this.elements[index];
12905                 d.parentNode.insertBefore(replacement, d);
12906                 d.parentNode.removeChild(d);
12907             }
12908             this.elements.splice(index, 1, replacement);
12909         }
12910         return this;
12911     }
12912 });
12913 Roo.CompositeElementLite.prototype.on = Roo.CompositeElementLite.prototype.addListener;
12914
12915 /*
12916  * Based on:
12917  * Ext JS Library 1.1.1
12918  * Copyright(c) 2006-2007, Ext JS, LLC.
12919  *
12920  * Originally Released Under LGPL - original licence link has changed is not relivant.
12921  *
12922  * Fork - LGPL
12923  * <script type="text/javascript">
12924  */
12925
12926  
12927
12928 /**
12929  * @class Roo.data.Connection
12930  * @extends Roo.util.Observable
12931  * The class encapsulates a connection to the page's originating domain, allowing requests to be made
12932  * either to a configured URL, or to a URL specified at request time. 
12933  * 
12934  * Requests made by this class are asynchronous, and will return immediately. No data from
12935  * the server will be available to the statement immediately following the {@link #request} call.
12936  * To process returned data, use a callback in the request options object, or an event listener.
12937  * 
12938  * Note: If you are doing a file upload, you will not get a normal response object sent back to
12939  * your callback or event handler.  Since the upload is handled via in IFRAME, there is no XMLHttpRequest.
12940  * The response object is created using the innerHTML of the IFRAME's document as the responseText
12941  * property and, if present, the IFRAME's XML document as the responseXML property.
12942  * 
12943  * This means that a valid XML or HTML document must be returned. If JSON data is required, it is suggested
12944  * that it be placed either inside a &lt;textarea> in an HTML document and retrieved from the responseText
12945  * using a regex, or inside a CDATA section in an XML document and retrieved from the responseXML using
12946  * standard DOM methods.
12947  * @constructor
12948  * @param {Object} config a configuration object.
12949  */
12950 Roo.data.Connection = function(config){
12951     Roo.apply(this, config);
12952     this.addEvents({
12953         /**
12954          * @event beforerequest
12955          * Fires before a network request is made to retrieve a data object.
12956          * @param {Connection} conn This Connection object.
12957          * @param {Object} options The options config object passed to the {@link #request} method.
12958          */
12959         "beforerequest" : true,
12960         /**
12961          * @event requestcomplete
12962          * Fires if the request was successfully completed.
12963          * @param {Connection} conn This Connection object.
12964          * @param {Object} response The XHR object containing the response data.
12965          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
12966          * @param {Object} options The options config object passed to the {@link #request} method.
12967          */
12968         "requestcomplete" : true,
12969         /**
12970          * @event requestexception
12971          * Fires if an error HTTP status was returned from the server.
12972          * See {@link http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html} for details of HTTP status codes.
12973          * @param {Connection} conn This Connection object.
12974          * @param {Object} response The XHR object containing the response data.
12975          * See {@link http://www.w3.org/TR/XMLHttpRequest/} for details.
12976          * @param {Object} options The options config object passed to the {@link #request} method.
12977          */
12978         "requestexception" : true
12979     });
12980     Roo.data.Connection.superclass.constructor.call(this);
12981 };
12982
12983 Roo.extend(Roo.data.Connection, Roo.util.Observable, {
12984     /**
12985      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
12986      */
12987     /**
12988      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
12989      * extra parameters to each request made by this object. (defaults to undefined)
12990      */
12991     /**
12992      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
12993      *  to each request made by this object. (defaults to undefined)
12994      */
12995     /**
12996      * @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)
12997      */
12998     /**
12999      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
13000      */
13001     timeout : 30000,
13002     /**
13003      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
13004      * @type Boolean
13005      */
13006     autoAbort:false,
13007
13008     /**
13009      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
13010      * @type Boolean
13011      */
13012     disableCaching: true,
13013
13014     /**
13015      * Sends an HTTP request to a remote server.
13016      * @param {Object} options An object which may contain the following properties:<ul>
13017      * <li><b>url</b> {String} (Optional) The URL to which to send the request. Defaults to configured URL</li>
13018      * <li><b>params</b> {Object/String/Function} (Optional) An object containing properties which are used as parameters to the
13019      * request, a url encoded string or a function to call to get either.</li>
13020      * <li><b>method</b> {String} (Optional) The HTTP method to use for the request. Defaults to the configured method, or
13021      * if no method was configured, "GET" if no parameters are being sent, and "POST" if parameters are being sent.</li>
13022      * <li><b>callback</b> {Function} (Optional) The function to be called upon receipt of the HTTP response.
13023      * The callback is called regardless of success or failure and is passed the following parameters:<ul>
13024      * <li>options {Object} The parameter to the request call.</li>
13025      * <li>success {Boolean} True if the request succeeded.</li>
13026      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
13027      * </ul></li>
13028      * <li><b>success</b> {Function} (Optional) The function to be called upon success of the request.
13029      * The callback is passed the following parameters:<ul>
13030      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
13031      * <li>options {Object} The parameter to the request call.</li>
13032      * </ul></li>
13033      * <li><b>failure</b> {Function} (Optional) The function to be called upon failure of the request.
13034      * The callback is passed the following parameters:<ul>
13035      * <li>response {Object} The XMLHttpRequest object containing the response data.</li>
13036      * <li>options {Object} The parameter to the request call.</li>
13037      * </ul></li>
13038      * <li><b>scope</b> {Object} (Optional) The scope in which to execute the callbacks: The "this" object
13039      * for the callback function. Defaults to the browser window.</li>
13040      * <li><b>form</b> {Object/String} (Optional) A form object or id to pull parameters from.</li>
13041      * <li><b>isUpload</b> {Boolean} (Optional) True if the form object is a file upload (will usually be automatically detected).</li>
13042      * <li><b>headers</b> {Object} (Optional) Request headers to set for the request.</li>
13043      * <li><b>xmlData</b> {Object} (Optional) XML document to use for the post. Note: This will be used instead of
13044      * params for the post data. Any params will be appended to the URL.</li>
13045      * <li><b>disableCaching</b> {Boolean} (Optional) True to add a unique cache-buster param to GET requests.</li>
13046      * </ul>
13047      * @return {Number} transactionId
13048      */
13049     request : function(o){
13050         if(this.fireEvent("beforerequest", this, o) !== false){
13051             var p = o.params;
13052
13053             if(typeof p == "function"){
13054                 p = p.call(o.scope||window, o);
13055             }
13056             if(typeof p == "object"){
13057                 p = Roo.urlEncode(o.params);
13058             }
13059             if(this.extraParams){
13060                 var extras = Roo.urlEncode(this.extraParams);
13061                 p = p ? (p + '&' + extras) : extras;
13062             }
13063
13064             var url = o.url || this.url;
13065             if(typeof url == 'function'){
13066                 url = url.call(o.scope||window, o);
13067             }
13068
13069             if(o.form){
13070                 var form = Roo.getDom(o.form);
13071                 url = url || form.action;
13072
13073                 var enctype = form.getAttribute("enctype");
13074                 
13075                 if (o.formData) {
13076                     return this.doFormDataUpload(o, url);
13077                 }
13078                 
13079                 if(o.isUpload || (enctype && enctype.toLowerCase() == 'multipart/form-data')){
13080                     return this.doFormUpload(o, p, url);
13081                 }
13082                 var f = Roo.lib.Ajax.serializeForm(form);
13083                 p = p ? (p + '&' + f) : f;
13084             }
13085             
13086             if (!o.form && o.formData) {
13087                 o.formData = o.formData === true ? new FormData() : o.formData;
13088                 for (var k in o.params) {
13089                     o.formData.append(k,o.params[k]);
13090                 }
13091                     
13092                 return this.doFormDataUpload(o, url);
13093             }
13094             
13095
13096             var hs = o.headers;
13097             if(this.defaultHeaders){
13098                 hs = Roo.apply(hs || {}, this.defaultHeaders);
13099                 if(!o.headers){
13100                     o.headers = hs;
13101                 }
13102             }
13103
13104             var cb = {
13105                 success: this.handleResponse,
13106                 failure: this.handleFailure,
13107                 scope: this,
13108                 argument: {options: o},
13109                 timeout : o.timeout || this.timeout
13110             };
13111
13112             var method = o.method||this.method||(p ? "POST" : "GET");
13113
13114             if(method == 'GET' && (this.disableCaching && o.disableCaching !== false) || o.disableCaching === true){
13115                 url += (url.indexOf('?') != -1 ? '&' : '?') + '_dc=' + (new Date().getTime());
13116             }
13117
13118             if(typeof o.autoAbort == 'boolean'){ // options gets top priority
13119                 if(o.autoAbort){
13120                     this.abort();
13121                 }
13122             }else if(this.autoAbort !== false){
13123                 this.abort();
13124             }
13125
13126             if((method == 'GET' && p) || o.xmlData){
13127                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
13128                 p = '';
13129             }
13130             Roo.lib.Ajax.useDefaultHeader = typeof(o.headers) == 'undefined' || typeof(o.headers['Content-Type']) == 'undefined';
13131             this.transId = Roo.lib.Ajax.request(method, url, cb, p, o);
13132             Roo.lib.Ajax.useDefaultHeader == true;
13133             return this.transId;
13134         }else{
13135             Roo.callback(o.callback, o.scope, [o, null, null]);
13136             return null;
13137         }
13138     },
13139
13140     /**
13141      * Determine whether this object has a request outstanding.
13142      * @param {Number} transactionId (Optional) defaults to the last transaction
13143      * @return {Boolean} True if there is an outstanding request.
13144      */
13145     isLoading : function(transId){
13146         if(transId){
13147             return Roo.lib.Ajax.isCallInProgress(transId);
13148         }else{
13149             return this.transId ? true : false;
13150         }
13151     },
13152
13153     /**
13154      * Aborts any outstanding request.
13155      * @param {Number} transactionId (Optional) defaults to the last transaction
13156      */
13157     abort : function(transId){
13158         if(transId || this.isLoading()){
13159             Roo.lib.Ajax.abort(transId || this.transId);
13160         }
13161     },
13162
13163     // private
13164     handleResponse : function(response){
13165         this.transId = false;
13166         var options = response.argument.options;
13167         response.argument = options ? options.argument : null;
13168         this.fireEvent("requestcomplete", this, response, options);
13169         Roo.callback(options.success, options.scope, [response, options]);
13170         Roo.callback(options.callback, options.scope, [options, true, response]);
13171     },
13172
13173     // private
13174     handleFailure : function(response, e){
13175         this.transId = false;
13176         var options = response.argument.options;
13177         response.argument = options ? options.argument : null;
13178         this.fireEvent("requestexception", this, response, options, e);
13179         Roo.callback(options.failure, options.scope, [response, options]);
13180         Roo.callback(options.callback, options.scope, [options, false, response]);
13181     },
13182
13183     // private
13184     doFormUpload : function(o, ps, url){
13185         var id = Roo.id();
13186         var frame = document.createElement('iframe');
13187         frame.id = id;
13188         frame.name = id;
13189         frame.className = 'x-hidden';
13190         if(Roo.isIE){
13191             frame.src = Roo.SSL_SECURE_URL;
13192         }
13193         document.body.appendChild(frame);
13194
13195         if(Roo.isIE){
13196            document.frames[id].name = id;
13197         }
13198
13199         var form = Roo.getDom(o.form);
13200         form.target = id;
13201         form.method = 'POST';
13202         form.enctype = form.encoding = 'multipart/form-data';
13203         if(url){
13204             form.action = url;
13205         }
13206
13207         var hiddens, hd;
13208         if(ps){ // add dynamic params
13209             hiddens = [];
13210             ps = Roo.urlDecode(ps, false);
13211             for(var k in ps){
13212                 if(ps.hasOwnProperty(k)){
13213                     hd = document.createElement('input');
13214                     hd.type = 'hidden';
13215                     hd.name = k;
13216                     hd.value = ps[k];
13217                     form.appendChild(hd);
13218                     hiddens.push(hd);
13219                 }
13220             }
13221         }
13222
13223         function cb(){
13224             var r = {  // bogus response object
13225                 responseText : '',
13226                 responseXML : null
13227             };
13228
13229             r.argument = o ? o.argument : null;
13230
13231             try { //
13232                 var doc;
13233                 if(Roo.isIE){
13234                     doc = frame.contentWindow.document;
13235                 }else {
13236                     doc = (frame.contentDocument || window.frames[id].document);
13237                 }
13238                 if(doc && doc.body){
13239                     r.responseText = doc.body.innerHTML;
13240                 }
13241                 if(doc && doc.XMLDocument){
13242                     r.responseXML = doc.XMLDocument;
13243                 }else {
13244                     r.responseXML = doc;
13245                 }
13246             }
13247             catch(e) {
13248                 // ignore
13249             }
13250
13251             Roo.EventManager.removeListener(frame, 'load', cb, this);
13252
13253             this.fireEvent("requestcomplete", this, r, o);
13254             Roo.callback(o.success, o.scope, [r, o]);
13255             Roo.callback(o.callback, o.scope, [o, true, r]);
13256
13257             setTimeout(function(){document.body.removeChild(frame);}, 100);
13258         }
13259
13260         Roo.EventManager.on(frame, 'load', cb, this);
13261         form.submit();
13262
13263         if(hiddens){ // remove dynamic params
13264             for(var i = 0, len = hiddens.length; i < len; i++){
13265                 form.removeChild(hiddens[i]);
13266             }
13267         }
13268     },
13269     // this is a 'formdata version???'
13270     
13271     
13272     doFormDataUpload : function(o,  url)
13273     {
13274         var formData;
13275         if (o.form) {
13276             var form =  Roo.getDom(o.form);
13277             form.enctype = form.encoding = 'multipart/form-data';
13278             formData = o.formData === true ? new FormData(form) : o.formData;
13279         } else {
13280             formData = o.formData === true ? new FormData() : o.formData;
13281         }
13282         
13283       
13284         var cb = {
13285             success: this.handleResponse,
13286             failure: this.handleFailure,
13287             scope: this,
13288             argument: {options: o},
13289             timeout : o.timeout || this.timeout
13290         };
13291  
13292         if(typeof o.autoAbort == 'boolean'){ // options gets top priority
13293             if(o.autoAbort){
13294                 this.abort();
13295             }
13296         }else if(this.autoAbort !== false){
13297             this.abort();
13298         }
13299
13300         //Roo.lib.Ajax.defaultPostHeader = null;
13301         Roo.lib.Ajax.useDefaultHeader = false;
13302         this.transId = Roo.lib.Ajax.request( "POST", url, cb,  formData, o);
13303         Roo.lib.Ajax.useDefaultHeader = true;
13304  
13305          
13306     }
13307     
13308 });
13309 /*
13310  * Based on:
13311  * Ext JS Library 1.1.1
13312  * Copyright(c) 2006-2007, Ext JS, LLC.
13313  *
13314  * Originally Released Under LGPL - original licence link has changed is not relivant.
13315  *
13316  * Fork - LGPL
13317  * <script type="text/javascript">
13318  */
13319  
13320 /**
13321  * Global Ajax request class.
13322  * 
13323  * @class Roo.Ajax
13324  * @extends Roo.data.Connection
13325  * @static
13326  * 
13327  * @cfg {String} url  The default URL to be used for requests to the server. (defaults to undefined)
13328  * @cfg {Object} extraParams  An object containing properties which are used as extra parameters to each request made by this object. (defaults to undefined)
13329  * @cfg {Object} defaultHeaders  An object containing request headers which are added to each request made by this object. (defaults to undefined)
13330  * @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)
13331  * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
13332  * @cfg {Boolean} autoAbort (Optional) Whether a new request should abort any pending requests. (defaults to false)
13333  * @cfg {Boolean} disableCaching (Optional)   True to add a unique cache-buster param to GET requests. (defaults to true)
13334  */
13335 Roo.Ajax = new Roo.data.Connection({
13336     // fix up the docs
13337     /**
13338      * @scope Roo.Ajax
13339      * @type {Boolear} 
13340      */
13341     autoAbort : false,
13342
13343     /**
13344      * Serialize the passed form into a url encoded string
13345      * @scope Roo.Ajax
13346      * @param {String/HTMLElement} form
13347      * @return {String}
13348      */
13349     serializeForm : function(form){
13350         return Roo.lib.Ajax.serializeForm(form);
13351     }
13352 });/*
13353  * Based on:
13354  * Ext JS Library 1.1.1
13355  * Copyright(c) 2006-2007, Ext JS, LLC.
13356  *
13357  * Originally Released Under LGPL - original licence link has changed is not relivant.
13358  *
13359  * Fork - LGPL
13360  * <script type="text/javascript">
13361  */
13362
13363  
13364 /**
13365  * @class Roo.UpdateManager
13366  * @extends Roo.util.Observable
13367  * Provides AJAX-style update for Element object.<br><br>
13368  * Usage:<br>
13369  * <pre><code>
13370  * // Get it from a Roo.Element object
13371  * var el = Roo.get("foo");
13372  * var mgr = el.getUpdateManager();
13373  * mgr.update("http://myserver.com/index.php", "param1=1&amp;param2=2");
13374  * ...
13375  * mgr.formUpdate("myFormId", "http://myserver.com/index.php");
13376  * <br>
13377  * // or directly (returns the same UpdateManager instance)
13378  * var mgr = new Roo.UpdateManager("myElementId");
13379  * mgr.startAutoRefresh(60, "http://myserver.com/index.php");
13380  * mgr.on("update", myFcnNeedsToKnow);
13381  * <br>
13382    // short handed call directly from the element object
13383    Roo.get("foo").load({
13384         url: "bar.php",
13385         scripts:true,
13386         params: "for=bar",
13387         text: "Loading Foo..."
13388    });
13389  * </code></pre>
13390  * @constructor
13391  * Create new UpdateManager directly.
13392  * @param {String/HTMLElement/Roo.Element} el The element to update
13393  * @param {Boolean} forceNew (optional) By default the constructor checks to see if the passed element already has an UpdateManager and if it does it returns the same instance. This will skip that check (useful for extending this class).
13394  */
13395 Roo.UpdateManager = function(el, forceNew){
13396     el = Roo.get(el);
13397     if(!forceNew && el.updateManager){
13398         return el.updateManager;
13399     }
13400     /**
13401      * The Element object
13402      * @type Roo.Element
13403      */
13404     this.el = el;
13405     /**
13406      * Cached url to use for refreshes. Overwritten every time update() is called unless "discardUrl" param is set to true.
13407      * @type String
13408      */
13409     this.defaultUrl = null;
13410
13411     this.addEvents({
13412         /**
13413          * @event beforeupdate
13414          * Fired before an update is made, return false from your handler and the update is cancelled.
13415          * @param {Roo.Element} el
13416          * @param {String/Object/Function} url
13417          * @param {String/Object} params
13418          */
13419         "beforeupdate": true,
13420         /**
13421          * @event update
13422          * Fired after successful update is made.
13423          * @param {Roo.Element} el
13424          * @param {Object} oResponseObject The response Object
13425          */
13426         "update": true,
13427         /**
13428          * @event failure
13429          * Fired on update failure.
13430          * @param {Roo.Element} el
13431          * @param {Object} oResponseObject The response Object
13432          */
13433         "failure": true
13434     });
13435     var d = Roo.UpdateManager.defaults;
13436     /**
13437      * Blank page URL to use with SSL file uploads (Defaults to Roo.UpdateManager.defaults.sslBlankUrl or "about:blank").
13438      * @type String
13439      */
13440     this.sslBlankUrl = d.sslBlankUrl;
13441     /**
13442      * Whether to append unique parameter on get request to disable caching (Defaults to Roo.UpdateManager.defaults.disableCaching or false).
13443      * @type Boolean
13444      */
13445     this.disableCaching = d.disableCaching;
13446     /**
13447      * Text for loading indicator (Defaults to Roo.UpdateManager.defaults.indicatorText or '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
13448      * @type String
13449      */
13450     this.indicatorText = d.indicatorText;
13451     /**
13452      * Whether to show indicatorText when loading (Defaults to Roo.UpdateManager.defaults.showLoadIndicator or true).
13453      * @type String
13454      */
13455     this.showLoadIndicator = d.showLoadIndicator;
13456     /**
13457      * Timeout for requests or form posts in seconds (Defaults to Roo.UpdateManager.defaults.timeout or 30 seconds).
13458      * @type Number
13459      */
13460     this.timeout = d.timeout;
13461
13462     /**
13463      * True to process scripts in the output (Defaults to Roo.UpdateManager.defaults.loadScripts (false)).
13464      * @type Boolean
13465      */
13466     this.loadScripts = d.loadScripts;
13467
13468     /**
13469      * Transaction object of current executing transaction
13470      */
13471     this.transaction = null;
13472
13473     /**
13474      * @private
13475      */
13476     this.autoRefreshProcId = null;
13477     /**
13478      * Delegate for refresh() prebound to "this", use myUpdater.refreshDelegate.createCallback(arg1, arg2) to bind arguments
13479      * @type Function
13480      */
13481     this.refreshDelegate = this.refresh.createDelegate(this);
13482     /**
13483      * Delegate for update() prebound to "this", use myUpdater.updateDelegate.createCallback(arg1, arg2) to bind arguments
13484      * @type Function
13485      */
13486     this.updateDelegate = this.update.createDelegate(this);
13487     /**
13488      * Delegate for formUpdate() prebound to "this", use myUpdater.formUpdateDelegate.createCallback(arg1, arg2) to bind arguments
13489      * @type Function
13490      */
13491     this.formUpdateDelegate = this.formUpdate.createDelegate(this);
13492     /**
13493      * @private
13494      */
13495     this.successDelegate = this.processSuccess.createDelegate(this);
13496     /**
13497      * @private
13498      */
13499     this.failureDelegate = this.processFailure.createDelegate(this);
13500
13501     if(!this.renderer){
13502      /**
13503       * The renderer for this UpdateManager. Defaults to {@link Roo.UpdateManager.BasicRenderer}.
13504       */
13505     this.renderer = new Roo.UpdateManager.BasicRenderer();
13506     }
13507     
13508     Roo.UpdateManager.superclass.constructor.call(this);
13509 };
13510
13511 Roo.extend(Roo.UpdateManager, Roo.util.Observable, {
13512     /**
13513      * Get the Element this UpdateManager is bound to
13514      * @return {Roo.Element} The element
13515      */
13516     getEl : function(){
13517         return this.el;
13518     },
13519     /**
13520      * Performs an async request, updating this element with the response. If params are specified it uses POST, otherwise it uses GET.
13521      * @param {Object/String/Function} url The url for this request or a function to call to get the url or a config object containing any of the following options:
13522 <pre><code>
13523 um.update({<br/>
13524     url: "your-url.php",<br/>
13525     params: {param1: "foo", param2: "bar"}, // or a URL encoded string<br/>
13526     callback: yourFunction,<br/>
13527     scope: yourObject, //(optional scope)  <br/>
13528     discardUrl: false, <br/>
13529     nocache: false,<br/>
13530     text: "Loading...",<br/>
13531     timeout: 30,<br/>
13532     scripts: false<br/>
13533 });
13534 </code></pre>
13535      * The only required property is url. The optional properties nocache, text and scripts
13536      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their associated property on this UpdateManager instance.
13537      * @param {String/Object} params (optional) The parameters to pass as either a url encoded string "param1=1&amp;param2=2" or an object {param1: 1, param2: 2}
13538      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
13539      * @param {Boolean} discardUrl (optional) By default when you execute an update the defaultUrl is changed to the last used url. If true, it will not store the url.
13540      */
13541     update : function(url, params, callback, discardUrl){
13542         if(this.fireEvent("beforeupdate", this.el, url, params) !== false){
13543             var method = this.method,
13544                 cfg;
13545             if(typeof url == "object"){ // must be config object
13546                 cfg = url;
13547                 url = cfg.url;
13548                 params = params || cfg.params;
13549                 callback = callback || cfg.callback;
13550                 discardUrl = discardUrl || cfg.discardUrl;
13551                 if(callback && cfg.scope){
13552                     callback = callback.createDelegate(cfg.scope);
13553                 }
13554                 if(typeof cfg.method != "undefined"){method = cfg.method;};
13555                 if(typeof cfg.nocache != "undefined"){this.disableCaching = cfg.nocache;};
13556                 if(typeof cfg.text != "undefined"){this.indicatorText = '<div class="loading-indicator">'+cfg.text+"</div>";};
13557                 if(typeof cfg.scripts != "undefined"){this.loadScripts = cfg.scripts;};
13558                 if(typeof cfg.timeout != "undefined"){this.timeout = cfg.timeout;};
13559             }
13560             this.showLoading();
13561             if(!discardUrl){
13562                 this.defaultUrl = url;
13563             }
13564             if(typeof url == "function"){
13565                 url = url.call(this);
13566             }
13567
13568             method = method || (params ? "POST" : "GET");
13569             if(method == "GET"){
13570                 url = this.prepareUrl(url);
13571             }
13572
13573             var o = Roo.apply(cfg ||{}, {
13574                 url : url,
13575                 params: params,
13576                 success: this.successDelegate,
13577                 failure: this.failureDelegate,
13578                 callback: undefined,
13579                 timeout: (this.timeout*1000),
13580                 argument: {"url": url, "form": null, "callback": callback, "params": params}
13581             });
13582             Roo.log("updated manager called with timeout of " + o.timeout);
13583             this.transaction = Roo.Ajax.request(o);
13584         }
13585     },
13586
13587     /**
13588      * Performs an async form post, updating this element with the response. If the form has the attribute enctype="multipart/form-data", it assumes it's a file upload.
13589      * Uses this.sslBlankUrl for SSL file uploads to prevent IE security warning.
13590      * @param {String/HTMLElement} form The form Id or form element
13591      * @param {String} url (optional) The url to pass the form to. If omitted the action attribute on the form will be used.
13592      * @param {Boolean} reset (optional) Whether to try to reset the form after the update
13593      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess, oResponse)
13594      */
13595     formUpdate : function(form, url, reset, callback){
13596         if(this.fireEvent("beforeupdate", this.el, form, url) !== false){
13597             if(typeof url == "function"){
13598                 url = url.call(this);
13599             }
13600             form = Roo.getDom(form);
13601             this.transaction = Roo.Ajax.request({
13602                 form: form,
13603                 url:url,
13604                 success: this.successDelegate,
13605                 failure: this.failureDelegate,
13606                 timeout: (this.timeout*1000),
13607                 argument: {"url": url, "form": form, "callback": callback, "reset": reset}
13608             });
13609             this.showLoading.defer(1, this);
13610         }
13611     },
13612
13613     /**
13614      * Refresh the element with the last used url or defaultUrl. If there is no url, it returns immediately
13615      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
13616      */
13617     refresh : function(callback){
13618         if(this.defaultUrl == null){
13619             return;
13620         }
13621         this.update(this.defaultUrl, null, callback, true);
13622     },
13623
13624     /**
13625      * Set this element to auto refresh.
13626      * @param {Number} interval How often to update (in seconds).
13627      * @param {String/Function} url (optional) The url for this request or a function to call to get the url (Defaults to the last used url)
13628      * @param {String/Object} params (optional) The parameters to pass as either a url encoded string "&param1=1&param2=2" or as an object {param1: 1, param2: 2}
13629      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
13630      * @param {Boolean} refreshNow (optional) Whether to execute the refresh now, or wait the interval
13631      */
13632     startAutoRefresh : function(interval, url, params, callback, refreshNow){
13633         if(refreshNow){
13634             this.update(url || this.defaultUrl, params, callback, true);
13635         }
13636         if(this.autoRefreshProcId){
13637             clearInterval(this.autoRefreshProcId);
13638         }
13639         this.autoRefreshProcId = setInterval(this.update.createDelegate(this, [url || this.defaultUrl, params, callback, true]), interval*1000);
13640     },
13641
13642     /**
13643      * Stop auto refresh on this element.
13644      */
13645      stopAutoRefresh : function(){
13646         if(this.autoRefreshProcId){
13647             clearInterval(this.autoRefreshProcId);
13648             delete this.autoRefreshProcId;
13649         }
13650     },
13651
13652     isAutoRefreshing : function(){
13653        return this.autoRefreshProcId ? true : false;
13654     },
13655     /**
13656      * Called to update the element to "Loading" state. Override to perform custom action.
13657      */
13658     showLoading : function(){
13659         if(this.showLoadIndicator){
13660             this.el.update(this.indicatorText);
13661         }
13662     },
13663
13664     /**
13665      * Adds unique parameter to query string if disableCaching = true
13666      * @private
13667      */
13668     prepareUrl : function(url){
13669         if(this.disableCaching){
13670             var append = "_dc=" + (new Date().getTime());
13671             if(url.indexOf("?") !== -1){
13672                 url += "&" + append;
13673             }else{
13674                 url += "?" + append;
13675             }
13676         }
13677         return url;
13678     },
13679
13680     /**
13681      * @private
13682      */
13683     processSuccess : function(response){
13684         this.transaction = null;
13685         if(response.argument.form && response.argument.reset){
13686             try{ // put in try/catch since some older FF releases had problems with this
13687                 response.argument.form.reset();
13688             }catch(e){}
13689         }
13690         if(this.loadScripts){
13691             this.renderer.render(this.el, response, this,
13692                 this.updateComplete.createDelegate(this, [response]));
13693         }else{
13694             this.renderer.render(this.el, response, this);
13695             this.updateComplete(response);
13696         }
13697     },
13698
13699     updateComplete : function(response){
13700         this.fireEvent("update", this.el, response);
13701         if(typeof response.argument.callback == "function"){
13702             response.argument.callback(this.el, true, response);
13703         }
13704     },
13705
13706     /**
13707      * @private
13708      */
13709     processFailure : function(response){
13710         this.transaction = null;
13711         this.fireEvent("failure", this.el, response);
13712         if(typeof response.argument.callback == "function"){
13713             response.argument.callback(this.el, false, response);
13714         }
13715     },
13716
13717     /**
13718      * Set the content renderer for this UpdateManager. See {@link Roo.UpdateManager.BasicRenderer#render} for more details.
13719      * @param {Object} renderer The object implementing the render() method
13720      */
13721     setRenderer : function(renderer){
13722         this.renderer = renderer;
13723     },
13724
13725     getRenderer : function(){
13726        return this.renderer;
13727     },
13728
13729     /**
13730      * Set the defaultUrl used for updates
13731      * @param {String/Function} defaultUrl The url or a function to call to get the url
13732      */
13733     setDefaultUrl : function(defaultUrl){
13734         this.defaultUrl = defaultUrl;
13735     },
13736
13737     /**
13738      * Aborts the executing transaction
13739      */
13740     abort : function(){
13741         if(this.transaction){
13742             Roo.Ajax.abort(this.transaction);
13743         }
13744     },
13745
13746     /**
13747      * Returns true if an update is in progress
13748      * @return {Boolean}
13749      */
13750     isUpdating : function(){
13751         if(this.transaction){
13752             return Roo.Ajax.isLoading(this.transaction);
13753         }
13754         return false;
13755     }
13756 });
13757
13758 /**
13759  * @class Roo.UpdateManager.defaults
13760  * @static (not really - but it helps the doc tool)
13761  * The defaults collection enables customizing the default properties of UpdateManager
13762  */
13763    Roo.UpdateManager.defaults = {
13764        /**
13765          * Timeout for requests or form posts in seconds (Defaults 30 seconds).
13766          * @type Number
13767          */
13768          timeout : 30,
13769
13770          /**
13771          * True to process scripts by default (Defaults to false).
13772          * @type Boolean
13773          */
13774         loadScripts : false,
13775
13776         /**
13777         * Blank page URL to use with SSL file uploads (Defaults to "javascript:false").
13778         * @type String
13779         */
13780         sslBlankUrl : (Roo.SSL_SECURE_URL || "javascript:false"),
13781         /**
13782          * Whether to append unique parameter on get request to disable caching (Defaults to false).
13783          * @type Boolean
13784          */
13785         disableCaching : false,
13786         /**
13787          * Whether to show indicatorText when loading (Defaults to true).
13788          * @type Boolean
13789          */
13790         showLoadIndicator : true,
13791         /**
13792          * Text for loading indicator (Defaults to '&lt;div class="loading-indicator"&gt;Loading...&lt;/div&gt;').
13793          * @type String
13794          */
13795         indicatorText : '<div class="loading-indicator">Loading...</div>'
13796    };
13797
13798 /**
13799  * Static convenience method. This method is deprecated in favor of el.load({url:'foo.php', ...}).
13800  *Usage:
13801  * <pre><code>Roo.UpdateManager.updateElement("my-div", "stuff.php");</code></pre>
13802  * @param {String/HTMLElement/Roo.Element} el The element to update
13803  * @param {String} url The url
13804  * @param {String/Object} params (optional) Url encoded param string or an object of name/value pairs
13805  * @param {Object} options (optional) A config object with any of the UpdateManager properties you want to set - for example: {disableCaching:true, indicatorText: "Loading data..."}
13806  * @static
13807  * @deprecated
13808  * @member Roo.UpdateManager
13809  */
13810 Roo.UpdateManager.updateElement = function(el, url, params, options){
13811     var um = Roo.get(el, true).getUpdateManager();
13812     Roo.apply(um, options);
13813     um.update(url, params, options ? options.callback : null);
13814 };
13815 // alias for backwards compat
13816 Roo.UpdateManager.update = Roo.UpdateManager.updateElement;
13817 /**
13818  * @class Roo.UpdateManager.BasicRenderer
13819  * Default Content renderer. Updates the elements innerHTML with the responseText.
13820  */
13821 Roo.UpdateManager.BasicRenderer = function(){};
13822
13823 Roo.UpdateManager.BasicRenderer.prototype = {
13824     /**
13825      * This is called when the transaction is completed and it's time to update the element - The BasicRenderer
13826      * updates the elements innerHTML with the responseText - To perform a custom render (i.e. XML or JSON processing),
13827      * create an object with a "render(el, response)" method and pass it to setRenderer on the UpdateManager.
13828      * @param {Roo.Element} el The element being rendered
13829      * @param {Object} response The YUI Connect response object
13830      * @param {UpdateManager} updateManager The calling update manager
13831      * @param {Function} callback A callback that will need to be called if loadScripts is true on the UpdateManager
13832      */
13833      render : function(el, response, updateManager, callback){
13834         el.update(response.responseText, updateManager.loadScripts, callback);
13835     }
13836 };
13837 /*
13838  * Based on:
13839  * Roo JS
13840  * (c)) Alan Knowles
13841  * Licence : LGPL
13842  */
13843
13844
13845 /**
13846  * @class Roo.DomTemplate
13847  * @extends Roo.Template
13848  * An effort at a dom based template engine..
13849  *
13850  * Similar to XTemplate, except it uses dom parsing to create the template..
13851  *
13852  * Supported features:
13853  *
13854  *  Tags:
13855
13856 <pre><code>
13857       {a_variable} - output encoded.
13858       {a_variable.format:("Y-m-d")} - call a method on the variable
13859       {a_variable:raw} - unencoded output
13860       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
13861       {a_variable:this.method_on_template(...)} - call a method on the template object.
13862  
13863 </code></pre>
13864  *  The tpl tag:
13865 <pre><code>
13866         &lt;div roo-for="a_variable or condition.."&gt;&lt;/div&gt;
13867         &lt;div roo-if="a_variable or condition"&gt;&lt;/div&gt;
13868         &lt;div roo-exec="some javascript"&gt;&lt;/div&gt;
13869         &lt;div roo-name="named_template"&gt;&lt;/div&gt; 
13870   
13871 </code></pre>
13872  *      
13873  */
13874 Roo.DomTemplate = function()
13875 {
13876      Roo.DomTemplate.superclass.constructor.apply(this, arguments);
13877      if (this.html) {
13878         this.compile();
13879      }
13880 };
13881
13882
13883 Roo.extend(Roo.DomTemplate, Roo.Template, {
13884     /**
13885      * id counter for sub templates.
13886      */
13887     id : 0,
13888     /**
13889      * flag to indicate if dom parser is inside a pre,
13890      * it will strip whitespace if not.
13891      */
13892     inPre : false,
13893     
13894     /**
13895      * The various sub templates
13896      */
13897     tpls : false,
13898     
13899     
13900     
13901     /**
13902      *
13903      * basic tag replacing syntax
13904      * WORD:WORD()
13905      *
13906      * // you can fake an object call by doing this
13907      *  x.t:(test,tesT) 
13908      * 
13909      */
13910     re : /(\{|\%7B)([\w-\.]+)(?:\:([\w\.]*)(?:\(([^)]*?)?\))?)?(\}|\%7D)/g,
13911     //re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
13912     
13913     iterChild : function (node, method) {
13914         
13915         var oldPre = this.inPre;
13916         if (node.tagName == 'PRE') {
13917             this.inPre = true;
13918         }
13919         for( var i = 0; i < node.childNodes.length; i++) {
13920             method.call(this, node.childNodes[i]);
13921         }
13922         this.inPre = oldPre;
13923     },
13924     
13925     
13926     
13927     /**
13928      * compile the template
13929      *
13930      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
13931      *
13932      */
13933     compile: function()
13934     {
13935         var s = this.html;
13936         
13937         // covert the html into DOM...
13938         var doc = false;
13939         var div =false;
13940         try {
13941             doc = document.implementation.createHTMLDocument("");
13942             doc.documentElement.innerHTML =   this.html  ;
13943             div = doc.documentElement;
13944         } catch (e) {
13945             // old IE... - nasty -- it causes all sorts of issues.. with
13946             // images getting pulled from server..
13947             div = document.createElement('div');
13948             div.innerHTML = this.html;
13949         }
13950         //doc.documentElement.innerHTML = htmlBody
13951          
13952         
13953         
13954         this.tpls = [];
13955         var _t = this;
13956         this.iterChild(div, function(n) {_t.compileNode(n, true); });
13957         
13958         var tpls = this.tpls;
13959         
13960         // create a top level template from the snippet..
13961         
13962         //Roo.log(div.innerHTML);
13963         
13964         var tpl = {
13965             uid : 'master',
13966             id : this.id++,
13967             attr : false,
13968             value : false,
13969             body : div.innerHTML,
13970             
13971             forCall : false,
13972             execCall : false,
13973             dom : div,
13974             isTop : true
13975             
13976         };
13977         tpls.unshift(tpl);
13978         
13979         
13980         // compile them...
13981         this.tpls = [];
13982         Roo.each(tpls, function(tp){
13983             this.compileTpl(tp);
13984             this.tpls[tp.id] = tp;
13985         }, this);
13986         
13987         this.master = tpls[0];
13988         return this;
13989         
13990         
13991     },
13992     
13993     compileNode : function(node, istop) {
13994         // test for
13995         //Roo.log(node);
13996         
13997         
13998         // skip anything not a tag..
13999         if (node.nodeType != 1) {
14000             if (node.nodeType == 3 && !this.inPre) {
14001                 // reduce white space..
14002                 node.nodeValue = node.nodeValue.replace(/\s+/g, ' '); 
14003                 
14004             }
14005             return;
14006         }
14007         
14008         var tpl = {
14009             uid : false,
14010             id : false,
14011             attr : false,
14012             value : false,
14013             body : '',
14014             
14015             forCall : false,
14016             execCall : false,
14017             dom : false,
14018             isTop : istop
14019             
14020             
14021         };
14022         
14023         
14024         switch(true) {
14025             case (node.hasAttribute('roo-for')): tpl.attr = 'for'; break;
14026             case (node.hasAttribute('roo-if')): tpl.attr = 'if'; break;
14027             case (node.hasAttribute('roo-name')): tpl.attr = 'name'; break;
14028             case (node.hasAttribute('roo-exec')): tpl.attr = 'exec'; break;
14029             // no default..
14030         }
14031         
14032         
14033         if (!tpl.attr) {
14034             // just itterate children..
14035             this.iterChild(node,this.compileNode);
14036             return;
14037         }
14038         tpl.uid = this.id++;
14039         tpl.value = node.getAttribute('roo-' +  tpl.attr);
14040         node.removeAttribute('roo-'+ tpl.attr);
14041         if (tpl.attr != 'name') {
14042             var placeholder = document.createTextNode('{domtpl' + tpl.uid + '}');
14043             node.parentNode.replaceChild(placeholder,  node);
14044         } else {
14045             
14046             var placeholder =  document.createElement('span');
14047             placeholder.className = 'roo-tpl-' + tpl.value;
14048             node.parentNode.replaceChild(placeholder,  node);
14049         }
14050         
14051         // parent now sees '{domtplXXXX}
14052         this.iterChild(node,this.compileNode);
14053         
14054         // we should now have node body...
14055         var div = document.createElement('div');
14056         div.appendChild(node);
14057         tpl.dom = node;
14058         // this has the unfortunate side effect of converting tagged attributes
14059         // eg. href="{...}" into %7C...%7D
14060         // this has been fixed by searching for those combo's although it's a bit hacky..
14061         
14062         
14063         tpl.body = div.innerHTML;
14064         
14065         
14066          
14067         tpl.id = tpl.uid;
14068         switch(tpl.attr) {
14069             case 'for' :
14070                 switch (tpl.value) {
14071                     case '.':  tpl.forCall = new Function('values', 'parent', 'with(values){ return values; }'); break;
14072                     case '..': tpl.forCall= new Function('values', 'parent', 'with(values){ return parent; }'); break;
14073                     default:   tpl.forCall= new Function('values', 'parent', 'with(values){ return '+tpl.value+'; }');
14074                 }
14075                 break;
14076             
14077             case 'exec':
14078                 tpl.execCall = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
14079                 break;
14080             
14081             case 'if':     
14082                 tpl.ifCall = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(tpl.value))+'; }');
14083                 break;
14084             
14085             case 'name':
14086                 tpl.id  = tpl.value; // replace non characters???
14087                 break;
14088             
14089         }
14090         
14091         
14092         this.tpls.push(tpl);
14093         
14094         
14095         
14096     },
14097     
14098     
14099     
14100     
14101     /**
14102      * Compile a segment of the template into a 'sub-template'
14103      *
14104      * 
14105      * 
14106      *
14107      */
14108     compileTpl : function(tpl)
14109     {
14110         var fm = Roo.util.Format;
14111         var useF = this.disableFormats !== true;
14112         
14113         var sep = Roo.isGecko ? "+\n" : ",\n";
14114         
14115         var undef = function(str) {
14116             Roo.debug && Roo.log("Property not found :"  + str);
14117             return '';
14118         };
14119           
14120         //Roo.log(tpl.body);
14121         
14122         
14123         
14124         var fn = function(m, lbrace, name, format, args)
14125         {
14126             //Roo.log("ARGS");
14127             //Roo.log(arguments);
14128             args = args ? args.replace(/\\'/g,"'") : args;
14129             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
14130             if (typeof(format) == 'undefined') {
14131                 format =  'htmlEncode'; 
14132             }
14133             if (format == 'raw' ) {
14134                 format = false;
14135             }
14136             
14137             if(name.substr(0, 6) == 'domtpl'){
14138                 return "'"+ sep +'this.applySubTemplate('+name.substr(6)+', values, parent)'+sep+"'";
14139             }
14140             
14141             // build an array of options to determine if value is undefined..
14142             
14143             // basically get 'xxxx.yyyy' then do
14144             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
14145             //    (function () { Roo.log("Property not found"); return ''; })() :
14146             //    ......
14147             
14148             var udef_ar = [];
14149             var lookfor = '';
14150             Roo.each(name.split('.'), function(st) {
14151                 lookfor += (lookfor.length ? '.': '') + st;
14152                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
14153             });
14154             
14155             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
14156             
14157             
14158             if(format && useF){
14159                 
14160                 args = args ? ',' + args : "";
14161                  
14162                 if(format.substr(0, 5) != "this."){
14163                     format = "fm." + format + '(';
14164                 }else{
14165                     format = 'this.call("'+ format.substr(5) + '", ';
14166                     args = ", values";
14167                 }
14168                 
14169                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
14170             }
14171              
14172             if (args && args.length) {
14173                 // called with xxyx.yuu:(test,test)
14174                 // change to ()
14175                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
14176             }
14177             // raw.. - :raw modifier..
14178             return "'"+ sep + udef_st  + name + ")"+sep+"'";
14179             
14180         };
14181         var body;
14182         // branched to use + in gecko and [].join() in others
14183         if(Roo.isGecko){
14184             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
14185                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
14186                     "';};};";
14187         }else{
14188             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
14189             body.push(tpl.body.replace(/(\r\n|\n)/g,
14190                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
14191             body.push("'].join('');};};");
14192             body = body.join('');
14193         }
14194         
14195         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
14196        
14197         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
14198         eval(body);
14199         
14200         return this;
14201     },
14202      
14203     /**
14204      * same as applyTemplate, except it's done to one of the subTemplates
14205      * when using named templates, you can do:
14206      *
14207      * var str = pl.applySubTemplate('your-name', values);
14208      *
14209      * 
14210      * @param {Number} id of the template
14211      * @param {Object} values to apply to template
14212      * @param {Object} parent (normaly the instance of this object)
14213      */
14214     applySubTemplate : function(id, values, parent)
14215     {
14216         
14217         
14218         var t = this.tpls[id];
14219         
14220         
14221         try { 
14222             if(t.ifCall && !t.ifCall.call(this, values, parent)){
14223                 Roo.debug && Roo.log('if call on ' + t.value + ' return false');
14224                 return '';
14225             }
14226         } catch(e) {
14227             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-if="' + t.value + '" - ' + e.toString());
14228             Roo.log(values);
14229           
14230             return '';
14231         }
14232         try { 
14233             
14234             if(t.execCall && t.execCall.call(this, values, parent)){
14235                 return '';
14236             }
14237         } catch(e) {
14238             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
14239             Roo.log(values);
14240             return '';
14241         }
14242         
14243         try {
14244             var vs = t.forCall ? t.forCall.call(this, values, parent) : values;
14245             parent = t.target ? values : parent;
14246             if(t.forCall && vs instanceof Array){
14247                 var buf = [];
14248                 for(var i = 0, len = vs.length; i < len; i++){
14249                     try {
14250                         buf[buf.length] = t.compiled.call(this, vs[i], parent);
14251                     } catch (e) {
14252                         Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
14253                         Roo.log(e.body);
14254                         //Roo.log(t.compiled);
14255                         Roo.log(vs[i]);
14256                     }   
14257                 }
14258                 return buf.join('');
14259             }
14260         } catch (e) {
14261             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on roo-for="' + t.value + '" - ' + e.toString());
14262             Roo.log(values);
14263             return '';
14264         }
14265         try {
14266             return t.compiled.call(this, vs, parent);
14267         } catch (e) {
14268             Roo.log('Xtemplate.applySubTemplate('+ id+ '): Exception thrown on body="' + t.value + '" - ' + e.toString());
14269             Roo.log(e.body);
14270             //Roo.log(t.compiled);
14271             Roo.log(values);
14272             return '';
14273         }
14274     },
14275
14276    
14277
14278     applyTemplate : function(values){
14279         return this.master.compiled.call(this, values, {});
14280         //var s = this.subs;
14281     },
14282
14283     apply : function(){
14284         return this.applyTemplate.apply(this, arguments);
14285     }
14286
14287  });
14288
14289 Roo.DomTemplate.from = function(el){
14290     el = Roo.getDom(el);
14291     return new Roo.Domtemplate(el.value || el.innerHTML);
14292 };/*
14293  * Based on:
14294  * Ext JS Library 1.1.1
14295  * Copyright(c) 2006-2007, Ext JS, LLC.
14296  *
14297  * Originally Released Under LGPL - original licence link has changed is not relivant.
14298  *
14299  * Fork - LGPL
14300  * <script type="text/javascript">
14301  */
14302
14303 /**
14304  * @class Roo.util.DelayedTask
14305  * Provides a convenient method of performing setTimeout where a new
14306  * timeout cancels the old timeout. An example would be performing validation on a keypress.
14307  * You can use this class to buffer
14308  * the keypress events for a certain number of milliseconds, and perform only if they stop
14309  * for that amount of time.
14310  * @constructor The parameters to this constructor serve as defaults and are not required.
14311  * @param {Function} fn (optional) The default function to timeout
14312  * @param {Object} scope (optional) The default scope of that timeout
14313  * @param {Array} args (optional) The default Array of arguments
14314  */
14315 Roo.util.DelayedTask = function(fn, scope, args){
14316     var id = null, d, t;
14317
14318     var call = function(){
14319         var now = new Date().getTime();
14320         if(now - t >= d){
14321             clearInterval(id);
14322             id = null;
14323             fn.apply(scope, args || []);
14324         }
14325     };
14326     /**
14327      * Cancels any pending timeout and queues a new one
14328      * @param {Number} delay The milliseconds to delay
14329      * @param {Function} newFn (optional) Overrides function passed to constructor
14330      * @param {Object} newScope (optional) Overrides scope passed to constructor
14331      * @param {Array} newArgs (optional) Overrides args passed to constructor
14332      */
14333     this.delay = function(delay, newFn, newScope, newArgs){
14334         if(id && delay != d){
14335             this.cancel();
14336         }
14337         d = delay;
14338         t = new Date().getTime();
14339         fn = newFn || fn;
14340         scope = newScope || scope;
14341         args = newArgs || args;
14342         if(!id){
14343             id = setInterval(call, d);
14344         }
14345     };
14346
14347     /**
14348      * Cancel the last queued timeout
14349      */
14350     this.cancel = function(){
14351         if(id){
14352             clearInterval(id);
14353             id = null;
14354         }
14355     };
14356 };/*
14357  * Based on:
14358  * Ext JS Library 1.1.1
14359  * Copyright(c) 2006-2007, Ext JS, LLC.
14360  *
14361  * Originally Released Under LGPL - original licence link has changed is not relivant.
14362  *
14363  * Fork - LGPL
14364  * <script type="text/javascript">
14365  */
14366 /**
14367  * @class Roo.util.TaskRunner
14368  * Manage background tasks - not sure why this is better that setInterval?
14369  * @static
14370  *
14371  */
14372  
14373 Roo.util.TaskRunner = function(interval){
14374     interval = interval || 10;
14375     var tasks = [], removeQueue = [];
14376     var id = 0;
14377     var running = false;
14378
14379     var stopThread = function(){
14380         running = false;
14381         clearInterval(id);
14382         id = 0;
14383     };
14384
14385     var startThread = function(){
14386         if(!running){
14387             running = true;
14388             id = setInterval(runTasks, interval);
14389         }
14390     };
14391
14392     var removeTask = function(task){
14393         removeQueue.push(task);
14394         if(task.onStop){
14395             task.onStop();
14396         }
14397     };
14398
14399     var runTasks = function(){
14400         if(removeQueue.length > 0){
14401             for(var i = 0, len = removeQueue.length; i < len; i++){
14402                 tasks.remove(removeQueue[i]);
14403             }
14404             removeQueue = [];
14405             if(tasks.length < 1){
14406                 stopThread();
14407                 return;
14408             }
14409         }
14410         var now = new Date().getTime();
14411         for(var i = 0, len = tasks.length; i < len; ++i){
14412             var t = tasks[i];
14413             var itime = now - t.taskRunTime;
14414             if(t.interval <= itime){
14415                 var rt = t.run.apply(t.scope || t, t.args || [++t.taskRunCount]);
14416                 t.taskRunTime = now;
14417                 if(rt === false || t.taskRunCount === t.repeat){
14418                     removeTask(t);
14419                     return;
14420                 }
14421             }
14422             if(t.duration && t.duration <= (now - t.taskStartTime)){
14423                 removeTask(t);
14424             }
14425         }
14426     };
14427
14428     /**
14429      * Queues a new task.
14430      * @param {Object} task
14431      *
14432      * Task property : interval = how frequent to run.
14433      * Task object should implement
14434      * function run()
14435      * Task object may implement
14436      * function onStop()
14437      */
14438     this.start = function(task){
14439         tasks.push(task);
14440         task.taskStartTime = new Date().getTime();
14441         task.taskRunTime = 0;
14442         task.taskRunCount = 0;
14443         startThread();
14444         return task;
14445     };
14446     /**
14447      * Stop  new task.
14448      * @param {Object} task
14449      */
14450     this.stop = function(task){
14451         removeTask(task);
14452         return task;
14453     };
14454     /**
14455      * Stop all Tasks
14456      */
14457     this.stopAll = function(){
14458         stopThread();
14459         for(var i = 0, len = tasks.length; i < len; i++){
14460             if(tasks[i].onStop){
14461                 tasks[i].onStop();
14462             }
14463         }
14464         tasks = [];
14465         removeQueue = [];
14466     };
14467 };
14468
14469 Roo.TaskMgr = new Roo.util.TaskRunner();/*
14470  * Based on:
14471  * Ext JS Library 1.1.1
14472  * Copyright(c) 2006-2007, Ext JS, LLC.
14473  *
14474  * Originally Released Under LGPL - original licence link has changed is not relivant.
14475  *
14476  * Fork - LGPL
14477  * <script type="text/javascript">
14478  */
14479
14480  
14481 /**
14482  * @class Roo.util.MixedCollection
14483  * @extends Roo.util.Observable
14484  * A Collection class that maintains both numeric indexes and keys and exposes events.
14485  * @constructor
14486  * @param {Boolean} allowFunctions True if the addAll function should add function references to the
14487  * collection (defaults to false)
14488  * @param {Function} keyFn A function that can accept an item of the type(s) stored in this MixedCollection
14489  * and return the key value for that item.  This is used when available to look up the key on items that
14490  * were passed without an explicit key parameter to a MixedCollection method.  Passing this parameter is
14491  * equivalent to providing an implementation for the {@link #getKey} method.
14492  */
14493 Roo.util.MixedCollection = function(allowFunctions, keyFn){
14494     this.items = [];
14495     this.map = {};
14496     this.keys = [];
14497     this.length = 0;
14498     this.addEvents({
14499         /**
14500          * @event clear
14501          * Fires when the collection is cleared.
14502          */
14503         "clear" : true,
14504         /**
14505          * @event add
14506          * Fires when an item is added to the collection.
14507          * @param {Number} index The index at which the item was added.
14508          * @param {Object} o The item added.
14509          * @param {String} key The key associated with the added item.
14510          */
14511         "add" : true,
14512         /**
14513          * @event replace
14514          * Fires when an item is replaced in the collection.
14515          * @param {String} key he key associated with the new added.
14516          * @param {Object} old The item being replaced.
14517          * @param {Object} new The new item.
14518          */
14519         "replace" : true,
14520         /**
14521          * @event remove
14522          * Fires when an item is removed from the collection.
14523          * @param {Object} o The item being removed.
14524          * @param {String} key (optional) The key associated with the removed item.
14525          */
14526         "remove" : true,
14527         "sort" : true
14528     });
14529     this.allowFunctions = allowFunctions === true;
14530     if(keyFn){
14531         this.getKey = keyFn;
14532     }
14533     Roo.util.MixedCollection.superclass.constructor.call(this);
14534 };
14535
14536 Roo.extend(Roo.util.MixedCollection, Roo.util.Observable, {
14537     allowFunctions : false,
14538     
14539 /**
14540  * Adds an item to the collection.
14541  * @param {String} key The key to associate with the item
14542  * @param {Object} o The item to add.
14543  * @return {Object} The item added.
14544  */
14545     add : function(key, o){
14546         if(arguments.length == 1){
14547             o = arguments[0];
14548             key = this.getKey(o);
14549         }
14550         if(typeof key == "undefined" || key === null){
14551             this.length++;
14552             this.items.push(o);
14553             this.keys.push(null);
14554         }else{
14555             var old = this.map[key];
14556             if(old){
14557                 return this.replace(key, o);
14558             }
14559             this.length++;
14560             this.items.push(o);
14561             this.map[key] = o;
14562             this.keys.push(key);
14563         }
14564         this.fireEvent("add", this.length-1, o, key);
14565         return o;
14566     },
14567        
14568 /**
14569   * MixedCollection has a generic way to fetch keys if you implement getKey.
14570 <pre><code>
14571 // normal way
14572 var mc = new Roo.util.MixedCollection();
14573 mc.add(someEl.dom.id, someEl);
14574 mc.add(otherEl.dom.id, otherEl);
14575 //and so on
14576
14577 // using getKey
14578 var mc = new Roo.util.MixedCollection();
14579 mc.getKey = function(el){
14580    return el.dom.id;
14581 };
14582 mc.add(someEl);
14583 mc.add(otherEl);
14584
14585 // or via the constructor
14586 var mc = new Roo.util.MixedCollection(false, function(el){
14587    return el.dom.id;
14588 });
14589 mc.add(someEl);
14590 mc.add(otherEl);
14591 </code></pre>
14592  * @param o {Object} The item for which to find the key.
14593  * @return {Object} The key for the passed item.
14594  */
14595     getKey : function(o){
14596          return o.id; 
14597     },
14598    
14599 /**
14600  * Replaces an item in the collection.
14601  * @param {String} key The key associated with the item to replace, or the item to replace.
14602  * @param o {Object} o (optional) If the first parameter passed was a key, the item to associate with that key.
14603  * @return {Object}  The new item.
14604  */
14605     replace : function(key, o){
14606         if(arguments.length == 1){
14607             o = arguments[0];
14608             key = this.getKey(o);
14609         }
14610         var old = this.item(key);
14611         if(typeof key == "undefined" || key === null || typeof old == "undefined"){
14612              return this.add(key, o);
14613         }
14614         var index = this.indexOfKey(key);
14615         this.items[index] = o;
14616         this.map[key] = o;
14617         this.fireEvent("replace", key, old, o);
14618         return o;
14619     },
14620    
14621 /**
14622  * Adds all elements of an Array or an Object to the collection.
14623  * @param {Object/Array} objs An Object containing properties which will be added to the collection, or
14624  * an Array of values, each of which are added to the collection.
14625  */
14626     addAll : function(objs){
14627         if(arguments.length > 1 || objs instanceof Array){
14628             var args = arguments.length > 1 ? arguments : objs;
14629             for(var i = 0, len = args.length; i < len; i++){
14630                 this.add(args[i]);
14631             }
14632         }else{
14633             for(var key in objs){
14634                 if(this.allowFunctions || typeof objs[key] != "function"){
14635                     this.add(key, objs[key]);
14636                 }
14637             }
14638         }
14639     },
14640    
14641 /**
14642  * Executes the specified function once for every item in the collection, passing each
14643  * item as the first and only parameter. returning false from the function will stop the iteration.
14644  * @param {Function} fn The function to execute for each item.
14645  * @param {Object} scope (optional) The scope in which to execute the function.
14646  */
14647     each : function(fn, scope){
14648         var items = [].concat(this.items); // each safe for removal
14649         for(var i = 0, len = items.length; i < len; i++){
14650             if(fn.call(scope || items[i], items[i], i, len) === false){
14651                 break;
14652             }
14653         }
14654     },
14655    
14656 /**
14657  * Executes the specified function once for every key in the collection, passing each
14658  * key, and its associated item as the first two parameters.
14659  * @param {Function} fn The function to execute for each item.
14660  * @param {Object} scope (optional) The scope in which to execute the function.
14661  */
14662     eachKey : function(fn, scope){
14663         for(var i = 0, len = this.keys.length; i < len; i++){
14664             fn.call(scope || window, this.keys[i], this.items[i], i, len);
14665         }
14666     },
14667    
14668 /**
14669  * Returns the first item in the collection which elicits a true return value from the
14670  * passed selection function.
14671  * @param {Function} fn The selection function to execute for each item.
14672  * @param {Object} scope (optional) The scope in which to execute the function.
14673  * @return {Object} The first item in the collection which returned true from the selection function.
14674  */
14675     find : function(fn, scope){
14676         for(var i = 0, len = this.items.length; i < len; i++){
14677             if(fn.call(scope || window, this.items[i], this.keys[i])){
14678                 return this.items[i];
14679             }
14680         }
14681         return null;
14682     },
14683    
14684 /**
14685  * Inserts an item at the specified index in the collection.
14686  * @param {Number} index The index to insert the item at.
14687  * @param {String} key The key to associate with the new item, or the item itself.
14688  * @param {Object} o  (optional) If the second parameter was a key, the new item.
14689  * @return {Object} The item inserted.
14690  */
14691     insert : function(index, key, o){
14692         if(arguments.length == 2){
14693             o = arguments[1];
14694             key = this.getKey(o);
14695         }
14696         if(index >= this.length){
14697             return this.add(key, o);
14698         }
14699         this.length++;
14700         this.items.splice(index, 0, o);
14701         if(typeof key != "undefined" && key != null){
14702             this.map[key] = o;
14703         }
14704         this.keys.splice(index, 0, key);
14705         this.fireEvent("add", index, o, key);
14706         return o;
14707     },
14708    
14709 /**
14710  * Removed an item from the collection.
14711  * @param {Object} o The item to remove.
14712  * @return {Object} The item removed.
14713  */
14714     remove : function(o){
14715         return this.removeAt(this.indexOf(o));
14716     },
14717    
14718 /**
14719  * Remove an item from a specified index in the collection.
14720  * @param {Number} index The index within the collection of the item to remove.
14721  */
14722     removeAt : function(index){
14723         if(index < this.length && index >= 0){
14724             this.length--;
14725             var o = this.items[index];
14726             this.items.splice(index, 1);
14727             var key = this.keys[index];
14728             if(typeof key != "undefined"){
14729                 delete this.map[key];
14730             }
14731             this.keys.splice(index, 1);
14732             this.fireEvent("remove", o, key);
14733         }
14734     },
14735    
14736 /**
14737  * Removed an item associated with the passed key fom the collection.
14738  * @param {String} key The key of the item to remove.
14739  */
14740     removeKey : function(key){
14741         return this.removeAt(this.indexOfKey(key));
14742     },
14743    
14744 /**
14745  * Returns the number of items in the collection.
14746  * @return {Number} the number of items in the collection.
14747  */
14748     getCount : function(){
14749         return this.length; 
14750     },
14751    
14752 /**
14753  * Returns index within the collection of the passed Object.
14754  * @param {Object} o The item to find the index of.
14755  * @return {Number} index of the item.
14756  */
14757     indexOf : function(o){
14758         if(!this.items.indexOf){
14759             for(var i = 0, len = this.items.length; i < len; i++){
14760                 if(this.items[i] == o) {
14761                     return i;
14762                 }
14763             }
14764             return -1;
14765         }else{
14766             return this.items.indexOf(o);
14767         }
14768     },
14769    
14770 /**
14771  * Returns index within the collection of the passed key.
14772  * @param {String} key The key to find the index of.
14773  * @return {Number} index of the key.
14774  */
14775     indexOfKey : function(key){
14776         if(!this.keys.indexOf){
14777             for(var i = 0, len = this.keys.length; i < len; i++){
14778                 if(this.keys[i] == key) {
14779                     return i;
14780                 }
14781             }
14782             return -1;
14783         }else{
14784             return this.keys.indexOf(key);
14785         }
14786     },
14787    
14788 /**
14789  * Returns the item associated with the passed key OR index. Key has priority over index.
14790  * @param {String/Number} key The key or index of the item.
14791  * @return {Object} The item associated with the passed key.
14792  */
14793     item : function(key){
14794         if (key === 'length') {
14795             return null;
14796         }
14797         var item = typeof this.map[key] != "undefined" ? this.map[key] : this.items[key];
14798         return typeof item != 'function' || this.allowFunctions ? item : null; // for prototype!
14799     },
14800     
14801 /**
14802  * Returns the item at the specified index.
14803  * @param {Number} index The index of the item.
14804  * @return {Object}
14805  */
14806     itemAt : function(index){
14807         return this.items[index];
14808     },
14809     
14810 /**
14811  * Returns the item associated with the passed key.
14812  * @param {String/Number} key The key of the item.
14813  * @return {Object} The item associated with the passed key.
14814  */
14815     key : function(key){
14816         return this.map[key];
14817     },
14818    
14819 /**
14820  * Returns true if the collection contains the passed Object as an item.
14821  * @param {Object} o  The Object to look for in the collection.
14822  * @return {Boolean} True if the collection contains the Object as an item.
14823  */
14824     contains : function(o){
14825         return this.indexOf(o) != -1;
14826     },
14827    
14828 /**
14829  * Returns true if the collection contains the passed Object as a key.
14830  * @param {String} key The key to look for in the collection.
14831  * @return {Boolean} True if the collection contains the Object as a key.
14832  */
14833     containsKey : function(key){
14834         return typeof this.map[key] != "undefined";
14835     },
14836    
14837 /**
14838  * Removes all items from the collection.
14839  */
14840     clear : function(){
14841         this.length = 0;
14842         this.items = [];
14843         this.keys = [];
14844         this.map = {};
14845         this.fireEvent("clear");
14846     },
14847    
14848 /**
14849  * Returns the first item in the collection.
14850  * @return {Object} the first item in the collection..
14851  */
14852     first : function(){
14853         return this.items[0]; 
14854     },
14855    
14856 /**
14857  * Returns the last item in the collection.
14858  * @return {Object} the last item in the collection..
14859  */
14860     last : function(){
14861         return this.items[this.length-1];   
14862     },
14863     
14864     _sort : function(property, dir, fn){
14865         var dsc = String(dir).toUpperCase() == "DESC" ? -1 : 1;
14866         fn = fn || function(a, b){
14867             return a-b;
14868         };
14869         var c = [], k = this.keys, items = this.items;
14870         for(var i = 0, len = items.length; i < len; i++){
14871             c[c.length] = {key: k[i], value: items[i], index: i};
14872         }
14873         c.sort(function(a, b){
14874             var v = fn(a[property], b[property]) * dsc;
14875             if(v == 0){
14876                 v = (a.index < b.index ? -1 : 1);
14877             }
14878             return v;
14879         });
14880         for(var i = 0, len = c.length; i < len; i++){
14881             items[i] = c[i].value;
14882             k[i] = c[i].key;
14883         }
14884         this.fireEvent("sort", this);
14885     },
14886     
14887     /**
14888      * Sorts this collection with the passed comparison function
14889      * @param {String} direction (optional) "ASC" or "DESC"
14890      * @param {Function} fn (optional) comparison function
14891      */
14892     sort : function(dir, fn){
14893         this._sort("value", dir, fn);
14894     },
14895     
14896     /**
14897      * Sorts this collection by keys
14898      * @param {String} direction (optional) "ASC" or "DESC"
14899      * @param {Function} fn (optional) a comparison function (defaults to case insensitive string)
14900      */
14901     keySort : function(dir, fn){
14902         this._sort("key", dir, fn || function(a, b){
14903             return String(a).toUpperCase()-String(b).toUpperCase();
14904         });
14905     },
14906     
14907     /**
14908      * Returns a range of items in this collection
14909      * @param {Number} startIndex (optional) defaults to 0
14910      * @param {Number} endIndex (optional) default to the last item
14911      * @return {Array} An array of items
14912      */
14913     getRange : function(start, end){
14914         var items = this.items;
14915         if(items.length < 1){
14916             return [];
14917         }
14918         start = start || 0;
14919         end = Math.min(typeof end == "undefined" ? this.length-1 : end, this.length-1);
14920         var r = [];
14921         if(start <= end){
14922             for(var i = start; i <= end; i++) {
14923                     r[r.length] = items[i];
14924             }
14925         }else{
14926             for(var i = start; i >= end; i--) {
14927                     r[r.length] = items[i];
14928             }
14929         }
14930         return r;
14931     },
14932         
14933     /**
14934      * Filter the <i>objects</i> in this collection by a specific property. 
14935      * Returns a new collection that has been filtered.
14936      * @param {String} property A property on your objects
14937      * @param {String/RegExp} value Either string that the property values 
14938      * should start with or a RegExp to test against the property
14939      * @return {MixedCollection} The new filtered collection
14940      */
14941     filter : function(property, value){
14942         if(!value.exec){ // not a regex
14943             value = String(value);
14944             if(value.length == 0){
14945                 return this.clone();
14946             }
14947             value = new RegExp("^" + Roo.escapeRe(value), "i");
14948         }
14949         return this.filterBy(function(o){
14950             return o && value.test(o[property]);
14951         });
14952         },
14953     
14954     /**
14955      * Filter by a function. * Returns a new collection that has been filtered.
14956      * The passed function will be called with each 
14957      * object in the collection. If the function returns true, the value is included 
14958      * otherwise it is filtered.
14959      * @param {Function} fn The function to be called, it will receive the args o (the object), k (the key)
14960      * @param {Object} scope (optional) The scope of the function (defaults to this) 
14961      * @return {MixedCollection} The new filtered collection
14962      */
14963     filterBy : function(fn, scope){
14964         var r = new Roo.util.MixedCollection();
14965         r.getKey = this.getKey;
14966         var k = this.keys, it = this.items;
14967         for(var i = 0, len = it.length; i < len; i++){
14968             if(fn.call(scope||this, it[i], k[i])){
14969                                 r.add(k[i], it[i]);
14970                         }
14971         }
14972         return r;
14973     },
14974     
14975     /**
14976      * Creates a duplicate of this collection
14977      * @return {MixedCollection}
14978      */
14979     clone : function(){
14980         var r = new Roo.util.MixedCollection();
14981         var k = this.keys, it = this.items;
14982         for(var i = 0, len = it.length; i < len; i++){
14983             r.add(k[i], it[i]);
14984         }
14985         r.getKey = this.getKey;
14986         return r;
14987     }
14988 });
14989 /**
14990  * Returns the item associated with the passed key or index.
14991  * @method
14992  * @param {String/Number} key The key or index of the item.
14993  * @return {Object} The item associated with the passed key.
14994  */
14995 Roo.util.MixedCollection.prototype.get = Roo.util.MixedCollection.prototype.item;/*
14996  * Based on:
14997  * Ext JS Library 1.1.1
14998  * Copyright(c) 2006-2007, Ext JS, LLC.
14999  *
15000  * Originally Released Under LGPL - original licence link has changed is not relivant.
15001  *
15002  * Fork - LGPL
15003  * <script type="text/javascript">
15004  */
15005 /**
15006  * @class Roo.util.JSON
15007  * Modified version of Douglas Crockford"s json.js that doesn"t
15008  * mess with the Object prototype 
15009  * http://www.json.org/js.html
15010  * @static
15011  */
15012 Roo.util.JSON = new (function(){
15013     var useHasOwn = {}.hasOwnProperty ? true : false;
15014     
15015     // crashes Safari in some instances
15016     //var validRE = /^("(\\.|[^"\\\n\r])*?"|[,:{}\[\]0-9.\-+Eaeflnr-u \n\r\t])+?$/;
15017     
15018     var pad = function(n) {
15019         return n < 10 ? "0" + n : n;
15020     };
15021     
15022     var m = {
15023         "\b": '\\b',
15024         "\t": '\\t',
15025         "\n": '\\n',
15026         "\f": '\\f',
15027         "\r": '\\r',
15028         '"' : '\\"',
15029         "\\": '\\\\'
15030     };
15031
15032     var encodeString = function(s){
15033         if (/["\\\x00-\x1f]/.test(s)) {
15034             return '"' + s.replace(/([\x00-\x1f\\"])/g, function(a, b) {
15035                 var c = m[b];
15036                 if(c){
15037                     return c;
15038                 }
15039                 c = b.charCodeAt();
15040                 return "\\u00" +
15041                     Math.floor(c / 16).toString(16) +
15042                     (c % 16).toString(16);
15043             }) + '"';
15044         }
15045         return '"' + s + '"';
15046     };
15047     
15048     var encodeArray = function(o){
15049         var a = ["["], b, i, l = o.length, v;
15050             for (i = 0; i < l; i += 1) {
15051                 v = o[i];
15052                 switch (typeof v) {
15053                     case "undefined":
15054                     case "function":
15055                     case "unknown":
15056                         break;
15057                     default:
15058                         if (b) {
15059                             a.push(',');
15060                         }
15061                         a.push(v === null ? "null" : Roo.util.JSON.encode(v));
15062                         b = true;
15063                 }
15064             }
15065             a.push("]");
15066             return a.join("");
15067     };
15068     
15069     var encodeDate = function(o){
15070         return '"' + o.getFullYear() + "-" +
15071                 pad(o.getMonth() + 1) + "-" +
15072                 pad(o.getDate()) + "T" +
15073                 pad(o.getHours()) + ":" +
15074                 pad(o.getMinutes()) + ":" +
15075                 pad(o.getSeconds()) + '"';
15076     };
15077     
15078     /**
15079      * Encodes an Object, Array or other value
15080      * @param {Mixed} o The variable to encode
15081      * @return {String} The JSON string
15082      */
15083     this.encode = function(o)
15084     {
15085         // should this be extended to fully wrap stringify..
15086         
15087         if(typeof o == "undefined" || o === null){
15088             return "null";
15089         }else if(o instanceof Array){
15090             return encodeArray(o);
15091         }else if(o instanceof Date){
15092             return encodeDate(o);
15093         }else if(typeof o == "string"){
15094             return encodeString(o);
15095         }else if(typeof o == "number"){
15096             return isFinite(o) ? String(o) : "null";
15097         }else if(typeof o == "boolean"){
15098             return String(o);
15099         }else {
15100             var a = ["{"], b, i, v;
15101             for (i in o) {
15102                 if(!useHasOwn || o.hasOwnProperty(i)) {
15103                     v = o[i];
15104                     switch (typeof v) {
15105                     case "undefined":
15106                     case "function":
15107                     case "unknown":
15108                         break;
15109                     default:
15110                         if(b){
15111                             a.push(',');
15112                         }
15113                         a.push(this.encode(i), ":",
15114                                 v === null ? "null" : this.encode(v));
15115                         b = true;
15116                     }
15117                 }
15118             }
15119             a.push("}");
15120             return a.join("");
15121         }
15122     };
15123     
15124     /**
15125      * Decodes (parses) a JSON string to an object. If the JSON is invalid, this function throws a SyntaxError.
15126      * @param {String} json The JSON string
15127      * @return {Object} The resulting object
15128      */
15129     this.decode = function(json){
15130         
15131         return  /** eval:var:json */ eval("(" + json + ')');
15132     };
15133 })();
15134 /** 
15135  * Shorthand for {@link Roo.util.JSON#encode}
15136  * @member Roo encode 
15137  * @method */
15138 Roo.encode = typeof(JSON) != 'undefined' && JSON.stringify ? JSON.stringify : Roo.util.JSON.encode;
15139 /** 
15140  * Shorthand for {@link Roo.util.JSON#decode}
15141  * @member Roo decode 
15142  * @method */
15143 Roo.decode = typeof(JSON) != 'undefined' && JSON.parse ? JSON.parse : Roo.util.JSON.decode;
15144 /*
15145  * Based on:
15146  * Ext JS Library 1.1.1
15147  * Copyright(c) 2006-2007, Ext JS, LLC.
15148  *
15149  * Originally Released Under LGPL - original licence link has changed is not relivant.
15150  *
15151  * Fork - LGPL
15152  * <script type="text/javascript">
15153  */
15154  
15155 /**
15156  * @class Roo.util.Format
15157  * Reusable data formatting functions
15158  * @static
15159  */
15160 Roo.util.Format = function(){
15161     var trimRe = /^\s+|\s+$/g;
15162     return {
15163         /**
15164          * Truncate a string and add an ellipsis ('...') to the end if it exceeds the specified length
15165          * @param {String} value The string to truncate
15166          * @param {Number} length The maximum length to allow before truncating
15167          * @return {String} The converted text
15168          */
15169         ellipsis : function(value, len){
15170             if(value && value.length > len){
15171                 return value.substr(0, len-3)+"...";
15172             }
15173             return value;
15174         },
15175
15176         /**
15177          * Checks a reference and converts it to empty string if it is undefined
15178          * @param {Mixed} value Reference to check
15179          * @return {Mixed} Empty string if converted, otherwise the original value
15180          */
15181         undef : function(value){
15182             return typeof value != "undefined" ? value : "";
15183         },
15184
15185         /**
15186          * Convert certain characters (&, <, >, and ') to their HTML character equivalents for literal display in web pages.
15187          * @param {String} value The string to encode
15188          * @return {String} The encoded text
15189          */
15190         htmlEncode : function(value){
15191             return !value ? value : String(value).replace(/&/g, "&amp;").replace(/>/g, "&gt;").replace(/</g, "&lt;").replace(/"/g, "&quot;");
15192         },
15193
15194         /**
15195          * Convert certain characters (&, <, >, and ') from their HTML character equivalents.
15196          * @param {String} value The string to decode
15197          * @return {String} The decoded text
15198          */
15199         htmlDecode : function(value){
15200             return !value ? value : String(value).replace(/&amp;/g, "&").replace(/&gt;/g, ">").replace(/&lt;/g, "<").replace(/&quot;/g, '"');
15201         },
15202
15203         /**
15204          * Trims any whitespace from either side of a string
15205          * @param {String} value The text to trim
15206          * @return {String} The trimmed text
15207          */
15208         trim : function(value){
15209             return String(value).replace(trimRe, "");
15210         },
15211
15212         /**
15213          * Returns a substring from within an original string
15214          * @param {String} value The original text
15215          * @param {Number} start The start index of the substring
15216          * @param {Number} length The length of the substring
15217          * @return {String} The substring
15218          */
15219         substr : function(value, start, length){
15220             return String(value).substr(start, length);
15221         },
15222
15223         /**
15224          * Converts a string to all lower case letters
15225          * @param {String} value The text to convert
15226          * @return {String} The converted text
15227          */
15228         lowercase : function(value){
15229             return String(value).toLowerCase();
15230         },
15231
15232         /**
15233          * Converts a string to all upper case letters
15234          * @param {String} value The text to convert
15235          * @return {String} The converted text
15236          */
15237         uppercase : function(value){
15238             return String(value).toUpperCase();
15239         },
15240
15241         /**
15242          * Converts the first character only of a string to upper case
15243          * @param {String} value The text to convert
15244          * @return {String} The converted text
15245          */
15246         capitalize : function(value){
15247             return !value ? value : value.charAt(0).toUpperCase() + value.substr(1).toLowerCase();
15248         },
15249
15250         // private
15251         call : function(value, fn){
15252             if(arguments.length > 2){
15253                 var args = Array.prototype.slice.call(arguments, 2);
15254                 args.unshift(value);
15255                  
15256                 return /** eval:var:value */  eval(fn).apply(window, args);
15257             }else{
15258                 /** eval:var:value */
15259                 return /** eval:var:value */ eval(fn).call(window, value);
15260             }
15261         },
15262
15263        
15264         /**
15265          * safer version of Math.toFixed..??/
15266          * @param {Number/String} value The numeric value to format
15267          * @param {Number/String} value Decimal places 
15268          * @return {String} The formatted currency string
15269          */
15270         toFixed : function(v, n)
15271         {
15272             // why not use to fixed - precision is buggered???
15273             if (!n) {
15274                 return Math.round(v-0);
15275             }
15276             var fact = Math.pow(10,n+1);
15277             v = (Math.round((v-0)*fact))/fact;
15278             var z = (''+fact).substring(2);
15279             if (v == Math.floor(v)) {
15280                 return Math.floor(v) + '.' + z;
15281             }
15282             
15283             // now just padd decimals..
15284             var ps = String(v).split('.');
15285             var fd = (ps[1] + z);
15286             var r = fd.substring(0,n); 
15287             var rm = fd.substring(n); 
15288             if (rm < 5) {
15289                 return ps[0] + '.' + r;
15290             }
15291             r*=1; // turn it into a number;
15292             r++;
15293             if (String(r).length != n) {
15294                 ps[0]*=1;
15295                 ps[0]++;
15296                 r = String(r).substring(1); // chop the end off.
15297             }
15298             
15299             return ps[0] + '.' + r;
15300              
15301         },
15302         
15303         /**
15304          * Format a number as US currency
15305          * @param {Number/String} value The numeric value to format
15306          * @return {String} The formatted currency string
15307          */
15308         usMoney : function(v){
15309             return '$' + Roo.util.Format.number(v);
15310         },
15311         
15312         /**
15313          * Format a number
15314          * eventually this should probably emulate php's number_format
15315          * @param {Number/String} value The numeric value to format
15316          * @param {Number} decimals number of decimal places
15317          * @param {String} delimiter for thousands (default comma)
15318          * @return {String} The formatted currency string
15319          */
15320         number : function(v, decimals, thousandsDelimiter)
15321         {
15322             // multiply and round.
15323             decimals = typeof(decimals) == 'undefined' ? 2 : decimals;
15324             thousandsDelimiter = typeof(thousandsDelimiter) == 'undefined' ? ',' : thousandsDelimiter;
15325             
15326             var mul = Math.pow(10, decimals);
15327             var zero = String(mul).substring(1);
15328             v = (Math.round((v-0)*mul))/mul;
15329             
15330             // if it's '0' number.. then
15331             
15332             //v = (v == Math.floor(v)) ? v + "." + zero : ((v*10 == Math.floor(v*10)) ? v + "0" : v);
15333             v = String(v);
15334             var ps = v.split('.');
15335             var whole = ps[0];
15336             
15337             var r = /(\d+)(\d{3})/;
15338             // add comma's
15339             
15340             if(thousandsDelimiter.length != 0) {
15341                 whole = whole.replace(/\B(?=(\d{3})+(?!\d))/g, thousandsDelimiter );
15342             } 
15343             
15344             var sub = ps[1] ?
15345                     // has decimals..
15346                     (decimals ?  ('.'+ ps[1] + zero.substring(ps[1].length)) : '') :
15347                     // does not have decimals
15348                     (decimals ? ('.' + zero) : '');
15349             
15350             
15351             return whole + sub ;
15352         },
15353         
15354         /**
15355          * Parse a value into a formatted date using the specified format pattern.
15356          * @param {Mixed} value The value to format
15357          * @param {String} format (optional) Any valid date format string (defaults to 'm/d/Y')
15358          * @return {String} The formatted date string
15359          */
15360         date : function(v, format){
15361             if(!v){
15362                 return "";
15363             }
15364             if(!(v instanceof Date)){
15365                 v = new Date(Date.parse(v));
15366             }
15367             return v.dateFormat(format || Roo.util.Format.defaults.date);
15368         },
15369
15370         /**
15371          * Returns a date rendering function that can be reused to apply a date format multiple times efficiently
15372          * @param {String} format Any valid date format string
15373          * @return {Function} The date formatting function
15374          */
15375         dateRenderer : function(format){
15376             return function(v){
15377                 return Roo.util.Format.date(v, format);  
15378             };
15379         },
15380
15381         // private
15382         stripTagsRE : /<\/?[^>]+>/gi,
15383         
15384         /**
15385          * Strips all HTML tags
15386          * @param {Mixed} value The text from which to strip tags
15387          * @return {String} The stripped text
15388          */
15389         stripTags : function(v){
15390             return !v ? v : String(v).replace(this.stripTagsRE, "");
15391         },
15392         
15393         /**
15394          * Size in Mb,Gb etc.
15395          * @param {Number} value The number to be formated
15396          * @param {number} decimals how many decimal places
15397          * @return {String} the formated string
15398          */
15399         size : function(value, decimals)
15400         {
15401             var sizes = ['b', 'k', 'M', 'G', 'T'];
15402             if (value == 0) {
15403                 return 0;
15404             }
15405             var i = parseInt(Math.floor(Math.log(value) / Math.log(1024)));
15406             return Roo.util.Format.number(value/ Math.pow(1024, i) ,decimals)   + sizes[i];
15407         }
15408         
15409         
15410         
15411     };
15412 }();
15413 Roo.util.Format.defaults = {
15414     date : 'd/M/Y'
15415 };/*
15416  * Based on:
15417  * Ext JS Library 1.1.1
15418  * Copyright(c) 2006-2007, Ext JS, LLC.
15419  *
15420  * Originally Released Under LGPL - original licence link has changed is not relivant.
15421  *
15422  * Fork - LGPL
15423  * <script type="text/javascript">
15424  */
15425
15426
15427  
15428
15429 /**
15430  * @class Roo.MasterTemplate
15431  * @extends Roo.Template
15432  * Provides a template that can have child templates. The syntax is:
15433 <pre><code>
15434 var t = new Roo.MasterTemplate(
15435         '&lt;select name="{name}"&gt;',
15436                 '&lt;tpl name="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
15437         '&lt;/select&gt;'
15438 );
15439 t.add('options', {value: 'foo', text: 'bar'});
15440 // or you can add multiple child elements in one shot
15441 t.addAll('options', [
15442     {value: 'foo', text: 'bar'},
15443     {value: 'foo2', text: 'bar2'},
15444     {value: 'foo3', text: 'bar3'}
15445 ]);
15446 // then append, applying the master template values
15447 t.append('my-form', {name: 'my-select'});
15448 </code></pre>
15449 * A name attribute for the child template is not required if you have only one child
15450 * template or you want to refer to them by index.
15451  */
15452 Roo.MasterTemplate = function(){
15453     Roo.MasterTemplate.superclass.constructor.apply(this, arguments);
15454     this.originalHtml = this.html;
15455     var st = {};
15456     var m, re = this.subTemplateRe;
15457     re.lastIndex = 0;
15458     var subIndex = 0;
15459     while(m = re.exec(this.html)){
15460         var name = m[1], content = m[2];
15461         st[subIndex] = {
15462             name: name,
15463             index: subIndex,
15464             buffer: [],
15465             tpl : new Roo.Template(content)
15466         };
15467         if(name){
15468             st[name] = st[subIndex];
15469         }
15470         st[subIndex].tpl.compile();
15471         st[subIndex].tpl.call = this.call.createDelegate(this);
15472         subIndex++;
15473     }
15474     this.subCount = subIndex;
15475     this.subs = st;
15476 };
15477 Roo.extend(Roo.MasterTemplate, Roo.Template, {
15478     /**
15479     * The regular expression used to match sub templates
15480     * @type RegExp
15481     * @property
15482     */
15483     subTemplateRe : /<tpl(?:\sname="([\w-]+)")?>((?:.|\n)*?)<\/tpl>/gi,
15484
15485     /**
15486      * Applies the passed values to a child template.
15487      * @param {String/Number} name (optional) The name or index of the child template
15488      * @param {Array/Object} values The values to be applied to the template
15489      * @return {MasterTemplate} this
15490      */
15491      add : function(name, values){
15492         if(arguments.length == 1){
15493             values = arguments[0];
15494             name = 0;
15495         }
15496         var s = this.subs[name];
15497         s.buffer[s.buffer.length] = s.tpl.apply(values);
15498         return this;
15499     },
15500
15501     /**
15502      * Applies all the passed values to a child template.
15503      * @param {String/Number} name (optional) The name or index of the child template
15504      * @param {Array} values The values to be applied to the template, this should be an array of objects.
15505      * @param {Boolean} reset (optional) True to reset the template first
15506      * @return {MasterTemplate} this
15507      */
15508     fill : function(name, values, reset){
15509         var a = arguments;
15510         if(a.length == 1 || (a.length == 2 && typeof a[1] == "boolean")){
15511             values = a[0];
15512             name = 0;
15513             reset = a[1];
15514         }
15515         if(reset){
15516             this.reset();
15517         }
15518         for(var i = 0, len = values.length; i < len; i++){
15519             this.add(name, values[i]);
15520         }
15521         return this;
15522     },
15523
15524     /**
15525      * Resets the template for reuse
15526      * @return {MasterTemplate} this
15527      */
15528      reset : function(){
15529         var s = this.subs;
15530         for(var i = 0; i < this.subCount; i++){
15531             s[i].buffer = [];
15532         }
15533         return this;
15534     },
15535
15536     applyTemplate : function(values){
15537         var s = this.subs;
15538         var replaceIndex = -1;
15539         this.html = this.originalHtml.replace(this.subTemplateRe, function(m, name){
15540             return s[++replaceIndex].buffer.join("");
15541         });
15542         return Roo.MasterTemplate.superclass.applyTemplate.call(this, values);
15543     },
15544
15545     apply : function(){
15546         return this.applyTemplate.apply(this, arguments);
15547     },
15548
15549     compile : function(){return this;}
15550 });
15551
15552 /**
15553  * Alias for fill().
15554  * @method
15555  */
15556 Roo.MasterTemplate.prototype.addAll = Roo.MasterTemplate.prototype.fill;
15557  /**
15558  * Creates a template from the passed element's value (display:none textarea, preferred) or innerHTML. e.g.
15559  * var tpl = Roo.MasterTemplate.from('element-id');
15560  * @param {String/HTMLElement} el
15561  * @param {Object} config
15562  * @static
15563  */
15564 Roo.MasterTemplate.from = function(el, config){
15565     el = Roo.getDom(el);
15566     return new Roo.MasterTemplate(el.value || el.innerHTML, config || '');
15567 };/*
15568  * Based on:
15569  * Ext JS Library 1.1.1
15570  * Copyright(c) 2006-2007, Ext JS, LLC.
15571  *
15572  * Originally Released Under LGPL - original licence link has changed is not relivant.
15573  *
15574  * Fork - LGPL
15575  * <script type="text/javascript">
15576  */
15577
15578  
15579 /**
15580  * @class Roo.util.CSS
15581  * Utility class for manipulating CSS rules
15582  * @static
15583
15584  */
15585 Roo.util.CSS = function(){
15586         var rules = null;
15587         var doc = document;
15588
15589     var camelRe = /(-[a-z])/gi;
15590     var camelFn = function(m, a){ return a.charAt(1).toUpperCase(); };
15591
15592    return {
15593    /**
15594     * Very simple dynamic creation of stylesheets from a text blob of rules.  The text will wrapped in a style
15595     * tag and appended to the HEAD of the document.
15596     * @param {String|Object} cssText The text containing the css rules
15597     * @param {String} id An id to add to the stylesheet for later removal
15598     * @return {StyleSheet}
15599     */
15600     createStyleSheet : function(cssText, id){
15601         var ss;
15602         var head = doc.getElementsByTagName("head")[0];
15603         var nrules = doc.createElement("style");
15604         nrules.setAttribute("type", "text/css");
15605         if(id){
15606             nrules.setAttribute("id", id);
15607         }
15608         if (typeof(cssText) != 'string') {
15609             // support object maps..
15610             // not sure if this a good idea.. 
15611             // perhaps it should be merged with the general css handling
15612             // and handle js style props.
15613             var cssTextNew = [];
15614             for(var n in cssText) {
15615                 var citems = [];
15616                 for(var k in cssText[n]) {
15617                     citems.push( k + ' : ' +cssText[n][k] + ';' );
15618                 }
15619                 cssTextNew.push( n + ' { ' + citems.join(' ') + '} ');
15620                 
15621             }
15622             cssText = cssTextNew.join("\n");
15623             
15624         }
15625        
15626        
15627        if(Roo.isIE){
15628            head.appendChild(nrules);
15629            ss = nrules.styleSheet;
15630            ss.cssText = cssText;
15631        }else{
15632            try{
15633                 nrules.appendChild(doc.createTextNode(cssText));
15634            }catch(e){
15635                nrules.cssText = cssText; 
15636            }
15637            head.appendChild(nrules);
15638            ss = nrules.styleSheet ? nrules.styleSheet : (nrules.sheet || doc.styleSheets[doc.styleSheets.length-1]);
15639        }
15640        this.cacheStyleSheet(ss);
15641        return ss;
15642    },
15643
15644    /**
15645     * Removes a style or link tag by id
15646     * @param {String} id The id of the tag
15647     */
15648    removeStyleSheet : function(id){
15649        var existing = doc.getElementById(id);
15650        if(existing){
15651            existing.parentNode.removeChild(existing);
15652        }
15653    },
15654
15655    /**
15656     * Dynamically swaps an existing stylesheet reference for a new one
15657     * @param {String} id The id of an existing link tag to remove
15658     * @param {String} url The href of the new stylesheet to include
15659     */
15660    swapStyleSheet : function(id, url){
15661        this.removeStyleSheet(id);
15662        var ss = doc.createElement("link");
15663        ss.setAttribute("rel", "stylesheet");
15664        ss.setAttribute("type", "text/css");
15665        ss.setAttribute("id", id);
15666        ss.setAttribute("href", url);
15667        doc.getElementsByTagName("head")[0].appendChild(ss);
15668    },
15669    
15670    /**
15671     * Refresh the rule cache if you have dynamically added stylesheets
15672     * @return {Object} An object (hash) of rules indexed by selector
15673     */
15674    refreshCache : function(){
15675        return this.getRules(true);
15676    },
15677
15678    // private
15679    cacheStyleSheet : function(stylesheet){
15680        if(!rules){
15681            rules = {};
15682        }
15683        try{// try catch for cross domain access issue
15684            var ssRules = stylesheet.cssRules || stylesheet.rules;
15685            for(var j = ssRules.length-1; j >= 0; --j){
15686                rules[ssRules[j].selectorText] = ssRules[j];
15687            }
15688        }catch(e){}
15689    },
15690    
15691    /**
15692     * Gets all css rules for the document
15693     * @param {Boolean} refreshCache true to refresh the internal cache
15694     * @return {Object} An object (hash) of rules indexed by selector
15695     */
15696    getRules : function(refreshCache){
15697                 if(rules == null || refreshCache){
15698                         rules = {};
15699                         var ds = doc.styleSheets;
15700                         for(var i =0, len = ds.length; i < len; i++){
15701                             try{
15702                         this.cacheStyleSheet(ds[i]);
15703                     }catch(e){} 
15704                 }
15705                 }
15706                 return rules;
15707         },
15708         
15709         /**
15710     * Gets an an individual CSS rule by selector(s)
15711     * @param {String/Array} selector The CSS selector or an array of selectors to try. The first selector that is found is returned.
15712     * @param {Boolean} refreshCache true to refresh the internal cache if you have recently updated any rules or added styles dynamically
15713     * @return {CSSRule} The CSS rule or null if one is not found
15714     */
15715    getRule : function(selector, refreshCache){
15716                 var rs = this.getRules(refreshCache);
15717                 if(!(selector instanceof Array)){
15718                     return rs[selector];
15719                 }
15720                 for(var i = 0; i < selector.length; i++){
15721                         if(rs[selector[i]]){
15722                                 return rs[selector[i]];
15723                         }
15724                 }
15725                 return null;
15726         },
15727         
15728         
15729         /**
15730     * Updates a rule property
15731     * @param {String/Array} selector If it's an array it tries each selector until it finds one. Stops immediately once one is found.
15732     * @param {String} property The css property
15733     * @param {String} value The new value for the property
15734     * @return {Boolean} true If a rule was found and updated
15735     */
15736    updateRule : function(selector, property, value){
15737                 if(!(selector instanceof Array)){
15738                         var rule = this.getRule(selector);
15739                         if(rule){
15740                                 rule.style[property.replace(camelRe, camelFn)] = value;
15741                                 return true;
15742                         }
15743                 }else{
15744                         for(var i = 0; i < selector.length; i++){
15745                                 if(this.updateRule(selector[i], property, value)){
15746                                         return true;
15747                                 }
15748                         }
15749                 }
15750                 return false;
15751         }
15752    };   
15753 }();/*
15754  * Based on:
15755  * Ext JS Library 1.1.1
15756  * Copyright(c) 2006-2007, Ext JS, LLC.
15757  *
15758  * Originally Released Under LGPL - original licence link has changed is not relivant.
15759  *
15760  * Fork - LGPL
15761  * <script type="text/javascript">
15762  */
15763
15764  
15765
15766 /**
15767  * @class Roo.util.ClickRepeater
15768  * @extends Roo.util.Observable
15769  * 
15770  * A wrapper class which can be applied to any element. Fires a "click" event while the
15771  * mouse is pressed. The interval between firings may be specified in the config but
15772  * defaults to 10 milliseconds.
15773  * 
15774  * Optionally, a CSS class may be applied to the element during the time it is pressed.
15775  * 
15776  * @cfg {String/HTMLElement/Element} el The element to act as a button.
15777  * @cfg {Number} delay The initial delay before the repeating event begins firing.
15778  * Similar to an autorepeat key delay.
15779  * @cfg {Number} interval The interval between firings of the "click" event. Default 10 ms.
15780  * @cfg {String} pressClass A CSS class name to be applied to the element while pressed.
15781  * @cfg {Boolean} accelerate True if autorepeating should start slowly and accelerate.
15782  *           "interval" and "delay" are ignored. "immediate" is honored.
15783  * @cfg {Boolean} preventDefault True to prevent the default click event
15784  * @cfg {Boolean} stopDefault True to stop the default click event
15785  * 
15786  * @history
15787  *     2007-02-02 jvs Original code contributed by Nige "Animal" White
15788  *     2007-02-02 jvs Renamed to ClickRepeater
15789  *   2007-02-03 jvs Modifications for FF Mac and Safari 
15790  *
15791  *  @constructor
15792  * @param {String/HTMLElement/Element} el The element to listen on
15793  * @param {Object} config
15794  **/
15795 Roo.util.ClickRepeater = function(el, config)
15796 {
15797     this.el = Roo.get(el);
15798     this.el.unselectable();
15799
15800     Roo.apply(this, config);
15801
15802     this.addEvents({
15803     /**
15804      * @event mousedown
15805      * Fires when the mouse button is depressed.
15806      * @param {Roo.util.ClickRepeater} this
15807      */
15808         "mousedown" : true,
15809     /**
15810      * @event click
15811      * Fires on a specified interval during the time the element is pressed.
15812      * @param {Roo.util.ClickRepeater} this
15813      */
15814         "click" : true,
15815     /**
15816      * @event mouseup
15817      * Fires when the mouse key is released.
15818      * @param {Roo.util.ClickRepeater} this
15819      */
15820         "mouseup" : true
15821     });
15822
15823     this.el.on("mousedown", this.handleMouseDown, this);
15824     if(this.preventDefault || this.stopDefault){
15825         this.el.on("click", function(e){
15826             if(this.preventDefault){
15827                 e.preventDefault();
15828             }
15829             if(this.stopDefault){
15830                 e.stopEvent();
15831             }
15832         }, this);
15833     }
15834
15835     // allow inline handler
15836     if(this.handler){
15837         this.on("click", this.handler,  this.scope || this);
15838     }
15839
15840     Roo.util.ClickRepeater.superclass.constructor.call(this);
15841 };
15842
15843 Roo.extend(Roo.util.ClickRepeater, Roo.util.Observable, {
15844     interval : 20,
15845     delay: 250,
15846     preventDefault : true,
15847     stopDefault : false,
15848     timer : 0,
15849
15850     // private
15851     handleMouseDown : function(){
15852         clearTimeout(this.timer);
15853         this.el.blur();
15854         if(this.pressClass){
15855             this.el.addClass(this.pressClass);
15856         }
15857         this.mousedownTime = new Date();
15858
15859         Roo.get(document).on("mouseup", this.handleMouseUp, this);
15860         this.el.on("mouseout", this.handleMouseOut, this);
15861
15862         this.fireEvent("mousedown", this);
15863         this.fireEvent("click", this);
15864         
15865         this.timer = this.click.defer(this.delay || this.interval, this);
15866     },
15867
15868     // private
15869     click : function(){
15870         this.fireEvent("click", this);
15871         this.timer = this.click.defer(this.getInterval(), this);
15872     },
15873
15874     // private
15875     getInterval: function(){
15876         if(!this.accelerate){
15877             return this.interval;
15878         }
15879         var pressTime = this.mousedownTime.getElapsed();
15880         if(pressTime < 500){
15881             return 400;
15882         }else if(pressTime < 1700){
15883             return 320;
15884         }else if(pressTime < 2600){
15885             return 250;
15886         }else if(pressTime < 3500){
15887             return 180;
15888         }else if(pressTime < 4400){
15889             return 140;
15890         }else if(pressTime < 5300){
15891             return 80;
15892         }else if(pressTime < 6200){
15893             return 50;
15894         }else{
15895             return 10;
15896         }
15897     },
15898
15899     // private
15900     handleMouseOut : function(){
15901         clearTimeout(this.timer);
15902         if(this.pressClass){
15903             this.el.removeClass(this.pressClass);
15904         }
15905         this.el.on("mouseover", this.handleMouseReturn, this);
15906     },
15907
15908     // private
15909     handleMouseReturn : function(){
15910         this.el.un("mouseover", this.handleMouseReturn);
15911         if(this.pressClass){
15912             this.el.addClass(this.pressClass);
15913         }
15914         this.click();
15915     },
15916
15917     // private
15918     handleMouseUp : function(){
15919         clearTimeout(this.timer);
15920         this.el.un("mouseover", this.handleMouseReturn);
15921         this.el.un("mouseout", this.handleMouseOut);
15922         Roo.get(document).un("mouseup", this.handleMouseUp);
15923         this.el.removeClass(this.pressClass);
15924         this.fireEvent("mouseup", this);
15925     }
15926 });/**
15927  * @class Roo.util.Clipboard
15928  * @static
15929  * 
15930  * Clipboard UTILS
15931  * 
15932  **/
15933 Roo.util.Clipboard = {
15934     /**
15935      * Writes a string to the clipboard - using the Clipboard API if https, otherwise using text area.
15936      * @param {String} text to copy to clipboard
15937      */
15938     write : function(text) {
15939         // navigator clipboard api needs a secure context (https)
15940         if (navigator.clipboard && window.isSecureContext) {
15941             // navigator clipboard api method'
15942             navigator.clipboard.writeText(text);
15943             return ;
15944         } 
15945         // text area method
15946         var ta = document.createElement("textarea");
15947         ta.value = text;
15948         // make the textarea out of viewport
15949         ta.style.position = "fixed";
15950         ta.style.left = "-999999px";
15951         ta.style.top = "-999999px";
15952         document.body.appendChild(ta);
15953         ta.focus();
15954         ta.select();
15955         document.execCommand('copy');
15956         (function() {
15957             ta.remove();
15958         }).defer(100);
15959         
15960     }
15961         
15962 }
15963     /*
15964  * Based on:
15965  * Ext JS Library 1.1.1
15966  * Copyright(c) 2006-2007, Ext JS, LLC.
15967  *
15968  * Originally Released Under LGPL - original licence link has changed is not relivant.
15969  *
15970  * Fork - LGPL
15971  * <script type="text/javascript">
15972  */
15973
15974  
15975 /**
15976  * @class Roo.KeyNav
15977  * <p>Provides a convenient wrapper for normalized keyboard navigation.  KeyNav allows you to bind
15978  * navigation keys to function calls that will get called when the keys are pressed, providing an easy
15979  * way to implement custom navigation schemes for any UI component.</p>
15980  * <p>The following are all of the possible keys that can be implemented: enter, left, right, up, down, tab, esc,
15981  * pageUp, pageDown, del, home, end.  Usage:</p>
15982  <pre><code>
15983 var nav = new Roo.KeyNav("my-element", {
15984     "left" : function(e){
15985         this.moveLeft(e.ctrlKey);
15986     },
15987     "right" : function(e){
15988         this.moveRight(e.ctrlKey);
15989     },
15990     "enter" : function(e){
15991         this.save();
15992     },
15993     scope : this
15994 });
15995 </code></pre>
15996  * @constructor
15997  * @param {String/HTMLElement/Roo.Element} el The element to bind to
15998  * @param {Object} config The config
15999  */
16000 Roo.KeyNav = function(el, config){
16001     this.el = Roo.get(el);
16002     Roo.apply(this, config);
16003     if(!this.disabled){
16004         this.disabled = true;
16005         this.enable();
16006     }
16007 };
16008
16009 Roo.KeyNav.prototype = {
16010     /**
16011      * @cfg {Boolean} disabled
16012      * True to disable this KeyNav instance (defaults to false)
16013      */
16014     disabled : false,
16015     /**
16016      * @cfg {String} defaultEventAction
16017      * The method to call on the {@link Roo.EventObject} after this KeyNav intercepts a key.  Valid values are
16018      * {@link Roo.EventObject#stopEvent}, {@link Roo.EventObject#preventDefault} and
16019      * {@link Roo.EventObject#stopPropagation} (defaults to 'stopEvent')
16020      */
16021     defaultEventAction: "stopEvent",
16022     /**
16023      * @cfg {Boolean} forceKeyDown
16024      * Handle the keydown event instead of keypress (defaults to false).  KeyNav automatically does this for IE since
16025      * IE does not propagate special keys on keypress, but setting this to true will force other browsers to also
16026      * handle keydown instead of keypress.
16027      */
16028     forceKeyDown : false,
16029
16030     // private
16031     prepareEvent : function(e){
16032         var k = e.getKey();
16033         var h = this.keyToHandler[k];
16034         //if(h && this[h]){
16035         //    e.stopPropagation();
16036         //}
16037         if(Roo.isSafari && h && k >= 37 && k <= 40){
16038             e.stopEvent();
16039         }
16040     },
16041
16042     // private
16043     relay : function(e){
16044         var k = e.getKey();
16045         var h = this.keyToHandler[k];
16046         if(h && this[h]){
16047             if(this.doRelay(e, this[h], h) !== true){
16048                 e[this.defaultEventAction]();
16049             }
16050         }
16051     },
16052
16053     // private
16054     doRelay : function(e, h, hname){
16055         return h.call(this.scope || this, e);
16056     },
16057
16058     // possible handlers
16059     enter : false,
16060     left : false,
16061     right : false,
16062     up : false,
16063     down : false,
16064     tab : false,
16065     esc : false,
16066     pageUp : false,
16067     pageDown : false,
16068     del : false,
16069     home : false,
16070     end : false,
16071
16072     // quick lookup hash
16073     keyToHandler : {
16074         37 : "left",
16075         39 : "right",
16076         38 : "up",
16077         40 : "down",
16078         33 : "pageUp",
16079         34 : "pageDown",
16080         46 : "del",
16081         36 : "home",
16082         35 : "end",
16083         13 : "enter",
16084         27 : "esc",
16085         9  : "tab"
16086     },
16087
16088         /**
16089          * Enable this KeyNav
16090          */
16091         enable: function(){
16092                 if(this.disabled){
16093             // ie won't do special keys on keypress, no one else will repeat keys with keydown
16094             // the EventObject will normalize Safari automatically
16095             if(this.forceKeyDown || Roo.isIE || Roo.isAir){
16096                 this.el.on("keydown", this.relay,  this);
16097             }else{
16098                 this.el.on("keydown", this.prepareEvent,  this);
16099                 this.el.on("keypress", this.relay,  this);
16100             }
16101                     this.disabled = false;
16102                 }
16103         },
16104
16105         /**
16106          * Disable this KeyNav
16107          */
16108         disable: function(){
16109                 if(!this.disabled){
16110                     if(this.forceKeyDown || Roo.isIE || Roo.isAir){
16111                 this.el.un("keydown", this.relay);
16112             }else{
16113                 this.el.un("keydown", this.prepareEvent);
16114                 this.el.un("keypress", this.relay);
16115             }
16116                     this.disabled = true;
16117                 }
16118         }
16119 };/*
16120  * Based on:
16121  * Ext JS Library 1.1.1
16122  * Copyright(c) 2006-2007, Ext JS, LLC.
16123  *
16124  * Originally Released Under LGPL - original licence link has changed is not relivant.
16125  *
16126  * Fork - LGPL
16127  * <script type="text/javascript">
16128  */
16129
16130  
16131 /**
16132  * @class Roo.KeyMap
16133  * Handles mapping keys to actions for an element. One key map can be used for multiple actions.
16134  * The constructor accepts the same config object as defined by {@link #addBinding}.
16135  * If you bind a callback function to a KeyMap, anytime the KeyMap handles an expected key
16136  * combination it will call the function with this signature (if the match is a multi-key
16137  * combination the callback will still be called only once): (String key, Roo.EventObject e)
16138  * A KeyMap can also handle a string representation of keys.<br />
16139  * Usage:
16140  <pre><code>
16141 // map one key by key code
16142 var map = new Roo.KeyMap("my-element", {
16143     key: 13, // or Roo.EventObject.ENTER
16144     fn: myHandler,
16145     scope: myObject
16146 });
16147
16148 // map multiple keys to one action by string
16149 var map = new Roo.KeyMap("my-element", {
16150     key: "a\r\n\t",
16151     fn: myHandler,
16152     scope: myObject
16153 });
16154
16155 // map multiple keys to multiple actions by strings and array of codes
16156 var map = new Roo.KeyMap("my-element", [
16157     {
16158         key: [10,13],
16159         fn: function(){ alert("Return was pressed"); }
16160     }, {
16161         key: "abc",
16162         fn: function(){ alert('a, b or c was pressed'); }
16163     }, {
16164         key: "\t",
16165         ctrl:true,
16166         shift:true,
16167         fn: function(){ alert('Control + shift + tab was pressed.'); }
16168     }
16169 ]);
16170 </code></pre>
16171  * <b>Note: A KeyMap starts enabled</b>
16172  * @constructor
16173  * @param {String/HTMLElement/Roo.Element} el The element to bind to
16174  * @param {Object} config The config (see {@link #addBinding})
16175  * @param {String} eventName (optional) The event to bind to (defaults to "keydown")
16176  */
16177 Roo.KeyMap = function(el, config, eventName){
16178     this.el  = Roo.get(el);
16179     this.eventName = eventName || "keydown";
16180     this.bindings = [];
16181     if(config){
16182         this.addBinding(config);
16183     }
16184     this.enable();
16185 };
16186
16187 Roo.KeyMap.prototype = {
16188     /**
16189      * True to stop the event from bubbling and prevent the default browser action if the
16190      * key was handled by the KeyMap (defaults to false)
16191      * @type Boolean
16192      */
16193     stopEvent : false,
16194
16195     /**
16196      * Add a new binding to this KeyMap. The following config object properties are supported:
16197      * <pre>
16198 Property    Type             Description
16199 ----------  ---------------  ----------------------------------------------------------------------
16200 key         String/Array     A single keycode or an array of keycodes to handle
16201 shift       Boolean          True to handle key only when shift is pressed (defaults to false)
16202 ctrl        Boolean          True to handle key only when ctrl is pressed (defaults to false)
16203 alt         Boolean          True to handle key only when alt is pressed (defaults to false)
16204 fn          Function         The function to call when KeyMap finds the expected key combination
16205 scope       Object           The scope of the callback function
16206 </pre>
16207      *
16208      * Usage:
16209      * <pre><code>
16210 // Create a KeyMap
16211 var map = new Roo.KeyMap(document, {
16212     key: Roo.EventObject.ENTER,
16213     fn: handleKey,
16214     scope: this
16215 });
16216
16217 //Add a new binding to the existing KeyMap later
16218 map.addBinding({
16219     key: 'abc',
16220     shift: true,
16221     fn: handleKey,
16222     scope: this
16223 });
16224 </code></pre>
16225      * @param {Object/Array} config A single KeyMap config or an array of configs
16226      */
16227         addBinding : function(config){
16228         if(config instanceof Array){
16229             for(var i = 0, len = config.length; i < len; i++){
16230                 this.addBinding(config[i]);
16231             }
16232             return;
16233         }
16234         var keyCode = config.key,
16235             shift = config.shift, 
16236             ctrl = config.ctrl, 
16237             alt = config.alt,
16238             fn = config.fn,
16239             scope = config.scope;
16240         if(typeof keyCode == "string"){
16241             var ks = [];
16242             var keyString = keyCode.toUpperCase();
16243             for(var j = 0, len = keyString.length; j < len; j++){
16244                 ks.push(keyString.charCodeAt(j));
16245             }
16246             keyCode = ks;
16247         }
16248         var keyArray = keyCode instanceof Array;
16249         var handler = function(e){
16250             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
16251                 var k = e.getKey();
16252                 if(keyArray){
16253                     for(var i = 0, len = keyCode.length; i < len; i++){
16254                         if(keyCode[i] == k){
16255                           if(this.stopEvent){
16256                               e.stopEvent();
16257                           }
16258                           fn.call(scope || window, k, e);
16259                           return;
16260                         }
16261                     }
16262                 }else{
16263                     if(k == keyCode){
16264                         if(this.stopEvent){
16265                            e.stopEvent();
16266                         }
16267                         fn.call(scope || window, k, e);
16268                     }
16269                 }
16270             }
16271         };
16272         this.bindings.push(handler);  
16273         },
16274
16275     /**
16276      * Shorthand for adding a single key listener
16277      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the
16278      * following options:
16279      * {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
16280      * @param {Function} fn The function to call
16281      * @param {Object} scope (optional) The scope of the function
16282      */
16283     on : function(key, fn, scope){
16284         var keyCode, shift, ctrl, alt;
16285         if(typeof key == "object" && !(key instanceof Array)){
16286             keyCode = key.key;
16287             shift = key.shift;
16288             ctrl = key.ctrl;
16289             alt = key.alt;
16290         }else{
16291             keyCode = key;
16292         }
16293         this.addBinding({
16294             key: keyCode,
16295             shift: shift,
16296             ctrl: ctrl,
16297             alt: alt,
16298             fn: fn,
16299             scope: scope
16300         })
16301     },
16302
16303     // private
16304     handleKeyDown : function(e){
16305             if(this.enabled){ //just in case
16306             var b = this.bindings;
16307             for(var i = 0, len = b.length; i < len; i++){
16308                 b[i].call(this, e);
16309             }
16310             }
16311         },
16312         
16313         /**
16314          * Returns true if this KeyMap is enabled
16315          * @return {Boolean} 
16316          */
16317         isEnabled : function(){
16318             return this.enabled;  
16319         },
16320         
16321         /**
16322          * Enables this KeyMap
16323          */
16324         enable: function(){
16325                 if(!this.enabled){
16326                     this.el.on(this.eventName, this.handleKeyDown, this);
16327                     this.enabled = true;
16328                 }
16329         },
16330
16331         /**
16332          * Disable this KeyMap
16333          */
16334         disable: function(){
16335                 if(this.enabled){
16336                     this.el.removeListener(this.eventName, this.handleKeyDown, this);
16337                     this.enabled = false;
16338                 }
16339         }
16340 };/*
16341  * Based on:
16342  * Ext JS Library 1.1.1
16343  * Copyright(c) 2006-2007, Ext JS, LLC.
16344  *
16345  * Originally Released Under LGPL - original licence link has changed is not relivant.
16346  *
16347  * Fork - LGPL
16348  * <script type="text/javascript">
16349  */
16350
16351  
16352 /**
16353  * @class Roo.util.TextMetrics
16354  * Provides precise pixel measurements for blocks of text so that you can determine exactly how high and
16355  * wide, in pixels, a given block of text will be.
16356  * @static
16357  */
16358 Roo.util.TextMetrics = function(){
16359     var shared;
16360     return {
16361         /**
16362          * Measures the size of the specified text
16363          * @param {String/HTMLElement} el The element, dom node or id from which to copy existing CSS styles
16364          * that can affect the size of the rendered text
16365          * @param {String} text The text to measure
16366          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
16367          * in order to accurately measure the text height
16368          * @return {Object} An object containing the text's size {width: (width), height: (height)}
16369          */
16370         measure : function(el, text, fixedWidth){
16371             if(!shared){
16372                 shared = Roo.util.TextMetrics.Instance(el, fixedWidth);
16373             }
16374             shared.bind(el);
16375             shared.setFixedWidth(fixedWidth || 'auto');
16376             return shared.getSize(text);
16377         },
16378
16379         /**
16380          * Return a unique TextMetrics instance that can be bound directly to an element and reused.  This reduces
16381          * the overhead of multiple calls to initialize the style properties on each measurement.
16382          * @param {String/HTMLElement} el The element, dom node or id that the instance will be bound to
16383          * @param {Number} fixedWidth (optional) If the text will be multiline, you have to set a fixed width
16384          * in order to accurately measure the text height
16385          * @return {Roo.util.TextMetrics.Instance} instance The new instance
16386          */
16387         createInstance : function(el, fixedWidth){
16388             return Roo.util.TextMetrics.Instance(el, fixedWidth);
16389         }
16390     };
16391 }();
16392
16393 /**
16394  * @class Roo.util.TextMetrics.Instance
16395  * Instance of  TextMetrics Calcuation
16396  * @constructor
16397  * Create a new TextMetrics Instance
16398  * @param {Object} bindto
16399  * @param {Boolean} fixedWidth
16400  */
16401
16402 Roo.util.TextMetrics.Instance = function(bindTo, fixedWidth)
16403 {
16404     var ml = new Roo.Element(document.createElement('div'));
16405     document.body.appendChild(ml.dom);
16406     ml.position('absolute');
16407     ml.setLeftTop(-1000, -1000);
16408     ml.hide();
16409
16410     if(fixedWidth){
16411         ml.setWidth(fixedWidth);
16412     }
16413      
16414     var instance = {
16415         /**
16416          * Returns the size of the specified text based on the internal element's style and width properties
16417          * @param {String} text The text to measure
16418          * @return {Object} An object containing the text's size {width: (width), height: (height)}
16419          */
16420         getSize : function(text){
16421             ml.update(text);
16422             var s = ml.getSize();
16423             ml.update('');
16424             return s;
16425         },
16426
16427         /**
16428          * Binds this TextMetrics instance to an element from which to copy existing CSS styles
16429          * that can affect the size of the rendered text
16430          * @param {String/HTMLElement} el The element, dom node or id
16431          */
16432         bind : function(el){
16433             ml.setStyle(
16434                 Roo.fly(el).getStyles('font-size','font-style', 'font-weight', 'font-family','line-height')
16435             );
16436         },
16437
16438         /**
16439          * Sets a fixed width on the internal measurement element.  If the text will be multiline, you have
16440          * to set a fixed width in order to accurately measure the text height.
16441          * @param {Number} width The width to set on the element
16442          */
16443         setFixedWidth : function(width){
16444             ml.setWidth(width);
16445         },
16446
16447         /**
16448          * Returns the measured width of the specified text
16449          * @param {String} text The text to measure
16450          * @return {Number} width The width in pixels
16451          */
16452         getWidth : function(text){
16453             ml.dom.style.width = 'auto';
16454             return this.getSize(text).width;
16455         },
16456
16457         /**
16458          * Returns the measured height of the specified text.  For multiline text, be sure to call
16459          * {@link #setFixedWidth} if necessary.
16460          * @param {String} text The text to measure
16461          * @return {Number} height The height in pixels
16462          */
16463         getHeight : function(text){
16464             return this.getSize(text).height;
16465         }
16466     };
16467
16468     instance.bind(bindTo);
16469
16470     return instance;
16471 };
16472
16473 // backwards compat
16474 Roo.Element.measureText = Roo.util.TextMetrics.measure;/*
16475  * Based on:
16476  * Ext JS Library 1.1.1
16477  * Copyright(c) 2006-2007, Ext JS, LLC.
16478  *
16479  * Originally Released Under LGPL - original licence link has changed is not relivant.
16480  *
16481  * Fork - LGPL
16482  * <script type="text/javascript">
16483  */
16484
16485 /**
16486  * @class Roo.state.Provider
16487  * Abstract base class for state provider implementations. This class provides methods
16488  * for encoding and decoding <b>typed</b> variables including dates and defines the 
16489  * Provider interface.
16490  */
16491 Roo.state.Provider = function(){
16492     /**
16493      * @event statechange
16494      * Fires when a state change occurs.
16495      * @param {Provider} this This state provider
16496      * @param {String} key The state key which was changed
16497      * @param {String} value The encoded value for the state
16498      */
16499     this.addEvents({
16500         "statechange": true
16501     });
16502     this.state = {};
16503     Roo.state.Provider.superclass.constructor.call(this);
16504 };
16505 Roo.extend(Roo.state.Provider, Roo.util.Observable, {
16506     /**
16507      * Returns the current value for a key
16508      * @param {String} name The key name
16509      * @param {Mixed} defaultValue A default value to return if the key's value is not found
16510      * @return {Mixed} The state data
16511      */
16512     get : function(name, defaultValue){
16513         return typeof this.state[name] == "undefined" ?
16514             defaultValue : this.state[name];
16515     },
16516     
16517     /**
16518      * Clears a value from the state
16519      * @param {String} name The key name
16520      */
16521     clear : function(name){
16522         delete this.state[name];
16523         this.fireEvent("statechange", this, name, null);
16524     },
16525     
16526     /**
16527      * Sets the value for a key
16528      * @param {String} name The key name
16529      * @param {Mixed} value The value to set
16530      */
16531     set : function(name, value){
16532         this.state[name] = value;
16533         this.fireEvent("statechange", this, name, value);
16534     },
16535     
16536     /**
16537      * Decodes a string previously encoded with {@link #encodeValue}.
16538      * @param {String} value The value to decode
16539      * @return {Mixed} The decoded value
16540      */
16541     decodeValue : function(cookie){
16542         var re = /^(a|n|d|b|s|o)\:(.*)$/;
16543         var matches = re.exec(unescape(cookie));
16544         if(!matches || !matches[1]) {
16545             return; // non state cookie
16546         }
16547         var type = matches[1];
16548         var v = matches[2];
16549         switch(type){
16550             case "n":
16551                 return parseFloat(v);
16552             case "d":
16553                 return new Date(Date.parse(v));
16554             case "b":
16555                 return (v == "1");
16556             case "a":
16557                 var all = [];
16558                 var values = v.split("^");
16559                 for(var i = 0, len = values.length; i < len; i++){
16560                     all.push(this.decodeValue(values[i]));
16561                 }
16562                 return all;
16563            case "o":
16564                 var all = {};
16565                 var values = v.split("^");
16566                 for(var i = 0, len = values.length; i < len; i++){
16567                     var kv = values[i].split("=");
16568                     all[kv[0]] = this.decodeValue(kv[1]);
16569                 }
16570                 return all;
16571            default:
16572                 return v;
16573         }
16574     },
16575     
16576     /**
16577      * Encodes a value including type information.  Decode with {@link #decodeValue}.
16578      * @param {Mixed} value The value to encode
16579      * @return {String} The encoded value
16580      */
16581     encodeValue : function(v){
16582         var enc;
16583         if(typeof v == "number"){
16584             enc = "n:" + v;
16585         }else if(typeof v == "boolean"){
16586             enc = "b:" + (v ? "1" : "0");
16587         }else if(v instanceof Date){
16588             enc = "d:" + v.toGMTString();
16589         }else if(v instanceof Array){
16590             var flat = "";
16591             for(var i = 0, len = v.length; i < len; i++){
16592                 flat += this.encodeValue(v[i]);
16593                 if(i != len-1) {
16594                     flat += "^";
16595                 }
16596             }
16597             enc = "a:" + flat;
16598         }else if(typeof v == "object"){
16599             var flat = "";
16600             for(var key in v){
16601                 if(typeof v[key] != "function"){
16602                     flat += key + "=" + this.encodeValue(v[key]) + "^";
16603                 }
16604             }
16605             enc = "o:" + flat.substring(0, flat.length-1);
16606         }else{
16607             enc = "s:" + v;
16608         }
16609         return escape(enc);        
16610     }
16611 });
16612
16613 /*
16614  * Based on:
16615  * Ext JS Library 1.1.1
16616  * Copyright(c) 2006-2007, Ext JS, LLC.
16617  *
16618  * Originally Released Under LGPL - original licence link has changed is not relivant.
16619  *
16620  * Fork - LGPL
16621  * <script type="text/javascript">
16622  */
16623 /**
16624  * @class Roo.state.Manager
16625  * This is the global state manager. By default all components that are "state aware" check this class
16626  * for state information if you don't pass them a custom state provider. In order for this class
16627  * to be useful, it must be initialized with a provider when your application initializes.
16628  <pre><code>
16629 // in your initialization function
16630 init : function(){
16631    Roo.state.Manager.setProvider(new Roo.state.CookieProvider());
16632    ...
16633    // supposed you have a {@link Roo.BorderLayout}
16634    var layout = new Roo.BorderLayout(...);
16635    layout.restoreState();
16636    // or a {Roo.BasicDialog}
16637    var dialog = new Roo.BasicDialog(...);
16638    dialog.restoreState();
16639  </code></pre>
16640  * @static
16641  */
16642 Roo.state.Manager = function(){
16643     var provider = new Roo.state.Provider();
16644     
16645     return {
16646         /**
16647          * Configures the default state provider for your application
16648          * @param {Provider} stateProvider The state provider to set
16649          */
16650         setProvider : function(stateProvider){
16651             provider = stateProvider;
16652         },
16653         
16654         /**
16655          * Returns the current value for a key
16656          * @param {String} name The key name
16657          * @param {Mixed} defaultValue The default value to return if the key lookup does not match
16658          * @return {Mixed} The state data
16659          */
16660         get : function(key, defaultValue){
16661             return provider.get(key, defaultValue);
16662         },
16663         
16664         /**
16665          * Sets the value for a key
16666          * @param {String} name The key name
16667          * @param {Mixed} value The state data
16668          */
16669          set : function(key, value){
16670             provider.set(key, value);
16671         },
16672         
16673         /**
16674          * Clears a value from the state
16675          * @param {String} name The key name
16676          */
16677         clear : function(key){
16678             provider.clear(key);
16679         },
16680         
16681         /**
16682          * Gets the currently configured state provider
16683          * @return {Provider} The state provider
16684          */
16685         getProvider : function(){
16686             return provider;
16687         }
16688     };
16689 }();
16690 /*
16691  * Based on:
16692  * Ext JS Library 1.1.1
16693  * Copyright(c) 2006-2007, Ext JS, LLC.
16694  *
16695  * Originally Released Under LGPL - original licence link has changed is not relivant.
16696  *
16697  * Fork - LGPL
16698  * <script type="text/javascript">
16699  */
16700 /**
16701  * @class Roo.state.CookieProvider
16702  * @extends Roo.state.Provider
16703  * The default Provider implementation which saves state via cookies.
16704  * <br />Usage:
16705  <pre><code>
16706    var cp = new Roo.state.CookieProvider({
16707        path: "/cgi-bin/",
16708        expires: new Date(new Date().getTime()+(1000*60*60*24*30)); //30 days
16709        domain: "roojs.com"
16710    })
16711    Roo.state.Manager.setProvider(cp);
16712  </code></pre>
16713  * @cfg {String} path The path for which the cookie is active (defaults to root '/' which makes it active for all pages in the site)
16714  * @cfg {Date} expires The cookie expiration date (defaults to 7 days from now)
16715  * @cfg {String} domain The domain to save the cookie for.  Note that you cannot specify a different domain than
16716  * your page is on, but you can specify a sub-domain, or simply the domain itself like 'roojs.com' to include
16717  * all sub-domains if you need to access cookies across different sub-domains (defaults to null which uses the same
16718  * domain the page is running on including the 'www' like 'www.roojs.com')
16719  * @cfg {Boolean} secure True if the site is using SSL (defaults to false)
16720  * @constructor
16721  * Create a new CookieProvider
16722  * @param {Object} config The configuration object
16723  */
16724 Roo.state.CookieProvider = function(config){
16725     Roo.state.CookieProvider.superclass.constructor.call(this);
16726     this.path = "/";
16727     this.expires = new Date(new Date().getTime()+(1000*60*60*24*7)); //7 days
16728     this.domain = null;
16729     this.secure = false;
16730     Roo.apply(this, config);
16731     this.state = this.readCookies();
16732 };
16733
16734 Roo.extend(Roo.state.CookieProvider, Roo.state.Provider, {
16735     // private
16736     set : function(name, value){
16737         if(typeof value == "undefined" || value === null){
16738             this.clear(name);
16739             return;
16740         }
16741         this.setCookie(name, value);
16742         Roo.state.CookieProvider.superclass.set.call(this, name, value);
16743     },
16744
16745     // private
16746     clear : function(name){
16747         this.clearCookie(name);
16748         Roo.state.CookieProvider.superclass.clear.call(this, name);
16749     },
16750
16751     // private
16752     readCookies : function(){
16753         var cookies = {};
16754         var c = document.cookie + ";";
16755         var re = /\s?(.*?)=(.*?);/g;
16756         var matches;
16757         while((matches = re.exec(c)) != null){
16758             var name = matches[1];
16759             var value = matches[2];
16760             if(name && name.substring(0,3) == "ys-"){
16761                 cookies[name.substr(3)] = this.decodeValue(value);
16762             }
16763         }
16764         return cookies;
16765     },
16766
16767     // private
16768     setCookie : function(name, value){
16769         document.cookie = "ys-"+ name + "=" + this.encodeValue(value) +
16770            ((this.expires == null) ? "" : ("; expires=" + this.expires.toGMTString())) +
16771            ((this.path == null) ? "" : ("; path=" + this.path)) +
16772            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
16773            ((this.secure == true) ? "; secure" : "");
16774     },
16775
16776     // private
16777     clearCookie : function(name){
16778         document.cookie = "ys-" + name + "=null; expires=Thu, 01-Jan-70 00:00:01 GMT" +
16779            ((this.path == null) ? "" : ("; path=" + this.path)) +
16780            ((this.domain == null) ? "" : ("; domain=" + this.domain)) +
16781            ((this.secure == true) ? "; secure" : "");
16782     }
16783 });/*
16784  * Based on:
16785  * Ext JS Library 1.1.1
16786  * Copyright(c) 2006-2007, Ext JS, LLC.
16787  *
16788  * Originally Released Under LGPL - original licence link has changed is not relivant.
16789  *
16790  * Fork - LGPL
16791  * <script type="text/javascript">
16792  */
16793  
16794
16795 /**
16796  * @class Roo.ComponentMgr
16797  * Provides a common registry of all components on a page so that they can be easily accessed by component id (see {@link Roo.getCmp}).
16798  * @static
16799  */
16800 Roo.ComponentMgr = function(){
16801     var all = new Roo.util.MixedCollection();
16802
16803     return {
16804         /**
16805          * Registers a component.
16806          * @param {Roo.Component} c The component
16807          */
16808         register : function(c){
16809             all.add(c);
16810         },
16811
16812         /**
16813          * Unregisters a component.
16814          * @param {Roo.Component} c The component
16815          */
16816         unregister : function(c){
16817             all.remove(c);
16818         },
16819
16820         /**
16821          * Returns a component by id
16822          * @param {String} id The component id
16823          */
16824         get : function(id){
16825             return all.get(id);
16826         },
16827
16828         /**
16829          * Registers a function that will be called when a specified component is added to ComponentMgr
16830          * @param {String} id The component id
16831          * @param {Funtction} fn The callback function
16832          * @param {Object} scope The scope of the callback
16833          */
16834         onAvailable : function(id, fn, scope){
16835             all.on("add", function(index, o){
16836                 if(o.id == id){
16837                     fn.call(scope || o, o);
16838                     all.un("add", fn, scope);
16839                 }
16840             });
16841         }
16842     };
16843 }();/*
16844  * Based on:
16845  * Ext JS Library 1.1.1
16846  * Copyright(c) 2006-2007, Ext JS, LLC.
16847  *
16848  * Originally Released Under LGPL - original licence link has changed is not relivant.
16849  *
16850  * Fork - LGPL
16851  * <script type="text/javascript">
16852  */
16853  
16854 /**
16855  * @class Roo.Component
16856  * @extends Roo.util.Observable
16857  * Base class for all major Roo components.  All subclasses of Component can automatically participate in the standard
16858  * Roo component lifecycle of creation, rendering and destruction.  They also have automatic support for basic hide/show
16859  * and enable/disable behavior.  Component allows any subclass to be lazy-rendered into any {@link Roo.Container} and
16860  * to be automatically registered with the {@link Roo.ComponentMgr} so that it can be referenced at any time via {@link Roo.getCmp}.
16861  * All visual components (widgets) that require rendering into a layout should subclass Component.
16862  * @constructor
16863  * @param {Roo.Element/String/Object} config The configuration options.  If an element is passed, it is set as the internal
16864  * element and its id used as the component id.  If a string is passed, it is assumed to be the id of an existing element
16865  * and is used as the component id.  Otherwise, it is assumed to be a standard config object and is applied to the component.
16866  */
16867 Roo.Component = function(config){
16868     config = config || {};
16869     if(config.tagName || config.dom || typeof config == "string"){ // element object
16870         config = {el: config, id: config.id || config};
16871     }
16872     this.initialConfig = config;
16873
16874     Roo.apply(this, config);
16875     this.addEvents({
16876         /**
16877          * @event disable
16878          * Fires after the component is disabled.
16879              * @param {Roo.Component} this
16880              */
16881         disable : true,
16882         /**
16883          * @event enable
16884          * Fires after the component is enabled.
16885              * @param {Roo.Component} this
16886              */
16887         enable : true,
16888         /**
16889          * @event beforeshow
16890          * Fires before the component is shown.  Return false to stop the show.
16891              * @param {Roo.Component} this
16892              */
16893         beforeshow : true,
16894         /**
16895          * @event show
16896          * Fires after the component is shown.
16897              * @param {Roo.Component} this
16898              */
16899         show : true,
16900         /**
16901          * @event beforehide
16902          * Fires before the component is hidden. Return false to stop the hide.
16903              * @param {Roo.Component} this
16904              */
16905         beforehide : true,
16906         /**
16907          * @event hide
16908          * Fires after the component is hidden.
16909              * @param {Roo.Component} this
16910              */
16911         hide : true,
16912         /**
16913          * @event beforerender
16914          * Fires before the component is rendered. Return false to stop the render.
16915              * @param {Roo.Component} this
16916              */
16917         beforerender : true,
16918         /**
16919          * @event render
16920          * Fires after the component is rendered.
16921              * @param {Roo.Component} this
16922              */
16923         render : true,
16924         /**
16925          * @event beforedestroy
16926          * Fires before the component is destroyed. Return false to stop the destroy.
16927              * @param {Roo.Component} this
16928              */
16929         beforedestroy : true,
16930         /**
16931          * @event destroy
16932          * Fires after the component is destroyed.
16933              * @param {Roo.Component} this
16934              */
16935         destroy : true
16936     });
16937     if(!this.id){
16938         this.id = "roo-comp-" + (++Roo.Component.AUTO_ID);
16939     }
16940     Roo.ComponentMgr.register(this);
16941     Roo.Component.superclass.constructor.call(this);
16942     this.initComponent();
16943     if(this.renderTo){ // not supported by all components yet. use at your own risk!
16944         this.render(this.renderTo);
16945         delete this.renderTo;
16946     }
16947 };
16948
16949 /** @private */
16950 Roo.Component.AUTO_ID = 1000;
16951
16952 Roo.extend(Roo.Component, Roo.util.Observable, {
16953     /**
16954      * @scope Roo.Component.prototype
16955      * @type {Boolean}
16956      * true if this component is hidden. Read-only.
16957      */
16958     hidden : false,
16959     /**
16960      * @type {Boolean}
16961      * true if this component is disabled. Read-only.
16962      */
16963     disabled : false,
16964     /**
16965      * @type {Boolean}
16966      * true if this component has been rendered. Read-only.
16967      */
16968     rendered : false,
16969     
16970     /** @cfg {String} disableClass
16971      * CSS class added to the component when it is disabled (defaults to "x-item-disabled").
16972      */
16973     disabledClass : "x-item-disabled",
16974         /** @cfg {Boolean} allowDomMove
16975          * Whether the component can move the Dom node when rendering (defaults to true).
16976          */
16977     allowDomMove : true,
16978     /** @cfg {String} hideMode (display|visibility)
16979      * How this component should hidden. Supported values are
16980      * "visibility" (css visibility), "offsets" (negative offset position) and
16981      * "display" (css display) - defaults to "display".
16982      */
16983     hideMode: 'display',
16984
16985     /** @private */
16986     ctype : "Roo.Component",
16987
16988     /**
16989      * @cfg {String} actionMode 
16990      * which property holds the element that used for  hide() / show() / disable() / enable()
16991      * default is 'el' for forms you probably want to set this to fieldEl 
16992      */
16993     actionMode : "el",
16994
16995     /** @private */
16996     getActionEl : function(){
16997         return this[this.actionMode];
16998     },
16999
17000     initComponent : Roo.emptyFn,
17001     /**
17002      * If this is a lazy rendering component, render it to its container element.
17003      * @param {String/HTMLElement/Element} container (optional) The element this component should be rendered into. If it is being applied to existing markup, this should be left off.
17004      */
17005     render : function(container, position){
17006         
17007         if(this.rendered){
17008             return this;
17009         }
17010         
17011         if(this.fireEvent("beforerender", this) === false){
17012             return false;
17013         }
17014         
17015         if(!container && this.el){
17016             this.el = Roo.get(this.el);
17017             container = this.el.dom.parentNode;
17018             this.allowDomMove = false;
17019         }
17020         this.container = Roo.get(container);
17021         this.rendered = true;
17022         if(position !== undefined){
17023             if(typeof position == 'number'){
17024                 position = this.container.dom.childNodes[position];
17025             }else{
17026                 position = Roo.getDom(position);
17027             }
17028         }
17029         this.onRender(this.container, position || null);
17030         if(this.cls){
17031             this.el.addClass(this.cls);
17032             delete this.cls;
17033         }
17034         if(this.style){
17035             this.el.applyStyles(this.style);
17036             delete this.style;
17037         }
17038         this.fireEvent("render", this);
17039         this.afterRender(this.container);
17040         if(this.hidden){
17041             this.hide();
17042         }
17043         if(this.disabled){
17044             this.disable();
17045         }
17046
17047         return this;
17048         
17049     },
17050
17051     /** @private */
17052     // default function is not really useful
17053     onRender : function(ct, position){
17054         if(this.el){
17055             this.el = Roo.get(this.el);
17056             if(this.allowDomMove !== false){
17057                 ct.dom.insertBefore(this.el.dom, position);
17058             }
17059         }
17060     },
17061
17062     /** @private */
17063     getAutoCreate : function(){
17064         var cfg = typeof this.autoCreate == "object" ?
17065                       this.autoCreate : Roo.apply({}, this.defaultAutoCreate);
17066         if(this.id && !cfg.id){
17067             cfg.id = this.id;
17068         }
17069         return cfg;
17070     },
17071
17072     /** @private */
17073     afterRender : Roo.emptyFn,
17074
17075     /**
17076      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
17077      * removing the component from its {@link Roo.Container} (if applicable) and unregistering it from {@link Roo.ComponentMgr}.
17078      */
17079     destroy : function(){
17080         if(this.fireEvent("beforedestroy", this) !== false){
17081             this.purgeListeners();
17082             this.beforeDestroy();
17083             if(this.rendered){
17084                 this.el.removeAllListeners();
17085                 this.el.remove();
17086                 if(this.actionMode == "container"){
17087                     this.container.remove();
17088                 }
17089             }
17090             this.onDestroy();
17091             Roo.ComponentMgr.unregister(this);
17092             this.fireEvent("destroy", this);
17093         }
17094     },
17095
17096         /** @private */
17097     beforeDestroy : function(){
17098
17099     },
17100
17101         /** @private */
17102         onDestroy : function(){
17103
17104     },
17105
17106     /**
17107      * Returns the underlying {@link Roo.Element}.
17108      * @return {Roo.Element} The element
17109      */
17110     getEl : function(){
17111         return this.el;
17112     },
17113
17114     /**
17115      * Returns the id of this component.
17116      * @return {String}
17117      */
17118     getId : function(){
17119         return this.id;
17120     },
17121
17122     /**
17123      * Try to focus this component.
17124      * @param {Boolean} selectText True to also select the text in this component (if applicable)
17125      * @return {Roo.Component} this
17126      */
17127     focus : function(selectText){
17128         if(this.rendered){
17129             this.el.focus();
17130             if(selectText === true){
17131                 this.el.dom.select();
17132             }
17133         }
17134         return this;
17135     },
17136
17137     /** @private */
17138     blur : function(){
17139         if(this.rendered){
17140             this.el.blur();
17141         }
17142         return this;
17143     },
17144
17145     /**
17146      * Disable this component.
17147      * @return {Roo.Component} this
17148      */
17149     disable : function(){
17150         if(this.rendered){
17151             this.onDisable();
17152         }
17153         this.disabled = true;
17154         this.fireEvent("disable", this);
17155         return this;
17156     },
17157
17158         // private
17159     onDisable : function(){
17160         this.getActionEl().addClass(this.disabledClass);
17161         this.el.dom.disabled = true;
17162     },
17163
17164     /**
17165      * Enable this component.
17166      * @return {Roo.Component} this
17167      */
17168     enable : function(){
17169         if(this.rendered){
17170             this.onEnable();
17171         }
17172         this.disabled = false;
17173         this.fireEvent("enable", this);
17174         return this;
17175     },
17176
17177         // private
17178     onEnable : function(){
17179         this.getActionEl().removeClass(this.disabledClass);
17180         this.el.dom.disabled = false;
17181     },
17182
17183     /**
17184      * Convenience function for setting disabled/enabled by boolean.
17185      * @param {Boolean} disabled
17186      */
17187     setDisabled : function(disabled){
17188         this[disabled ? "disable" : "enable"]();
17189     },
17190
17191     /**
17192      * Show this component.
17193      * @return {Roo.Component} this
17194      */
17195     show: function(){
17196         if(this.fireEvent("beforeshow", this) !== false){
17197             this.hidden = false;
17198             if(this.rendered){
17199                 this.onShow();
17200             }
17201             this.fireEvent("show", this);
17202         }
17203         return this;
17204     },
17205
17206     // private
17207     onShow : function(){
17208         var ae = this.getActionEl();
17209         if(this.hideMode == 'visibility'){
17210             ae.dom.style.visibility = "visible";
17211         }else if(this.hideMode == 'offsets'){
17212             ae.removeClass('x-hidden');
17213         }else{
17214             ae.dom.style.display = "";
17215         }
17216     },
17217
17218     /**
17219      * Hide this component.
17220      * @return {Roo.Component} this
17221      */
17222     hide: function(){
17223         if(this.fireEvent("beforehide", this) !== false){
17224             this.hidden = true;
17225             if(this.rendered){
17226                 this.onHide();
17227             }
17228             this.fireEvent("hide", this);
17229         }
17230         return this;
17231     },
17232
17233     // private
17234     onHide : function(){
17235         var ae = this.getActionEl();
17236         if(this.hideMode == 'visibility'){
17237             ae.dom.style.visibility = "hidden";
17238         }else if(this.hideMode == 'offsets'){
17239             ae.addClass('x-hidden');
17240         }else{
17241             ae.dom.style.display = "none";
17242         }
17243     },
17244
17245     /**
17246      * Convenience function to hide or show this component by boolean.
17247      * @param {Boolean} visible True to show, false to hide
17248      * @return {Roo.Component} this
17249      */
17250     setVisible: function(visible){
17251         if(visible) {
17252             this.show();
17253         }else{
17254             this.hide();
17255         }
17256         return this;
17257     },
17258
17259     /**
17260      * Returns true if this component is visible.
17261      */
17262     isVisible : function(){
17263         return this.getActionEl().isVisible();
17264     },
17265
17266     cloneConfig : function(overrides){
17267         overrides = overrides || {};
17268         var id = overrides.id || Roo.id();
17269         var cfg = Roo.applyIf(overrides, this.initialConfig);
17270         cfg.id = id; // prevent dup id
17271         return new this.constructor(cfg);
17272     }
17273 });/*
17274  * Based on:
17275  * Ext JS Library 1.1.1
17276  * Copyright(c) 2006-2007, Ext JS, LLC.
17277  *
17278  * Originally Released Under LGPL - original licence link has changed is not relivant.
17279  *
17280  * Fork - LGPL
17281  * <script type="text/javascript">
17282  */
17283
17284 /**
17285  * @class Roo.BoxComponent
17286  * @extends Roo.Component
17287  * Base class for any visual {@link Roo.Component} that uses a box container.  BoxComponent provides automatic box
17288  * model adjustments for sizing and positioning and will work correctly withnin the Component rendering model.  All
17289  * container classes should subclass BoxComponent so that they will work consistently when nested within other Roo
17290  * layout containers.
17291  * @constructor
17292  * @param {Roo.Element/String/Object} config The configuration options.
17293  */
17294 Roo.BoxComponent = function(config){
17295     Roo.Component.call(this, config);
17296     this.addEvents({
17297         /**
17298          * @event resize
17299          * Fires after the component is resized.
17300              * @param {Roo.Component} this
17301              * @param {Number} adjWidth The box-adjusted width that was set
17302              * @param {Number} adjHeight The box-adjusted height that was set
17303              * @param {Number} rawWidth The width that was originally specified
17304              * @param {Number} rawHeight The height that was originally specified
17305              */
17306         resize : true,
17307         /**
17308          * @event move
17309          * Fires after the component is moved.
17310              * @param {Roo.Component} this
17311              * @param {Number} x The new x position
17312              * @param {Number} y The new y position
17313              */
17314         move : true
17315     });
17316 };
17317
17318 Roo.extend(Roo.BoxComponent, Roo.Component, {
17319     // private, set in afterRender to signify that the component has been rendered
17320     boxReady : false,
17321     // private, used to defer height settings to subclasses
17322     deferHeight: false,
17323     /** @cfg {Number} width
17324      * width (optional) size of component
17325      */
17326      /** @cfg {Number} height
17327      * height (optional) size of component
17328      */
17329      
17330     /**
17331      * Sets the width and height of the component.  This method fires the resize event.  This method can accept
17332      * either width and height as separate numeric arguments, or you can pass a size object like {width:10, height:20}.
17333      * @param {Number/Object} width The new width to set, or a size object in the format {width, height}
17334      * @param {Number} height The new height to set (not required if a size object is passed as the first arg)
17335      * @return {Roo.BoxComponent} this
17336      */
17337     setSize : function(w, h){
17338         // support for standard size objects
17339         if(typeof w == 'object'){
17340             h = w.height;
17341             w = w.width;
17342         }
17343         // not rendered
17344         if(!this.boxReady){
17345             this.width = w;
17346             this.height = h;
17347             return this;
17348         }
17349
17350         // prevent recalcs when not needed
17351         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
17352             return this;
17353         }
17354         this.lastSize = {width: w, height: h};
17355
17356         var adj = this.adjustSize(w, h);
17357         var aw = adj.width, ah = adj.height;
17358         if(aw !== undefined || ah !== undefined){ // this code is nasty but performs better with floaters
17359             var rz = this.getResizeEl();
17360             if(!this.deferHeight && aw !== undefined && ah !== undefined){
17361                 rz.setSize(aw, ah);
17362             }else if(!this.deferHeight && ah !== undefined){
17363                 rz.setHeight(ah);
17364             }else if(aw !== undefined){
17365                 rz.setWidth(aw);
17366             }
17367             this.onResize(aw, ah, w, h);
17368             this.fireEvent('resize', this, aw, ah, w, h);
17369         }
17370         return this;
17371     },
17372
17373     /**
17374      * Gets the current size of the component's underlying element.
17375      * @return {Object} An object containing the element's size {width: (element width), height: (element height)}
17376      */
17377     getSize : function(){
17378         return this.el.getSize();
17379     },
17380
17381     /**
17382      * Gets the current XY position of the component's underlying element.
17383      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
17384      * @return {Array} The XY position of the element (e.g., [100, 200])
17385      */
17386     getPosition : function(local){
17387         if(local === true){
17388             return [this.el.getLeft(true), this.el.getTop(true)];
17389         }
17390         return this.xy || this.el.getXY();
17391     },
17392
17393     /**
17394      * Gets the current box measurements of the component's underlying element.
17395      * @param {Boolean} local (optional) If true the element's left and top are returned instead of page XY (defaults to false)
17396      * @returns {Object} box An object in the format {x, y, width, height}
17397      */
17398     getBox : function(local){
17399         var s = this.el.getSize();
17400         if(local){
17401             s.x = this.el.getLeft(true);
17402             s.y = this.el.getTop(true);
17403         }else{
17404             var xy = this.xy || this.el.getXY();
17405             s.x = xy[0];
17406             s.y = xy[1];
17407         }
17408         return s;
17409     },
17410
17411     /**
17412      * Sets the current box measurements of the component's underlying element.
17413      * @param {Object} box An object in the format {x, y, width, height}
17414      * @returns {Roo.BoxComponent} this
17415      */
17416     updateBox : function(box){
17417         this.setSize(box.width, box.height);
17418         this.setPagePosition(box.x, box.y);
17419         return this;
17420     },
17421
17422     // protected
17423     getResizeEl : function(){
17424         return this.resizeEl || this.el;
17425     },
17426
17427     // protected
17428     getPositionEl : function(){
17429         return this.positionEl || this.el;
17430     },
17431
17432     /**
17433      * Sets the left and top of the component.  To set the page XY position instead, use {@link #setPagePosition}.
17434      * This method fires the move event.
17435      * @param {Number} left The new left
17436      * @param {Number} top The new top
17437      * @returns {Roo.BoxComponent} this
17438      */
17439     setPosition : function(x, y){
17440         this.x = x;
17441         this.y = y;
17442         if(!this.boxReady){
17443             return this;
17444         }
17445         var adj = this.adjustPosition(x, y);
17446         var ax = adj.x, ay = adj.y;
17447
17448         var el = this.getPositionEl();
17449         if(ax !== undefined || ay !== undefined){
17450             if(ax !== undefined && ay !== undefined){
17451                 el.setLeftTop(ax, ay);
17452             }else if(ax !== undefined){
17453                 el.setLeft(ax);
17454             }else if(ay !== undefined){
17455                 el.setTop(ay);
17456             }
17457             this.onPosition(ax, ay);
17458             this.fireEvent('move', this, ax, ay);
17459         }
17460         return this;
17461     },
17462
17463     /**
17464      * Sets the page XY position of the component.  To set the left and top instead, use {@link #setPosition}.
17465      * This method fires the move event.
17466      * @param {Number} x The new x position
17467      * @param {Number} y The new y position
17468      * @returns {Roo.BoxComponent} this
17469      */
17470     setPagePosition : function(x, y){
17471         this.pageX = x;
17472         this.pageY = y;
17473         if(!this.boxReady){
17474             return;
17475         }
17476         if(x === undefined || y === undefined){ // cannot translate undefined points
17477             return;
17478         }
17479         var p = this.el.translatePoints(x, y);
17480         this.setPosition(p.left, p.top);
17481         return this;
17482     },
17483
17484     // private
17485     onRender : function(ct, position){
17486         Roo.BoxComponent.superclass.onRender.call(this, ct, position);
17487         if(this.resizeEl){
17488             this.resizeEl = Roo.get(this.resizeEl);
17489         }
17490         if(this.positionEl){
17491             this.positionEl = Roo.get(this.positionEl);
17492         }
17493     },
17494
17495     // private
17496     afterRender : function(){
17497         Roo.BoxComponent.superclass.afterRender.call(this);
17498         this.boxReady = true;
17499         this.setSize(this.width, this.height);
17500         if(this.x || this.y){
17501             this.setPosition(this.x, this.y);
17502         }
17503         if(this.pageX || this.pageY){
17504             this.setPagePosition(this.pageX, this.pageY);
17505         }
17506     },
17507
17508     /**
17509      * Force the component's size to recalculate based on the underlying element's current height and width.
17510      * @returns {Roo.BoxComponent} this
17511      */
17512     syncSize : function(){
17513         delete this.lastSize;
17514         this.setSize(this.el.getWidth(), this.el.getHeight());
17515         return this;
17516     },
17517
17518     /**
17519      * Called after the component is resized, this method is empty by default but can be implemented by any
17520      * subclass that needs to perform custom logic after a resize occurs.
17521      * @param {Number} adjWidth The box-adjusted width that was set
17522      * @param {Number} adjHeight The box-adjusted height that was set
17523      * @param {Number} rawWidth The width that was originally specified
17524      * @param {Number} rawHeight The height that was originally specified
17525      */
17526     onResize : function(adjWidth, adjHeight, rawWidth, rawHeight){
17527
17528     },
17529
17530     /**
17531      * Called after the component is moved, this method is empty by default but can be implemented by any
17532      * subclass that needs to perform custom logic after a move occurs.
17533      * @param {Number} x The new x position
17534      * @param {Number} y The new y position
17535      */
17536     onPosition : function(x, y){
17537
17538     },
17539
17540     // private
17541     adjustSize : function(w, h){
17542         if(this.autoWidth){
17543             w = 'auto';
17544         }
17545         if(this.autoHeight){
17546             h = 'auto';
17547         }
17548         return {width : w, height: h};
17549     },
17550
17551     // private
17552     adjustPosition : function(x, y){
17553         return {x : x, y: y};
17554     }
17555 });/*
17556  * Based on:
17557  * Ext JS Library 1.1.1
17558  * Copyright(c) 2006-2007, Ext JS, LLC.
17559  *
17560  * Originally Released Under LGPL - original licence link has changed is not relivant.
17561  *
17562  * Fork - LGPL
17563  * <script type="text/javascript">
17564  */
17565  (function(){ 
17566 /**
17567  * @class Roo.Layer
17568  * @extends Roo.Element
17569  * An extended {@link Roo.Element} object that supports a shadow and shim, constrain to viewport and
17570  * automatic maintaining of shadow/shim positions.
17571  * @cfg {Boolean} shim False to disable the iframe shim in browsers which need one (defaults to true)
17572  * @cfg {String/Boolean} shadow True to create a shadow element with default class "x-layer-shadow", or
17573  * you can pass a string with a CSS class name. False turns off the shadow.
17574  * @cfg {Object} dh DomHelper object config to create element with (defaults to {tag: "div", cls: "x-layer"}).
17575  * @cfg {Boolean} constrain False to disable constrain to viewport (defaults to true)
17576  * @cfg {String} cls CSS class to add to the element
17577  * @cfg {Number} zindex Starting z-index (defaults to 11000)
17578  * @cfg {Number} shadowOffset Number of pixels to offset the shadow (defaults to 3)
17579  * @constructor
17580  * @param {Object} config An object with config options.
17581  * @param {String/HTMLElement} existingEl (optional) Uses an existing DOM element. If the element is not found it creates it.
17582  */
17583
17584 Roo.Layer = function(config, existingEl){
17585     config = config || {};
17586     var dh = Roo.DomHelper;
17587     var cp = config.parentEl, pel = cp ? Roo.getDom(cp) : document.body;
17588     if(existingEl){
17589         this.dom = Roo.getDom(existingEl);
17590     }
17591     if(!this.dom){
17592         var o = config.dh || {tag: "div", cls: "x-layer"};
17593         this.dom = dh.append(pel, o);
17594     }
17595     if(config.cls){
17596         this.addClass(config.cls);
17597     }
17598     this.constrain = config.constrain !== false;
17599     this.visibilityMode = Roo.Element.VISIBILITY;
17600     if(config.id){
17601         this.id = this.dom.id = config.id;
17602     }else{
17603         this.id = Roo.id(this.dom);
17604     }
17605     this.zindex = config.zindex || this.getZIndex();
17606     this.position("absolute", this.zindex);
17607     if(config.shadow){
17608         this.shadowOffset = config.shadowOffset || 4;
17609         this.shadow = new Roo.Shadow({
17610             offset : this.shadowOffset,
17611             mode : config.shadow
17612         });
17613     }else{
17614         this.shadowOffset = 0;
17615     }
17616     this.useShim = config.shim !== false && Roo.useShims;
17617     this.useDisplay = config.useDisplay;
17618     this.hide();
17619 };
17620
17621 var supr = Roo.Element.prototype;
17622
17623 // shims are shared among layer to keep from having 100 iframes
17624 var shims = [];
17625
17626 Roo.extend(Roo.Layer, Roo.Element, {
17627
17628     getZIndex : function(){
17629         return this.zindex || parseInt(this.getStyle("z-index"), 10) || 11000;
17630     },
17631
17632     getShim : function(){
17633         if(!this.useShim){
17634             return null;
17635         }
17636         if(this.shim){
17637             return this.shim;
17638         }
17639         var shim = shims.shift();
17640         if(!shim){
17641             shim = this.createShim();
17642             shim.enableDisplayMode('block');
17643             shim.dom.style.display = 'none';
17644             shim.dom.style.visibility = 'visible';
17645         }
17646         var pn = this.dom.parentNode;
17647         if(shim.dom.parentNode != pn){
17648             pn.insertBefore(shim.dom, this.dom);
17649         }
17650         shim.setStyle('z-index', this.getZIndex()-2);
17651         this.shim = shim;
17652         return shim;
17653     },
17654
17655     hideShim : function(){
17656         if(this.shim){
17657             this.shim.setDisplayed(false);
17658             shims.push(this.shim);
17659             delete this.shim;
17660         }
17661     },
17662
17663     disableShadow : function(){
17664         if(this.shadow){
17665             this.shadowDisabled = true;
17666             this.shadow.hide();
17667             this.lastShadowOffset = this.shadowOffset;
17668             this.shadowOffset = 0;
17669         }
17670     },
17671
17672     enableShadow : function(show){
17673         if(this.shadow){
17674             this.shadowDisabled = false;
17675             this.shadowOffset = this.lastShadowOffset;
17676             delete this.lastShadowOffset;
17677             if(show){
17678                 this.sync(true);
17679             }
17680         }
17681     },
17682
17683     // private
17684     // this code can execute repeatedly in milliseconds (i.e. during a drag) so
17685     // code size was sacrificed for effeciency (e.g. no getBox/setBox, no XY calls)
17686     sync : function(doShow){
17687         var sw = this.shadow;
17688         if(!this.updating && this.isVisible() && (sw || this.useShim)){
17689             var sh = this.getShim();
17690
17691             var w = this.getWidth(),
17692                 h = this.getHeight();
17693
17694             var l = this.getLeft(true),
17695                 t = this.getTop(true);
17696
17697             if(sw && !this.shadowDisabled){
17698                 if(doShow && !sw.isVisible()){
17699                     sw.show(this);
17700                 }else{
17701                     sw.realign(l, t, w, h);
17702                 }
17703                 if(sh){
17704                     if(doShow){
17705                        sh.show();
17706                     }
17707                     // fit the shim behind the shadow, so it is shimmed too
17708                     var a = sw.adjusts, s = sh.dom.style;
17709                     s.left = (Math.min(l, l+a.l))+"px";
17710                     s.top = (Math.min(t, t+a.t))+"px";
17711                     s.width = (w+a.w)+"px";
17712                     s.height = (h+a.h)+"px";
17713                 }
17714             }else if(sh){
17715                 if(doShow){
17716                    sh.show();
17717                 }
17718                 sh.setSize(w, h);
17719                 sh.setLeftTop(l, t);
17720             }
17721             
17722         }
17723     },
17724
17725     // private
17726     destroy : function(){
17727         this.hideShim();
17728         if(this.shadow){
17729             this.shadow.hide();
17730         }
17731         this.removeAllListeners();
17732         var pn = this.dom.parentNode;
17733         if(pn){
17734             pn.removeChild(this.dom);
17735         }
17736         Roo.Element.uncache(this.id);
17737     },
17738
17739     remove : function(){
17740         this.destroy();
17741     },
17742
17743     // private
17744     beginUpdate : function(){
17745         this.updating = true;
17746     },
17747
17748     // private
17749     endUpdate : function(){
17750         this.updating = false;
17751         this.sync(true);
17752     },
17753
17754     // private
17755     hideUnders : function(negOffset){
17756         if(this.shadow){
17757             this.shadow.hide();
17758         }
17759         this.hideShim();
17760     },
17761
17762     // private
17763     constrainXY : function(){
17764         if(this.constrain){
17765             var vw = Roo.lib.Dom.getViewWidth(),
17766                 vh = Roo.lib.Dom.getViewHeight();
17767             var s = Roo.get(document).getScroll();
17768
17769             var xy = this.getXY();
17770             var x = xy[0], y = xy[1];   
17771             var w = this.dom.offsetWidth+this.shadowOffset, h = this.dom.offsetHeight+this.shadowOffset;
17772             // only move it if it needs it
17773             var moved = false;
17774             // first validate right/bottom
17775             if((x + w) > vw+s.left){
17776                 x = vw - w - this.shadowOffset;
17777                 moved = true;
17778             }
17779             if((y + h) > vh+s.top){
17780                 y = vh - h - this.shadowOffset;
17781                 moved = true;
17782             }
17783             // then make sure top/left isn't negative
17784             if(x < s.left){
17785                 x = s.left;
17786                 moved = true;
17787             }
17788             if(y < s.top){
17789                 y = s.top;
17790                 moved = true;
17791             }
17792             if(moved){
17793                 if(this.avoidY){
17794                     var ay = this.avoidY;
17795                     if(y <= ay && (y+h) >= ay){
17796                         y = ay-h-5;   
17797                     }
17798                 }
17799                 xy = [x, y];
17800                 this.storeXY(xy);
17801                 supr.setXY.call(this, xy);
17802                 this.sync();
17803             }
17804         }
17805     },
17806
17807     isVisible : function(){
17808         return this.visible;    
17809     },
17810
17811     // private
17812     showAction : function(){
17813         this.visible = true; // track visibility to prevent getStyle calls
17814         if(this.useDisplay === true){
17815             this.setDisplayed("");
17816         }else if(this.lastXY){
17817             supr.setXY.call(this, this.lastXY);
17818         }else if(this.lastLT){
17819             supr.setLeftTop.call(this, this.lastLT[0], this.lastLT[1]);
17820         }
17821     },
17822
17823     // private
17824     hideAction : function(){
17825         this.visible = false;
17826         if(this.useDisplay === true){
17827             this.setDisplayed(false);
17828         }else{
17829             this.setLeftTop(-10000,-10000);
17830         }
17831     },
17832
17833     // overridden Element method
17834     setVisible : function(v, a, d, c, e){
17835         if(v){
17836             this.showAction();
17837         }
17838         if(a && v){
17839             var cb = function(){
17840                 this.sync(true);
17841                 if(c){
17842                     c();
17843                 }
17844             }.createDelegate(this);
17845             supr.setVisible.call(this, true, true, d, cb, e);
17846         }else{
17847             if(!v){
17848                 this.hideUnders(true);
17849             }
17850             var cb = c;
17851             if(a){
17852                 cb = function(){
17853                     this.hideAction();
17854                     if(c){
17855                         c();
17856                     }
17857                 }.createDelegate(this);
17858             }
17859             supr.setVisible.call(this, v, a, d, cb, e);
17860             if(v){
17861                 this.sync(true);
17862             }else if(!a){
17863                 this.hideAction();
17864             }
17865         }
17866     },
17867
17868     storeXY : function(xy){
17869         delete this.lastLT;
17870         this.lastXY = xy;
17871     },
17872
17873     storeLeftTop : function(left, top){
17874         delete this.lastXY;
17875         this.lastLT = [left, top];
17876     },
17877
17878     // private
17879     beforeFx : function(){
17880         this.beforeAction();
17881         return Roo.Layer.superclass.beforeFx.apply(this, arguments);
17882     },
17883
17884     // private
17885     afterFx : function(){
17886         Roo.Layer.superclass.afterFx.apply(this, arguments);
17887         this.sync(this.isVisible());
17888     },
17889
17890     // private
17891     beforeAction : function(){
17892         if(!this.updating && this.shadow){
17893             this.shadow.hide();
17894         }
17895     },
17896
17897     // overridden Element method
17898     setLeft : function(left){
17899         this.storeLeftTop(left, this.getTop(true));
17900         supr.setLeft.apply(this, arguments);
17901         this.sync();
17902     },
17903
17904     setTop : function(top){
17905         this.storeLeftTop(this.getLeft(true), top);
17906         supr.setTop.apply(this, arguments);
17907         this.sync();
17908     },
17909
17910     setLeftTop : function(left, top){
17911         this.storeLeftTop(left, top);
17912         supr.setLeftTop.apply(this, arguments);
17913         this.sync();
17914     },
17915
17916     setXY : function(xy, a, d, c, e){
17917         this.fixDisplay();
17918         this.beforeAction();
17919         this.storeXY(xy);
17920         var cb = this.createCB(c);
17921         supr.setXY.call(this, xy, a, d, cb, e);
17922         if(!a){
17923             cb();
17924         }
17925     },
17926
17927     // private
17928     createCB : function(c){
17929         var el = this;
17930         return function(){
17931             el.constrainXY();
17932             el.sync(true);
17933             if(c){
17934                 c();
17935             }
17936         };
17937     },
17938
17939     // overridden Element method
17940     setX : function(x, a, d, c, e){
17941         this.setXY([x, this.getY()], a, d, c, e);
17942     },
17943
17944     // overridden Element method
17945     setY : function(y, a, d, c, e){
17946         this.setXY([this.getX(), y], a, d, c, e);
17947     },
17948
17949     // overridden Element method
17950     setSize : function(w, h, a, d, c, e){
17951         this.beforeAction();
17952         var cb = this.createCB(c);
17953         supr.setSize.call(this, w, h, a, d, cb, e);
17954         if(!a){
17955             cb();
17956         }
17957     },
17958
17959     // overridden Element method
17960     setWidth : function(w, a, d, c, e){
17961         this.beforeAction();
17962         var cb = this.createCB(c);
17963         supr.setWidth.call(this, w, a, d, cb, e);
17964         if(!a){
17965             cb();
17966         }
17967     },
17968
17969     // overridden Element method
17970     setHeight : function(h, a, d, c, e){
17971         this.beforeAction();
17972         var cb = this.createCB(c);
17973         supr.setHeight.call(this, h, a, d, cb, e);
17974         if(!a){
17975             cb();
17976         }
17977     },
17978
17979     // overridden Element method
17980     setBounds : function(x, y, w, h, a, d, c, e){
17981         this.beforeAction();
17982         var cb = this.createCB(c);
17983         if(!a){
17984             this.storeXY([x, y]);
17985             supr.setXY.call(this, [x, y]);
17986             supr.setSize.call(this, w, h, a, d, cb, e);
17987             cb();
17988         }else{
17989             supr.setBounds.call(this, x, y, w, h, a, d, cb, e);
17990         }
17991         return this;
17992     },
17993     
17994     /**
17995      * Sets the z-index of this layer and adjusts any shadow and shim z-indexes. The layer z-index is automatically
17996      * incremented by two more than the value passed in so that it always shows above any shadow or shim (the shadow
17997      * element, if any, will be assigned z-index + 1, and the shim element, if any, will be assigned the unmodified z-index).
17998      * @param {Number} zindex The new z-index to set
17999      * @return {this} The Layer
18000      */
18001     setZIndex : function(zindex){
18002         this.zindex = zindex;
18003         this.setStyle("z-index", zindex + 2);
18004         if(this.shadow){
18005             this.shadow.setZIndex(zindex + 1);
18006         }
18007         if(this.shim){
18008             this.shim.setStyle("z-index", zindex);
18009         }
18010     }
18011 });
18012 })();/*
18013  * Original code for Roojs - LGPL
18014  * <script type="text/javascript">
18015  */
18016  
18017 /**
18018  * @class Roo.XComponent
18019  * A delayed Element creator...
18020  * Or a way to group chunks of interface together.
18021  * technically this is a wrapper around a tree of Roo elements (which defines a 'module'),
18022  *  used in conjunction with XComponent.build() it will create an instance of each element,
18023  *  then call addxtype() to build the User interface.
18024  * 
18025  * Mypart.xyx = new Roo.XComponent({
18026
18027     parent : 'Mypart.xyz', // empty == document.element.!!
18028     order : '001',
18029     name : 'xxxx'
18030     region : 'xxxx'
18031     disabled : function() {} 
18032      
18033     tree : function() { // return an tree of xtype declared components
18034         var MODULE = this;
18035         return 
18036         {
18037             xtype : 'NestedLayoutPanel',
18038             // technicall
18039         }
18040      ]
18041  *})
18042  *
18043  *
18044  * It can be used to build a big heiracy, with parent etc.
18045  * or you can just use this to render a single compoent to a dom element
18046  * MYPART.render(Roo.Element | String(id) | dom_element )
18047  *
18048  *
18049  * Usage patterns.
18050  *
18051  * Classic Roo
18052  *
18053  * Roo is designed primarily as a single page application, so the UI build for a standard interface will
18054  * expect a single 'TOP' level module normally indicated by the 'parent' of the XComponent definition being defined as false.
18055  *
18056  * Each sub module is expected to have a parent pointing to the class name of it's parent module.
18057  *
18058  * When the top level is false, a 'Roo.BorderLayout' is created and the element is flagged as 'topModule'
18059  * - if mulitple topModules exist, the last one is defined as the top module.
18060  *
18061  * Embeded Roo
18062  * 
18063  * When the top level or multiple modules are to embedded into a existing HTML page,
18064  * the parent element can container '#id' of the element where the module will be drawn.
18065  *
18066  * Bootstrap Roo
18067  *
18068  * Unlike classic Roo, the bootstrap tends not to be used as a single page.
18069  * it relies more on a include mechanism, where sub modules are included into an outer page.
18070  * This is normally managed by the builder tools using Roo.apply( options, Included.Sub.Module )
18071  * 
18072  * Bootstrap Roo Included elements
18073  *
18074  * Our builder application needs the ability to preview these sub compoennts. They will normally have parent=false set,
18075  * hence confusing the component builder as it thinks there are multiple top level elements. 
18076  *
18077  * String Over-ride & Translations
18078  *
18079  * Our builder application writes all the strings as _strings and _named_strings. This is to enable the translation of elements,
18080  * and also the 'overlaying of string values - needed when different versions of the same application with different text content
18081  * are needed. @see Roo.XComponent.overlayString  
18082  * 
18083  * 
18084  * 
18085  * @extends Roo.util.Observable
18086  * @constructor
18087  * @param cfg {Object} configuration of component
18088  * 
18089  */
18090 Roo.XComponent = function(cfg) {
18091     Roo.apply(this, cfg);
18092     this.addEvents({ 
18093         /**
18094              * @event built
18095              * Fires when this the componnt is built
18096              * @param {Roo.XComponent} c the component
18097              */
18098         'built' : true
18099         
18100     });
18101     this.region = this.region || 'center'; // default..
18102     Roo.XComponent.register(this);
18103     this.modules = false;
18104     this.el = false; // where the layout goes..
18105     
18106     
18107 }
18108 Roo.extend(Roo.XComponent, Roo.util.Observable, {
18109     /**
18110      * @property el
18111      * The created element (with Roo.factory())
18112      * @type {Roo.Layout}
18113      */
18114     el  : false,
18115     
18116     /**
18117      * @property el
18118      * for BC  - use el in new code
18119      * @type {Roo.Layout}
18120      */
18121     panel : false,
18122     
18123     /**
18124      * @property layout
18125      * for BC  - use el in new code
18126      * @type {Roo.Layout}
18127      */
18128     layout : false,
18129     
18130      /**
18131      * @cfg {Function|boolean} disabled
18132      * If this module is disabled by some rule, return true from the funtion
18133      */
18134     disabled : false,
18135     
18136     /**
18137      * @cfg {String} parent 
18138      * Name of parent element which it get xtype added to..
18139      */
18140     parent: false,
18141     
18142     /**
18143      * @cfg {String} order
18144      * Used to set the order in which elements are created (usefull for multiple tabs)
18145      */
18146     
18147     order : false,
18148     /**
18149      * @cfg {String} name
18150      * String to display while loading.
18151      */
18152     name : false,
18153     /**
18154      * @cfg {String} region
18155      * Region to render component to (defaults to center)
18156      */
18157     region : 'center',
18158     
18159     /**
18160      * @cfg {Array} items
18161      * A single item array - the first element is the root of the tree..
18162      * It's done this way to stay compatible with the Xtype system...
18163      */
18164     items : false,
18165     
18166     /**
18167      * @property _tree
18168      * The method that retuns the tree of parts that make up this compoennt 
18169      * @type {function}
18170      */
18171     _tree  : false,
18172     
18173      /**
18174      * render
18175      * render element to dom or tree
18176      * @param {Roo.Element|String|DomElement} optional render to if parent is not set.
18177      */
18178     
18179     render : function(el)
18180     {
18181         
18182         el = el || false;
18183         var hp = this.parent ? 1 : 0;
18184         Roo.debug &&  Roo.log(this);
18185         
18186         var tree = this._tree ? this._tree() : this.tree();
18187
18188         
18189         if (!el && typeof(this.parent) == 'string' && this.parent.substring(0,1) == '#') {
18190             // if parent is a '#.....' string, then let's use that..
18191             var ename = this.parent.substr(1);
18192             this.parent = false;
18193             Roo.debug && Roo.log(ename);
18194             switch (ename) {
18195                 case 'bootstrap-body':
18196                     if (typeof(tree.el) != 'undefined' && tree.el == document.body)  {
18197                         // this is the BorderLayout standard?
18198                        this.parent = { el : true };
18199                        break;
18200                     }
18201                     if (["Nest", "Content", "Grid", "Tree"].indexOf(tree.xtype)  > -1)  {
18202                         // need to insert stuff...
18203                         this.parent =  {
18204                              el : new Roo.bootstrap.layout.Border({
18205                                  el : document.body, 
18206                      
18207                                  center: {
18208                                     titlebar: false,
18209                                     autoScroll:false,
18210                                     closeOnTab: true,
18211                                     tabPosition: 'top',
18212                                       //resizeTabs: true,
18213                                     alwaysShowTabs: true,
18214                                     hideTabs: false
18215                                      //minTabWidth: 140
18216                                  }
18217                              })
18218                         
18219                          };
18220                          break;
18221                     }
18222                          
18223                     if (typeof(Roo.bootstrap.Body) != 'undefined' ) {
18224                         this.parent = { el :  new  Roo.bootstrap.Body() };
18225                         Roo.debug && Roo.log("setting el to doc body");
18226                          
18227                     } else {
18228                         throw "Container is bootstrap body, but Roo.bootstrap.Body is not defined";
18229                     }
18230                     break;
18231                 case 'bootstrap':
18232                     this.parent = { el : true};
18233                     // fall through
18234                 default:
18235                     el = Roo.get(ename);
18236                     if (typeof(Roo.bootstrap) != 'undefined' && tree['|xns'] == 'Roo.bootstrap') {
18237                         this.parent = { el : true};
18238                     }
18239                     
18240                     break;
18241             }
18242                 
18243             
18244             if (!el && !this.parent) {
18245                 Roo.debug && Roo.log("Warning - element can not be found :#" + ename );
18246                 return;
18247             }
18248         }
18249         
18250         Roo.debug && Roo.log("EL:");
18251         Roo.debug && Roo.log(el);
18252         Roo.debug && Roo.log("this.parent.el:");
18253         Roo.debug && Roo.log(this.parent.el);
18254         
18255
18256         // altertive root elements ??? - we need a better way to indicate these.
18257         var is_alt = Roo.XComponent.is_alt ||
18258                     (typeof(tree.el) != 'undefined' && tree.el == document.body) ||
18259                     (typeof(Roo.bootstrap) != 'undefined' && tree.xns == Roo.bootstrap) ||
18260                     (typeof(Roo.mailer) != 'undefined' && tree.xns == Roo.mailer) ;
18261         
18262         
18263         
18264         if (!this.parent && is_alt) {
18265             //el = Roo.get(document.body);
18266             this.parent = { el : true };
18267         }
18268             
18269             
18270         
18271         if (!this.parent) {
18272             
18273             Roo.debug && Roo.log("no parent - creating one");
18274             
18275             el = el ? Roo.get(el) : false;      
18276             
18277             if (typeof(Roo.BorderLayout) == 'undefined' ) {
18278                 
18279                 this.parent =  {
18280                     el : new Roo.bootstrap.layout.Border({
18281                         el: el || document.body,
18282                     
18283                         center: {
18284                             titlebar: false,
18285                             autoScroll:false,
18286                             closeOnTab: true,
18287                             tabPosition: 'top',
18288                              //resizeTabs: true,
18289                             alwaysShowTabs: false,
18290                             hideTabs: true,
18291                             minTabWidth: 140,
18292                             overflow: 'visible'
18293                          }
18294                      })
18295                 };
18296             } else {
18297             
18298                 // it's a top level one..
18299                 this.parent =  {
18300                     el : new Roo.BorderLayout(el || document.body, {
18301                         center: {
18302                             titlebar: false,
18303                             autoScroll:false,
18304                             closeOnTab: true,
18305                             tabPosition: 'top',
18306                              //resizeTabs: true,
18307                             alwaysShowTabs: el && hp? false :  true,
18308                             hideTabs: el || !hp ? true :  false,
18309                             minTabWidth: 140
18310                          }
18311                     })
18312                 };
18313             }
18314         }
18315         
18316         if (!this.parent.el) {
18317                 // probably an old style ctor, which has been disabled.
18318                 return;
18319
18320         }
18321                 // The 'tree' method is  '_tree now' 
18322             
18323         tree.region = tree.region || this.region;
18324         var is_body = false;
18325         if (this.parent.el === true) {
18326             // bootstrap... - body..
18327             if (el) {
18328                 tree.el = el;
18329             }
18330             this.parent.el = Roo.factory(tree);
18331             is_body = true;
18332         }
18333         
18334         this.el = this.parent.el.addxtype(tree, undefined, is_body);
18335         this.fireEvent('built', this);
18336         
18337         this.panel = this.el;
18338         this.layout = this.panel.layout;
18339         this.parentLayout = this.parent.layout  || false;  
18340          
18341     }
18342     
18343 });
18344
18345 Roo.apply(Roo.XComponent, {
18346     /**
18347      * @property  hideProgress
18348      * true to disable the building progress bar.. usefull on single page renders.
18349      * @type Boolean
18350      */
18351     hideProgress : false,
18352     /**
18353      * @property  buildCompleted
18354      * True when the builder has completed building the interface.
18355      * @type Boolean
18356      */
18357     buildCompleted : false,
18358      
18359     /**
18360      * @property  topModule
18361      * the upper most module - uses document.element as it's constructor.
18362      * @type Object
18363      */
18364      
18365     topModule  : false,
18366       
18367     /**
18368      * @property  modules
18369      * array of modules to be created by registration system.
18370      * @type {Array} of Roo.XComponent
18371      */
18372     
18373     modules : [],
18374     /**
18375      * @property  elmodules
18376      * array of modules to be created by which use #ID 
18377      * @type {Array} of Roo.XComponent
18378      */
18379      
18380     elmodules : [],
18381
18382      /**
18383      * @property  is_alt
18384      * Is an alternative Root - normally used by bootstrap or other systems,
18385      *    where the top element in the tree can wrap 'body' 
18386      * @type {boolean}  (default false)
18387      */
18388      
18389     is_alt : false,
18390     /**
18391      * @property  build_from_html
18392      * Build elements from html - used by bootstrap HTML stuff 
18393      *    - this is cleared after build is completed
18394      * @type {boolean}    (default false)
18395      */
18396      
18397     build_from_html : false,
18398     /**
18399      * Register components to be built later.
18400      *
18401      * This solves the following issues
18402      * - Building is not done on page load, but after an authentication process has occured.
18403      * - Interface elements are registered on page load
18404      * - Parent Interface elements may not be loaded before child, so this handles that..
18405      * 
18406      *
18407      * example:
18408      * 
18409      * MyApp.register({
18410           order : '000001',
18411           module : 'Pman.Tab.projectMgr',
18412           region : 'center',
18413           parent : 'Pman.layout',
18414           disabled : false,  // or use a function..
18415         })
18416      
18417      * * @param {Object} details about module
18418      */
18419     register : function(obj) {
18420                 
18421         Roo.XComponent.event.fireEvent('register', obj);
18422         switch(typeof(obj.disabled) ) {
18423                 
18424             case 'undefined':
18425                 break;
18426             
18427             case 'function':
18428                 if ( obj.disabled() ) {
18429                         return;
18430                 }
18431                 break;
18432             
18433             default:
18434                 if (obj.disabled || obj.region == '#disabled') {
18435                         return;
18436                 }
18437                 break;
18438         }
18439                 
18440         this.modules.push(obj);
18441          
18442     },
18443     /**
18444      * convert a string to an object..
18445      * eg. 'AAA.BBB' -> finds AAA.BBB
18446
18447      */
18448     
18449     toObject : function(str)
18450     {
18451         if (!str || typeof(str) == 'object') {
18452             return str;
18453         }
18454         if (str.substring(0,1) == '#') {
18455             return str;
18456         }
18457
18458         var ar = str.split('.');
18459         var rt, o;
18460         rt = ar.shift();
18461             /** eval:var:o */
18462         try {
18463             eval('if (typeof ' + rt + ' == "undefined"){ o = false;} o = ' + rt + ';');
18464         } catch (e) {
18465             throw "Module not found : " + str;
18466         }
18467         
18468         if (o === false) {
18469             throw "Module not found : " + str;
18470         }
18471         Roo.each(ar, function(e) {
18472             if (typeof(o[e]) == 'undefined') {
18473                 throw "Module not found : " + str;
18474             }
18475             o = o[e];
18476         });
18477         
18478         return o;
18479         
18480     },
18481     
18482     
18483     /**
18484      * move modules into their correct place in the tree..
18485      * 
18486      */
18487     preBuild : function ()
18488     {
18489         var _t = this;
18490         Roo.each(this.modules , function (obj)
18491         {
18492             Roo.XComponent.event.fireEvent('beforebuild', obj);
18493             
18494             var opar = obj.parent;
18495             try { 
18496                 obj.parent = this.toObject(opar);
18497             } catch(e) {
18498                 Roo.debug && Roo.log("parent:toObject failed: " + e.toString());
18499                 return;
18500             }
18501             
18502             if (!obj.parent) {
18503                 Roo.debug && Roo.log("GOT top level module");
18504                 Roo.debug && Roo.log(obj);
18505                 obj.modules = new Roo.util.MixedCollection(false, 
18506                     function(o) { return o.order + '' }
18507                 );
18508                 this.topModule = obj;
18509                 return;
18510             }
18511                         // parent is a string (usually a dom element name..)
18512             if (typeof(obj.parent) == 'string') {
18513                 this.elmodules.push(obj);
18514                 return;
18515             }
18516             if (obj.parent.constructor != Roo.XComponent) {
18517                 Roo.debug && Roo.log("Warning : Object Parent is not instance of XComponent:" + obj.name)
18518             }
18519             if (!obj.parent.modules) {
18520                 obj.parent.modules = new Roo.util.MixedCollection(false, 
18521                     function(o) { return o.order + '' }
18522                 );
18523             }
18524             if (obj.parent.disabled) {
18525                 obj.disabled = true;
18526             }
18527             obj.parent.modules.add(obj);
18528         }, this);
18529     },
18530     
18531      /**
18532      * make a list of modules to build.
18533      * @return {Array} list of modules. 
18534      */ 
18535     
18536     buildOrder : function()
18537     {
18538         var _this = this;
18539         var cmp = function(a,b) {   
18540             return String(a).toUpperCase() > String(b).toUpperCase() ? 1 : -1;
18541         };
18542         if ((!this.topModule || !this.topModule.modules) && !this.elmodules.length) {
18543             throw "No top level modules to build";
18544         }
18545         
18546         // make a flat list in order of modules to build.
18547         var mods = this.topModule ? [ this.topModule ] : [];
18548                 
18549         
18550         // elmodules (is a list of DOM based modules )
18551         Roo.each(this.elmodules, function(e) {
18552             mods.push(e);
18553             if (!this.topModule &&
18554                 typeof(e.parent) == 'string' &&
18555                 e.parent.substring(0,1) == '#' &&
18556                 Roo.get(e.parent.substr(1))
18557                ) {
18558                 
18559                 _this.topModule = e;
18560             }
18561             
18562         });
18563
18564         
18565         // add modules to their parents..
18566         var addMod = function(m) {
18567             Roo.debug && Roo.log("build Order: add: " + m.name);
18568                 
18569             mods.push(m);
18570             if (m.modules && !m.disabled) {
18571                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules");
18572                 m.modules.keySort('ASC',  cmp );
18573                 Roo.debug && Roo.log("build Order: " + m.modules.length + " child modules (after sort)");
18574     
18575                 m.modules.each(addMod);
18576             } else {
18577                 Roo.debug && Roo.log("build Order: no child modules");
18578             }
18579             // not sure if this is used any more..
18580             if (m.finalize) {
18581                 m.finalize.name = m.name + " (clean up) ";
18582                 mods.push(m.finalize);
18583             }
18584             
18585         }
18586         if (this.topModule && this.topModule.modules) { 
18587             this.topModule.modules.keySort('ASC',  cmp );
18588             this.topModule.modules.each(addMod);
18589         } 
18590         return mods;
18591     },
18592     
18593      /**
18594      * Build the registered modules.
18595      * @param {Object} parent element.
18596      * @param {Function} optional method to call after module has been added.
18597      * 
18598      */ 
18599    
18600     build : function(opts) 
18601     {
18602         
18603         if (typeof(opts) != 'undefined') {
18604             Roo.apply(this,opts);
18605         }
18606         
18607         this.preBuild();
18608         var mods = this.buildOrder();
18609       
18610         //this.allmods = mods;
18611         //Roo.debug && Roo.log(mods);
18612         //return;
18613         if (!mods.length) { // should not happen
18614             throw "NO modules!!!";
18615         }
18616         
18617         
18618         var msg = "Building Interface...";
18619         // flash it up as modal - so we store the mask!?
18620         if (!this.hideProgress && Roo.MessageBox) {
18621             Roo.MessageBox.show({ title: 'loading' });
18622             Roo.MessageBox.show({
18623                title: "Please wait...",
18624                msg: msg,
18625                width:450,
18626                progress:true,
18627                buttons : false,
18628                closable:false,
18629                modal: false
18630               
18631             });
18632         }
18633         var total = mods.length;
18634         
18635         var _this = this;
18636         var progressRun = function() {
18637             if (!mods.length) {
18638                 Roo.debug && Roo.log('hide?');
18639                 if (!this.hideProgress && Roo.MessageBox) {
18640                     Roo.MessageBox.hide();
18641                 }
18642                 Roo.XComponent.build_from_html = false; // reset, so dialogs will be build from javascript
18643                 
18644                 Roo.XComponent.event.fireEvent('buildcomplete', _this.topModule);
18645                 
18646                 // THE END...
18647                 return false;   
18648             }
18649             
18650             var m = mods.shift();
18651             
18652             
18653             Roo.debug && Roo.log(m);
18654             // not sure if this is supported any more.. - modules that are are just function
18655             if (typeof(m) == 'function') { 
18656                 m.call(this);
18657                 return progressRun.defer(10, _this);
18658             } 
18659             
18660             
18661             msg = "Building Interface " + (total  - mods.length) + 
18662                     " of " + total + 
18663                     (m.name ? (' - ' + m.name) : '');
18664                         Roo.debug && Roo.log(msg);
18665             if (!_this.hideProgress &&  Roo.MessageBox) { 
18666                 Roo.MessageBox.updateProgress(  (total  - mods.length)/total, msg  );
18667             }
18668             
18669          
18670             // is the module disabled?
18671             var disabled = (typeof(m.disabled) == 'function') ?
18672                 m.disabled.call(m.module.disabled) : m.disabled;    
18673             
18674             
18675             if (disabled) {
18676                 return progressRun(); // we do not update the display!
18677             }
18678             
18679             // now build 
18680             
18681                         
18682                         
18683             m.render();
18684             // it's 10 on top level, and 1 on others??? why...
18685             return progressRun.defer(10, _this);
18686              
18687         }
18688         progressRun.defer(1, _this);
18689      
18690         
18691         
18692     },
18693     /**
18694      * Overlay a set of modified strings onto a component
18695      * This is dependant on our builder exporting the strings and 'named strings' elements.
18696      * 
18697      * @param {Object} element to overlay on - eg. Pman.Dialog.Login
18698      * @param {Object} associative array of 'named' string and it's new value.
18699      * 
18700      */
18701         overlayStrings : function( component, strings )
18702     {
18703         if (typeof(component['_named_strings']) == 'undefined') {
18704             throw "ERROR: component does not have _named_strings";
18705         }
18706         for ( var k in strings ) {
18707             var md = typeof(component['_named_strings'][k]) == 'undefined' ? false : component['_named_strings'][k];
18708             if (md !== false) {
18709                 component['_strings'][md] = strings[k];
18710             } else {
18711                 Roo.log('could not find named string: ' + k + ' in');
18712                 Roo.log(component);
18713             }
18714             
18715         }
18716         
18717     },
18718     
18719         
18720         /**
18721          * Event Object.
18722          *
18723          *
18724          */
18725         event: false, 
18726     /**
18727          * wrapper for event.on - aliased later..  
18728          * Typically use to register a event handler for register:
18729          *
18730          * eg. Roo.XComponent.on('register', function(comp) { comp.disable = true } );
18731          *
18732          */
18733     on : false
18734    
18735     
18736     
18737 });
18738
18739 Roo.XComponent.event = new Roo.util.Observable({
18740                 events : { 
18741                         /**
18742                          * @event register
18743                          * Fires when an Component is registered,
18744                          * set the disable property on the Component to stop registration.
18745                          * @param {Roo.XComponent} c the component being registerd.
18746                          * 
18747                          */
18748                         'register' : true,
18749             /**
18750                          * @event beforebuild
18751                          * Fires before each Component is built
18752                          * can be used to apply permissions.
18753                          * @param {Roo.XComponent} c the component being registerd.
18754                          * 
18755                          */
18756                         'beforebuild' : true,
18757                         /**
18758                          * @event buildcomplete
18759                          * Fires on the top level element when all elements have been built
18760                          * @param {Roo.XComponent} the top level component.
18761                          */
18762                         'buildcomplete' : true
18763                         
18764                 }
18765 });
18766
18767 Roo.XComponent.on = Roo.XComponent.event.on.createDelegate(Roo.XComponent.event); 
18768  //
18769  /**
18770  * marked - a markdown parser
18771  * Copyright (c) 2011-2014, Christopher Jeffrey. (MIT Licensed)
18772  * https://github.com/chjj/marked
18773  */
18774
18775
18776 /**
18777  *
18778  * Roo.Markdown - is a very crude wrapper around marked..
18779  *
18780  * usage:
18781  * 
18782  * alert( Roo.Markdown.toHtml("Markdown *rocks*.") );
18783  * 
18784  * Note: move the sample code to the bottom of this
18785  * file before uncommenting it.
18786  *
18787  */
18788
18789 Roo.Markdown = {};
18790 Roo.Markdown.toHtml = function(text) {
18791     
18792     var c = new Roo.Markdown.marked.setOptions({
18793             renderer: new Roo.Markdown.marked.Renderer(),
18794             gfm: true,
18795             tables: true,
18796             breaks: false,
18797             pedantic: false,
18798             sanitize: false,
18799             smartLists: true,
18800             smartypants: false
18801           });
18802     // A FEW HACKS!!?
18803     
18804     text = text.replace(/\\\n/g,' ');
18805     return Roo.Markdown.marked(text);
18806 };
18807 //
18808 // converter
18809 //
18810 // Wraps all "globals" so that the only thing
18811 // exposed is makeHtml().
18812 //
18813 (function() {
18814     
18815      /**
18816          * eval:var:escape
18817          * eval:var:unescape
18818          * eval:var:replace
18819          */
18820       
18821     /**
18822      * Helpers
18823      */
18824     
18825     var escape = function (html, encode) {
18826       return html
18827         .replace(!encode ? /&(?!#?\w+;)/g : /&/g, '&amp;')
18828         .replace(/</g, '&lt;')
18829         .replace(/>/g, '&gt;')
18830         .replace(/"/g, '&quot;')
18831         .replace(/'/g, '&#39;');
18832     }
18833     
18834     var unescape = function (html) {
18835         // explicitly match decimal, hex, and named HTML entities 
18836       return html.replace(/&(#(?:\d+)|(?:#x[0-9A-Fa-f]+)|(?:\w+));?/g, function(_, n) {
18837         n = n.toLowerCase();
18838         if (n === 'colon') { return ':'; }
18839         if (n.charAt(0) === '#') {
18840           return n.charAt(1) === 'x'
18841             ? String.fromCharCode(parseInt(n.substring(2), 16))
18842             : String.fromCharCode(+n.substring(1));
18843         }
18844         return '';
18845       });
18846     }
18847     
18848     var replace = function (regex, opt) {
18849       regex = regex.source;
18850       opt = opt || '';
18851       return function self(name, val) {
18852         if (!name) { return new RegExp(regex, opt); }
18853         val = val.source || val;
18854         val = val.replace(/(^|[^\[])\^/g, '$1');
18855         regex = regex.replace(name, val);
18856         return self;
18857       };
18858     }
18859
18860
18861          /**
18862          * eval:var:noop
18863     */
18864     var noop = function () {}
18865     noop.exec = noop;
18866     
18867          /**
18868          * eval:var:merge
18869     */
18870     var merge = function (obj) {
18871       var i = 1
18872         , target
18873         , key;
18874     
18875       for (; i < arguments.length; i++) {
18876         target = arguments[i];
18877         for (key in target) {
18878           if (Object.prototype.hasOwnProperty.call(target, key)) {
18879             obj[key] = target[key];
18880           }
18881         }
18882       }
18883     
18884       return obj;
18885     }
18886     
18887     
18888     /**
18889      * Block-Level Grammar
18890      */
18891     
18892     
18893     
18894     
18895     var block = {
18896       newline: /^\n+/,
18897       code: /^( {4}[^\n]+\n*)+/,
18898       fences: noop,
18899       hr: /^( *[-*_]){3,} *(?:\n+|$)/,
18900       heading: /^ *(#{1,6}) *([^\n]+?) *#* *(?:\n+|$)/,
18901       nptable: noop,
18902       lheading: /^([^\n]+)\n *(=|-){2,} *(?:\n+|$)/,
18903       blockquote: /^( *>[^\n]+(\n(?!def)[^\n]+)*\n*)+/,
18904       list: /^( *)(bull) [\s\S]+?(?:hr|def|\n{2,}(?! )(?!\1bull )\n*|\s*$)/,
18905       html: /^ *(?:comment *(?:\n|\s*$)|closed *(?:\n{2,}|\s*$)|closing *(?:\n{2,}|\s*$))/,
18906       def: /^ *\[([^\]]+)\]: *<?([^\s>]+)>?(?: +["(]([^\n]+)[")])? *(?:\n+|$)/,
18907       table: noop,
18908       paragraph: /^((?:[^\n]+\n?(?!hr|heading|lheading|blockquote|tag|def))+)\n*/,
18909       text: /^[^\n]+/
18910     };
18911     
18912     block.bullet = /(?:[*+-]|\d+\.)/;
18913     block.item = /^( *)(bull) [^\n]*(?:\n(?!\1bull )[^\n]*)*/;
18914     block.item = replace(block.item, 'gm')
18915       (/bull/g, block.bullet)
18916       ();
18917     
18918     block.list = replace(block.list)
18919       (/bull/g, block.bullet)
18920       ('hr', '\\n+(?=\\1?(?:[-*_] *){3,}(?:\\n+|$))')
18921       ('def', '\\n+(?=' + block.def.source + ')')
18922       ();
18923     
18924     block.blockquote = replace(block.blockquote)
18925       ('def', block.def)
18926       ();
18927     
18928     block._tag = '(?!(?:'
18929       + 'a|em|strong|small|s|cite|q|dfn|abbr|data|time|code'
18930       + '|var|samp|kbd|sub|sup|i|b|u|mark|ruby|rt|rp|bdi|bdo'
18931       + '|span|br|wbr|ins|del|img)\\b)\\w+(?!:/|[^\\w\\s@]*@)\\b';
18932     
18933     block.html = replace(block.html)
18934       ('comment', /<!--[\s\S]*?-->/)
18935       ('closed', /<(tag)[\s\S]+?<\/\1>/)
18936       ('closing', /<tag(?:"[^"]*"|'[^']*'|[^'">])*?>/)
18937       (/tag/g, block._tag)
18938       ();
18939     
18940     block.paragraph = replace(block.paragraph)
18941       ('hr', block.hr)
18942       ('heading', block.heading)
18943       ('lheading', block.lheading)
18944       ('blockquote', block.blockquote)
18945       ('tag', '<' + block._tag)
18946       ('def', block.def)
18947       ();
18948     
18949     /**
18950      * Normal Block Grammar
18951      */
18952     
18953     block.normal = merge({}, block);
18954     
18955     /**
18956      * GFM Block Grammar
18957      */
18958     
18959     block.gfm = merge({}, block.normal, {
18960       fences: /^ *(`{3,}|~{3,})[ \.]*(\S+)? *\n([\s\S]*?)\s*\1 *(?:\n+|$)/,
18961       paragraph: /^/,
18962       heading: /^ *(#{1,6}) +([^\n]+?) *#* *(?:\n+|$)/
18963     });
18964     
18965     block.gfm.paragraph = replace(block.paragraph)
18966       ('(?!', '(?!'
18967         + block.gfm.fences.source.replace('\\1', '\\2') + '|'
18968         + block.list.source.replace('\\1', '\\3') + '|')
18969       ();
18970     
18971     /**
18972      * GFM + Tables Block Grammar
18973      */
18974     
18975     block.tables = merge({}, block.gfm, {
18976       nptable: /^ *(\S.*\|.*)\n *([-:]+ *\|[-| :]*)\n((?:.*\|.*(?:\n|$))*)\n*/,
18977       table: /^ *\|(.+)\n *\|( *[-:]+[-| :]*)\n((?: *\|.*(?:\n|$))*)\n*/
18978     });
18979     
18980     /**
18981      * Block Lexer
18982      */
18983     
18984     var Lexer = function (options) {
18985       this.tokens = [];
18986       this.tokens.links = {};
18987       this.options = options || marked.defaults;
18988       this.rules = block.normal;
18989     
18990       if (this.options.gfm) {
18991         if (this.options.tables) {
18992           this.rules = block.tables;
18993         } else {
18994           this.rules = block.gfm;
18995         }
18996       }
18997     }
18998     
18999     /**
19000      * Expose Block Rules
19001      */
19002     
19003     Lexer.rules = block;
19004     
19005     /**
19006      * Static Lex Method
19007      */
19008     
19009     Lexer.lex = function(src, options) {
19010       var lexer = new Lexer(options);
19011       return lexer.lex(src);
19012     };
19013     
19014     /**
19015      * Preprocessing
19016      */
19017     
19018     Lexer.prototype.lex = function(src) {
19019       src = src
19020         .replace(/\r\n|\r/g, '\n')
19021         .replace(/\t/g, '    ')
19022         .replace(/\u00a0/g, ' ')
19023         .replace(/\u2424/g, '\n');
19024     
19025       return this.token(src, true);
19026     };
19027     
19028     /**
19029      * Lexing
19030      */
19031     
19032     Lexer.prototype.token = function(src, top, bq) {
19033       var src = src.replace(/^ +$/gm, '')
19034         , next
19035         , loose
19036         , cap
19037         , bull
19038         , b
19039         , item
19040         , space
19041         , i
19042         , l;
19043     
19044       while (src) {
19045         // newline
19046         if (cap = this.rules.newline.exec(src)) {
19047           src = src.substring(cap[0].length);
19048           if (cap[0].length > 1) {
19049             this.tokens.push({
19050               type: 'space'
19051             });
19052           }
19053         }
19054     
19055         // code
19056         if (cap = this.rules.code.exec(src)) {
19057           src = src.substring(cap[0].length);
19058           cap = cap[0].replace(/^ {4}/gm, '');
19059           this.tokens.push({
19060             type: 'code',
19061             text: !this.options.pedantic
19062               ? cap.replace(/\n+$/, '')
19063               : cap
19064           });
19065           continue;
19066         }
19067     
19068         // fences (gfm)
19069         if (cap = this.rules.fences.exec(src)) {
19070           src = src.substring(cap[0].length);
19071           this.tokens.push({
19072             type: 'code',
19073             lang: cap[2],
19074             text: cap[3] || ''
19075           });
19076           continue;
19077         }
19078     
19079         // heading
19080         if (cap = this.rules.heading.exec(src)) {
19081           src = src.substring(cap[0].length);
19082           this.tokens.push({
19083             type: 'heading',
19084             depth: cap[1].length,
19085             text: cap[2]
19086           });
19087           continue;
19088         }
19089     
19090         // table no leading pipe (gfm)
19091         if (top && (cap = this.rules.nptable.exec(src))) {
19092           src = src.substring(cap[0].length);
19093     
19094           item = {
19095             type: 'table',
19096             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
19097             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
19098             cells: cap[3].replace(/\n$/, '').split('\n')
19099           };
19100     
19101           for (i = 0; i < item.align.length; i++) {
19102             if (/^ *-+: *$/.test(item.align[i])) {
19103               item.align[i] = 'right';
19104             } else if (/^ *:-+: *$/.test(item.align[i])) {
19105               item.align[i] = 'center';
19106             } else if (/^ *:-+ *$/.test(item.align[i])) {
19107               item.align[i] = 'left';
19108             } else {
19109               item.align[i] = null;
19110             }
19111           }
19112     
19113           for (i = 0; i < item.cells.length; i++) {
19114             item.cells[i] = item.cells[i].split(/ *\| */);
19115           }
19116     
19117           this.tokens.push(item);
19118     
19119           continue;
19120         }
19121     
19122         // lheading
19123         if (cap = this.rules.lheading.exec(src)) {
19124           src = src.substring(cap[0].length);
19125           this.tokens.push({
19126             type: 'heading',
19127             depth: cap[2] === '=' ? 1 : 2,
19128             text: cap[1]
19129           });
19130           continue;
19131         }
19132     
19133         // hr
19134         if (cap = this.rules.hr.exec(src)) {
19135           src = src.substring(cap[0].length);
19136           this.tokens.push({
19137             type: 'hr'
19138           });
19139           continue;
19140         }
19141     
19142         // blockquote
19143         if (cap = this.rules.blockquote.exec(src)) {
19144           src = src.substring(cap[0].length);
19145     
19146           this.tokens.push({
19147             type: 'blockquote_start'
19148           });
19149     
19150           cap = cap[0].replace(/^ *> ?/gm, '');
19151     
19152           // Pass `top` to keep the current
19153           // "toplevel" state. This is exactly
19154           // how markdown.pl works.
19155           this.token(cap, top, true);
19156     
19157           this.tokens.push({
19158             type: 'blockquote_end'
19159           });
19160     
19161           continue;
19162         }
19163     
19164         // list
19165         if (cap = this.rules.list.exec(src)) {
19166           src = src.substring(cap[0].length);
19167           bull = cap[2];
19168     
19169           this.tokens.push({
19170             type: 'list_start',
19171             ordered: bull.length > 1
19172           });
19173     
19174           // Get each top-level item.
19175           cap = cap[0].match(this.rules.item);
19176     
19177           next = false;
19178           l = cap.length;
19179           i = 0;
19180     
19181           for (; i < l; i++) {
19182             item = cap[i];
19183     
19184             // Remove the list item's bullet
19185             // so it is seen as the next token.
19186             space = item.length;
19187             item = item.replace(/^ *([*+-]|\d+\.) +/, '');
19188     
19189             // Outdent whatever the
19190             // list item contains. Hacky.
19191             if (~item.indexOf('\n ')) {
19192               space -= item.length;
19193               item = !this.options.pedantic
19194                 ? item.replace(new RegExp('^ {1,' + space + '}', 'gm'), '')
19195                 : item.replace(/^ {1,4}/gm, '');
19196             }
19197     
19198             // Determine whether the next list item belongs here.
19199             // Backpedal if it does not belong in this list.
19200             if (this.options.smartLists && i !== l - 1) {
19201               b = block.bullet.exec(cap[i + 1])[0];
19202               if (bull !== b && !(bull.length > 1 && b.length > 1)) {
19203                 src = cap.slice(i + 1).join('\n') + src;
19204                 i = l - 1;
19205               }
19206             }
19207     
19208             // Determine whether item is loose or not.
19209             // Use: /(^|\n)(?! )[^\n]+\n\n(?!\s*$)/
19210             // for discount behavior.
19211             loose = next || /\n\n(?!\s*$)/.test(item);
19212             if (i !== l - 1) {
19213               next = item.charAt(item.length - 1) === '\n';
19214               if (!loose) { loose = next; }
19215             }
19216     
19217             this.tokens.push({
19218               type: loose
19219                 ? 'loose_item_start'
19220                 : 'list_item_start'
19221             });
19222     
19223             // Recurse.
19224             this.token(item, false, bq);
19225     
19226             this.tokens.push({
19227               type: 'list_item_end'
19228             });
19229           }
19230     
19231           this.tokens.push({
19232             type: 'list_end'
19233           });
19234     
19235           continue;
19236         }
19237     
19238         // html
19239         if (cap = this.rules.html.exec(src)) {
19240           src = src.substring(cap[0].length);
19241           this.tokens.push({
19242             type: this.options.sanitize
19243               ? 'paragraph'
19244               : 'html',
19245             pre: !this.options.sanitizer
19246               && (cap[1] === 'pre' || cap[1] === 'script' || cap[1] === 'style'),
19247             text: cap[0]
19248           });
19249           continue;
19250         }
19251     
19252         // def
19253         if ((!bq && top) && (cap = this.rules.def.exec(src))) {
19254           src = src.substring(cap[0].length);
19255           this.tokens.links[cap[1].toLowerCase()] = {
19256             href: cap[2],
19257             title: cap[3]
19258           };
19259           continue;
19260         }
19261     
19262         // table (gfm)
19263         if (top && (cap = this.rules.table.exec(src))) {
19264           src = src.substring(cap[0].length);
19265     
19266           item = {
19267             type: 'table',
19268             header: cap[1].replace(/^ *| *\| *$/g, '').split(/ *\| */),
19269             align: cap[2].replace(/^ *|\| *$/g, '').split(/ *\| */),
19270             cells: cap[3].replace(/(?: *\| *)?\n$/, '').split('\n')
19271           };
19272     
19273           for (i = 0; i < item.align.length; i++) {
19274             if (/^ *-+: *$/.test(item.align[i])) {
19275               item.align[i] = 'right';
19276             } else if (/^ *:-+: *$/.test(item.align[i])) {
19277               item.align[i] = 'center';
19278             } else if (/^ *:-+ *$/.test(item.align[i])) {
19279               item.align[i] = 'left';
19280             } else {
19281               item.align[i] = null;
19282             }
19283           }
19284     
19285           for (i = 0; i < item.cells.length; i++) {
19286             item.cells[i] = item.cells[i]
19287               .replace(/^ *\| *| *\| *$/g, '')
19288               .split(/ *\| */);
19289           }
19290     
19291           this.tokens.push(item);
19292     
19293           continue;
19294         }
19295     
19296         // top-level paragraph
19297         if (top && (cap = this.rules.paragraph.exec(src))) {
19298           src = src.substring(cap[0].length);
19299           this.tokens.push({
19300             type: 'paragraph',
19301             text: cap[1].charAt(cap[1].length - 1) === '\n'
19302               ? cap[1].slice(0, -1)
19303               : cap[1]
19304           });
19305           continue;
19306         }
19307     
19308         // text
19309         if (cap = this.rules.text.exec(src)) {
19310           // Top-level should never reach here.
19311           src = src.substring(cap[0].length);
19312           this.tokens.push({
19313             type: 'text',
19314             text: cap[0]
19315           });
19316           continue;
19317         }
19318     
19319         if (src) {
19320           throw new
19321             Error('Infinite loop on byte: ' + src.charCodeAt(0));
19322         }
19323       }
19324     
19325       return this.tokens;
19326     };
19327     
19328     /**
19329      * Inline-Level Grammar
19330      */
19331     
19332     var inline = {
19333       escape: /^\\([\\`*{}\[\]()#+\-.!_>])/,
19334       autolink: /^<([^ >]+(@|:\/)[^ >]+)>/,
19335       url: noop,
19336       tag: /^<!--[\s\S]*?-->|^<\/?\w+(?:"[^"]*"|'[^']*'|[^'">])*?>/,
19337       link: /^!?\[(inside)\]\(href\)/,
19338       reflink: /^!?\[(inside)\]\s*\[([^\]]*)\]/,
19339       nolink: /^!?\[((?:\[[^\]]*\]|[^\[\]])*)\]/,
19340       strong: /^__([\s\S]+?)__(?!_)|^\*\*([\s\S]+?)\*\*(?!\*)/,
19341       em: /^\b_((?:[^_]|__)+?)_\b|^\*((?:\*\*|[\s\S])+?)\*(?!\*)/,
19342       code: /^(`+)\s*([\s\S]*?[^`])\s*\1(?!`)/,
19343       br: /^ {2,}\n(?!\s*$)/,
19344       del: noop,
19345       text: /^[\s\S]+?(?=[\\<!\[_*`]| {2,}\n|$)/
19346     };
19347     
19348     inline._inside = /(?:\[[^\]]*\]|[^\[\]]|\](?=[^\[]*\]))*/;
19349     inline._href = /\s*<?([\s\S]*?)>?(?:\s+['"]([\s\S]*?)['"])?\s*/;
19350     
19351     inline.link = replace(inline.link)
19352       ('inside', inline._inside)
19353       ('href', inline._href)
19354       ();
19355     
19356     inline.reflink = replace(inline.reflink)
19357       ('inside', inline._inside)
19358       ();
19359     
19360     /**
19361      * Normal Inline Grammar
19362      */
19363     
19364     inline.normal = merge({}, inline);
19365     
19366     /**
19367      * Pedantic Inline Grammar
19368      */
19369     
19370     inline.pedantic = merge({}, inline.normal, {
19371       strong: /^__(?=\S)([\s\S]*?\S)__(?!_)|^\*\*(?=\S)([\s\S]*?\S)\*\*(?!\*)/,
19372       em: /^_(?=\S)([\s\S]*?\S)_(?!_)|^\*(?=\S)([\s\S]*?\S)\*(?!\*)/
19373     });
19374     
19375     /**
19376      * GFM Inline Grammar
19377      */
19378     
19379     inline.gfm = merge({}, inline.normal, {
19380       escape: replace(inline.escape)('])', '~|])')(),
19381       url: /^(https?:\/\/[^\s<]+[^<.,:;"')\]\s])/,
19382       del: /^~~(?=\S)([\s\S]*?\S)~~/,
19383       text: replace(inline.text)
19384         (']|', '~]|')
19385         ('|', '|https?://|')
19386         ()
19387     });
19388     
19389     /**
19390      * GFM + Line Breaks Inline Grammar
19391      */
19392     
19393     inline.breaks = merge({}, inline.gfm, {
19394       br: replace(inline.br)('{2,}', '*')(),
19395       text: replace(inline.gfm.text)('{2,}', '*')()
19396     });
19397     
19398     /**
19399      * Inline Lexer & Compiler
19400      */
19401     
19402     var InlineLexer  = function (links, options) {
19403       this.options = options || marked.defaults;
19404       this.links = links;
19405       this.rules = inline.normal;
19406       this.renderer = this.options.renderer || new Renderer;
19407       this.renderer.options = this.options;
19408     
19409       if (!this.links) {
19410         throw new
19411           Error('Tokens array requires a `links` property.');
19412       }
19413     
19414       if (this.options.gfm) {
19415         if (this.options.breaks) {
19416           this.rules = inline.breaks;
19417         } else {
19418           this.rules = inline.gfm;
19419         }
19420       } else if (this.options.pedantic) {
19421         this.rules = inline.pedantic;
19422       }
19423     }
19424     
19425     /**
19426      * Expose Inline Rules
19427      */
19428     
19429     InlineLexer.rules = inline;
19430     
19431     /**
19432      * Static Lexing/Compiling Method
19433      */
19434     
19435     InlineLexer.output = function(src, links, options) {
19436       var inline = new InlineLexer(links, options);
19437       return inline.output(src);
19438     };
19439     
19440     /**
19441      * Lexing/Compiling
19442      */
19443     
19444     InlineLexer.prototype.output = function(src) {
19445       var out = ''
19446         , link
19447         , text
19448         , href
19449         , cap;
19450     
19451       while (src) {
19452         // escape
19453         if (cap = this.rules.escape.exec(src)) {
19454           src = src.substring(cap[0].length);
19455           out += cap[1];
19456           continue;
19457         }
19458     
19459         // autolink
19460         if (cap = this.rules.autolink.exec(src)) {
19461           src = src.substring(cap[0].length);
19462           if (cap[2] === '@') {
19463             text = cap[1].charAt(6) === ':'
19464               ? this.mangle(cap[1].substring(7))
19465               : this.mangle(cap[1]);
19466             href = this.mangle('mailto:') + text;
19467           } else {
19468             text = escape(cap[1]);
19469             href = text;
19470           }
19471           out += this.renderer.link(href, null, text);
19472           continue;
19473         }
19474     
19475         // url (gfm)
19476         if (!this.inLink && (cap = this.rules.url.exec(src))) {
19477           src = src.substring(cap[0].length);
19478           text = escape(cap[1]);
19479           href = text;
19480           out += this.renderer.link(href, null, text);
19481           continue;
19482         }
19483     
19484         // tag
19485         if (cap = this.rules.tag.exec(src)) {
19486           if (!this.inLink && /^<a /i.test(cap[0])) {
19487             this.inLink = true;
19488           } else if (this.inLink && /^<\/a>/i.test(cap[0])) {
19489             this.inLink = false;
19490           }
19491           src = src.substring(cap[0].length);
19492           out += this.options.sanitize
19493             ? this.options.sanitizer
19494               ? this.options.sanitizer(cap[0])
19495               : escape(cap[0])
19496             : cap[0];
19497           continue;
19498         }
19499     
19500         // link
19501         if (cap = this.rules.link.exec(src)) {
19502           src = src.substring(cap[0].length);
19503           this.inLink = true;
19504           out += this.outputLink(cap, {
19505             href: cap[2],
19506             title: cap[3]
19507           });
19508           this.inLink = false;
19509           continue;
19510         }
19511     
19512         // reflink, nolink
19513         if ((cap = this.rules.reflink.exec(src))
19514             || (cap = this.rules.nolink.exec(src))) {
19515           src = src.substring(cap[0].length);
19516           link = (cap[2] || cap[1]).replace(/\s+/g, ' ');
19517           link = this.links[link.toLowerCase()];
19518           if (!link || !link.href) {
19519             out += cap[0].charAt(0);
19520             src = cap[0].substring(1) + src;
19521             continue;
19522           }
19523           this.inLink = true;
19524           out += this.outputLink(cap, link);
19525           this.inLink = false;
19526           continue;
19527         }
19528     
19529         // strong
19530         if (cap = this.rules.strong.exec(src)) {
19531           src = src.substring(cap[0].length);
19532           out += this.renderer.strong(this.output(cap[2] || cap[1]));
19533           continue;
19534         }
19535     
19536         // em
19537         if (cap = this.rules.em.exec(src)) {
19538           src = src.substring(cap[0].length);
19539           out += this.renderer.em(this.output(cap[2] || cap[1]));
19540           continue;
19541         }
19542     
19543         // code
19544         if (cap = this.rules.code.exec(src)) {
19545           src = src.substring(cap[0].length);
19546           out += this.renderer.codespan(escape(cap[2], true));
19547           continue;
19548         }
19549     
19550         // br
19551         if (cap = this.rules.br.exec(src)) {
19552           src = src.substring(cap[0].length);
19553           out += this.renderer.br();
19554           continue;
19555         }
19556     
19557         // del (gfm)
19558         if (cap = this.rules.del.exec(src)) {
19559           src = src.substring(cap[0].length);
19560           out += this.renderer.del(this.output(cap[1]));
19561           continue;
19562         }
19563     
19564         // text
19565         if (cap = this.rules.text.exec(src)) {
19566           src = src.substring(cap[0].length);
19567           out += this.renderer.text(escape(this.smartypants(cap[0])));
19568           continue;
19569         }
19570     
19571         if (src) {
19572           throw new
19573             Error('Infinite loop on byte: ' + src.charCodeAt(0));
19574         }
19575       }
19576     
19577       return out;
19578     };
19579     
19580     /**
19581      * Compile Link
19582      */
19583     
19584     InlineLexer.prototype.outputLink = function(cap, link) {
19585       var href = escape(link.href)
19586         , title = link.title ? escape(link.title) : null;
19587     
19588       return cap[0].charAt(0) !== '!'
19589         ? this.renderer.link(href, title, this.output(cap[1]))
19590         : this.renderer.image(href, title, escape(cap[1]));
19591     };
19592     
19593     /**
19594      * Smartypants Transformations
19595      */
19596     
19597     InlineLexer.prototype.smartypants = function(text) {
19598       if (!this.options.smartypants)  { return text; }
19599       return text
19600         // em-dashes
19601         .replace(/---/g, '\u2014')
19602         // en-dashes
19603         .replace(/--/g, '\u2013')
19604         // opening singles
19605         .replace(/(^|[-\u2014/(\[{"\s])'/g, '$1\u2018')
19606         // closing singles & apostrophes
19607         .replace(/'/g, '\u2019')
19608         // opening doubles
19609         .replace(/(^|[-\u2014/(\[{\u2018\s])"/g, '$1\u201c')
19610         // closing doubles
19611         .replace(/"/g, '\u201d')
19612         // ellipses
19613         .replace(/\.{3}/g, '\u2026');
19614     };
19615     
19616     /**
19617      * Mangle Links
19618      */
19619     
19620     InlineLexer.prototype.mangle = function(text) {
19621       if (!this.options.mangle) { return text; }
19622       var out = ''
19623         , l = text.length
19624         , i = 0
19625         , ch;
19626     
19627       for (; i < l; i++) {
19628         ch = text.charCodeAt(i);
19629         if (Math.random() > 0.5) {
19630           ch = 'x' + ch.toString(16);
19631         }
19632         out += '&#' + ch + ';';
19633       }
19634     
19635       return out;
19636     };
19637     
19638     /**
19639      * Renderer
19640      */
19641     
19642      /**
19643          * eval:var:Renderer
19644     */
19645     
19646     var Renderer   = function (options) {
19647       this.options = options || {};
19648     }
19649     
19650     Renderer.prototype.code = function(code, lang, escaped) {
19651       if (this.options.highlight) {
19652         var out = this.options.highlight(code, lang);
19653         if (out != null && out !== code) {
19654           escaped = true;
19655           code = out;
19656         }
19657       } else {
19658             // hack!!! - it's already escapeD?
19659             escaped = true;
19660       }
19661     
19662       if (!lang) {
19663         return '<pre><code>'
19664           + (escaped ? code : escape(code, true))
19665           + '\n</code></pre>';
19666       }
19667     
19668       return '<pre><code class="'
19669         + this.options.langPrefix
19670         + escape(lang, true)
19671         + '">'
19672         + (escaped ? code : escape(code, true))
19673         + '\n</code></pre>\n';
19674     };
19675     
19676     Renderer.prototype.blockquote = function(quote) {
19677       return '<blockquote>\n' + quote + '</blockquote>\n';
19678     };
19679     
19680     Renderer.prototype.html = function(html) {
19681       return html;
19682     };
19683     
19684     Renderer.prototype.heading = function(text, level, raw) {
19685       return '<h'
19686         + level
19687         + ' id="'
19688         + this.options.headerPrefix
19689         + raw.toLowerCase().replace(/[^\w]+/g, '-')
19690         + '">'
19691         + text
19692         + '</h'
19693         + level
19694         + '>\n';
19695     };
19696     
19697     Renderer.prototype.hr = function() {
19698       return this.options.xhtml ? '<hr/>\n' : '<hr>\n';
19699     };
19700     
19701     Renderer.prototype.list = function(body, ordered) {
19702       var type = ordered ? 'ol' : 'ul';
19703       return '<' + type + '>\n' + body + '</' + type + '>\n';
19704     };
19705     
19706     Renderer.prototype.listitem = function(text) {
19707       return '<li>' + text + '</li>\n';
19708     };
19709     
19710     Renderer.prototype.paragraph = function(text) {
19711       return '<p>' + text + '</p>\n';
19712     };
19713     
19714     Renderer.prototype.table = function(header, body) {
19715       return '<table class="table table-striped">\n'
19716         + '<thead>\n'
19717         + header
19718         + '</thead>\n'
19719         + '<tbody>\n'
19720         + body
19721         + '</tbody>\n'
19722         + '</table>\n';
19723     };
19724     
19725     Renderer.prototype.tablerow = function(content) {
19726       return '<tr>\n' + content + '</tr>\n';
19727     };
19728     
19729     Renderer.prototype.tablecell = function(content, flags) {
19730       var type = flags.header ? 'th' : 'td';
19731       var tag = flags.align
19732         ? '<' + type + ' style="text-align:' + flags.align + '">'
19733         : '<' + type + '>';
19734       return tag + content + '</' + type + '>\n';
19735     };
19736     
19737     // span level renderer
19738     Renderer.prototype.strong = function(text) {
19739       return '<strong>' + text + '</strong>';
19740     };
19741     
19742     Renderer.prototype.em = function(text) {
19743       return '<em>' + text + '</em>';
19744     };
19745     
19746     Renderer.prototype.codespan = function(text) {
19747       return '<code>' + text + '</code>';
19748     };
19749     
19750     Renderer.prototype.br = function() {
19751       return this.options.xhtml ? '<br/>' : '<br>';
19752     };
19753     
19754     Renderer.prototype.del = function(text) {
19755       return '<del>' + text + '</del>';
19756     };
19757     
19758     Renderer.prototype.link = function(href, title, text) {
19759       if (this.options.sanitize) {
19760         try {
19761           var prot = decodeURIComponent(unescape(href))
19762             .replace(/[^\w:]/g, '')
19763             .toLowerCase();
19764         } catch (e) {
19765           return '';
19766         }
19767         if (prot.indexOf('javascript:') === 0 || prot.indexOf('vbscript:') === 0) {
19768           return '';
19769         }
19770       }
19771       var out = '<a href="' + href + '"';
19772       if (title) {
19773         out += ' title="' + title + '"';
19774       }
19775       out += '>' + text + '</a>';
19776       return out;
19777     };
19778     
19779     Renderer.prototype.image = function(href, title, text) {
19780       var out = '<img src="' + href + '" alt="' + text + '"';
19781       if (title) {
19782         out += ' title="' + title + '"';
19783       }
19784       out += this.options.xhtml ? '/>' : '>';
19785       return out;
19786     };
19787     
19788     Renderer.prototype.text = function(text) {
19789       return text;
19790     };
19791     
19792     /**
19793      * Parsing & Compiling
19794      */
19795          /**
19796          * eval:var:Parser
19797     */
19798     
19799     var Parser= function (options) {
19800       this.tokens = [];
19801       this.token = null;
19802       this.options = options || marked.defaults;
19803       this.options.renderer = this.options.renderer || new Renderer;
19804       this.renderer = this.options.renderer;
19805       this.renderer.options = this.options;
19806     }
19807     
19808     /**
19809      * Static Parse Method
19810      */
19811     
19812     Parser.parse = function(src, options, renderer) {
19813       var parser = new Parser(options, renderer);
19814       return parser.parse(src);
19815     };
19816     
19817     /**
19818      * Parse Loop
19819      */
19820     
19821     Parser.prototype.parse = function(src) {
19822       this.inline = new InlineLexer(src.links, this.options, this.renderer);
19823       this.tokens = src.reverse();
19824     
19825       var out = '';
19826       while (this.next()) {
19827         out += this.tok();
19828       }
19829     
19830       return out;
19831     };
19832     
19833     /**
19834      * Next Token
19835      */
19836     
19837     Parser.prototype.next = function() {
19838       return this.token = this.tokens.pop();
19839     };
19840     
19841     /**
19842      * Preview Next Token
19843      */
19844     
19845     Parser.prototype.peek = function() {
19846       return this.tokens[this.tokens.length - 1] || 0;
19847     };
19848     
19849     /**
19850      * Parse Text Tokens
19851      */
19852     
19853     Parser.prototype.parseText = function() {
19854       var body = this.token.text;
19855     
19856       while (this.peek().type === 'text') {
19857         body += '\n' + this.next().text;
19858       }
19859     
19860       return this.inline.output(body);
19861     };
19862     
19863     /**
19864      * Parse Current Token
19865      */
19866     
19867     Parser.prototype.tok = function() {
19868       switch (this.token.type) {
19869         case 'space': {
19870           return '';
19871         }
19872         case 'hr': {
19873           return this.renderer.hr();
19874         }
19875         case 'heading': {
19876           return this.renderer.heading(
19877             this.inline.output(this.token.text),
19878             this.token.depth,
19879             this.token.text);
19880         }
19881         case 'code': {
19882           return this.renderer.code(this.token.text,
19883             this.token.lang,
19884             this.token.escaped);
19885         }
19886         case 'table': {
19887           var header = ''
19888             , body = ''
19889             , i
19890             , row
19891             , cell
19892             , flags
19893             , j;
19894     
19895           // header
19896           cell = '';
19897           for (i = 0; i < this.token.header.length; i++) {
19898             flags = { header: true, align: this.token.align[i] };
19899             cell += this.renderer.tablecell(
19900               this.inline.output(this.token.header[i]),
19901               { header: true, align: this.token.align[i] }
19902             );
19903           }
19904           header += this.renderer.tablerow(cell);
19905     
19906           for (i = 0; i < this.token.cells.length; i++) {
19907             row = this.token.cells[i];
19908     
19909             cell = '';
19910             for (j = 0; j < row.length; j++) {
19911               cell += this.renderer.tablecell(
19912                 this.inline.output(row[j]),
19913                 { header: false, align: this.token.align[j] }
19914               );
19915             }
19916     
19917             body += this.renderer.tablerow(cell);
19918           }
19919           return this.renderer.table(header, body);
19920         }
19921         case 'blockquote_start': {
19922           var body = '';
19923     
19924           while (this.next().type !== 'blockquote_end') {
19925             body += this.tok();
19926           }
19927     
19928           return this.renderer.blockquote(body);
19929         }
19930         case 'list_start': {
19931           var body = ''
19932             , ordered = this.token.ordered;
19933     
19934           while (this.next().type !== 'list_end') {
19935             body += this.tok();
19936           }
19937     
19938           return this.renderer.list(body, ordered);
19939         }
19940         case 'list_item_start': {
19941           var body = '';
19942     
19943           while (this.next().type !== 'list_item_end') {
19944             body += this.token.type === 'text'
19945               ? this.parseText()
19946               : this.tok();
19947           }
19948     
19949           return this.renderer.listitem(body);
19950         }
19951         case 'loose_item_start': {
19952           var body = '';
19953     
19954           while (this.next().type !== 'list_item_end') {
19955             body += this.tok();
19956           }
19957     
19958           return this.renderer.listitem(body);
19959         }
19960         case 'html': {
19961           var html = !this.token.pre && !this.options.pedantic
19962             ? this.inline.output(this.token.text)
19963             : this.token.text;
19964           return this.renderer.html(html);
19965         }
19966         case 'paragraph': {
19967           return this.renderer.paragraph(this.inline.output(this.token.text));
19968         }
19969         case 'text': {
19970           return this.renderer.paragraph(this.parseText());
19971         }
19972       }
19973     };
19974   
19975     
19976     /**
19977      * Marked
19978      */
19979          /**
19980          * eval:var:marked
19981     */
19982     var marked = function (src, opt, callback) {
19983       if (callback || typeof opt === 'function') {
19984         if (!callback) {
19985           callback = opt;
19986           opt = null;
19987         }
19988     
19989         opt = merge({}, marked.defaults, opt || {});
19990     
19991         var highlight = opt.highlight
19992           , tokens
19993           , pending
19994           , i = 0;
19995     
19996         try {
19997           tokens = Lexer.lex(src, opt)
19998         } catch (e) {
19999           return callback(e);
20000         }
20001     
20002         pending = tokens.length;
20003          /**
20004          * eval:var:done
20005     */
20006         var done = function(err) {
20007           if (err) {
20008             opt.highlight = highlight;
20009             return callback(err);
20010           }
20011     
20012           var out;
20013     
20014           try {
20015             out = Parser.parse(tokens, opt);
20016           } catch (e) {
20017             err = e;
20018           }
20019     
20020           opt.highlight = highlight;
20021     
20022           return err
20023             ? callback(err)
20024             : callback(null, out);
20025         };
20026     
20027         if (!highlight || highlight.length < 3) {
20028           return done();
20029         }
20030     
20031         delete opt.highlight;
20032     
20033         if (!pending) { return done(); }
20034     
20035         for (; i < tokens.length; i++) {
20036           (function(token) {
20037             if (token.type !== 'code') {
20038               return --pending || done();
20039             }
20040             return highlight(token.text, token.lang, function(err, code) {
20041               if (err) { return done(err); }
20042               if (code == null || code === token.text) {
20043                 return --pending || done();
20044               }
20045               token.text = code;
20046               token.escaped = true;
20047               --pending || done();
20048             });
20049           })(tokens[i]);
20050         }
20051     
20052         return;
20053       }
20054       try {
20055         if (opt) { opt = merge({}, marked.defaults, opt); }
20056         return Parser.parse(Lexer.lex(src, opt), opt);
20057       } catch (e) {
20058         e.message += '\nPlease report this to https://github.com/chjj/marked.';
20059         if ((opt || marked.defaults).silent) {
20060           return '<p>An error occured:</p><pre>'
20061             + escape(e.message + '', true)
20062             + '</pre>';
20063         }
20064         throw e;
20065       }
20066     }
20067     
20068     /**
20069      * Options
20070      */
20071     
20072     marked.options =
20073     marked.setOptions = function(opt) {
20074       merge(marked.defaults, opt);
20075       return marked;
20076     };
20077     
20078     marked.defaults = {
20079       gfm: true,
20080       tables: true,
20081       breaks: false,
20082       pedantic: false,
20083       sanitize: false,
20084       sanitizer: null,
20085       mangle: true,
20086       smartLists: false,
20087       silent: false,
20088       highlight: null,
20089       langPrefix: 'lang-',
20090       smartypants: false,
20091       headerPrefix: '',
20092       renderer: new Renderer,
20093       xhtml: false
20094     };
20095     
20096     /**
20097      * Expose
20098      */
20099     
20100     marked.Parser = Parser;
20101     marked.parser = Parser.parse;
20102     
20103     marked.Renderer = Renderer;
20104     
20105     marked.Lexer = Lexer;
20106     marked.lexer = Lexer.lex;
20107     
20108     marked.InlineLexer = InlineLexer;
20109     marked.inlineLexer = InlineLexer.output;
20110     
20111     marked.parse = marked;
20112     
20113     Roo.Markdown.marked = marked;
20114
20115 })();/*
20116  * Based on:
20117  * Ext JS Library 1.1.1
20118  * Copyright(c) 2006-2007, Ext JS, LLC.
20119  *
20120  * Originally Released Under LGPL - original licence link has changed is not relivant.
20121  *
20122  * Fork - LGPL
20123  * <script type="text/javascript">
20124  */
20125
20126
20127
20128 /*
20129  * These classes are derivatives of the similarly named classes in the YUI Library.
20130  * The original license:
20131  * Copyright (c) 2006, Yahoo! Inc. All rights reserved.
20132  * Code licensed under the BSD License:
20133  * http://developer.yahoo.net/yui/license.txt
20134  */
20135
20136 (function() {
20137
20138 var Event=Roo.EventManager;
20139 var Dom=Roo.lib.Dom;
20140
20141 /**
20142  * @class Roo.dd.DragDrop
20143  * @extends Roo.util.Observable
20144  * Defines the interface and base operation of items that that can be
20145  * dragged or can be drop targets.  It was designed to be extended, overriding
20146  * the event handlers for startDrag, onDrag, onDragOver and onDragOut.
20147  * Up to three html elements can be associated with a DragDrop instance:
20148  * <ul>
20149  * <li>linked element: the element that is passed into the constructor.
20150  * This is the element which defines the boundaries for interaction with
20151  * other DragDrop objects.</li>
20152  * <li>handle element(s): The drag operation only occurs if the element that
20153  * was clicked matches a handle element.  By default this is the linked
20154  * element, but there are times that you will want only a portion of the
20155  * linked element to initiate the drag operation, and the setHandleElId()
20156  * method provides a way to define this.</li>
20157  * <li>drag element: this represents the element that would be moved along
20158  * with the cursor during a drag operation.  By default, this is the linked
20159  * element itself as in {@link Roo.dd.DD}.  setDragElId() lets you define
20160  * a separate element that would be moved, as in {@link Roo.dd.DDProxy}.
20161  * </li>
20162  * </ul>
20163  * This class should not be instantiated until the onload event to ensure that
20164  * the associated elements are available.
20165  * The following would define a DragDrop obj that would interact with any
20166  * other DragDrop obj in the "group1" group:
20167  * <pre>
20168  *  dd = new Roo.dd.DragDrop("div1", "group1");
20169  * </pre>
20170  * Since none of the event handlers have been implemented, nothing would
20171  * actually happen if you were to run the code above.  Normally you would
20172  * override this class or one of the default implementations, but you can
20173  * also override the methods you want on an instance of the class...
20174  * <pre>
20175  *  dd.onDragDrop = function(e, id) {
20176  *  &nbsp;&nbsp;alert("dd was dropped on " + id);
20177  *  }
20178  * </pre>
20179  * @constructor
20180  * @param {String} id of the element that is linked to this instance
20181  * @param {String} sGroup the group of related DragDrop objects
20182  * @param {object} config an object containing configurable attributes
20183  *                Valid properties for DragDrop:
20184  *                    padding, isTarget, maintainOffset, primaryButtonOnly
20185  */
20186 Roo.dd.DragDrop = function(id, sGroup, config) {
20187     if (id) {
20188         this.init(id, sGroup, config);
20189     }
20190     
20191 };
20192
20193 Roo.extend(Roo.dd.DragDrop, Roo.util.Observable , {
20194
20195     /**
20196      * The id of the element associated with this object.  This is what we
20197      * refer to as the "linked element" because the size and position of
20198      * this element is used to determine when the drag and drop objects have
20199      * interacted.
20200      * @property id
20201      * @type String
20202      */
20203     id: null,
20204
20205     /**
20206      * Configuration attributes passed into the constructor
20207      * @property config
20208      * @type object
20209      */
20210     config: null,
20211
20212     /**
20213      * The id of the element that will be dragged.  By default this is same
20214      * as the linked element , but could be changed to another element. Ex:
20215      * Roo.dd.DDProxy
20216      * @property dragElId
20217      * @type String
20218      * @private
20219      */
20220     dragElId: null,
20221
20222     /**
20223      * the id of the element that initiates the drag operation.  By default
20224      * this is the linked element, but could be changed to be a child of this
20225      * element.  This lets us do things like only starting the drag when the
20226      * header element within the linked html element is clicked.
20227      * @property handleElId
20228      * @type String
20229      * @private
20230      */
20231     handleElId: null,
20232
20233     /**
20234      * An associative array of HTML tags that will be ignored if clicked.
20235      * @property invalidHandleTypes
20236      * @type {string: string}
20237      */
20238     invalidHandleTypes: null,
20239
20240     /**
20241      * An associative array of ids for elements that will be ignored if clicked
20242      * @property invalidHandleIds
20243      * @type {string: string}
20244      */
20245     invalidHandleIds: null,
20246
20247     /**
20248      * An indexted array of css class names for elements that will be ignored
20249      * if clicked.
20250      * @property invalidHandleClasses
20251      * @type string[]
20252      */
20253     invalidHandleClasses: null,
20254
20255     /**
20256      * The linked element's absolute X position at the time the drag was
20257      * started
20258      * @property startPageX
20259      * @type int
20260      * @private
20261      */
20262     startPageX: 0,
20263
20264     /**
20265      * The linked element's absolute X position at the time the drag was
20266      * started
20267      * @property startPageY
20268      * @type int
20269      * @private
20270      */
20271     startPageY: 0,
20272
20273     /**
20274      * The group defines a logical collection of DragDrop objects that are
20275      * related.  Instances only get events when interacting with other
20276      * DragDrop object in the same group.  This lets us define multiple
20277      * groups using a single DragDrop subclass if we want.
20278      * @property groups
20279      * @type {string: string}
20280      */
20281     groups: null,
20282
20283     /**
20284      * Individual drag/drop instances can be locked.  This will prevent
20285      * onmousedown start drag.
20286      * @property locked
20287      * @type boolean
20288      * @private
20289      */
20290     locked: false,
20291
20292     /**
20293      * Lock this instance
20294      * @method lock
20295      */
20296     lock: function() { this.locked = true; },
20297
20298     /**
20299      * Unlock this instace
20300      * @method unlock
20301      */
20302     unlock: function() { this.locked = false; },
20303
20304     /**
20305      * By default, all insances can be a drop target.  This can be disabled by
20306      * setting isTarget to false.
20307      * @method isTarget
20308      * @type boolean
20309      */
20310     isTarget: true,
20311
20312     /**
20313      * The padding configured for this drag and drop object for calculating
20314      * the drop zone intersection with this object.
20315      * @method padding
20316      * @type int[]
20317      */
20318     padding: null,
20319
20320     /**
20321      * Cached reference to the linked element
20322      * @property _domRef
20323      * @private
20324      */
20325     _domRef: null,
20326
20327     /**
20328      * Internal typeof flag
20329      * @property __ygDragDrop
20330      * @private
20331      */
20332     __ygDragDrop: true,
20333
20334     /**
20335      * Set to true when horizontal contraints are applied
20336      * @property constrainX
20337      * @type boolean
20338      * @private
20339      */
20340     constrainX: false,
20341
20342     /**
20343      * Set to true when vertical contraints are applied
20344      * @property constrainY
20345      * @type boolean
20346      * @private
20347      */
20348     constrainY: false,
20349
20350     /**
20351      * The left constraint
20352      * @property minX
20353      * @type int
20354      * @private
20355      */
20356     minX: 0,
20357
20358     /**
20359      * The right constraint
20360      * @property maxX
20361      * @type int
20362      * @private
20363      */
20364     maxX: 0,
20365
20366     /**
20367      * The up constraint
20368      * @property minY
20369      * @type int
20370      * @type int
20371      * @private
20372      */
20373     minY: 0,
20374
20375     /**
20376      * The down constraint
20377      * @property maxY
20378      * @type int
20379      * @private
20380      */
20381     maxY: 0,
20382
20383     /**
20384      * Maintain offsets when we resetconstraints.  Set to true when you want
20385      * the position of the element relative to its parent to stay the same
20386      * when the page changes
20387      *
20388      * @property maintainOffset
20389      * @type boolean
20390      */
20391     maintainOffset: false,
20392
20393     /**
20394      * Array of pixel locations the element will snap to if we specified a
20395      * horizontal graduation/interval.  This array is generated automatically
20396      * when you define a tick interval.
20397      * @property xTicks
20398      * @type int[]
20399      */
20400     xTicks: null,
20401
20402     /**
20403      * Array of pixel locations the element will snap to if we specified a
20404      * vertical graduation/interval.  This array is generated automatically
20405      * when you define a tick interval.
20406      * @property yTicks
20407      * @type int[]
20408      */
20409     yTicks: null,
20410
20411     /**
20412      * By default the drag and drop instance will only respond to the primary
20413      * button click (left button for a right-handed mouse).  Set to true to
20414      * allow drag and drop to start with any mouse click that is propogated
20415      * by the browser
20416      * @property primaryButtonOnly
20417      * @type boolean
20418      */
20419     primaryButtonOnly: true,
20420
20421     /**
20422      * The availabe property is false until the linked dom element is accessible.
20423      * @property available
20424      * @type boolean
20425      */
20426     available: false,
20427
20428     /**
20429      * By default, drags can only be initiated if the mousedown occurs in the
20430      * region the linked element is.  This is done in part to work around a
20431      * bug in some browsers that mis-report the mousedown if the previous
20432      * mouseup happened outside of the window.  This property is set to true
20433      * if outer handles are defined.
20434      *
20435      * @property hasOuterHandles
20436      * @type boolean
20437      * @default false
20438      */
20439     hasOuterHandles: false,
20440
20441     /**
20442      * Code that executes immediately before the startDrag event
20443      * @method b4StartDrag
20444      * @private
20445      */
20446     b4StartDrag: function(x, y) { },
20447
20448     /**
20449      * Abstract method called after a drag/drop object is clicked
20450      * and the drag or mousedown time thresholds have beeen met.
20451      * @method startDrag
20452      * @param {int} X click location
20453      * @param {int} Y click location
20454      */
20455     startDrag: function(x, y) { /* override this */ },
20456
20457     /**
20458      * Code that executes immediately before the onDrag event
20459      * @method b4Drag
20460      * @private
20461      */
20462     b4Drag: function(e) { },
20463
20464     /**
20465      * Abstract method called during the onMouseMove event while dragging an
20466      * object.
20467      * @method onDrag
20468      * @param {Event} e the mousemove event
20469      */
20470     onDrag: function(e) { /* override this */ },
20471
20472     /**
20473      * Abstract method called when this element fist begins hovering over
20474      * another DragDrop obj
20475      * @method onDragEnter
20476      * @param {Event} e the mousemove event
20477      * @param {String|DragDrop[]} id In POINT mode, the element
20478      * id this is hovering over.  In INTERSECT mode, an array of one or more
20479      * dragdrop items being hovered over.
20480      */
20481     onDragEnter: function(e, id) { /* override this */ },
20482
20483     /**
20484      * Code that executes immediately before the onDragOver event
20485      * @method b4DragOver
20486      * @private
20487      */
20488     b4DragOver: function(e) { },
20489
20490     /**
20491      * Abstract method called when this element is hovering over another
20492      * DragDrop obj
20493      * @method onDragOver
20494      * @param {Event} e the mousemove event
20495      * @param {String|DragDrop[]} id In POINT mode, the element
20496      * id this is hovering over.  In INTERSECT mode, an array of dd items
20497      * being hovered over.
20498      */
20499     onDragOver: function(e, id) { /* override this */ },
20500
20501     /**
20502      * Code that executes immediately before the onDragOut event
20503      * @method b4DragOut
20504      * @private
20505      */
20506     b4DragOut: function(e) { },
20507
20508     /**
20509      * Abstract method called when we are no longer hovering over an element
20510      * @method onDragOut
20511      * @param {Event} e the mousemove event
20512      * @param {String|DragDrop[]} id In POINT mode, the element
20513      * id this was hovering over.  In INTERSECT mode, an array of dd items
20514      * that the mouse is no longer over.
20515      */
20516     onDragOut: function(e, id) { /* override this */ },
20517
20518     /**
20519      * Code that executes immediately before the onDragDrop event
20520      * @method b4DragDrop
20521      * @private
20522      */
20523     b4DragDrop: function(e) { },
20524
20525     /**
20526      * Abstract method called when this item is dropped on another DragDrop
20527      * obj
20528      * @method onDragDrop
20529      * @param {Event} e the mouseup event
20530      * @param {String|DragDrop[]} id In POINT mode, the element
20531      * id this was dropped on.  In INTERSECT mode, an array of dd items this
20532      * was dropped on.
20533      */
20534     onDragDrop: function(e, id) { /* override this */ },
20535
20536     /**
20537      * Abstract method called when this item is dropped on an area with no
20538      * drop target
20539      * @method onInvalidDrop
20540      * @param {Event} e the mouseup event
20541      */
20542     onInvalidDrop: function(e) { /* override this */ },
20543
20544     /**
20545      * Code that executes immediately before the endDrag event
20546      * @method b4EndDrag
20547      * @private
20548      */
20549     b4EndDrag: function(e) { },
20550
20551     /**
20552      * Fired when we are done dragging the object
20553      * @method endDrag
20554      * @param {Event} e the mouseup event
20555      */
20556     endDrag: function(e) { /* override this */ },
20557
20558     /**
20559      * Code executed immediately before the onMouseDown event
20560      * @method b4MouseDown
20561      * @param {Event} e the mousedown event
20562      * @private
20563      */
20564     b4MouseDown: function(e) {  },
20565
20566     /**
20567      * Event handler that fires when a drag/drop obj gets a mousedown
20568      * @method onMouseDown
20569      * @param {Event} e the mousedown event
20570      */
20571     onMouseDown: function(e) { /* override this */ },
20572
20573     /**
20574      * Event handler that fires when a drag/drop obj gets a mouseup
20575      * @method onMouseUp
20576      * @param {Event} e the mouseup event
20577      */
20578     onMouseUp: function(e) { /* override this */ },
20579
20580     /**
20581      * Override the onAvailable method to do what is needed after the initial
20582      * position was determined.
20583      * @method onAvailable
20584      */
20585     onAvailable: function () {
20586     },
20587
20588     /*
20589      * Provides default constraint padding to "constrainTo" elements (defaults to {left: 0, right:0, top:0, bottom:0}).
20590      * @type Object
20591      */
20592     defaultPadding : {left:0, right:0, top:0, bottom:0},
20593
20594     /*
20595      * Initializes the drag drop object's constraints to restrict movement to a certain element.
20596  *
20597  * Usage:
20598  <pre><code>
20599  var dd = new Roo.dd.DDProxy("dragDiv1", "proxytest",
20600                 { dragElId: "existingProxyDiv" });
20601  dd.startDrag = function(){
20602      this.constrainTo("parent-id");
20603  };
20604  </code></pre>
20605  * Or you can initalize it using the {@link Roo.Element} object:
20606  <pre><code>
20607  Roo.get("dragDiv1").initDDProxy("proxytest", {dragElId: "existingProxyDiv"}, {
20608      startDrag : function(){
20609          this.constrainTo("parent-id");
20610      }
20611  });
20612  </code></pre>
20613      * @param {String/HTMLElement/Element} constrainTo The element to constrain to.
20614      * @param {Object/Number} pad (optional) Pad provides a way to specify "padding" of the constraints,
20615      * and can be either a number for symmetrical padding (4 would be equal to {left:4, right:4, top:4, bottom:4}) or
20616      * an object containing the sides to pad. For example: {right:10, bottom:10}
20617      * @param {Boolean} inContent (optional) Constrain the draggable in the content box of the element (inside padding and borders)
20618      */
20619     constrainTo : function(constrainTo, pad, inContent){
20620         if(typeof pad == "number"){
20621             pad = {left: pad, right:pad, top:pad, bottom:pad};
20622         }
20623         pad = pad || this.defaultPadding;
20624         var b = Roo.get(this.getEl()).getBox();
20625         var ce = Roo.get(constrainTo);
20626         var s = ce.getScroll();
20627         var c, cd = ce.dom;
20628         if(cd == document.body){
20629             c = { x: s.left, y: s.top, width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
20630         }else{
20631             xy = ce.getXY();
20632             c = {x : xy[0]+s.left, y: xy[1]+s.top, width: cd.clientWidth, height: cd.clientHeight};
20633         }
20634
20635
20636         var topSpace = b.y - c.y;
20637         var leftSpace = b.x - c.x;
20638
20639         this.resetConstraints();
20640         this.setXConstraint(leftSpace - (pad.left||0), // left
20641                 c.width - leftSpace - b.width - (pad.right||0) //right
20642         );
20643         this.setYConstraint(topSpace - (pad.top||0), //top
20644                 c.height - topSpace - b.height - (pad.bottom||0) //bottom
20645         );
20646     },
20647
20648     /**
20649      * Returns a reference to the linked element
20650      * @method getEl
20651      * @return {HTMLElement} the html element
20652      */
20653     getEl: function() {
20654         if (!this._domRef) {
20655             this._domRef = Roo.getDom(this.id);
20656         }
20657
20658         return this._domRef;
20659     },
20660
20661     /**
20662      * Returns a reference to the actual element to drag.  By default this is
20663      * the same as the html element, but it can be assigned to another
20664      * element. An example of this can be found in Roo.dd.DDProxy
20665      * @method getDragEl
20666      * @return {HTMLElement} the html element
20667      */
20668     getDragEl: function() {
20669         return Roo.getDom(this.dragElId);
20670     },
20671
20672     /**
20673      * Sets up the DragDrop object.  Must be called in the constructor of any
20674      * Roo.dd.DragDrop subclass
20675      * @method init
20676      * @param id the id of the linked element
20677      * @param {String} sGroup the group of related items
20678      * @param {object} config configuration attributes
20679      */
20680     init: function(id, sGroup, config) {
20681         this.initTarget(id, sGroup, config);
20682         if (!Roo.isTouch) {
20683             Event.on(this.id, "mousedown", this.handleMouseDown, this);
20684         }
20685         Event.on(this.id, "touchstart", this.handleMouseDown, this);
20686         // Event.on(this.id, "selectstart", Event.preventDefault);
20687     },
20688
20689     /**
20690      * Initializes Targeting functionality only... the object does not
20691      * get a mousedown handler.
20692      * @method initTarget
20693      * @param id the id of the linked element
20694      * @param {String} sGroup the group of related items
20695      * @param {object} config configuration attributes
20696      */
20697     initTarget: function(id, sGroup, config) {
20698
20699         // configuration attributes
20700         this.config = config || {};
20701
20702         // create a local reference to the drag and drop manager
20703         this.DDM = Roo.dd.DDM;
20704         // initialize the groups array
20705         this.groups = {};
20706
20707         // assume that we have an element reference instead of an id if the
20708         // parameter is not a string
20709         if (typeof id !== "string") {
20710             id = Roo.id(id);
20711         }
20712
20713         // set the id
20714         this.id = id;
20715
20716         // add to an interaction group
20717         this.addToGroup((sGroup) ? sGroup : "default");
20718
20719         // We don't want to register this as the handle with the manager
20720         // so we just set the id rather than calling the setter.
20721         this.handleElId = id;
20722
20723         // the linked element is the element that gets dragged by default
20724         this.setDragElId(id);
20725
20726         // by default, clicked anchors will not start drag operations.
20727         this.invalidHandleTypes = { A: "A" };
20728         this.invalidHandleIds = {};
20729         this.invalidHandleClasses = [];
20730
20731         this.applyConfig();
20732
20733         this.handleOnAvailable();
20734     },
20735
20736     /**
20737      * Applies the configuration parameters that were passed into the constructor.
20738      * This is supposed to happen at each level through the inheritance chain.  So
20739      * a DDProxy implentation will execute apply config on DDProxy, DD, and
20740      * DragDrop in order to get all of the parameters that are available in
20741      * each object.
20742      * @method applyConfig
20743      */
20744     applyConfig: function() {
20745
20746         // configurable properties:
20747         //    padding, isTarget, maintainOffset, primaryButtonOnly
20748         this.padding           = this.config.padding || [0, 0, 0, 0];
20749         this.isTarget          = (this.config.isTarget !== false);
20750         this.maintainOffset    = (this.config.maintainOffset);
20751         this.primaryButtonOnly = (this.config.primaryButtonOnly !== false);
20752
20753     },
20754
20755     /**
20756      * Executed when the linked element is available
20757      * @method handleOnAvailable
20758      * @private
20759      */
20760     handleOnAvailable: function() {
20761         this.available = true;
20762         this.resetConstraints();
20763         this.onAvailable();
20764     },
20765
20766      /**
20767      * Configures the padding for the target zone in px.  Effectively expands
20768      * (or reduces) the virtual object size for targeting calculations.
20769      * Supports css-style shorthand; if only one parameter is passed, all sides
20770      * will have that padding, and if only two are passed, the top and bottom
20771      * will have the first param, the left and right the second.
20772      * @method setPadding
20773      * @param {int} iTop    Top pad
20774      * @param {int} iRight  Right pad
20775      * @param {int} iBot    Bot pad
20776      * @param {int} iLeft   Left pad
20777      */
20778     setPadding: function(iTop, iRight, iBot, iLeft) {
20779         // this.padding = [iLeft, iRight, iTop, iBot];
20780         if (!iRight && 0 !== iRight) {
20781             this.padding = [iTop, iTop, iTop, iTop];
20782         } else if (!iBot && 0 !== iBot) {
20783             this.padding = [iTop, iRight, iTop, iRight];
20784         } else {
20785             this.padding = [iTop, iRight, iBot, iLeft];
20786         }
20787     },
20788
20789     /**
20790      * Stores the initial placement of the linked element.
20791      * @method setInitialPosition
20792      * @param {int} diffX   the X offset, default 0
20793      * @param {int} diffY   the Y offset, default 0
20794      */
20795     setInitPosition: function(diffX, diffY) {
20796         var el = this.getEl();
20797
20798         if (!this.DDM.verifyEl(el)) {
20799             return;
20800         }
20801
20802         var dx = diffX || 0;
20803         var dy = diffY || 0;
20804
20805         var p = Dom.getXY( el );
20806
20807         this.initPageX = p[0] - dx;
20808         this.initPageY = p[1] - dy;
20809
20810         this.lastPageX = p[0];
20811         this.lastPageY = p[1];
20812
20813
20814         this.setStartPosition(p);
20815     },
20816
20817     /**
20818      * Sets the start position of the element.  This is set when the obj
20819      * is initialized, the reset when a drag is started.
20820      * @method setStartPosition
20821      * @param pos current position (from previous lookup)
20822      * @private
20823      */
20824     setStartPosition: function(pos) {
20825         var p = pos || Dom.getXY( this.getEl() );
20826         this.deltaSetXY = null;
20827
20828         this.startPageX = p[0];
20829         this.startPageY = p[1];
20830     },
20831
20832     /**
20833      * Add this instance to a group of related drag/drop objects.  All
20834      * instances belong to at least one group, and can belong to as many
20835      * groups as needed.
20836      * @method addToGroup
20837      * @param sGroup {string} the name of the group
20838      */
20839     addToGroup: function(sGroup) {
20840         this.groups[sGroup] = true;
20841         this.DDM.regDragDrop(this, sGroup);
20842     },
20843
20844     /**
20845      * Remove's this instance from the supplied interaction group
20846      * @method removeFromGroup
20847      * @param {string}  sGroup  The group to drop
20848      */
20849     removeFromGroup: function(sGroup) {
20850         if (this.groups[sGroup]) {
20851             delete this.groups[sGroup];
20852         }
20853
20854         this.DDM.removeDDFromGroup(this, sGroup);
20855     },
20856
20857     /**
20858      * Allows you to specify that an element other than the linked element
20859      * will be moved with the cursor during a drag
20860      * @method setDragElId
20861      * @param id {string} the id of the element that will be used to initiate the drag
20862      */
20863     setDragElId: function(id) {
20864         this.dragElId = id;
20865     },
20866
20867     /**
20868      * Allows you to specify a child of the linked element that should be
20869      * used to initiate the drag operation.  An example of this would be if
20870      * you have a content div with text and links.  Clicking anywhere in the
20871      * content area would normally start the drag operation.  Use this method
20872      * to specify that an element inside of the content div is the element
20873      * that starts the drag operation.
20874      * @method setHandleElId
20875      * @param id {string} the id of the element that will be used to
20876      * initiate the drag.
20877      */
20878     setHandleElId: function(id) {
20879         if (typeof id !== "string") {
20880             id = Roo.id(id);
20881         }
20882         this.handleElId = id;
20883         this.DDM.regHandle(this.id, id);
20884     },
20885
20886     /**
20887      * Allows you to set an element outside of the linked element as a drag
20888      * handle
20889      * @method setOuterHandleElId
20890      * @param id the id of the element that will be used to initiate the drag
20891      */
20892     setOuterHandleElId: function(id) {
20893         if (typeof id !== "string") {
20894             id = Roo.id(id);
20895         }
20896         Event.on(id, "mousedown",
20897                 this.handleMouseDown, this);
20898         this.setHandleElId(id);
20899
20900         this.hasOuterHandles = true;
20901     },
20902
20903     /**
20904      * Remove all drag and drop hooks for this element
20905      * @method unreg
20906      */
20907     unreg: function() {
20908         Event.un(this.id, "mousedown",
20909                 this.handleMouseDown);
20910         Event.un(this.id, "touchstart",
20911                 this.handleMouseDown);
20912         this._domRef = null;
20913         this.DDM._remove(this);
20914     },
20915
20916     destroy : function(){
20917         this.unreg();
20918     },
20919
20920     /**
20921      * Returns true if this instance is locked, or the drag drop mgr is locked
20922      * (meaning that all drag/drop is disabled on the page.)
20923      * @method isLocked
20924      * @return {boolean} true if this obj or all drag/drop is locked, else
20925      * false
20926      */
20927     isLocked: function() {
20928         return (this.DDM.isLocked() || this.locked);
20929     },
20930
20931     /**
20932      * Fired when this object is clicked
20933      * @method handleMouseDown
20934      * @param {Event} e
20935      * @param {Roo.dd.DragDrop} oDD the clicked dd object (this dd obj)
20936      * @private
20937      */
20938     handleMouseDown: function(e, oDD){
20939      
20940         if (!Roo.isTouch && this.primaryButtonOnly && e.button != 0) {
20941             //Roo.log('not touch/ button !=0');
20942             return;
20943         }
20944         if (e.browserEvent.touches && e.browserEvent.touches.length != 1) {
20945             return; // double touch..
20946         }
20947         
20948
20949         if (this.isLocked()) {
20950             //Roo.log('locked');
20951             return;
20952         }
20953
20954         this.DDM.refreshCache(this.groups);
20955 //        Roo.log([Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e)]);
20956         var pt = new Roo.lib.Point(Roo.lib.Event.getPageX(e), Roo.lib.Event.getPageY(e));
20957         if (!this.hasOuterHandles && !this.DDM.isOverTarget(pt, this) )  {
20958             //Roo.log('no outer handes or not over target');
20959                 // do nothing.
20960         } else {
20961 //            Roo.log('check validator');
20962             if (this.clickValidator(e)) {
20963 //                Roo.log('validate success');
20964                 // set the initial element position
20965                 this.setStartPosition();
20966
20967
20968                 this.b4MouseDown(e);
20969                 this.onMouseDown(e);
20970
20971                 this.DDM.handleMouseDown(e, this);
20972
20973                 this.DDM.stopEvent(e);
20974             } else {
20975
20976
20977             }
20978         }
20979     },
20980
20981     clickValidator: function(e) {
20982         var target = e.getTarget();
20983         return ( this.isValidHandleChild(target) &&
20984                     (this.id == this.handleElId ||
20985                         this.DDM.handleWasClicked(target, this.id)) );
20986     },
20987
20988     /**
20989      * Allows you to specify a tag name that should not start a drag operation
20990      * when clicked.  This is designed to facilitate embedding links within a
20991      * drag handle that do something other than start the drag.
20992      * @method addInvalidHandleType
20993      * @param {string} tagName the type of element to exclude
20994      */
20995     addInvalidHandleType: function(tagName) {
20996         var type = tagName.toUpperCase();
20997         this.invalidHandleTypes[type] = type;
20998     },
20999
21000     /**
21001      * Lets you to specify an element id for a child of a drag handle
21002      * that should not initiate a drag
21003      * @method addInvalidHandleId
21004      * @param {string} id the element id of the element you wish to ignore
21005      */
21006     addInvalidHandleId: function(id) {
21007         if (typeof id !== "string") {
21008             id = Roo.id(id);
21009         }
21010         this.invalidHandleIds[id] = id;
21011     },
21012
21013     /**
21014      * Lets you specify a css class of elements that will not initiate a drag
21015      * @method addInvalidHandleClass
21016      * @param {string} cssClass the class of the elements you wish to ignore
21017      */
21018     addInvalidHandleClass: function(cssClass) {
21019         this.invalidHandleClasses.push(cssClass);
21020     },
21021
21022     /**
21023      * Unsets an excluded tag name set by addInvalidHandleType
21024      * @method removeInvalidHandleType
21025      * @param {string} tagName the type of element to unexclude
21026      */
21027     removeInvalidHandleType: function(tagName) {
21028         var type = tagName.toUpperCase();
21029         // this.invalidHandleTypes[type] = null;
21030         delete this.invalidHandleTypes[type];
21031     },
21032
21033     /**
21034      * Unsets an invalid handle id
21035      * @method removeInvalidHandleId
21036      * @param {string} id the id of the element to re-enable
21037      */
21038     removeInvalidHandleId: function(id) {
21039         if (typeof id !== "string") {
21040             id = Roo.id(id);
21041         }
21042         delete this.invalidHandleIds[id];
21043     },
21044
21045     /**
21046      * Unsets an invalid css class
21047      * @method removeInvalidHandleClass
21048      * @param {string} cssClass the class of the element(s) you wish to
21049      * re-enable
21050      */
21051     removeInvalidHandleClass: function(cssClass) {
21052         for (var i=0, len=this.invalidHandleClasses.length; i<len; ++i) {
21053             if (this.invalidHandleClasses[i] == cssClass) {
21054                 delete this.invalidHandleClasses[i];
21055             }
21056         }
21057     },
21058
21059     /**
21060      * Checks the tag exclusion list to see if this click should be ignored
21061      * @method isValidHandleChild
21062      * @param {HTMLElement} node the HTMLElement to evaluate
21063      * @return {boolean} true if this is a valid tag type, false if not
21064      */
21065     isValidHandleChild: function(node) {
21066
21067         var valid = true;
21068         // var n = (node.nodeName == "#text") ? node.parentNode : node;
21069         var nodeName;
21070         try {
21071             nodeName = node.nodeName.toUpperCase();
21072         } catch(e) {
21073             nodeName = node.nodeName;
21074         }
21075         valid = valid && !this.invalidHandleTypes[nodeName];
21076         valid = valid && !this.invalidHandleIds[node.id];
21077
21078         for (var i=0, len=this.invalidHandleClasses.length; valid && i<len; ++i) {
21079             valid = !Dom.hasClass(node, this.invalidHandleClasses[i]);
21080         }
21081
21082
21083         return valid;
21084
21085     },
21086
21087     /**
21088      * Create the array of horizontal tick marks if an interval was specified
21089      * in setXConstraint().
21090      * @method setXTicks
21091      * @private
21092      */
21093     setXTicks: function(iStartX, iTickSize) {
21094         this.xTicks = [];
21095         this.xTickSize = iTickSize;
21096
21097         var tickMap = {};
21098
21099         for (var i = this.initPageX; i >= this.minX; i = i - iTickSize) {
21100             if (!tickMap[i]) {
21101                 this.xTicks[this.xTicks.length] = i;
21102                 tickMap[i] = true;
21103             }
21104         }
21105
21106         for (i = this.initPageX; i <= this.maxX; i = i + iTickSize) {
21107             if (!tickMap[i]) {
21108                 this.xTicks[this.xTicks.length] = i;
21109                 tickMap[i] = true;
21110             }
21111         }
21112
21113         this.xTicks.sort(this.DDM.numericSort) ;
21114     },
21115
21116     /**
21117      * Create the array of vertical tick marks if an interval was specified in
21118      * setYConstraint().
21119      * @method setYTicks
21120      * @private
21121      */
21122     setYTicks: function(iStartY, iTickSize) {
21123         this.yTicks = [];
21124         this.yTickSize = iTickSize;
21125
21126         var tickMap = {};
21127
21128         for (var i = this.initPageY; i >= this.minY; i = i - iTickSize) {
21129             if (!tickMap[i]) {
21130                 this.yTicks[this.yTicks.length] = i;
21131                 tickMap[i] = true;
21132             }
21133         }
21134
21135         for (i = this.initPageY; i <= this.maxY; i = i + iTickSize) {
21136             if (!tickMap[i]) {
21137                 this.yTicks[this.yTicks.length] = i;
21138                 tickMap[i] = true;
21139             }
21140         }
21141
21142         this.yTicks.sort(this.DDM.numericSort) ;
21143     },
21144
21145     /**
21146      * By default, the element can be dragged any place on the screen.  Use
21147      * this method to limit the horizontal travel of the element.  Pass in
21148      * 0,0 for the parameters if you want to lock the drag to the y axis.
21149      * @method setXConstraint
21150      * @param {int} iLeft the number of pixels the element can move to the left
21151      * @param {int} iRight the number of pixels the element can move to the
21152      * right
21153      * @param {int} iTickSize optional parameter for specifying that the
21154      * element
21155      * should move iTickSize pixels at a time.
21156      */
21157     setXConstraint: function(iLeft, iRight, iTickSize) {
21158         this.leftConstraint = iLeft;
21159         this.rightConstraint = iRight;
21160
21161         this.minX = this.initPageX - iLeft;
21162         this.maxX = this.initPageX + iRight;
21163         if (iTickSize) { this.setXTicks(this.initPageX, iTickSize); }
21164
21165         this.constrainX = true;
21166     },
21167
21168     /**
21169      * Clears any constraints applied to this instance.  Also clears ticks
21170      * since they can't exist independent of a constraint at this time.
21171      * @method clearConstraints
21172      */
21173     clearConstraints: function() {
21174         this.constrainX = false;
21175         this.constrainY = false;
21176         this.clearTicks();
21177     },
21178
21179     /**
21180      * Clears any tick interval defined for this instance
21181      * @method clearTicks
21182      */
21183     clearTicks: function() {
21184         this.xTicks = null;
21185         this.yTicks = null;
21186         this.xTickSize = 0;
21187         this.yTickSize = 0;
21188     },
21189
21190     /**
21191      * By default, the element can be dragged any place on the screen.  Set
21192      * this to limit the vertical travel of the element.  Pass in 0,0 for the
21193      * parameters if you want to lock the drag to the x axis.
21194      * @method setYConstraint
21195      * @param {int} iUp the number of pixels the element can move up
21196      * @param {int} iDown the number of pixels the element can move down
21197      * @param {int} iTickSize optional parameter for specifying that the
21198      * element should move iTickSize pixels at a time.
21199      */
21200     setYConstraint: function(iUp, iDown, iTickSize) {
21201         this.topConstraint = iUp;
21202         this.bottomConstraint = iDown;
21203
21204         this.minY = this.initPageY - iUp;
21205         this.maxY = this.initPageY + iDown;
21206         if (iTickSize) { this.setYTicks(this.initPageY, iTickSize); }
21207
21208         this.constrainY = true;
21209
21210     },
21211
21212     /**
21213      * resetConstraints must be called if you manually reposition a dd element.
21214      * @method resetConstraints
21215      * @param {boolean} maintainOffset
21216      */
21217     resetConstraints: function() {
21218
21219
21220         // Maintain offsets if necessary
21221         if (this.initPageX || this.initPageX === 0) {
21222             // figure out how much this thing has moved
21223             var dx = (this.maintainOffset) ? this.lastPageX - this.initPageX : 0;
21224             var dy = (this.maintainOffset) ? this.lastPageY - this.initPageY : 0;
21225
21226             this.setInitPosition(dx, dy);
21227
21228         // This is the first time we have detected the element's position
21229         } else {
21230             this.setInitPosition();
21231         }
21232
21233         if (this.constrainX) {
21234             this.setXConstraint( this.leftConstraint,
21235                                  this.rightConstraint,
21236                                  this.xTickSize        );
21237         }
21238
21239         if (this.constrainY) {
21240             this.setYConstraint( this.topConstraint,
21241                                  this.bottomConstraint,
21242                                  this.yTickSize         );
21243         }
21244     },
21245
21246     /**
21247      * Normally the drag element is moved pixel by pixel, but we can specify
21248      * that it move a number of pixels at a time.  This method resolves the
21249      * location when we have it set up like this.
21250      * @method getTick
21251      * @param {int} val where we want to place the object
21252      * @param {int[]} tickArray sorted array of valid points
21253      * @return {int} the closest tick
21254      * @private
21255      */
21256     getTick: function(val, tickArray) {
21257
21258         if (!tickArray) {
21259             // If tick interval is not defined, it is effectively 1 pixel,
21260             // so we return the value passed to us.
21261             return val;
21262         } else if (tickArray[0] >= val) {
21263             // The value is lower than the first tick, so we return the first
21264             // tick.
21265             return tickArray[0];
21266         } else {
21267             for (var i=0, len=tickArray.length; i<len; ++i) {
21268                 var next = i + 1;
21269                 if (tickArray[next] && tickArray[next] >= val) {
21270                     var diff1 = val - tickArray[i];
21271                     var diff2 = tickArray[next] - val;
21272                     return (diff2 > diff1) ? tickArray[i] : tickArray[next];
21273                 }
21274             }
21275
21276             // The value is larger than the last tick, so we return the last
21277             // tick.
21278             return tickArray[tickArray.length - 1];
21279         }
21280     },
21281
21282     /**
21283      * toString method
21284      * @method toString
21285      * @return {string} string representation of the dd obj
21286      */
21287     toString: function() {
21288         return ("DragDrop " + this.id);
21289     }
21290
21291 });
21292
21293 })();
21294 /*
21295  * Based on:
21296  * Ext JS Library 1.1.1
21297  * Copyright(c) 2006-2007, Ext JS, LLC.
21298  *
21299  * Originally Released Under LGPL - original licence link has changed is not relivant.
21300  *
21301  * Fork - LGPL
21302  * <script type="text/javascript">
21303  */
21304
21305
21306 /**
21307  * The drag and drop utility provides a framework for building drag and drop
21308  * applications.  In addition to enabling drag and drop for specific elements,
21309  * the drag and drop elements are tracked by the manager class, and the
21310  * interactions between the various elements are tracked during the drag and
21311  * the implementing code is notified about these important moments.
21312  */
21313
21314 // Only load the library once.  Rewriting the manager class would orphan
21315 // existing drag and drop instances.
21316 if (!Roo.dd.DragDropMgr) {
21317
21318 /**
21319  * @class Roo.dd.DragDropMgr
21320  * DragDropMgr is a singleton that tracks the element interaction for
21321  * all DragDrop items in the window.  Generally, you will not call
21322  * this class directly, but it does have helper methods that could
21323  * be useful in your DragDrop implementations.
21324  * @static
21325  */
21326 Roo.dd.DragDropMgr = function() {
21327
21328     var Event = Roo.EventManager;
21329
21330     return {
21331
21332         /**
21333          * Two dimensional Array of registered DragDrop objects.  The first
21334          * dimension is the DragDrop item group, the second the DragDrop
21335          * object.
21336          * @property ids
21337          * @type {string: string}
21338          * @private
21339          * @static
21340          */
21341         ids: {},
21342
21343         /**
21344          * Array of element ids defined as drag handles.  Used to determine
21345          * if the element that generated the mousedown event is actually the
21346          * handle and not the html element itself.
21347          * @property handleIds
21348          * @type {string: string}
21349          * @private
21350          * @static
21351          */
21352         handleIds: {},
21353
21354         /**
21355          * the DragDrop object that is currently being dragged
21356          * @property dragCurrent
21357          * @type DragDrop
21358          * @private
21359          * @static
21360          **/
21361         dragCurrent: null,
21362
21363         /**
21364          * the DragDrop object(s) that are being hovered over
21365          * @property dragOvers
21366          * @type Array
21367          * @private
21368          * @static
21369          */
21370         dragOvers: {},
21371
21372         /**
21373          * the X distance between the cursor and the object being dragged
21374          * @property deltaX
21375          * @type int
21376          * @private
21377          * @static
21378          */
21379         deltaX: 0,
21380
21381         /**
21382          * the Y distance between the cursor and the object being dragged
21383          * @property deltaY
21384          * @type int
21385          * @private
21386          * @static
21387          */
21388         deltaY: 0,
21389
21390         /**
21391          * Flag to determine if we should prevent the default behavior of the
21392          * events we define. By default this is true, but this can be set to
21393          * false if you need the default behavior (not recommended)
21394          * @property preventDefault
21395          * @type boolean
21396          * @static
21397          */
21398         preventDefault: true,
21399
21400         /**
21401          * Flag to determine if we should stop the propagation of the events
21402          * we generate. This is true by default but you may want to set it to
21403          * false if the html element contains other features that require the
21404          * mouse click.
21405          * @property stopPropagation
21406          * @type boolean
21407          * @static
21408          */
21409         stopPropagation: true,
21410
21411         /**
21412          * Internal flag that is set to true when drag and drop has been
21413          * intialized
21414          * @property initialized
21415          * @private
21416          * @static
21417          */
21418         initalized: false,
21419
21420         /**
21421          * All drag and drop can be disabled.
21422          * @property locked
21423          * @private
21424          * @static
21425          */
21426         locked: false,
21427
21428         /**
21429          * Called the first time an element is registered.
21430          * @method init
21431          * @private
21432          * @static
21433          */
21434         init: function() {
21435             this.initialized = true;
21436         },
21437
21438         /**
21439          * In point mode, drag and drop interaction is defined by the
21440          * location of the cursor during the drag/drop
21441          * @property POINT
21442          * @type int
21443          * @static
21444          */
21445         POINT: 0,
21446
21447         /**
21448          * In intersect mode, drag and drop interactio nis defined by the
21449          * overlap of two or more drag and drop objects.
21450          * @property INTERSECT
21451          * @type int
21452          * @static
21453          */
21454         INTERSECT: 1,
21455
21456         /**
21457          * The current drag and drop mode.  Default: POINT
21458          * @property mode
21459          * @type int
21460          * @static
21461          */
21462         mode: 0,
21463
21464         /**
21465          * Runs method on all drag and drop objects
21466          * @method _execOnAll
21467          * @private
21468          * @static
21469          */
21470         _execOnAll: function(sMethod, args) {
21471             for (var i in this.ids) {
21472                 for (var j in this.ids[i]) {
21473                     var oDD = this.ids[i][j];
21474                     if (! this.isTypeOfDD(oDD)) {
21475                         continue;
21476                     }
21477                     oDD[sMethod].apply(oDD, args);
21478                 }
21479             }
21480         },
21481
21482         /**
21483          * Drag and drop initialization.  Sets up the global event handlers
21484          * @method _onLoad
21485          * @private
21486          * @static
21487          */
21488         _onLoad: function() {
21489
21490             this.init();
21491
21492             if (!Roo.isTouch) {
21493                 Event.on(document, "mouseup",   this.handleMouseUp, this, true);
21494                 Event.on(document, "mousemove", this.handleMouseMove, this, true);
21495             }
21496             Event.on(document, "touchend",   this.handleMouseUp, this, true);
21497             Event.on(document, "touchmove", this.handleMouseMove, this, true);
21498             
21499             Event.on(window,   "unload",    this._onUnload, this, true);
21500             Event.on(window,   "resize",    this._onResize, this, true);
21501             // Event.on(window,   "mouseout",    this._test);
21502
21503         },
21504
21505         /**
21506          * Reset constraints on all drag and drop objs
21507          * @method _onResize
21508          * @private
21509          * @static
21510          */
21511         _onResize: function(e) {
21512             this._execOnAll("resetConstraints", []);
21513         },
21514
21515         /**
21516          * Lock all drag and drop functionality
21517          * @method lock
21518          * @static
21519          */
21520         lock: function() { this.locked = true; },
21521
21522         /**
21523          * Unlock all drag and drop functionality
21524          * @method unlock
21525          * @static
21526          */
21527         unlock: function() { this.locked = false; },
21528
21529         /**
21530          * Is drag and drop locked?
21531          * @method isLocked
21532          * @return {boolean} True if drag and drop is locked, false otherwise.
21533          * @static
21534          */
21535         isLocked: function() { return this.locked; },
21536
21537         /**
21538          * Location cache that is set for all drag drop objects when a drag is
21539          * initiated, cleared when the drag is finished.
21540          * @property locationCache
21541          * @private
21542          * @static
21543          */
21544         locationCache: {},
21545
21546         /**
21547          * Set useCache to false if you want to force object the lookup of each
21548          * drag and drop linked element constantly during a drag.
21549          * @property useCache
21550          * @type boolean
21551          * @static
21552          */
21553         useCache: true,
21554
21555         /**
21556          * The number of pixels that the mouse needs to move after the
21557          * mousedown before the drag is initiated.  Default=3;
21558          * @property clickPixelThresh
21559          * @type int
21560          * @static
21561          */
21562         clickPixelThresh: 3,
21563
21564         /**
21565          * The number of milliseconds after the mousedown event to initiate the
21566          * drag if we don't get a mouseup event. Default=1000
21567          * @property clickTimeThresh
21568          * @type int
21569          * @static
21570          */
21571         clickTimeThresh: 350,
21572
21573         /**
21574          * Flag that indicates that either the drag pixel threshold or the
21575          * mousdown time threshold has been met
21576          * @property dragThreshMet
21577          * @type boolean
21578          * @private
21579          * @static
21580          */
21581         dragThreshMet: false,
21582
21583         /**
21584          * Timeout used for the click time threshold
21585          * @property clickTimeout
21586          * @type Object
21587          * @private
21588          * @static
21589          */
21590         clickTimeout: null,
21591
21592         /**
21593          * The X position of the mousedown event stored for later use when a
21594          * drag threshold is met.
21595          * @property startX
21596          * @type int
21597          * @private
21598          * @static
21599          */
21600         startX: 0,
21601
21602         /**
21603          * The Y position of the mousedown event stored for later use when a
21604          * drag threshold is met.
21605          * @property startY
21606          * @type int
21607          * @private
21608          * @static
21609          */
21610         startY: 0,
21611
21612         /**
21613          * Each DragDrop instance must be registered with the DragDropMgr.
21614          * This is executed in DragDrop.init()
21615          * @method regDragDrop
21616          * @param {DragDrop} oDD the DragDrop object to register
21617          * @param {String} sGroup the name of the group this element belongs to
21618          * @static
21619          */
21620         regDragDrop: function(oDD, sGroup) {
21621             if (!this.initialized) { this.init(); }
21622
21623             if (!this.ids[sGroup]) {
21624                 this.ids[sGroup] = {};
21625             }
21626             this.ids[sGroup][oDD.id] = oDD;
21627         },
21628
21629         /**
21630          * Removes the supplied dd instance from the supplied group. Executed
21631          * by DragDrop.removeFromGroup, so don't call this function directly.
21632          * @method removeDDFromGroup
21633          * @private
21634          * @static
21635          */
21636         removeDDFromGroup: function(oDD, sGroup) {
21637             if (!this.ids[sGroup]) {
21638                 this.ids[sGroup] = {};
21639             }
21640
21641             var obj = this.ids[sGroup];
21642             if (obj && obj[oDD.id]) {
21643                 delete obj[oDD.id];
21644             }
21645         },
21646
21647         /**
21648          * Unregisters a drag and drop item.  This is executed in
21649          * DragDrop.unreg, use that method instead of calling this directly.
21650          * @method _remove
21651          * @private
21652          * @static
21653          */
21654         _remove: function(oDD) {
21655             for (var g in oDD.groups) {
21656                 if (g && this.ids[g][oDD.id]) {
21657                     delete this.ids[g][oDD.id];
21658                 }
21659             }
21660             delete this.handleIds[oDD.id];
21661         },
21662
21663         /**
21664          * Each DragDrop handle element must be registered.  This is done
21665          * automatically when executing DragDrop.setHandleElId()
21666          * @method regHandle
21667          * @param {String} sDDId the DragDrop id this element is a handle for
21668          * @param {String} sHandleId the id of the element that is the drag
21669          * handle
21670          * @static
21671          */
21672         regHandle: function(sDDId, sHandleId) {
21673             if (!this.handleIds[sDDId]) {
21674                 this.handleIds[sDDId] = {};
21675             }
21676             this.handleIds[sDDId][sHandleId] = sHandleId;
21677         },
21678
21679         /**
21680          * Utility function to determine if a given element has been
21681          * registered as a drag drop item.
21682          * @method isDragDrop
21683          * @param {String} id the element id to check
21684          * @return {boolean} true if this element is a DragDrop item,
21685          * false otherwise
21686          * @static
21687          */
21688         isDragDrop: function(id) {
21689             return ( this.getDDById(id) ) ? true : false;
21690         },
21691
21692         /**
21693          * Returns the drag and drop instances that are in all groups the
21694          * passed in instance belongs to.
21695          * @method getRelated
21696          * @param {DragDrop} p_oDD the obj to get related data for
21697          * @param {boolean} bTargetsOnly if true, only return targetable objs
21698          * @return {DragDrop[]} the related instances
21699          * @static
21700          */
21701         getRelated: function(p_oDD, bTargetsOnly) {
21702             var oDDs = [];
21703             for (var i in p_oDD.groups) {
21704                 for (j in this.ids[i]) {
21705                     var dd = this.ids[i][j];
21706                     if (! this.isTypeOfDD(dd)) {
21707                         continue;
21708                     }
21709                     if (!bTargetsOnly || dd.isTarget) {
21710                         oDDs[oDDs.length] = dd;
21711                     }
21712                 }
21713             }
21714
21715             return oDDs;
21716         },
21717
21718         /**
21719          * Returns true if the specified dd target is a legal target for
21720          * the specifice drag obj
21721          * @method isLegalTarget
21722          * @param {DragDrop} the drag obj
21723          * @param {DragDrop} the target
21724          * @return {boolean} true if the target is a legal target for the
21725          * dd obj
21726          * @static
21727          */
21728         isLegalTarget: function (oDD, oTargetDD) {
21729             var targets = this.getRelated(oDD, true);
21730             for (var i=0, len=targets.length;i<len;++i) {
21731                 if (targets[i].id == oTargetDD.id) {
21732                     return true;
21733                 }
21734             }
21735
21736             return false;
21737         },
21738
21739         /**
21740          * My goal is to be able to transparently determine if an object is
21741          * typeof DragDrop, and the exact subclass of DragDrop.  typeof
21742          * returns "object", oDD.constructor.toString() always returns
21743          * "DragDrop" and not the name of the subclass.  So for now it just
21744          * evaluates a well-known variable in DragDrop.
21745          * @method isTypeOfDD
21746          * @param {Object} the object to evaluate
21747          * @return {boolean} true if typeof oDD = DragDrop
21748          * @static
21749          */
21750         isTypeOfDD: function (oDD) {
21751             return (oDD && oDD.__ygDragDrop);
21752         },
21753
21754         /**
21755          * Utility function to determine if a given element has been
21756          * registered as a drag drop handle for the given Drag Drop object.
21757          * @method isHandle
21758          * @param {String} id the element id to check
21759          * @return {boolean} true if this element is a DragDrop handle, false
21760          * otherwise
21761          * @static
21762          */
21763         isHandle: function(sDDId, sHandleId) {
21764             return ( this.handleIds[sDDId] &&
21765                             this.handleIds[sDDId][sHandleId] );
21766         },
21767
21768         /**
21769          * Returns the DragDrop instance for a given id
21770          * @method getDDById
21771          * @param {String} id the id of the DragDrop object
21772          * @return {DragDrop} the drag drop object, null if it is not found
21773          * @static
21774          */
21775         getDDById: function(id) {
21776             for (var i in this.ids) {
21777                 if (this.ids[i][id]) {
21778                     return this.ids[i][id];
21779                 }
21780             }
21781             return null;
21782         },
21783
21784         /**
21785          * Fired after a registered DragDrop object gets the mousedown event.
21786          * Sets up the events required to track the object being dragged
21787          * @method handleMouseDown
21788          * @param {Event} e the event
21789          * @param oDD the DragDrop object being dragged
21790          * @private
21791          * @static
21792          */
21793         handleMouseDown: function(e, oDD) {
21794             if(Roo.QuickTips){
21795                 Roo.QuickTips.disable();
21796             }
21797             this.currentTarget = e.getTarget();
21798
21799             this.dragCurrent = oDD;
21800
21801             var el = oDD.getEl();
21802
21803             // track start position
21804             this.startX = e.getPageX();
21805             this.startY = e.getPageY();
21806
21807             this.deltaX = this.startX - el.offsetLeft;
21808             this.deltaY = this.startY - el.offsetTop;
21809
21810             this.dragThreshMet = false;
21811
21812             this.clickTimeout = setTimeout(
21813                     function() {
21814                         var DDM = Roo.dd.DDM;
21815                         DDM.startDrag(DDM.startX, DDM.startY);
21816                     },
21817                     this.clickTimeThresh );
21818         },
21819
21820         /**
21821          * Fired when either the drag pixel threshol or the mousedown hold
21822          * time threshold has been met.
21823          * @method startDrag
21824          * @param x {int} the X position of the original mousedown
21825          * @param y {int} the Y position of the original mousedown
21826          * @static
21827          */
21828         startDrag: function(x, y) {
21829             clearTimeout(this.clickTimeout);
21830             if (this.dragCurrent) {
21831                 this.dragCurrent.b4StartDrag(x, y);
21832                 this.dragCurrent.startDrag(x, y);
21833             }
21834             this.dragThreshMet = true;
21835         },
21836
21837         /**
21838          * Internal function to handle the mouseup event.  Will be invoked
21839          * from the context of the document.
21840          * @method handleMouseUp
21841          * @param {Event} e the event
21842          * @private
21843          * @static
21844          */
21845         handleMouseUp: function(e) {
21846
21847             if(Roo.QuickTips){
21848                 Roo.QuickTips.enable();
21849             }
21850             if (! this.dragCurrent) {
21851                 return;
21852             }
21853
21854             clearTimeout(this.clickTimeout);
21855
21856             if (this.dragThreshMet) {
21857                 this.fireEvents(e, true);
21858             } else {
21859             }
21860
21861             this.stopDrag(e);
21862
21863             this.stopEvent(e);
21864         },
21865
21866         /**
21867          * Utility to stop event propagation and event default, if these
21868          * features are turned on.
21869          * @method stopEvent
21870          * @param {Event} e the event as returned by this.getEvent()
21871          * @static
21872          */
21873         stopEvent: function(e){
21874             if(this.stopPropagation) {
21875                 e.stopPropagation();
21876             }
21877
21878             if (this.preventDefault) {
21879                 e.preventDefault();
21880             }
21881         },
21882
21883         /**
21884          * Internal function to clean up event handlers after the drag
21885          * operation is complete
21886          * @method stopDrag
21887          * @param {Event} e the event
21888          * @private
21889          * @static
21890          */
21891         stopDrag: function(e) {
21892             // Fire the drag end event for the item that was dragged
21893             if (this.dragCurrent) {
21894                 if (this.dragThreshMet) {
21895                     this.dragCurrent.b4EndDrag(e);
21896                     this.dragCurrent.endDrag(e);
21897                 }
21898
21899                 this.dragCurrent.onMouseUp(e);
21900             }
21901
21902             this.dragCurrent = null;
21903             this.dragOvers = {};
21904         },
21905
21906         /**
21907          * Internal function to handle the mousemove event.  Will be invoked
21908          * from the context of the html element.
21909          *
21910          * @TODO figure out what we can do about mouse events lost when the
21911          * user drags objects beyond the window boundary.  Currently we can
21912          * detect this in internet explorer by verifying that the mouse is
21913          * down during the mousemove event.  Firefox doesn't give us the
21914          * button state on the mousemove event.
21915          * @method handleMouseMove
21916          * @param {Event} e the event
21917          * @private
21918          * @static
21919          */
21920         handleMouseMove: function(e) {
21921             if (! this.dragCurrent) {
21922                 return true;
21923             }
21924
21925             // var button = e.which || e.button;
21926
21927             // check for IE mouseup outside of page boundary
21928             if (Roo.isIE && (e.button !== 0 && e.button !== 1 && e.button !== 2)) {
21929                 this.stopEvent(e);
21930                 return this.handleMouseUp(e);
21931             }
21932
21933             if (!this.dragThreshMet) {
21934                 var diffX = Math.abs(this.startX - e.getPageX());
21935                 var diffY = Math.abs(this.startY - e.getPageY());
21936                 if (diffX > this.clickPixelThresh ||
21937                             diffY > this.clickPixelThresh) {
21938                     this.startDrag(this.startX, this.startY);
21939                 }
21940             }
21941
21942             if (this.dragThreshMet) {
21943                 this.dragCurrent.b4Drag(e);
21944                 this.dragCurrent.onDrag(e);
21945                 if(!this.dragCurrent.moveOnly){
21946                     this.fireEvents(e, false);
21947                 }
21948             }
21949
21950             this.stopEvent(e);
21951
21952             return true;
21953         },
21954
21955         /**
21956          * Iterates over all of the DragDrop elements to find ones we are
21957          * hovering over or dropping on
21958          * @method fireEvents
21959          * @param {Event} e the event
21960          * @param {boolean} isDrop is this a drop op or a mouseover op?
21961          * @private
21962          * @static
21963          */
21964         fireEvents: function(e, isDrop) {
21965             var dc = this.dragCurrent;
21966
21967             // If the user did the mouse up outside of the window, we could
21968             // get here even though we have ended the drag.
21969             if (!dc || dc.isLocked()) {
21970                 return;
21971             }
21972
21973             var pt = e.getPoint();
21974
21975             // cache the previous dragOver array
21976             var oldOvers = [];
21977
21978             var outEvts   = [];
21979             var overEvts  = [];
21980             var dropEvts  = [];
21981             var enterEvts = [];
21982
21983             // Check to see if the object(s) we were hovering over is no longer
21984             // being hovered over so we can fire the onDragOut event
21985             for (var i in this.dragOvers) {
21986
21987                 var ddo = this.dragOvers[i];
21988
21989                 if (! this.isTypeOfDD(ddo)) {
21990                     continue;
21991                 }
21992
21993                 if (! this.isOverTarget(pt, ddo, this.mode)) {
21994                     outEvts.push( ddo );
21995                 }
21996
21997                 oldOvers[i] = true;
21998                 delete this.dragOvers[i];
21999             }
22000
22001             for (var sGroup in dc.groups) {
22002
22003                 if ("string" != typeof sGroup) {
22004                     continue;
22005                 }
22006
22007                 for (i in this.ids[sGroup]) {
22008                     var oDD = this.ids[sGroup][i];
22009                     if (! this.isTypeOfDD(oDD)) {
22010                         continue;
22011                     }
22012
22013                     if (oDD.isTarget && !oDD.isLocked() && oDD != dc) {
22014                         if (this.isOverTarget(pt, oDD, this.mode)) {
22015                             // look for drop interactions
22016                             if (isDrop) {
22017                                 dropEvts.push( oDD );
22018                             // look for drag enter and drag over interactions
22019                             } else {
22020
22021                                 // initial drag over: dragEnter fires
22022                                 if (!oldOvers[oDD.id]) {
22023                                     enterEvts.push( oDD );
22024                                 // subsequent drag overs: dragOver fires
22025                                 } else {
22026                                     overEvts.push( oDD );
22027                                 }
22028
22029                                 this.dragOvers[oDD.id] = oDD;
22030                             }
22031                         }
22032                     }
22033                 }
22034             }
22035
22036             if (this.mode) {
22037                 if (outEvts.length) {
22038                     dc.b4DragOut(e, outEvts);
22039                     dc.onDragOut(e, outEvts);
22040                 }
22041
22042                 if (enterEvts.length) {
22043                     dc.onDragEnter(e, enterEvts);
22044                 }
22045
22046                 if (overEvts.length) {
22047                     dc.b4DragOver(e, overEvts);
22048                     dc.onDragOver(e, overEvts);
22049                 }
22050
22051                 if (dropEvts.length) {
22052                     dc.b4DragDrop(e, dropEvts);
22053                     dc.onDragDrop(e, dropEvts);
22054                 }
22055
22056             } else {
22057                 // fire dragout events
22058                 var len = 0;
22059                 for (i=0, len=outEvts.length; i<len; ++i) {
22060                     dc.b4DragOut(e, outEvts[i].id);
22061                     dc.onDragOut(e, outEvts[i].id);
22062                 }
22063
22064                 // fire enter events
22065                 for (i=0,len=enterEvts.length; i<len; ++i) {
22066                     // dc.b4DragEnter(e, oDD.id);
22067                     dc.onDragEnter(e, enterEvts[i].id);
22068                 }
22069
22070                 // fire over events
22071                 for (i=0,len=overEvts.length; i<len; ++i) {
22072                     dc.b4DragOver(e, overEvts[i].id);
22073                     dc.onDragOver(e, overEvts[i].id);
22074                 }
22075
22076                 // fire drop events
22077                 for (i=0, len=dropEvts.length; i<len; ++i) {
22078                     dc.b4DragDrop(e, dropEvts[i].id);
22079                     dc.onDragDrop(e, dropEvts[i].id);
22080                 }
22081
22082             }
22083
22084             // notify about a drop that did not find a target
22085             if (isDrop && !dropEvts.length) {
22086                 dc.onInvalidDrop(e);
22087             }
22088
22089         },
22090
22091         /**
22092          * Helper function for getting the best match from the list of drag
22093          * and drop objects returned by the drag and drop events when we are
22094          * in INTERSECT mode.  It returns either the first object that the
22095          * cursor is over, or the object that has the greatest overlap with
22096          * the dragged element.
22097          * @method getBestMatch
22098          * @param  {DragDrop[]} dds The array of drag and drop objects
22099          * targeted
22100          * @return {DragDrop}       The best single match
22101          * @static
22102          */
22103         getBestMatch: function(dds) {
22104             var winner = null;
22105             // Return null if the input is not what we expect
22106             //if (!dds || !dds.length || dds.length == 0) {
22107                // winner = null;
22108             // If there is only one item, it wins
22109             //} else if (dds.length == 1) {
22110
22111             var len = dds.length;
22112
22113             if (len == 1) {
22114                 winner = dds[0];
22115             } else {
22116                 // Loop through the targeted items
22117                 for (var i=0; i<len; ++i) {
22118                     var dd = dds[i];
22119                     // If the cursor is over the object, it wins.  If the
22120                     // cursor is over multiple matches, the first one we come
22121                     // to wins.
22122                     if (dd.cursorIsOver) {
22123                         winner = dd;
22124                         break;
22125                     // Otherwise the object with the most overlap wins
22126                     } else {
22127                         if (!winner ||
22128                             winner.overlap.getArea() < dd.overlap.getArea()) {
22129                             winner = dd;
22130                         }
22131                     }
22132                 }
22133             }
22134
22135             return winner;
22136         },
22137
22138         /**
22139          * Refreshes the cache of the top-left and bottom-right points of the
22140          * drag and drop objects in the specified group(s).  This is in the
22141          * format that is stored in the drag and drop instance, so typical
22142          * usage is:
22143          * <code>
22144          * Roo.dd.DragDropMgr.refreshCache(ddinstance.groups);
22145          * </code>
22146          * Alternatively:
22147          * <code>
22148          * Roo.dd.DragDropMgr.refreshCache({group1:true, group2:true});
22149          * </code>
22150          * @TODO this really should be an indexed array.  Alternatively this
22151          * method could accept both.
22152          * @method refreshCache
22153          * @param {Object} groups an associative array of groups to refresh
22154          * @static
22155          */
22156         refreshCache: function(groups) {
22157             for (var sGroup in groups) {
22158                 if ("string" != typeof sGroup) {
22159                     continue;
22160                 }
22161                 for (var i in this.ids[sGroup]) {
22162                     var oDD = this.ids[sGroup][i];
22163
22164                     if (this.isTypeOfDD(oDD)) {
22165                     // if (this.isTypeOfDD(oDD) && oDD.isTarget) {
22166                         var loc = this.getLocation(oDD);
22167                         if (loc) {
22168                             this.locationCache[oDD.id] = loc;
22169                         } else {
22170                             delete this.locationCache[oDD.id];
22171                             // this will unregister the drag and drop object if
22172                             // the element is not in a usable state
22173                             // oDD.unreg();
22174                         }
22175                     }
22176                 }
22177             }
22178         },
22179
22180         /**
22181          * This checks to make sure an element exists and is in the DOM.  The
22182          * main purpose is to handle cases where innerHTML is used to remove
22183          * drag and drop objects from the DOM.  IE provides an 'unspecified
22184          * error' when trying to access the offsetParent of such an element
22185          * @method verifyEl
22186          * @param {HTMLElement} el the element to check
22187          * @return {boolean} true if the element looks usable
22188          * @static
22189          */
22190         verifyEl: function(el) {
22191             if (el) {
22192                 var parent;
22193                 if(Roo.isIE){
22194                     try{
22195                         parent = el.offsetParent;
22196                     }catch(e){}
22197                 }else{
22198                     parent = el.offsetParent;
22199                 }
22200                 if (parent) {
22201                     return true;
22202                 }
22203             }
22204
22205             return false;
22206         },
22207
22208         /**
22209          * Returns a Region object containing the drag and drop element's position
22210          * and size, including the padding configured for it
22211          * @method getLocation
22212          * @param {DragDrop} oDD the drag and drop object to get the
22213          *                       location for
22214          * @return {Roo.lib.Region} a Region object representing the total area
22215          *                             the element occupies, including any padding
22216          *                             the instance is configured for.
22217          * @static
22218          */
22219         getLocation: function(oDD) {
22220             if (! this.isTypeOfDD(oDD)) {
22221                 return null;
22222             }
22223
22224             var el = oDD.getEl(), pos, x1, x2, y1, y2, t, r, b, l;
22225
22226             try {
22227                 pos= Roo.lib.Dom.getXY(el);
22228             } catch (e) { }
22229
22230             if (!pos) {
22231                 return null;
22232             }
22233
22234             x1 = pos[0];
22235             x2 = x1 + el.offsetWidth;
22236             y1 = pos[1];
22237             y2 = y1 + el.offsetHeight;
22238
22239             t = y1 - oDD.padding[0];
22240             r = x2 + oDD.padding[1];
22241             b = y2 + oDD.padding[2];
22242             l = x1 - oDD.padding[3];
22243
22244             return new Roo.lib.Region( t, r, b, l );
22245         },
22246
22247         /**
22248          * Checks the cursor location to see if it over the target
22249          * @method isOverTarget
22250          * @param {Roo.lib.Point} pt The point to evaluate
22251          * @param {DragDrop} oTarget the DragDrop object we are inspecting
22252          * @return {boolean} true if the mouse is over the target
22253          * @private
22254          * @static
22255          */
22256         isOverTarget: function(pt, oTarget, intersect) {
22257             // use cache if available
22258             var loc = this.locationCache[oTarget.id];
22259             if (!loc || !this.useCache) {
22260                 loc = this.getLocation(oTarget);
22261                 this.locationCache[oTarget.id] = loc;
22262
22263             }
22264
22265             if (!loc) {
22266                 return false;
22267             }
22268
22269             oTarget.cursorIsOver = loc.contains( pt );
22270
22271             // DragDrop is using this as a sanity check for the initial mousedown
22272             // in this case we are done.  In POINT mode, if the drag obj has no
22273             // contraints, we are also done. Otherwise we need to evaluate the
22274             // location of the target as related to the actual location of the
22275             // dragged element.
22276             var dc = this.dragCurrent;
22277             if (!dc || !dc.getTargetCoord ||
22278                     (!intersect && !dc.constrainX && !dc.constrainY)) {
22279                 return oTarget.cursorIsOver;
22280             }
22281
22282             oTarget.overlap = null;
22283
22284             // Get the current location of the drag element, this is the
22285             // location of the mouse event less the delta that represents
22286             // where the original mousedown happened on the element.  We
22287             // need to consider constraints and ticks as well.
22288             var pos = dc.getTargetCoord(pt.x, pt.y);
22289
22290             var el = dc.getDragEl();
22291             var curRegion = new Roo.lib.Region( pos.y,
22292                                                    pos.x + el.offsetWidth,
22293                                                    pos.y + el.offsetHeight,
22294                                                    pos.x );
22295
22296             var overlap = curRegion.intersect(loc);
22297
22298             if (overlap) {
22299                 oTarget.overlap = overlap;
22300                 return (intersect) ? true : oTarget.cursorIsOver;
22301             } else {
22302                 return false;
22303             }
22304         },
22305
22306         /**
22307          * unload event handler
22308          * @method _onUnload
22309          * @private
22310          * @static
22311          */
22312         _onUnload: function(e, me) {
22313             Roo.dd.DragDropMgr.unregAll();
22314         },
22315
22316         /**
22317          * Cleans up the drag and drop events and objects.
22318          * @method unregAll
22319          * @private
22320          * @static
22321          */
22322         unregAll: function() {
22323
22324             if (this.dragCurrent) {
22325                 this.stopDrag();
22326                 this.dragCurrent = null;
22327             }
22328
22329             this._execOnAll("unreg", []);
22330
22331             for (i in this.elementCache) {
22332                 delete this.elementCache[i];
22333             }
22334
22335             this.elementCache = {};
22336             this.ids = {};
22337         },
22338
22339         /**
22340          * A cache of DOM elements
22341          * @property elementCache
22342          * @private
22343          * @static
22344          */
22345         elementCache: {},
22346
22347         /**
22348          * Get the wrapper for the DOM element specified
22349          * @method getElWrapper
22350          * @param {String} id the id of the element to get
22351          * @return {Roo.dd.DDM.ElementWrapper} the wrapped element
22352          * @private
22353          * @deprecated This wrapper isn't that useful
22354          * @static
22355          */
22356         getElWrapper: function(id) {
22357             var oWrapper = this.elementCache[id];
22358             if (!oWrapper || !oWrapper.el) {
22359                 oWrapper = this.elementCache[id] =
22360                     new this.ElementWrapper(Roo.getDom(id));
22361             }
22362             return oWrapper;
22363         },
22364
22365         /**
22366          * Returns the actual DOM element
22367          * @method getElement
22368          * @param {String} id the id of the elment to get
22369          * @return {Object} The element
22370          * @deprecated use Roo.getDom instead
22371          * @static
22372          */
22373         getElement: function(id) {
22374             return Roo.getDom(id);
22375         },
22376
22377         /**
22378          * Returns the style property for the DOM element (i.e.,
22379          * document.getElById(id).style)
22380          * @method getCss
22381          * @param {String} id the id of the elment to get
22382          * @return {Object} The style property of the element
22383          * @deprecated use Roo.getDom instead
22384          * @static
22385          */
22386         getCss: function(id) {
22387             var el = Roo.getDom(id);
22388             return (el) ? el.style : null;
22389         },
22390
22391         /**
22392          * Inner class for cached elements
22393          * @class DragDropMgr.ElementWrapper
22394          * @for DragDropMgr
22395          * @private
22396          * @deprecated
22397          */
22398         ElementWrapper: function(el) {
22399                 /**
22400                  * The element
22401                  * @property el
22402                  */
22403                 this.el = el || null;
22404                 /**
22405                  * The element id
22406                  * @property id
22407                  */
22408                 this.id = this.el && el.id;
22409                 /**
22410                  * A reference to the style property
22411                  * @property css
22412                  */
22413                 this.css = this.el && el.style;
22414             },
22415
22416         /**
22417          * Returns the X position of an html element
22418          * @method getPosX
22419          * @param el the element for which to get the position
22420          * @return {int} the X coordinate
22421          * @for DragDropMgr
22422          * @deprecated use Roo.lib.Dom.getX instead
22423          * @static
22424          */
22425         getPosX: function(el) {
22426             return Roo.lib.Dom.getX(el);
22427         },
22428
22429         /**
22430          * Returns the Y position of an html element
22431          * @method getPosY
22432          * @param el the element for which to get the position
22433          * @return {int} the Y coordinate
22434          * @deprecated use Roo.lib.Dom.getY instead
22435          * @static
22436          */
22437         getPosY: function(el) {
22438             return Roo.lib.Dom.getY(el);
22439         },
22440
22441         /**
22442          * Swap two nodes.  In IE, we use the native method, for others we
22443          * emulate the IE behavior
22444          * @method swapNode
22445          * @param n1 the first node to swap
22446          * @param n2 the other node to swap
22447          * @static
22448          */
22449         swapNode: function(n1, n2) {
22450             if (n1.swapNode) {
22451                 n1.swapNode(n2);
22452             } else {
22453                 var p = n2.parentNode;
22454                 var s = n2.nextSibling;
22455
22456                 if (s == n1) {
22457                     p.insertBefore(n1, n2);
22458                 } else if (n2 == n1.nextSibling) {
22459                     p.insertBefore(n2, n1);
22460                 } else {
22461                     n1.parentNode.replaceChild(n2, n1);
22462                     p.insertBefore(n1, s);
22463                 }
22464             }
22465         },
22466
22467         /**
22468          * Returns the current scroll position
22469          * @method getScroll
22470          * @private
22471          * @static
22472          */
22473         getScroll: function () {
22474             var t, l, dde=document.documentElement, db=document.body;
22475             if (dde && (dde.scrollTop || dde.scrollLeft)) {
22476                 t = dde.scrollTop;
22477                 l = dde.scrollLeft;
22478             } else if (db) {
22479                 t = db.scrollTop;
22480                 l = db.scrollLeft;
22481             } else {
22482
22483             }
22484             return { top: t, left: l };
22485         },
22486
22487         /**
22488          * Returns the specified element style property
22489          * @method getStyle
22490          * @param {HTMLElement} el          the element
22491          * @param {string}      styleProp   the style property
22492          * @return {string} The value of the style property
22493          * @deprecated use Roo.lib.Dom.getStyle
22494          * @static
22495          */
22496         getStyle: function(el, styleProp) {
22497             return Roo.fly(el).getStyle(styleProp);
22498         },
22499
22500         /**
22501          * Gets the scrollTop
22502          * @method getScrollTop
22503          * @return {int} the document's scrollTop
22504          * @static
22505          */
22506         getScrollTop: function () { return this.getScroll().top; },
22507
22508         /**
22509          * Gets the scrollLeft
22510          * @method getScrollLeft
22511          * @return {int} the document's scrollTop
22512          * @static
22513          */
22514         getScrollLeft: function () { return this.getScroll().left; },
22515
22516         /**
22517          * Sets the x/y position of an element to the location of the
22518          * target element.
22519          * @method moveToEl
22520          * @param {HTMLElement} moveEl      The element to move
22521          * @param {HTMLElement} targetEl    The position reference element
22522          * @static
22523          */
22524         moveToEl: function (moveEl, targetEl) {
22525             var aCoord = Roo.lib.Dom.getXY(targetEl);
22526             Roo.lib.Dom.setXY(moveEl, aCoord);
22527         },
22528
22529         /**
22530          * Numeric array sort function
22531          * @method numericSort
22532          * @static
22533          */
22534         numericSort: function(a, b) { return (a - b); },
22535
22536         /**
22537          * Internal counter
22538          * @property _timeoutCount
22539          * @private
22540          * @static
22541          */
22542         _timeoutCount: 0,
22543
22544         /**
22545          * Trying to make the load order less important.  Without this we get
22546          * an error if this file is loaded before the Event Utility.
22547          * @method _addListeners
22548          * @private
22549          * @static
22550          */
22551         _addListeners: function() {
22552             var DDM = Roo.dd.DDM;
22553             if ( Roo.lib.Event && document ) {
22554                 DDM._onLoad();
22555             } else {
22556                 if (DDM._timeoutCount > 2000) {
22557                 } else {
22558                     setTimeout(DDM._addListeners, 10);
22559                     if (document && document.body) {
22560                         DDM._timeoutCount += 1;
22561                     }
22562                 }
22563             }
22564         },
22565
22566         /**
22567          * Recursively searches the immediate parent and all child nodes for
22568          * the handle element in order to determine wheter or not it was
22569          * clicked.
22570          * @method handleWasClicked
22571          * @param node the html element to inspect
22572          * @static
22573          */
22574         handleWasClicked: function(node, id) {
22575             if (this.isHandle(id, node.id)) {
22576                 return true;
22577             } else {
22578                 // check to see if this is a text node child of the one we want
22579                 var p = node.parentNode;
22580
22581                 while (p) {
22582                     if (this.isHandle(id, p.id)) {
22583                         return true;
22584                     } else {
22585                         p = p.parentNode;
22586                     }
22587                 }
22588             }
22589
22590             return false;
22591         }
22592
22593     };
22594
22595 }();
22596
22597 // shorter alias, save a few bytes
22598 Roo.dd.DDM = Roo.dd.DragDropMgr;
22599 Roo.dd.DDM._addListeners();
22600
22601 }/*
22602  * Based on:
22603  * Ext JS Library 1.1.1
22604  * Copyright(c) 2006-2007, Ext JS, LLC.
22605  *
22606  * Originally Released Under LGPL - original licence link has changed is not relivant.
22607  *
22608  * Fork - LGPL
22609  * <script type="text/javascript">
22610  */
22611
22612 /**
22613  * @class Roo.dd.DD
22614  * A DragDrop implementation where the linked element follows the
22615  * mouse cursor during a drag.
22616  * @extends Roo.dd.DragDrop
22617  * @constructor
22618  * @param {String} id the id of the linked element
22619  * @param {String} sGroup the group of related DragDrop items
22620  * @param {object} config an object containing configurable attributes
22621  *                Valid properties for DD:
22622  *                    scroll
22623  */
22624 Roo.dd.DD = function(id, sGroup, config) {
22625     if (id) {
22626         this.init(id, sGroup, config);
22627     }
22628 };
22629
22630 Roo.extend(Roo.dd.DD, Roo.dd.DragDrop, {
22631
22632     /**
22633      * When set to true, the utility automatically tries to scroll the browser
22634      * window wehn a drag and drop element is dragged near the viewport boundary.
22635      * Defaults to true.
22636      * @property scroll
22637      * @type boolean
22638      */
22639     scroll: true,
22640
22641     /**
22642      * Sets the pointer offset to the distance between the linked element's top
22643      * left corner and the location the element was clicked
22644      * @method autoOffset
22645      * @param {int} iPageX the X coordinate of the click
22646      * @param {int} iPageY the Y coordinate of the click
22647      */
22648     autoOffset: function(iPageX, iPageY) {
22649         var x = iPageX - this.startPageX;
22650         var y = iPageY - this.startPageY;
22651         this.setDelta(x, y);
22652     },
22653
22654     /**
22655      * Sets the pointer offset.  You can call this directly to force the
22656      * offset to be in a particular location (e.g., pass in 0,0 to set it
22657      * to the center of the object)
22658      * @method setDelta
22659      * @param {int} iDeltaX the distance from the left
22660      * @param {int} iDeltaY the distance from the top
22661      */
22662     setDelta: function(iDeltaX, iDeltaY) {
22663         this.deltaX = iDeltaX;
22664         this.deltaY = iDeltaY;
22665     },
22666
22667     /**
22668      * Sets the drag element to the location of the mousedown or click event,
22669      * maintaining the cursor location relative to the location on the element
22670      * that was clicked.  Override this if you want to place the element in a
22671      * location other than where the cursor is.
22672      * @method setDragElPos
22673      * @param {int} iPageX the X coordinate of the mousedown or drag event
22674      * @param {int} iPageY the Y coordinate of the mousedown or drag event
22675      */
22676     setDragElPos: function(iPageX, iPageY) {
22677         // the first time we do this, we are going to check to make sure
22678         // the element has css positioning
22679
22680         var el = this.getDragEl();
22681         this.alignElWithMouse(el, iPageX, iPageY);
22682     },
22683
22684     /**
22685      * Sets the element to the location of the mousedown or click event,
22686      * maintaining the cursor location relative to the location on the element
22687      * that was clicked.  Override this if you want to place the element in a
22688      * location other than where the cursor is.
22689      * @method alignElWithMouse
22690      * @param {HTMLElement} el the element to move
22691      * @param {int} iPageX the X coordinate of the mousedown or drag event
22692      * @param {int} iPageY the Y coordinate of the mousedown or drag event
22693      */
22694     alignElWithMouse: function(el, iPageX, iPageY) {
22695         var oCoord = this.getTargetCoord(iPageX, iPageY);
22696         var fly = el.dom ? el : Roo.fly(el);
22697         if (!this.deltaSetXY) {
22698             var aCoord = [oCoord.x, oCoord.y];
22699             fly.setXY(aCoord);
22700             var newLeft = fly.getLeft(true);
22701             var newTop  = fly.getTop(true);
22702             this.deltaSetXY = [ newLeft - oCoord.x, newTop - oCoord.y ];
22703         } else {
22704             fly.setLeftTop(oCoord.x + this.deltaSetXY[0], oCoord.y + this.deltaSetXY[1]);
22705         }
22706
22707         this.cachePosition(oCoord.x, oCoord.y);
22708         this.autoScroll(oCoord.x, oCoord.y, el.offsetHeight, el.offsetWidth);
22709         return oCoord;
22710     },
22711
22712     /**
22713      * Saves the most recent position so that we can reset the constraints and
22714      * tick marks on-demand.  We need to know this so that we can calculate the
22715      * number of pixels the element is offset from its original position.
22716      * @method cachePosition
22717      * @param iPageX the current x position (optional, this just makes it so we
22718      * don't have to look it up again)
22719      * @param iPageY the current y position (optional, this just makes it so we
22720      * don't have to look it up again)
22721      */
22722     cachePosition: function(iPageX, iPageY) {
22723         if (iPageX) {
22724             this.lastPageX = iPageX;
22725             this.lastPageY = iPageY;
22726         } else {
22727             var aCoord = Roo.lib.Dom.getXY(this.getEl());
22728             this.lastPageX = aCoord[0];
22729             this.lastPageY = aCoord[1];
22730         }
22731     },
22732
22733     /**
22734      * Auto-scroll the window if the dragged object has been moved beyond the
22735      * visible window boundary.
22736      * @method autoScroll
22737      * @param {int} x the drag element's x position
22738      * @param {int} y the drag element's y position
22739      * @param {int} h the height of the drag element
22740      * @param {int} w the width of the drag element
22741      * @private
22742      */
22743     autoScroll: function(x, y, h, w) {
22744
22745         if (this.scroll) {
22746             // The client height
22747             var clientH = Roo.lib.Dom.getViewWidth();
22748
22749             // The client width
22750             var clientW = Roo.lib.Dom.getViewHeight();
22751
22752             // The amt scrolled down
22753             var st = this.DDM.getScrollTop();
22754
22755             // The amt scrolled right
22756             var sl = this.DDM.getScrollLeft();
22757
22758             // Location of the bottom of the element
22759             var bot = h + y;
22760
22761             // Location of the right of the element
22762             var right = w + x;
22763
22764             // The distance from the cursor to the bottom of the visible area,
22765             // adjusted so that we don't scroll if the cursor is beyond the
22766             // element drag constraints
22767             var toBot = (clientH + st - y - this.deltaY);
22768
22769             // The distance from the cursor to the right of the visible area
22770             var toRight = (clientW + sl - x - this.deltaX);
22771
22772
22773             // How close to the edge the cursor must be before we scroll
22774             // var thresh = (document.all) ? 100 : 40;
22775             var thresh = 40;
22776
22777             // How many pixels to scroll per autoscroll op.  This helps to reduce
22778             // clunky scrolling. IE is more sensitive about this ... it needs this
22779             // value to be higher.
22780             var scrAmt = (document.all) ? 80 : 30;
22781
22782             // Scroll down if we are near the bottom of the visible page and the
22783             // obj extends below the crease
22784             if ( bot > clientH && toBot < thresh ) {
22785                 window.scrollTo(sl, st + scrAmt);
22786             }
22787
22788             // Scroll up if the window is scrolled down and the top of the object
22789             // goes above the top border
22790             if ( y < st && st > 0 && y - st < thresh ) {
22791                 window.scrollTo(sl, st - scrAmt);
22792             }
22793
22794             // Scroll right if the obj is beyond the right border and the cursor is
22795             // near the border.
22796             if ( right > clientW && toRight < thresh ) {
22797                 window.scrollTo(sl + scrAmt, st);
22798             }
22799
22800             // Scroll left if the window has been scrolled to the right and the obj
22801             // extends past the left border
22802             if ( x < sl && sl > 0 && x - sl < thresh ) {
22803                 window.scrollTo(sl - scrAmt, st);
22804             }
22805         }
22806     },
22807
22808     /**
22809      * Finds the location the element should be placed if we want to move
22810      * it to where the mouse location less the click offset would place us.
22811      * @method getTargetCoord
22812      * @param {int} iPageX the X coordinate of the click
22813      * @param {int} iPageY the Y coordinate of the click
22814      * @return an object that contains the coordinates (Object.x and Object.y)
22815      * @private
22816      */
22817     getTargetCoord: function(iPageX, iPageY) {
22818
22819
22820         var x = iPageX - this.deltaX;
22821         var y = iPageY - this.deltaY;
22822
22823         if (this.constrainX) {
22824             if (x < this.minX) { x = this.minX; }
22825             if (x > this.maxX) { x = this.maxX; }
22826         }
22827
22828         if (this.constrainY) {
22829             if (y < this.minY) { y = this.minY; }
22830             if (y > this.maxY) { y = this.maxY; }
22831         }
22832
22833         x = this.getTick(x, this.xTicks);
22834         y = this.getTick(y, this.yTicks);
22835
22836
22837         return {x:x, y:y};
22838     },
22839
22840     /*
22841      * Sets up config options specific to this class. Overrides
22842      * Roo.dd.DragDrop, but all versions of this method through the
22843      * inheritance chain are called
22844      */
22845     applyConfig: function() {
22846         Roo.dd.DD.superclass.applyConfig.call(this);
22847         this.scroll = (this.config.scroll !== false);
22848     },
22849
22850     /*
22851      * Event that fires prior to the onMouseDown event.  Overrides
22852      * Roo.dd.DragDrop.
22853      */
22854     b4MouseDown: function(e) {
22855         // this.resetConstraints();
22856         this.autoOffset(e.getPageX(),
22857                             e.getPageY());
22858     },
22859
22860     /*
22861      * Event that fires prior to the onDrag event.  Overrides
22862      * Roo.dd.DragDrop.
22863      */
22864     b4Drag: function(e) {
22865         this.setDragElPos(e.getPageX(),
22866                             e.getPageY());
22867     },
22868
22869     toString: function() {
22870         return ("DD " + this.id);
22871     }
22872
22873     //////////////////////////////////////////////////////////////////////////
22874     // Debugging ygDragDrop events that can be overridden
22875     //////////////////////////////////////////////////////////////////////////
22876     /*
22877     startDrag: function(x, y) {
22878     },
22879
22880     onDrag: function(e) {
22881     },
22882
22883     onDragEnter: function(e, id) {
22884     },
22885
22886     onDragOver: function(e, id) {
22887     },
22888
22889     onDragOut: function(e, id) {
22890     },
22891
22892     onDragDrop: function(e, id) {
22893     },
22894
22895     endDrag: function(e) {
22896     }
22897
22898     */
22899
22900 });/*
22901  * Based on:
22902  * Ext JS Library 1.1.1
22903  * Copyright(c) 2006-2007, Ext JS, LLC.
22904  *
22905  * Originally Released Under LGPL - original licence link has changed is not relivant.
22906  *
22907  * Fork - LGPL
22908  * <script type="text/javascript">
22909  */
22910
22911 /**
22912  * @class Roo.dd.DDProxy
22913  * A DragDrop implementation that inserts an empty, bordered div into
22914  * the document that follows the cursor during drag operations.  At the time of
22915  * the click, the frame div is resized to the dimensions of the linked html
22916  * element, and moved to the exact location of the linked element.
22917  *
22918  * References to the "frame" element refer to the single proxy element that
22919  * was created to be dragged in place of all DDProxy elements on the
22920  * page.
22921  *
22922  * @extends Roo.dd.DD
22923  * @constructor
22924  * @param {String} id the id of the linked html element
22925  * @param {String} sGroup the group of related DragDrop objects
22926  * @param {object} config an object containing configurable attributes
22927  *                Valid properties for DDProxy in addition to those in DragDrop:
22928  *                   resizeFrame, centerFrame, dragElId
22929  */
22930 Roo.dd.DDProxy = function(id, sGroup, config) {
22931     if (id) {
22932         this.init(id, sGroup, config);
22933         this.initFrame();
22934     }
22935 };
22936
22937 /**
22938  * The default drag frame div id
22939  * @property Roo.dd.DDProxy.dragElId
22940  * @type String
22941  * @static
22942  */
22943 Roo.dd.DDProxy.dragElId = "ygddfdiv";
22944
22945 Roo.extend(Roo.dd.DDProxy, Roo.dd.DD, {
22946
22947     /**
22948      * By default we resize the drag frame to be the same size as the element
22949      * we want to drag (this is to get the frame effect).  We can turn it off
22950      * if we want a different behavior.
22951      * @property resizeFrame
22952      * @type boolean
22953      */
22954     resizeFrame: true,
22955
22956     /**
22957      * By default the frame is positioned exactly where the drag element is, so
22958      * we use the cursor offset provided by Roo.dd.DD.  Another option that works only if
22959      * you do not have constraints on the obj is to have the drag frame centered
22960      * around the cursor.  Set centerFrame to true for this effect.
22961      * @property centerFrame
22962      * @type boolean
22963      */
22964     centerFrame: false,
22965
22966     /**
22967      * Creates the proxy element if it does not yet exist
22968      * @method createFrame
22969      */
22970     createFrame: function() {
22971         var self = this;
22972         var body = document.body;
22973
22974         if (!body || !body.firstChild) {
22975             setTimeout( function() { self.createFrame(); }, 50 );
22976             return;
22977         }
22978
22979         var div = this.getDragEl();
22980
22981         if (!div) {
22982             div    = document.createElement("div");
22983             div.id = this.dragElId;
22984             var s  = div.style;
22985
22986             s.position   = "absolute";
22987             s.visibility = "hidden";
22988             s.cursor     = "move";
22989             s.border     = "2px solid #aaa";
22990             s.zIndex     = 999;
22991
22992             // appendChild can blow up IE if invoked prior to the window load event
22993             // while rendering a table.  It is possible there are other scenarios
22994             // that would cause this to happen as well.
22995             body.insertBefore(div, body.firstChild);
22996         }
22997     },
22998
22999     /**
23000      * Initialization for the drag frame element.  Must be called in the
23001      * constructor of all subclasses
23002      * @method initFrame
23003      */
23004     initFrame: function() {
23005         this.createFrame();
23006     },
23007
23008     applyConfig: function() {
23009         Roo.dd.DDProxy.superclass.applyConfig.call(this);
23010
23011         this.resizeFrame = (this.config.resizeFrame !== false);
23012         this.centerFrame = (this.config.centerFrame);
23013         this.setDragElId(this.config.dragElId || Roo.dd.DDProxy.dragElId);
23014     },
23015
23016     /**
23017      * Resizes the drag frame to the dimensions of the clicked object, positions
23018      * it over the object, and finally displays it
23019      * @method showFrame
23020      * @param {int} iPageX X click position
23021      * @param {int} iPageY Y click position
23022      * @private
23023      */
23024     showFrame: function(iPageX, iPageY) {
23025         var el = this.getEl();
23026         var dragEl = this.getDragEl();
23027         var s = dragEl.style;
23028
23029         this._resizeProxy();
23030
23031         if (this.centerFrame) {
23032             this.setDelta( Math.round(parseInt(s.width,  10)/2),
23033                            Math.round(parseInt(s.height, 10)/2) );
23034         }
23035
23036         this.setDragElPos(iPageX, iPageY);
23037
23038         Roo.fly(dragEl).show();
23039     },
23040
23041     /**
23042      * The proxy is automatically resized to the dimensions of the linked
23043      * element when a drag is initiated, unless resizeFrame is set to false
23044      * @method _resizeProxy
23045      * @private
23046      */
23047     _resizeProxy: function() {
23048         if (this.resizeFrame) {
23049             var el = this.getEl();
23050             Roo.fly(this.getDragEl()).setSize(el.offsetWidth, el.offsetHeight);
23051         }
23052     },
23053
23054     // overrides Roo.dd.DragDrop
23055     b4MouseDown: function(e) {
23056         var x = e.getPageX();
23057         var y = e.getPageY();
23058         this.autoOffset(x, y);
23059         this.setDragElPos(x, y);
23060     },
23061
23062     // overrides Roo.dd.DragDrop
23063     b4StartDrag: function(x, y) {
23064         // show the drag frame
23065         this.showFrame(x, y);
23066     },
23067
23068     // overrides Roo.dd.DragDrop
23069     b4EndDrag: function(e) {
23070         Roo.fly(this.getDragEl()).hide();
23071     },
23072
23073     // overrides Roo.dd.DragDrop
23074     // By default we try to move the element to the last location of the frame.
23075     // This is so that the default behavior mirrors that of Roo.dd.DD.
23076     endDrag: function(e) {
23077
23078         var lel = this.getEl();
23079         var del = this.getDragEl();
23080
23081         // Show the drag frame briefly so we can get its position
23082         del.style.visibility = "";
23083
23084         this.beforeMove();
23085         // Hide the linked element before the move to get around a Safari
23086         // rendering bug.
23087         lel.style.visibility = "hidden";
23088         Roo.dd.DDM.moveToEl(lel, del);
23089         del.style.visibility = "hidden";
23090         lel.style.visibility = "";
23091
23092         this.afterDrag();
23093     },
23094
23095     beforeMove : function(){
23096
23097     },
23098
23099     afterDrag : function(){
23100
23101     },
23102
23103     toString: function() {
23104         return ("DDProxy " + this.id);
23105     }
23106
23107 });
23108 /*
23109  * Based on:
23110  * Ext JS Library 1.1.1
23111  * Copyright(c) 2006-2007, Ext JS, LLC.
23112  *
23113  * Originally Released Under LGPL - original licence link has changed is not relivant.
23114  *
23115  * Fork - LGPL
23116  * <script type="text/javascript">
23117  */
23118
23119  /**
23120  * @class Roo.dd.DDTarget
23121  * A DragDrop implementation that does not move, but can be a drop
23122  * target.  You would get the same result by simply omitting implementation
23123  * for the event callbacks, but this way we reduce the processing cost of the
23124  * event listener and the callbacks.
23125  * @extends Roo.dd.DragDrop
23126  * @constructor
23127  * @param {String} id the id of the element that is a drop target
23128  * @param {String} sGroup the group of related DragDrop objects
23129  * @param {object} config an object containing configurable attributes
23130  *                 Valid properties for DDTarget in addition to those in
23131  *                 DragDrop:
23132  *                    none
23133  */
23134 Roo.dd.DDTarget = function(id, sGroup, config) {
23135     if (id) {
23136         this.initTarget(id, sGroup, config);
23137     }
23138     if (config && (config.listeners || config.events)) { 
23139         Roo.dd.DragDrop.superclass.constructor.call(this,  { 
23140             listeners : config.listeners || {}, 
23141             events : config.events || {} 
23142         });    
23143     }
23144 };
23145
23146 // Roo.dd.DDTarget.prototype = new Roo.dd.DragDrop();
23147 Roo.extend(Roo.dd.DDTarget, Roo.dd.DragDrop, {
23148     toString: function() {
23149         return ("DDTarget " + this.id);
23150     }
23151 });
23152 /*
23153  * Based on:
23154  * Ext JS Library 1.1.1
23155  * Copyright(c) 2006-2007, Ext JS, LLC.
23156  *
23157  * Originally Released Under LGPL - original licence link has changed is not relivant.
23158  *
23159  * Fork - LGPL
23160  * <script type="text/javascript">
23161  */
23162  
23163
23164 /**
23165  * @class Roo.dd.ScrollManager
23166  * Provides automatic scrolling of overflow regions in the page during drag operations.<br><br>
23167  * <b>Note: This class uses "Point Mode" and is untested in "Intersect Mode".</b>
23168  * @static
23169  */
23170 Roo.dd.ScrollManager = function(){
23171     var ddm = Roo.dd.DragDropMgr;
23172     var els = {};
23173     var dragEl = null;
23174     var proc = {};
23175     
23176     
23177     
23178     var onStop = function(e){
23179         dragEl = null;
23180         clearProc();
23181     };
23182     
23183     var triggerRefresh = function(){
23184         if(ddm.dragCurrent){
23185              ddm.refreshCache(ddm.dragCurrent.groups);
23186         }
23187     };
23188     
23189     var doScroll = function(){
23190         if(ddm.dragCurrent){
23191             var dds = Roo.dd.ScrollManager;
23192             if(!dds.animate){
23193                 if(proc.el.scroll(proc.dir, dds.increment)){
23194                     triggerRefresh();
23195                 }
23196             }else{
23197                 proc.el.scroll(proc.dir, dds.increment, true, dds.animDuration, triggerRefresh);
23198             }
23199         }
23200     };
23201     
23202     var clearProc = function(){
23203         if(proc.id){
23204             clearInterval(proc.id);
23205         }
23206         proc.id = 0;
23207         proc.el = null;
23208         proc.dir = "";
23209     };
23210     
23211     var startProc = function(el, dir){
23212          Roo.log('scroll startproc');
23213         clearProc();
23214         proc.el = el;
23215         proc.dir = dir;
23216         proc.id = setInterval(doScroll, Roo.dd.ScrollManager.frequency);
23217     };
23218     
23219     var onFire = function(e, isDrop){
23220        
23221         if(isDrop || !ddm.dragCurrent){ return; }
23222         var dds = Roo.dd.ScrollManager;
23223         if(!dragEl || dragEl != ddm.dragCurrent){
23224             dragEl = ddm.dragCurrent;
23225             // refresh regions on drag start
23226             dds.refreshCache();
23227         }
23228         
23229         var xy = Roo.lib.Event.getXY(e);
23230         var pt = new Roo.lib.Point(xy[0], xy[1]);
23231         for(var id in els){
23232             var el = els[id], r = el._region;
23233             if(r && r.contains(pt) && el.isScrollable()){
23234                 if(r.bottom - pt.y <= dds.thresh){
23235                     if(proc.el != el){
23236                         startProc(el, "down");
23237                     }
23238                     return;
23239                 }else if(r.right - pt.x <= dds.thresh){
23240                     if(proc.el != el){
23241                         startProc(el, "left");
23242                     }
23243                     return;
23244                 }else if(pt.y - r.top <= dds.thresh){
23245                     if(proc.el != el){
23246                         startProc(el, "up");
23247                     }
23248                     return;
23249                 }else if(pt.x - r.left <= dds.thresh){
23250                     if(proc.el != el){
23251                         startProc(el, "right");
23252                     }
23253                     return;
23254                 }
23255             }
23256         }
23257         clearProc();
23258     };
23259     
23260     ddm.fireEvents = ddm.fireEvents.createSequence(onFire, ddm);
23261     ddm.stopDrag = ddm.stopDrag.createSequence(onStop, ddm);
23262     
23263     return {
23264         /**
23265          * Registers new overflow element(s) to auto scroll
23266          * @param {String/HTMLElement/Element/Array} el The id of or the element to be scrolled or an array of either
23267          */
23268         register : function(el){
23269             if(el instanceof Array){
23270                 for(var i = 0, len = el.length; i < len; i++) {
23271                         this.register(el[i]);
23272                 }
23273             }else{
23274                 el = Roo.get(el);
23275                 els[el.id] = el;
23276             }
23277             Roo.dd.ScrollManager.els = els;
23278         },
23279         
23280         /**
23281          * Unregisters overflow element(s) so they are no longer scrolled
23282          * @param {String/HTMLElement/Element/Array} el The id of or the element to be removed or an array of either
23283          */
23284         unregister : function(el){
23285             if(el instanceof Array){
23286                 for(var i = 0, len = el.length; i < len; i++) {
23287                         this.unregister(el[i]);
23288                 }
23289             }else{
23290                 el = Roo.get(el);
23291                 delete els[el.id];
23292             }
23293         },
23294         
23295         /**
23296          * The number of pixels from the edge of a container the pointer needs to be to 
23297          * trigger scrolling (defaults to 25)
23298          * @type Number
23299          */
23300         thresh : 25,
23301         
23302         /**
23303          * The number of pixels to scroll in each scroll increment (defaults to 50)
23304          * @type Number
23305          */
23306         increment : 100,
23307         
23308         /**
23309          * The frequency of scrolls in milliseconds (defaults to 500)
23310          * @type Number
23311          */
23312         frequency : 500,
23313         
23314         /**
23315          * True to animate the scroll (defaults to true)
23316          * @type Boolean
23317          */
23318         animate: true,
23319         
23320         /**
23321          * The animation duration in seconds - 
23322          * MUST BE less than Roo.dd.ScrollManager.frequency! (defaults to .4)
23323          * @type Number
23324          */
23325         animDuration: .4,
23326         
23327         /**
23328          * Manually trigger a cache refresh.
23329          */
23330         refreshCache : function(){
23331             for(var id in els){
23332                 if(typeof els[id] == 'object'){ // for people extending the object prototype
23333                     els[id]._region = els[id].getRegion();
23334                 }
23335             }
23336         }
23337     };
23338 }();/*
23339  * Based on:
23340  * Ext JS Library 1.1.1
23341  * Copyright(c) 2006-2007, Ext JS, LLC.
23342  *
23343  * Originally Released Under LGPL - original licence link has changed is not relivant.
23344  *
23345  * Fork - LGPL
23346  * <script type="text/javascript">
23347  */
23348  
23349
23350 /**
23351  * @class Roo.dd.Registry
23352  * Provides easy access to all drag drop components that are registered on a page.  Items can be retrieved either
23353  * directly by DOM node id, or by passing in the drag drop event that occurred and looking up the event target.
23354  * @static
23355  */
23356 Roo.dd.Registry = function(){
23357     var elements = {}; 
23358     var handles = {}; 
23359     var autoIdSeed = 0;
23360
23361     var getId = function(el, autogen){
23362         if(typeof el == "string"){
23363             return el;
23364         }
23365         var id = el.id;
23366         if(!id && autogen !== false){
23367             id = "roodd-" + (++autoIdSeed);
23368             el.id = id;
23369         }
23370         return id;
23371     };
23372     
23373     return {
23374     /**
23375      * Register a drag drop element
23376      * @param {String|HTMLElement} element The id or DOM node to register
23377      * @param {Object} data (optional) A custom data object that will be passed between the elements that are involved
23378      * in drag drop operations.  You can populate this object with any arbitrary properties that your own code
23379      * knows how to interpret, plus there are some specific properties known to the Registry that should be
23380      * populated in the data object (if applicable):
23381      * <pre>
23382 Value      Description<br />
23383 ---------  ------------------------------------------<br />
23384 handles    Array of DOM nodes that trigger dragging<br />
23385            for the element being registered<br />
23386 isHandle   True if the element passed in triggers<br />
23387            dragging itself, else false
23388 </pre>
23389      */
23390         register : function(el, data){
23391             data = data || {};
23392             if(typeof el == "string"){
23393                 el = document.getElementById(el);
23394             }
23395             data.ddel = el;
23396             elements[getId(el)] = data;
23397             if(data.isHandle !== false){
23398                 handles[data.ddel.id] = data;
23399             }
23400             if(data.handles){
23401                 var hs = data.handles;
23402                 for(var i = 0, len = hs.length; i < len; i++){
23403                         handles[getId(hs[i])] = data;
23404                 }
23405             }
23406         },
23407
23408     /**
23409      * Unregister a drag drop element
23410      * @param {String|HTMLElement}  element The id or DOM node to unregister
23411      */
23412         unregister : function(el){
23413             var id = getId(el, false);
23414             var data = elements[id];
23415             if(data){
23416                 delete elements[id];
23417                 if(data.handles){
23418                     var hs = data.handles;
23419                     for(var i = 0, len = hs.length; i < len; i++){
23420                         delete handles[getId(hs[i], false)];
23421                     }
23422                 }
23423             }
23424         },
23425
23426     /**
23427      * Returns the handle registered for a DOM Node by id
23428      * @param {String|HTMLElement} id The DOM node or id to look up
23429      * @return {Object} handle The custom handle data
23430      */
23431         getHandle : function(id){
23432             if(typeof id != "string"){ // must be element?
23433                 id = id.id;
23434             }
23435             return handles[id];
23436         },
23437
23438     /**
23439      * Returns the handle that is registered for the DOM node that is the target of the event
23440      * @param {Event} e The event
23441      * @return {Object} handle The custom handle data
23442      */
23443         getHandleFromEvent : function(e){
23444             var t = Roo.lib.Event.getTarget(e);
23445             return t ? handles[t.id] : null;
23446         },
23447
23448     /**
23449      * Returns a custom data object that is registered for a DOM node by id
23450      * @param {String|HTMLElement} id The DOM node or id to look up
23451      * @return {Object} data The custom data
23452      */
23453         getTarget : function(id){
23454             if(typeof id != "string"){ // must be element?
23455                 id = id.id;
23456             }
23457             return elements[id];
23458         },
23459
23460     /**
23461      * Returns a custom data object that is registered for the DOM node that is the target of the event
23462      * @param {Event} e The event
23463      * @return {Object} data The custom data
23464      */
23465         getTargetFromEvent : function(e){
23466             var t = Roo.lib.Event.getTarget(e);
23467             return t ? elements[t.id] || handles[t.id] : null;
23468         }
23469     };
23470 }();/*
23471  * Based on:
23472  * Ext JS Library 1.1.1
23473  * Copyright(c) 2006-2007, Ext JS, LLC.
23474  *
23475  * Originally Released Under LGPL - original licence link has changed is not relivant.
23476  *
23477  * Fork - LGPL
23478  * <script type="text/javascript">
23479  */
23480  
23481
23482 /**
23483  * @class Roo.dd.StatusProxy
23484  * A specialized drag proxy that supports a drop status icon, {@link Roo.Layer} styles and auto-repair.  This is the
23485  * default drag proxy used by all Roo.dd components.
23486  * @constructor
23487  * @param {Object} config
23488  */
23489 Roo.dd.StatusProxy = function(config){
23490     Roo.apply(this, config);
23491     this.id = this.id || Roo.id();
23492     this.el = new Roo.Layer({
23493         dh: {
23494             id: this.id, tag: "div", cls: "x-dd-drag-proxy "+this.dropNotAllowed, children: [
23495                 {tag: "div", cls: "x-dd-drop-icon"},
23496                 {tag: "div", cls: "x-dd-drag-ghost"}
23497             ]
23498         }, 
23499         shadow: !config || config.shadow !== false
23500     });
23501     this.ghost = Roo.get(this.el.dom.childNodes[1]);
23502     this.dropStatus = this.dropNotAllowed;
23503 };
23504
23505 Roo.dd.StatusProxy.prototype = {
23506     /**
23507      * @cfg {String} dropAllowed
23508      * The CSS class to apply to the status element when drop is allowed (defaults to "x-dd-drop-ok").
23509      */
23510     dropAllowed : "x-dd-drop-ok",
23511     /**
23512      * @cfg {String} dropNotAllowed
23513      * The CSS class to apply to the status element when drop is not allowed (defaults to "x-dd-drop-nodrop").
23514      */
23515     dropNotAllowed : "x-dd-drop-nodrop",
23516
23517     /**
23518      * Updates the proxy's visual element to indicate the status of whether or not drop is allowed
23519      * over the current target element.
23520      * @param {String} cssClass The css class for the new drop status indicator image
23521      */
23522     setStatus : function(cssClass){
23523         cssClass = cssClass || this.dropNotAllowed;
23524         if(this.dropStatus != cssClass){
23525             this.el.replaceClass(this.dropStatus, cssClass);
23526             this.dropStatus = cssClass;
23527         }
23528     },
23529
23530     /**
23531      * Resets the status indicator to the default dropNotAllowed value
23532      * @param {Boolean} clearGhost True to also remove all content from the ghost, false to preserve it
23533      */
23534     reset : function(clearGhost){
23535         this.el.dom.className = "x-dd-drag-proxy " + this.dropNotAllowed;
23536         this.dropStatus = this.dropNotAllowed;
23537         if(clearGhost){
23538             this.ghost.update("");
23539         }
23540     },
23541
23542     /**
23543      * Updates the contents of the ghost element
23544      * @param {String} html The html that will replace the current innerHTML of the ghost element
23545      */
23546     update : function(html){
23547         if(typeof html == "string"){
23548             this.ghost.update(html);
23549         }else{
23550             this.ghost.update("");
23551             html.style.margin = "0";
23552             this.ghost.dom.appendChild(html);
23553         }
23554         // ensure float = none set?? cant remember why though.
23555         var el = this.ghost.dom.firstChild;
23556                 if(el){
23557                         Roo.fly(el).setStyle('float', 'none');
23558                 }
23559     },
23560     
23561     /**
23562      * Returns the underlying proxy {@link Roo.Layer}
23563      * @return {Roo.Layer} el
23564     */
23565     getEl : function(){
23566         return this.el;
23567     },
23568
23569     /**
23570      * Returns the ghost element
23571      * @return {Roo.Element} el
23572      */
23573     getGhost : function(){
23574         return this.ghost;
23575     },
23576
23577     /**
23578      * Hides the proxy
23579      * @param {Boolean} clear True to reset the status and clear the ghost contents, false to preserve them
23580      */
23581     hide : function(clear){
23582         this.el.hide();
23583         if(clear){
23584             this.reset(true);
23585         }
23586     },
23587
23588     /**
23589      * Stops the repair animation if it's currently running
23590      */
23591     stop : function(){
23592         if(this.anim && this.anim.isAnimated && this.anim.isAnimated()){
23593             this.anim.stop();
23594         }
23595     },
23596
23597     /**
23598      * Displays this proxy
23599      */
23600     show : function(){
23601         this.el.show();
23602     },
23603
23604     /**
23605      * Force the Layer to sync its shadow and shim positions to the element
23606      */
23607     sync : function(){
23608         this.el.sync();
23609     },
23610
23611     /**
23612      * Causes the proxy to return to its position of origin via an animation.  Should be called after an
23613      * invalid drop operation by the item being dragged.
23614      * @param {Array} xy The XY position of the element ([x, y])
23615      * @param {Function} callback The function to call after the repair is complete
23616      * @param {Object} scope The scope in which to execute the callback
23617      */
23618     repair : function(xy, callback, scope){
23619         this.callback = callback;
23620         this.scope = scope;
23621         if(xy && this.animRepair !== false){
23622             this.el.addClass("x-dd-drag-repair");
23623             this.el.hideUnders(true);
23624             this.anim = this.el.shift({
23625                 duration: this.repairDuration || .5,
23626                 easing: 'easeOut',
23627                 xy: xy,
23628                 stopFx: true,
23629                 callback: this.afterRepair,
23630                 scope: this
23631             });
23632         }else{
23633             this.afterRepair();
23634         }
23635     },
23636
23637     // private
23638     afterRepair : function(){
23639         this.hide(true);
23640         if(typeof this.callback == "function"){
23641             this.callback.call(this.scope || this);
23642         }
23643         this.callback = null;
23644         this.scope = null;
23645     }
23646 };/*
23647  * Based on:
23648  * Ext JS Library 1.1.1
23649  * Copyright(c) 2006-2007, Ext JS, LLC.
23650  *
23651  * Originally Released Under LGPL - original licence link has changed is not relivant.
23652  *
23653  * Fork - LGPL
23654  * <script type="text/javascript">
23655  */
23656
23657 /**
23658  * @class Roo.dd.DragSource
23659  * @extends Roo.dd.DDProxy
23660  * A simple class that provides the basic implementation needed to make any element draggable.
23661  * @constructor
23662  * @param {String/HTMLElement/Element} el The container element
23663  * @param {Object} config
23664  */
23665 Roo.dd.DragSource = function(el, config){
23666     this.el = Roo.get(el);
23667     this.dragData = {};
23668     
23669     Roo.apply(this, config);
23670     
23671     if(!this.proxy){
23672         this.proxy = new Roo.dd.StatusProxy();
23673     }
23674
23675     Roo.dd.DragSource.superclass.constructor.call(this, this.el.dom, this.ddGroup || this.group,
23676           {dragElId : this.proxy.id, resizeFrame: false, isTarget: false, scroll: this.scroll === true});
23677     
23678     this.dragging = false;
23679 };
23680
23681 Roo.extend(Roo.dd.DragSource, Roo.dd.DDProxy, {
23682     /**
23683      * @cfg {String} dropAllowed
23684      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
23685      */
23686     dropAllowed : "x-dd-drop-ok",
23687     /**
23688      * @cfg {String} dropNotAllowed
23689      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
23690      */
23691     dropNotAllowed : "x-dd-drop-nodrop",
23692
23693     /**
23694      * Returns the data object associated with this drag source
23695      * @return {Object} data An object containing arbitrary data
23696      */
23697     getDragData : function(e){
23698         return this.dragData;
23699     },
23700
23701     // private
23702     onDragEnter : function(e, id){
23703         var target = Roo.dd.DragDropMgr.getDDById(id);
23704         this.cachedTarget = target;
23705         if(this.beforeDragEnter(target, e, id) !== false){
23706             if(target.isNotifyTarget){
23707                 var status = target.notifyEnter(this, e, this.dragData);
23708                 this.proxy.setStatus(status);
23709             }else{
23710                 this.proxy.setStatus(this.dropAllowed);
23711             }
23712             
23713             if(this.afterDragEnter){
23714                 /**
23715                  * An empty function by default, but provided so that you can perform a custom action
23716                  * when the dragged item enters the drop target by providing an implementation.
23717                  * @param {Roo.dd.DragDrop} target The drop target
23718                  * @param {Event} e The event object
23719                  * @param {String} id The id of the dragged element
23720                  * @method afterDragEnter
23721                  */
23722                 this.afterDragEnter(target, e, id);
23723             }
23724         }
23725     },
23726
23727     /**
23728      * An empty function by default, but provided so that you can perform a custom action
23729      * before the dragged item enters the drop target and optionally cancel the onDragEnter.
23730      * @param {Roo.dd.DragDrop} target The drop target
23731      * @param {Event} e The event object
23732      * @param {String} id The id of the dragged element
23733      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
23734      */
23735     beforeDragEnter : function(target, e, id){
23736         return true;
23737     },
23738
23739     // private
23740     alignElWithMouse: function() {
23741         Roo.dd.DragSource.superclass.alignElWithMouse.apply(this, arguments);
23742         this.proxy.sync();
23743     },
23744
23745     // private
23746     onDragOver : function(e, id){
23747         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
23748         if(this.beforeDragOver(target, e, id) !== false){
23749             if(target.isNotifyTarget){
23750                 var status = target.notifyOver(this, e, this.dragData);
23751                 this.proxy.setStatus(status);
23752             }
23753
23754             if(this.afterDragOver){
23755                 /**
23756                  * An empty function by default, but provided so that you can perform a custom action
23757                  * while the dragged item is over the drop target by providing an implementation.
23758                  * @param {Roo.dd.DragDrop} target The drop target
23759                  * @param {Event} e The event object
23760                  * @param {String} id The id of the dragged element
23761                  * @method afterDragOver
23762                  */
23763                 this.afterDragOver(target, e, id);
23764             }
23765         }
23766     },
23767
23768     /**
23769      * An empty function by default, but provided so that you can perform a custom action
23770      * while the dragged item is over the drop target and optionally cancel the onDragOver.
23771      * @param {Roo.dd.DragDrop} target The drop target
23772      * @param {Event} e The event object
23773      * @param {String} id The id of the dragged element
23774      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
23775      */
23776     beforeDragOver : function(target, e, id){
23777         return true;
23778     },
23779
23780     // private
23781     onDragOut : function(e, id){
23782         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
23783         if(this.beforeDragOut(target, e, id) !== false){
23784             if(target.isNotifyTarget){
23785                 target.notifyOut(this, e, this.dragData);
23786             }
23787             this.proxy.reset();
23788             if(this.afterDragOut){
23789                 /**
23790                  * An empty function by default, but provided so that you can perform a custom action
23791                  * after the dragged item is dragged out of the target without dropping.
23792                  * @param {Roo.dd.DragDrop} target The drop target
23793                  * @param {Event} e The event object
23794                  * @param {String} id The id of the dragged element
23795                  * @method afterDragOut
23796                  */
23797                 this.afterDragOut(target, e, id);
23798             }
23799         }
23800         this.cachedTarget = null;
23801     },
23802
23803     /**
23804      * An empty function by default, but provided so that you can perform a custom action before the dragged
23805      * item is dragged out of the target without dropping, and optionally cancel the onDragOut.
23806      * @param {Roo.dd.DragDrop} target The drop target
23807      * @param {Event} e The event object
23808      * @param {String} id The id of the dragged element
23809      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
23810      */
23811     beforeDragOut : function(target, e, id){
23812         return true;
23813     },
23814     
23815     // private
23816     onDragDrop : function(e, id){
23817         var target = this.cachedTarget || Roo.dd.DragDropMgr.getDDById(id);
23818         if(this.beforeDragDrop(target, e, id) !== false){
23819             if(target.isNotifyTarget){
23820                 if(target.notifyDrop(this, e, this.dragData)){ // valid drop?
23821                     this.onValidDrop(target, e, id);
23822                 }else{
23823                     this.onInvalidDrop(target, e, id);
23824                 }
23825             }else{
23826                 this.onValidDrop(target, e, id);
23827             }
23828             
23829             if(this.afterDragDrop){
23830                 /**
23831                  * An empty function by default, but provided so that you can perform a custom action
23832                  * after a valid drag drop has occurred by providing an implementation.
23833                  * @param {Roo.dd.DragDrop} target The drop target
23834                  * @param {Event} e The event object
23835                  * @param {String} id The id of the dropped element
23836                  * @method afterDragDrop
23837                  */
23838                 this.afterDragDrop(target, e, id);
23839             }
23840         }
23841         delete this.cachedTarget;
23842     },
23843
23844     /**
23845      * An empty function by default, but provided so that you can perform a custom action before the dragged
23846      * item is dropped onto the target and optionally cancel the onDragDrop.
23847      * @param {Roo.dd.DragDrop} target The drop target
23848      * @param {Event} e The event object
23849      * @param {String} id The id of the dragged element
23850      * @return {Boolean} isValid True if the drag drop event is valid, else false to cancel
23851      */
23852     beforeDragDrop : function(target, e, id){
23853         return true;
23854     },
23855
23856     // private
23857     onValidDrop : function(target, e, id){
23858         this.hideProxy();
23859         if(this.afterValidDrop){
23860             /**
23861              * An empty function by default, but provided so that you can perform a custom action
23862              * after a valid drop has occurred by providing an implementation.
23863              * @param {Object} target The target DD 
23864              * @param {Event} e The event object
23865              * @param {String} id The id of the dropped element
23866              * @method afterInvalidDrop
23867              */
23868             this.afterValidDrop(target, e, id);
23869         }
23870     },
23871
23872     // private
23873     getRepairXY : function(e, data){
23874         return this.el.getXY();  
23875     },
23876
23877     // private
23878     onInvalidDrop : function(target, e, id){
23879         this.beforeInvalidDrop(target, e, id);
23880         if(this.cachedTarget){
23881             if(this.cachedTarget.isNotifyTarget){
23882                 this.cachedTarget.notifyOut(this, e, this.dragData);
23883             }
23884             this.cacheTarget = null;
23885         }
23886         this.proxy.repair(this.getRepairXY(e, this.dragData), this.afterRepair, this);
23887
23888         if(this.afterInvalidDrop){
23889             /**
23890              * An empty function by default, but provided so that you can perform a custom action
23891              * after an invalid drop has occurred by providing an implementation.
23892              * @param {Event} e The event object
23893              * @param {String} id The id of the dropped element
23894              * @method afterInvalidDrop
23895              */
23896             this.afterInvalidDrop(e, id);
23897         }
23898     },
23899
23900     // private
23901     afterRepair : function(){
23902         if(Roo.enableFx){
23903             this.el.highlight(this.hlColor || "c3daf9");
23904         }
23905         this.dragging = false;
23906     },
23907
23908     /**
23909      * An empty function by default, but provided so that you can perform a custom action after an invalid
23910      * drop has occurred.
23911      * @param {Roo.dd.DragDrop} target The drop target
23912      * @param {Event} e The event object
23913      * @param {String} id The id of the dragged element
23914      * @return {Boolean} isValid True if the invalid drop should proceed, else false to cancel
23915      */
23916     beforeInvalidDrop : function(target, e, id){
23917         return true;
23918     },
23919
23920     // private
23921     handleMouseDown : function(e){
23922         if(this.dragging) {
23923             return;
23924         }
23925         var data = this.getDragData(e);
23926         if(data && this.onBeforeDrag(data, e) !== false){
23927             this.dragData = data;
23928             this.proxy.stop();
23929             Roo.dd.DragSource.superclass.handleMouseDown.apply(this, arguments);
23930         } 
23931     },
23932
23933     /**
23934      * An empty function by default, but provided so that you can perform a custom action before the initial
23935      * drag event begins and optionally cancel it.
23936      * @param {Object} data An object containing arbitrary data to be shared with drop targets
23937      * @param {Event} e The event object
23938      * @return {Boolean} isValid True if the drag event is valid, else false to cancel
23939      */
23940     onBeforeDrag : function(data, e){
23941         return true;
23942     },
23943
23944     /**
23945      * An empty function by default, but provided so that you can perform a custom action once the initial
23946      * drag event has begun.  The drag cannot be canceled from this function.
23947      * @param {Number} x The x position of the click on the dragged object
23948      * @param {Number} y The y position of the click on the dragged object
23949      */
23950     onStartDrag : Roo.emptyFn,
23951
23952     // private - YUI override
23953     startDrag : function(x, y){
23954         this.proxy.reset();
23955         this.dragging = true;
23956         this.proxy.update("");
23957         this.onInitDrag(x, y);
23958         this.proxy.show();
23959     },
23960
23961     // private
23962     onInitDrag : function(x, y){
23963         var clone = this.el.dom.cloneNode(true);
23964         clone.id = Roo.id(); // prevent duplicate ids
23965         this.proxy.update(clone);
23966         this.onStartDrag(x, y);
23967         return true;
23968     },
23969
23970     /**
23971      * Returns the drag source's underlying {@link Roo.dd.StatusProxy}
23972      * @return {Roo.dd.StatusProxy} proxy The StatusProxy
23973      */
23974     getProxy : function(){
23975         return this.proxy;  
23976     },
23977
23978     /**
23979      * Hides the drag source's {@link Roo.dd.StatusProxy}
23980      */
23981     hideProxy : function(){
23982         this.proxy.hide();  
23983         this.proxy.reset(true);
23984         this.dragging = false;
23985     },
23986
23987     // private
23988     triggerCacheRefresh : function(){
23989         Roo.dd.DDM.refreshCache(this.groups);
23990     },
23991
23992     // private - override to prevent hiding
23993     b4EndDrag: function(e) {
23994     },
23995
23996     // private - override to prevent moving
23997     endDrag : function(e){
23998         this.onEndDrag(this.dragData, e);
23999     },
24000
24001     // private
24002     onEndDrag : function(data, e){
24003     },
24004     
24005     // private - pin to cursor
24006     autoOffset : function(x, y) {
24007         this.setDelta(-12, -20);
24008     }    
24009 });/*
24010  * Based on:
24011  * Ext JS Library 1.1.1
24012  * Copyright(c) 2006-2007, Ext JS, LLC.
24013  *
24014  * Originally Released Under LGPL - original licence link has changed is not relivant.
24015  *
24016  * Fork - LGPL
24017  * <script type="text/javascript">
24018  */
24019
24020
24021 /**
24022  * @class Roo.dd.DropTarget
24023  * @extends Roo.dd.DDTarget
24024  * A simple class that provides the basic implementation needed to make any element a drop target that can have
24025  * draggable items dropped onto it.  The drop has no effect until an implementation of notifyDrop is provided.
24026  * @constructor
24027  * @param {String/HTMLElement/Element} el The container element
24028  * @param {Object} config
24029  */
24030 Roo.dd.DropTarget = function(el, config){
24031     this.el = Roo.get(el);
24032     
24033     var listeners = false; ;
24034     if (config && config.listeners) {
24035         listeners= config.listeners;
24036         delete config.listeners;
24037     }
24038     Roo.apply(this, config);
24039     
24040     if(this.containerScroll){
24041         Roo.dd.ScrollManager.register(this.el);
24042     }
24043     this.addEvents( {
24044          /**
24045          * @scope Roo.dd.DropTarget
24046          */
24047          
24048          /**
24049          * @event enter
24050          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source is now over the
24051          * target.  This default implementation adds the CSS class specified by overClass (if any) to the drop element
24052          * and returns the dropAllowed config value.  This method should be overridden if drop validation is required.
24053          * 
24054          * IMPORTANT : it should set  this.valid to true|false
24055          * 
24056          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24057          * @param {Event} e The event
24058          * @param {Object} data An object containing arbitrary data supplied by the drag source
24059          */
24060         "enter" : true,
24061         
24062          /**
24063          * @event over
24064          * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the target.
24065          * This method will be called on every mouse movement while the drag source is over the drop target.
24066          * This default implementation simply returns the dropAllowed config value.
24067          * 
24068          * IMPORTANT : it should set  this.valid to true|false
24069          * 
24070          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24071          * @param {Event} e The event
24072          * @param {Object} data An object containing arbitrary data supplied by the drag source
24073          
24074          */
24075         "over" : true,
24076         /**
24077          * @event out
24078          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the source has been dragged
24079          * out of the target without dropping.  This default implementation simply removes the CSS class specified by
24080          * overClass (if any) from the drop element.
24081          * 
24082          * 
24083          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24084          * @param {Event} e The event
24085          * @param {Object} data An object containing arbitrary data supplied by the drag source
24086          */
24087          "out" : true,
24088          
24089         /**
24090          * @event drop
24091          * The function a {@link Roo.dd.DragSource} calls once to notify this drop target that the dragged item has
24092          * been dropped on it.  This method has no default implementation and returns false, so you must provide an
24093          * implementation that does something to process the drop event and returns true so that the drag source's
24094          * repair action does not run.
24095          * 
24096          * IMPORTANT : it should set this.success
24097          * 
24098          * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24099          * @param {Event} e The event
24100          * @param {Object} data An object containing arbitrary data supplied by the drag source
24101         */
24102          "drop" : true
24103     });
24104             
24105      
24106     Roo.dd.DropTarget.superclass.constructor.call(  this, 
24107         this.el.dom, 
24108         this.ddGroup || this.group,
24109         {
24110             isTarget: true,
24111             listeners : listeners || {} 
24112            
24113         
24114         }
24115     );
24116
24117 };
24118
24119 Roo.extend(Roo.dd.DropTarget, Roo.dd.DDTarget, {
24120     /**
24121      * @cfg {String} overClass
24122      * The CSS class applied to the drop target element while the drag source is over it (defaults to "").
24123      */
24124      /**
24125      * @cfg {String} ddGroup
24126      * The drag drop group to handle drop events for
24127      */
24128      
24129     /**
24130      * @cfg {String} dropAllowed
24131      * The CSS class returned to the drag source when drop is allowed (defaults to "x-dd-drop-ok").
24132      */
24133     dropAllowed : "x-dd-drop-ok",
24134     /**
24135      * @cfg {String} dropNotAllowed
24136      * The CSS class returned to the drag source when drop is not allowed (defaults to "x-dd-drop-nodrop").
24137      */
24138     dropNotAllowed : "x-dd-drop-nodrop",
24139     /**
24140      * @cfg {boolean} success
24141      * set this after drop listener.. 
24142      */
24143     success : false,
24144     /**
24145      * @cfg {boolean|String} valid true/false or string (ok-add/ok-sub/ok/nodrop)
24146      * if the drop point is valid for over/enter..
24147      */
24148     valid : false,
24149     // private
24150     isTarget : true,
24151
24152     // private
24153     isNotifyTarget : true,
24154     
24155     /**
24156      * @hide
24157      */
24158     notifyEnter : function(dd, e, data)
24159     {
24160         this.valid = true;
24161         this.fireEvent('enter', dd, e, data);
24162         if(this.overClass){
24163             this.el.addClass(this.overClass);
24164         }
24165         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
24166             this.valid ? this.dropAllowed : this.dropNotAllowed
24167         );
24168     },
24169
24170     /**
24171      * @hide
24172      */
24173     notifyOver : function(dd, e, data)
24174     {
24175         this.valid = true;
24176         this.fireEvent('over', dd, e, data);
24177         return typeof(this.valid) == 'string' ? 'x-dd-drop-' + this.valid : (
24178             this.valid ? this.dropAllowed : this.dropNotAllowed
24179         );
24180     },
24181
24182     /**
24183      * @hide
24184      */
24185     notifyOut : function(dd, e, data)
24186     {
24187         this.fireEvent('out', dd, e, data);
24188         if(this.overClass){
24189             this.el.removeClass(this.overClass);
24190         }
24191     },
24192
24193     /**
24194      * @hide
24195      */
24196     notifyDrop : function(dd, e, data)
24197     {
24198         this.success = false;
24199         this.fireEvent('drop', dd, e, data);
24200         return this.success;
24201     }
24202 });/*
24203  * Based on:
24204  * Ext JS Library 1.1.1
24205  * Copyright(c) 2006-2007, Ext JS, LLC.
24206  *
24207  * Originally Released Under LGPL - original licence link has changed is not relivant.
24208  *
24209  * Fork - LGPL
24210  * <script type="text/javascript">
24211  */
24212
24213
24214 /**
24215  * @class Roo.dd.DragZone
24216  * @extends Roo.dd.DragSource
24217  * This class provides a container DD instance that proxies for multiple child node sources.<br />
24218  * By default, this class requires that draggable child nodes are registered with {@link Roo.dd.Registry}.
24219  * @constructor
24220  * @param {String/HTMLElement/Element} el The container element
24221  * @param {Object} config
24222  */
24223 Roo.dd.DragZone = function(el, config){
24224     Roo.dd.DragZone.superclass.constructor.call(this, el, config);
24225     if(this.containerScroll){
24226         Roo.dd.ScrollManager.register(this.el);
24227     }
24228 };
24229
24230 Roo.extend(Roo.dd.DragZone, Roo.dd.DragSource, {
24231     /**
24232      * @cfg {Boolean} containerScroll True to register this container with the Scrollmanager
24233      * for auto scrolling during drag operations.
24234      */
24235     /**
24236      * @cfg {String} hlColor The color to use when visually highlighting the drag source in the afterRepair
24237      * method after a failed drop (defaults to "c3daf9" - light blue)
24238      */
24239
24240     /**
24241      * Called when a mousedown occurs in this container. Looks in {@link Roo.dd.Registry}
24242      * for a valid target to drag based on the mouse down. Override this method
24243      * to provide your own lookup logic (e.g. finding a child by class name). Make sure your returned
24244      * object has a "ddel" attribute (with an HTML Element) for other functions to work.
24245      * @param {EventObject} e The mouse down event
24246      * @return {Object} The dragData
24247      */
24248     getDragData : function(e){
24249         return Roo.dd.Registry.getHandleFromEvent(e);
24250     },
24251     
24252     /**
24253      * Called once drag threshold has been reached to initialize the proxy element. By default, it clones the
24254      * this.dragData.ddel
24255      * @param {Number} x The x position of the click on the dragged object
24256      * @param {Number} y The y position of the click on the dragged object
24257      * @return {Boolean} true to continue the drag, false to cancel
24258      */
24259     onInitDrag : function(x, y){
24260         this.proxy.update(this.dragData.ddel.cloneNode(true));
24261         this.onStartDrag(x, y);
24262         return true;
24263     },
24264     
24265     /**
24266      * Called after a repair of an invalid drop. By default, highlights this.dragData.ddel 
24267      */
24268     afterRepair : function(){
24269         if(Roo.enableFx){
24270             Roo.Element.fly(this.dragData.ddel).highlight(this.hlColor || "c3daf9");
24271         }
24272         this.dragging = false;
24273     },
24274
24275     /**
24276      * Called before a repair of an invalid drop to get the XY to animate to. By default returns
24277      * the XY of this.dragData.ddel
24278      * @param {EventObject} e The mouse up event
24279      * @return {Array} The xy location (e.g. [100, 200])
24280      */
24281     getRepairXY : function(e){
24282         return Roo.Element.fly(this.dragData.ddel).getXY();  
24283     }
24284 });/*
24285  * Based on:
24286  * Ext JS Library 1.1.1
24287  * Copyright(c) 2006-2007, Ext JS, LLC.
24288  *
24289  * Originally Released Under LGPL - original licence link has changed is not relivant.
24290  *
24291  * Fork - LGPL
24292  * <script type="text/javascript">
24293  */
24294 /**
24295  * @class Roo.dd.DropZone
24296  * @extends Roo.dd.DropTarget
24297  * This class provides a container DD instance that proxies for multiple child node targets.<br />
24298  * By default, this class requires that child nodes accepting drop are registered with {@link Roo.dd.Registry}.
24299  * @constructor
24300  * @param {String/HTMLElement/Element} el The container element
24301  * @param {Object} config
24302  */
24303 Roo.dd.DropZone = function(el, config){
24304     Roo.dd.DropZone.superclass.constructor.call(this, el, config);
24305 };
24306
24307 Roo.extend(Roo.dd.DropZone, Roo.dd.DropTarget, {
24308     /**
24309      * Returns a custom data object associated with the DOM node that is the target of the event.  By default
24310      * this looks up the event target in the {@link Roo.dd.Registry}, although you can override this method to
24311      * provide your own custom lookup.
24312      * @param {Event} e The event
24313      * @return {Object} data The custom data
24314      */
24315     getTargetFromEvent : function(e){
24316         return Roo.dd.Registry.getTargetFromEvent(e);
24317     },
24318
24319     /**
24320      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has entered a drop node
24321      * that it has registered.  This method has no default implementation and should be overridden to provide
24322      * node-specific processing if necessary.
24323      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from 
24324      * {@link #getTargetFromEvent} for this node)
24325      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24326      * @param {Event} e The event
24327      * @param {Object} data An object containing arbitrary data supplied by the drag source
24328      */
24329     onNodeEnter : function(n, dd, e, data){
24330         
24331     },
24332
24333     /**
24334      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is over a drop node
24335      * that it has registered.  The default implementation returns this.dropNotAllowed, so it should be
24336      * overridden to provide the proper feedback.
24337      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
24338      * {@link #getTargetFromEvent} for this node)
24339      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24340      * @param {Event} e The event
24341      * @param {Object} data An object containing arbitrary data supplied by the drag source
24342      * @return {String} status The CSS class that communicates the drop status back to the source so that the
24343      * underlying {@link Roo.dd.StatusProxy} can be updated
24344      */
24345     onNodeOver : function(n, dd, e, data){
24346         return this.dropAllowed;
24347     },
24348
24349     /**
24350      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dragged out of
24351      * the drop node without dropping.  This method has no default implementation and should be overridden to provide
24352      * node-specific processing if necessary.
24353      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
24354      * {@link #getTargetFromEvent} for this node)
24355      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24356      * @param {Event} e The event
24357      * @param {Object} data An object containing arbitrary data supplied by the drag source
24358      */
24359     onNodeOut : function(n, dd, e, data){
24360         
24361     },
24362
24363     /**
24364      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped onto
24365      * the drop node.  The default implementation returns false, so it should be overridden to provide the
24366      * appropriate processing of the drop event and return true so that the drag source's repair action does not run.
24367      * @param {Object} nodeData The custom data associated with the drop node (this is the same value returned from
24368      * {@link #getTargetFromEvent} for this node)
24369      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24370      * @param {Event} e The event
24371      * @param {Object} data An object containing arbitrary data supplied by the drag source
24372      * @return {Boolean} True if the drop was valid, else false
24373      */
24374     onNodeDrop : function(n, dd, e, data){
24375         return false;
24376     },
24377
24378     /**
24379      * Called internally while the DropZone determines that a {@link Roo.dd.DragSource} is being dragged over it,
24380      * but not over any of its registered drop nodes.  The default implementation returns this.dropNotAllowed, so
24381      * it should be overridden to provide the proper feedback if necessary.
24382      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24383      * @param {Event} e The event
24384      * @param {Object} data An object containing arbitrary data supplied by the drag source
24385      * @return {String} status The CSS class that communicates the drop status back to the source so that the
24386      * underlying {@link Roo.dd.StatusProxy} can be updated
24387      */
24388     onContainerOver : function(dd, e, data){
24389         return this.dropNotAllowed;
24390     },
24391
24392     /**
24393      * Called internally when the DropZone determines that a {@link Roo.dd.DragSource} has been dropped on it,
24394      * but not on any of its registered drop nodes.  The default implementation returns false, so it should be
24395      * overridden to provide the appropriate processing of the drop event if you need the drop zone itself to
24396      * be able to accept drops.  It should return true when valid so that the drag source's repair action does not run.
24397      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24398      * @param {Event} e The event
24399      * @param {Object} data An object containing arbitrary data supplied by the drag source
24400      * @return {Boolean} True if the drop was valid, else false
24401      */
24402     onContainerDrop : function(dd, e, data){
24403         return false;
24404     },
24405
24406     /**
24407      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source is now over
24408      * the zone.  The default implementation returns this.dropNotAllowed and expects that only registered drop
24409      * nodes can process drag drop operations, so if you need the drop zone itself to be able to process drops
24410      * you should override this method and provide a custom implementation.
24411      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24412      * @param {Event} e The event
24413      * @param {Object} data An object containing arbitrary data supplied by the drag source
24414      * @return {String} status The CSS class that communicates the drop status back to the source so that the
24415      * underlying {@link Roo.dd.StatusProxy} can be updated
24416      */
24417     notifyEnter : function(dd, e, data){
24418         return this.dropNotAllowed;
24419     },
24420
24421     /**
24422      * The function a {@link Roo.dd.DragSource} calls continuously while it is being dragged over the drop zone.
24423      * This method will be called on every mouse movement while the drag source is over the drop zone.
24424      * It will call {@link #onNodeOver} while the drag source is over a registered node, and will also automatically
24425      * delegate to the appropriate node-specific methods as necessary when the drag source enters and exits
24426      * registered nodes ({@link #onNodeEnter}, {@link #onNodeOut}). If the drag source is not currently over a
24427      * registered node, it will call {@link #onContainerOver}.
24428      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24429      * @param {Event} e The event
24430      * @param {Object} data An object containing arbitrary data supplied by the drag source
24431      * @return {String} status The CSS class that communicates the drop status back to the source so that the
24432      * underlying {@link Roo.dd.StatusProxy} can be updated
24433      */
24434     notifyOver : function(dd, e, data){
24435         var n = this.getTargetFromEvent(e);
24436         if(!n){ // not over valid drop target
24437             if(this.lastOverNode){
24438                 this.onNodeOut(this.lastOverNode, dd, e, data);
24439                 this.lastOverNode = null;
24440             }
24441             return this.onContainerOver(dd, e, data);
24442         }
24443         if(this.lastOverNode != n){
24444             if(this.lastOverNode){
24445                 this.onNodeOut(this.lastOverNode, dd, e, data);
24446             }
24447             this.onNodeEnter(n, dd, e, data);
24448             this.lastOverNode = n;
24449         }
24450         return this.onNodeOver(n, dd, e, data);
24451     },
24452
24453     /**
24454      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the source has been dragged
24455      * out of the zone without dropping.  If the drag source is currently over a registered node, the notification
24456      * will be delegated to {@link #onNodeOut} for node-specific handling, otherwise it will be ignored.
24457      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop target
24458      * @param {Event} e The event
24459      * @param {Object} data An object containing arbitrary data supplied by the drag zone
24460      */
24461     notifyOut : function(dd, e, data){
24462         if(this.lastOverNode){
24463             this.onNodeOut(this.lastOverNode, dd, e, data);
24464             this.lastOverNode = null;
24465         }
24466     },
24467
24468     /**
24469      * The function a {@link Roo.dd.DragSource} calls once to notify this drop zone that the dragged item has
24470      * been dropped on it.  The drag zone will look up the target node based on the event passed in, and if there
24471      * is a node registered for that event, it will delegate to {@link #onNodeDrop} for node-specific handling,
24472      * otherwise it will call {@link #onContainerDrop}.
24473      * @param {Roo.dd.DragSource} source The drag source that was dragged over this drop zone
24474      * @param {Event} e The event
24475      * @param {Object} data An object containing arbitrary data supplied by the drag source
24476      * @return {Boolean} True if the drop was valid, else false
24477      */
24478     notifyDrop : function(dd, e, data){
24479         if(this.lastOverNode){
24480             this.onNodeOut(this.lastOverNode, dd, e, data);
24481             this.lastOverNode = null;
24482         }
24483         var n = this.getTargetFromEvent(e);
24484         return n ?
24485             this.onNodeDrop(n, dd, e, data) :
24486             this.onContainerDrop(dd, e, data);
24487     },
24488
24489     // private
24490     triggerCacheRefresh : function(){
24491         Roo.dd.DDM.refreshCache(this.groups);
24492     }  
24493 });/*
24494  * Based on:
24495  * Ext JS Library 1.1.1
24496  * Copyright(c) 2006-2007, Ext JS, LLC.
24497  *
24498  * Originally Released Under LGPL - original licence link has changed is not relivant.
24499  *
24500  * Fork - LGPL
24501  * <script type="text/javascript">
24502  */
24503
24504
24505 /**
24506  * @class Roo.data.SortTypes
24507  * @static
24508  * Defines the default sorting (casting?) comparison functions used when sorting data.
24509  */
24510 Roo.data.SortTypes = {
24511     /**
24512      * Default sort that does nothing
24513      * @param {Mixed} s The value being converted
24514      * @return {Mixed} The comparison value
24515      */
24516     none : function(s){
24517         return s;
24518     },
24519     
24520     /**
24521      * The regular expression used to strip tags
24522      * @type {RegExp}
24523      * @property
24524      */
24525     stripTagsRE : /<\/?[^>]+>/gi,
24526     
24527     /**
24528      * Strips all HTML tags to sort on text only
24529      * @param {Mixed} s The value being converted
24530      * @return {String} The comparison value
24531      */
24532     asText : function(s){
24533         return String(s).replace(this.stripTagsRE, "");
24534     },
24535     
24536     /**
24537      * Strips all HTML tags to sort on text only - Case insensitive
24538      * @param {Mixed} s The value being converted
24539      * @return {String} The comparison value
24540      */
24541     asUCText : function(s){
24542         return String(s).toUpperCase().replace(this.stripTagsRE, "");
24543     },
24544     
24545     /**
24546      * Case insensitive string
24547      * @param {Mixed} s The value being converted
24548      * @return {String} The comparison value
24549      */
24550     asUCString : function(s) {
24551         return String(s).toUpperCase();
24552     },
24553     
24554     /**
24555      * Date sorting
24556      * @param {Mixed} s The value being converted
24557      * @return {Number} The comparison value
24558      */
24559     asDate : function(s) {
24560         if(!s){
24561             return 0;
24562         }
24563         if(s instanceof Date){
24564             return s.getTime();
24565         }
24566         return Date.parse(String(s));
24567     },
24568     
24569     /**
24570      * Float sorting
24571      * @param {Mixed} s The value being converted
24572      * @return {Float} The comparison value
24573      */
24574     asFloat : function(s) {
24575         var val = parseFloat(String(s).replace(/,/g, ""));
24576         if(isNaN(val)) {
24577             val = 0;
24578         }
24579         return val;
24580     },
24581     
24582     /**
24583      * Integer sorting
24584      * @param {Mixed} s The value being converted
24585      * @return {Number} The comparison value
24586      */
24587     asInt : function(s) {
24588         var val = parseInt(String(s).replace(/,/g, ""));
24589         if(isNaN(val)) {
24590             val = 0;
24591         }
24592         return val;
24593     }
24594 };/*
24595  * Based on:
24596  * Ext JS Library 1.1.1
24597  * Copyright(c) 2006-2007, Ext JS, LLC.
24598  *
24599  * Originally Released Under LGPL - original licence link has changed is not relivant.
24600  *
24601  * Fork - LGPL
24602  * <script type="text/javascript">
24603  */
24604
24605 /**
24606 * @class Roo.data.Record
24607  * Instances of this class encapsulate both record <em>definition</em> information, and record
24608  * <em>value</em> information for use in {@link Roo.data.Store} objects, or any code which needs
24609  * to access Records cached in an {@link Roo.data.Store} object.<br>
24610  * <p>
24611  * Constructors for this class are generated by passing an Array of field definition objects to {@link #create}.
24612  * Instances are usually only created by {@link Roo.data.Reader} implementations when processing unformatted data
24613  * objects.<br>
24614  * <p>
24615  * Record objects generated by this constructor inherit all the methods of Roo.data.Record listed below.
24616  * @constructor
24617  * This constructor should not be used to create Record objects. Instead, use the constructor generated by
24618  * {@link #create}. The parameters are the same.
24619  * @param {Array} data An associative Array of data values keyed by the field name.
24620  * @param {Object} id (Optional) The id of the record. This id should be unique, and is used by the
24621  * {@link Roo.data.Store} object which owns the Record to index its collection of Records. If
24622  * not specified an integer id is generated.
24623  */
24624 Roo.data.Record = function(data, id){
24625     this.id = (id || id === 0) ? id : ++Roo.data.Record.AUTO_ID;
24626     this.data = data;
24627 };
24628
24629 /**
24630  * Generate a constructor for a specific record layout.
24631  * @param {Array} o An Array of field definition objects which specify field names, and optionally,
24632  * data types, and a mapping for an {@link Roo.data.Reader} to extract the field's value from a data object.
24633  * Each field definition object may contain the following properties: <ul>
24634  * <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,
24635  * for example the <em>dataIndex</em> property in column definition objects passed to {@link Roo.grid.ColumnModel}</p></li>
24636  * <li><b>mapping</b> : String<p style="margin-left:1em">(Optional) A path specification for use by the {@link Roo.data.Reader} implementation
24637  * that is creating the Record to access the data value from the data object. If an {@link Roo.data.JsonReader}
24638  * is being used, then this is a string containing the javascript expression to reference the data relative to 
24639  * the record item's root. If an {@link Roo.data.XmlReader} is being used, this is an {@link Roo.DomQuery} path
24640  * to the data item relative to the record element. If the mapping expression is the same as the field name,
24641  * this may be omitted.</p></li>
24642  * <li><b>type</b> : String<p style="margin-left:1em">(Optional) The data type for conversion to displayable value. Possible values are
24643  * <ul><li>auto (Default, implies no conversion)</li>
24644  * <li>string</li>
24645  * <li>int</li>
24646  * <li>float</li>
24647  * <li>boolean</li>
24648  * <li>date</li></ul></p></li>
24649  * <li><b>sortType</b> : Mixed<p style="margin-left:1em">(Optional) A member of {@link Roo.data.SortTypes}.</p></li>
24650  * <li><b>sortDir</b> : String<p style="margin-left:1em">(Optional) Initial direction to sort. "ASC" or "DESC"</p></li>
24651  * <li><b>convert</b> : Function<p style="margin-left:1em">(Optional) A function which converts the value provided
24652  * by the Reader into an object that will be stored in the Record. It is passed the
24653  * following parameters:<ul>
24654  * <li><b>v</b> : Mixed<p style="margin-left:1em">The data value as read by the Reader.</p></li>
24655  * </ul></p></li>
24656  * <li><b>dateFormat</b> : String<p style="margin-left:1em">(Optional) A format String for the Date.parseDate function.</p></li>
24657  * </ul>
24658  * <br>usage:<br><pre><code>
24659 var TopicRecord = Roo.data.Record.create(
24660     {name: 'title', mapping: 'topic_title'},
24661     {name: 'author', mapping: 'username'},
24662     {name: 'totalPosts', mapping: 'topic_replies', type: 'int'},
24663     {name: 'lastPost', mapping: 'post_time', type: 'date'},
24664     {name: 'lastPoster', mapping: 'user2'},
24665     {name: 'excerpt', mapping: 'post_text'}
24666 );
24667
24668 var myNewRecord = new TopicRecord({
24669     title: 'Do my job please',
24670     author: 'noobie',
24671     totalPosts: 1,
24672     lastPost: new Date(),
24673     lastPoster: 'Animal',
24674     excerpt: 'No way dude!'
24675 });
24676 myStore.add(myNewRecord);
24677 </code></pre>
24678  * @method create
24679  * @static
24680  */
24681 Roo.data.Record.create = function(o){
24682     var f = function(){
24683         f.superclass.constructor.apply(this, arguments);
24684     };
24685     Roo.extend(f, Roo.data.Record);
24686     var p = f.prototype;
24687     p.fields = new Roo.util.MixedCollection(false, function(field){
24688         return field.name;
24689     });
24690     for(var i = 0, len = o.length; i < len; i++){
24691         p.fields.add(new Roo.data.Field(o[i]));
24692     }
24693     f.getField = function(name){
24694         return p.fields.get(name);  
24695     };
24696     return f;
24697 };
24698
24699 Roo.data.Record.AUTO_ID = 1000;
24700 Roo.data.Record.EDIT = 'edit';
24701 Roo.data.Record.REJECT = 'reject';
24702 Roo.data.Record.COMMIT = 'commit';
24703
24704 Roo.data.Record.prototype = {
24705     /**
24706      * Readonly flag - true if this record has been modified.
24707      * @type Boolean
24708      */
24709     dirty : false,
24710     editing : false,
24711     error: null,
24712     modified: null,
24713
24714     // private
24715     join : function(store){
24716         this.store = store;
24717     },
24718
24719     /**
24720      * Set the named field to the specified value.
24721      * @param {String} name The name of the field to set.
24722      * @param {Object} value The value to set the field to.
24723      */
24724     set : function(name, value){
24725         if(this.data[name] == value){
24726             return;
24727         }
24728         this.dirty = true;
24729         if(!this.modified){
24730             this.modified = {};
24731         }
24732         if(typeof this.modified[name] == 'undefined'){
24733             this.modified[name] = this.data[name];
24734         }
24735         this.data[name] = value;
24736         if(!this.editing && this.store){
24737             this.store.afterEdit(this);
24738         }       
24739     },
24740
24741     /**
24742      * Get the value of the named field.
24743      * @param {String} name The name of the field to get the value of.
24744      * @return {Object} The value of the field.
24745      */
24746     get : function(name){
24747         return this.data[name]; 
24748     },
24749
24750     // private
24751     beginEdit : function(){
24752         this.editing = true;
24753         this.modified = {}; 
24754     },
24755
24756     // private
24757     cancelEdit : function(){
24758         this.editing = false;
24759         delete this.modified;
24760     },
24761
24762     // private
24763     endEdit : function(){
24764         this.editing = false;
24765         if(this.dirty && this.store){
24766             this.store.afterEdit(this);
24767         }
24768     },
24769
24770     /**
24771      * Usually called by the {@link Roo.data.Store} which owns the Record.
24772      * Rejects all changes made to the Record since either creation, or the last commit operation.
24773      * Modified fields are reverted to their original values.
24774      * <p>
24775      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
24776      * of reject operations.
24777      */
24778     reject : function(){
24779         var m = this.modified;
24780         for(var n in m){
24781             if(typeof m[n] != "function"){
24782                 this.data[n] = m[n];
24783             }
24784         }
24785         this.dirty = false;
24786         delete this.modified;
24787         this.editing = false;
24788         if(this.store){
24789             this.store.afterReject(this);
24790         }
24791     },
24792
24793     /**
24794      * Usually called by the {@link Roo.data.Store} which owns the Record.
24795      * Commits all changes made to the Record since either creation, or the last commit operation.
24796      * <p>
24797      * Developers should subscribe to the {@link Roo.data.Store#update} event to have their code notified
24798      * of commit operations.
24799      */
24800     commit : function(){
24801         this.dirty = false;
24802         delete this.modified;
24803         this.editing = false;
24804         if(this.store){
24805             this.store.afterCommit(this);
24806         }
24807     },
24808
24809     // private
24810     hasError : function(){
24811         return this.error != null;
24812     },
24813
24814     // private
24815     clearError : function(){
24816         this.error = null;
24817     },
24818
24819     /**
24820      * Creates a copy of this record.
24821      * @param {String} id (optional) A new record id if you don't want to use this record's id
24822      * @return {Record}
24823      */
24824     copy : function(newId) {
24825         return new this.constructor(Roo.apply({}, this.data), newId || this.id);
24826     }
24827 };/*
24828  * Based on:
24829  * Ext JS Library 1.1.1
24830  * Copyright(c) 2006-2007, Ext JS, LLC.
24831  *
24832  * Originally Released Under LGPL - original licence link has changed is not relivant.
24833  *
24834  * Fork - LGPL
24835  * <script type="text/javascript">
24836  */
24837
24838
24839
24840 /**
24841  * @class Roo.data.Store
24842  * @extends Roo.util.Observable
24843  * The Store class encapsulates a client side cache of {@link Roo.data.Record} objects which provide input data
24844  * for widgets such as the Roo.grid.Grid, or the Roo.form.ComboBox.<br>
24845  * <p>
24846  * 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
24847  * has no knowledge of the format of the data returned by the Proxy.<br>
24848  * <p>
24849  * A Store object uses its configured implementation of {@link Roo.data.DataReader} to create {@link Roo.data.Record}
24850  * instances from the data object. These records are cached and made available through accessor functions.
24851  * @constructor
24852  * Creates a new Store.
24853  * @param {Object} config A config object containing the objects needed for the Store to access data,
24854  * and read the data into Records.
24855  */
24856 Roo.data.Store = function(config){
24857     this.data = new Roo.util.MixedCollection(false);
24858     this.data.getKey = function(o){
24859         return o.id;
24860     };
24861     this.baseParams = {};
24862     // private
24863     this.paramNames = {
24864         "start" : "start",
24865         "limit" : "limit",
24866         "sort" : "sort",
24867         "dir" : "dir",
24868         "multisort" : "_multisort"
24869     };
24870
24871     if(config && config.data){
24872         this.inlineData = config.data;
24873         delete config.data;
24874     }
24875
24876     Roo.apply(this, config);
24877     
24878     if(this.reader){ // reader passed
24879         this.reader = Roo.factory(this.reader, Roo.data);
24880         this.reader.xmodule = this.xmodule || false;
24881         if(!this.recordType){
24882             this.recordType = this.reader.recordType;
24883         }
24884         if(this.reader.onMetaChange){
24885             this.reader.onMetaChange = this.onMetaChange.createDelegate(this);
24886         }
24887     }
24888
24889     if(this.recordType){
24890         this.fields = this.recordType.prototype.fields;
24891     }
24892     this.modified = [];
24893
24894     this.addEvents({
24895         /**
24896          * @event datachanged
24897          * Fires when the data cache has changed, and a widget which is using this Store
24898          * as a Record cache should refresh its view.
24899          * @param {Store} this
24900          */
24901         datachanged : true,
24902         /**
24903          * @event metachange
24904          * Fires when this store's reader provides new metadata (fields). This is currently only support for JsonReaders.
24905          * @param {Store} this
24906          * @param {Object} meta The JSON metadata
24907          */
24908         metachange : true,
24909         /**
24910          * @event add
24911          * Fires when Records have been added to the Store
24912          * @param {Store} this
24913          * @param {Roo.data.Record[]} records The array of Records added
24914          * @param {Number} index The index at which the record(s) were added
24915          */
24916         add : true,
24917         /**
24918          * @event remove
24919          * Fires when a Record has been removed from the Store
24920          * @param {Store} this
24921          * @param {Roo.data.Record} record The Record that was removed
24922          * @param {Number} index The index at which the record was removed
24923          */
24924         remove : true,
24925         /**
24926          * @event update
24927          * Fires when a Record has been updated
24928          * @param {Store} this
24929          * @param {Roo.data.Record} record The Record that was updated
24930          * @param {String} operation The update operation being performed.  Value may be one of:
24931          * <pre><code>
24932  Roo.data.Record.EDIT
24933  Roo.data.Record.REJECT
24934  Roo.data.Record.COMMIT
24935          * </code></pre>
24936          */
24937         update : true,
24938         /**
24939          * @event clear
24940          * Fires when the data cache has been cleared.
24941          * @param {Store} this
24942          */
24943         clear : true,
24944         /**
24945          * @event beforeload
24946          * Fires before a request is made for a new data object.  If the beforeload handler returns false
24947          * the load action will be canceled.
24948          * @param {Store} this
24949          * @param {Object} options The loading options that were specified (see {@link #load} for details)
24950          */
24951         beforeload : true,
24952         /**
24953          * @event beforeloadadd
24954          * Fires after a new set of Records has been loaded.
24955          * @param {Store} this
24956          * @param {Roo.data.Record[]} records The Records that were loaded
24957          * @param {Object} options The loading options that were specified (see {@link #load} for details)
24958          */
24959         beforeloadadd : true,
24960         /**
24961          * @event load
24962          * Fires after a new set of Records has been loaded, before they are added to the store.
24963          * @param {Store} this
24964          * @param {Roo.data.Record[]} records The Records that were loaded
24965          * @param {Object} options The loading options that were specified (see {@link #load} for details)
24966          * @params {Object} return from reader
24967          */
24968         load : true,
24969         /**
24970          * @event loadexception
24971          * Fires if an exception occurs in the Proxy during loading.
24972          * Called with the signature of the Proxy's "loadexception" event.
24973          * If you return Json { data: [] , success: false, .... } then this will be thrown with the following args
24974          * 
24975          * @param {Proxy} 
24976          * @param {Object} return from JsonData.reader() - success, totalRecords, records
24977          * @param {Object} load options 
24978          * @param {Object} jsonData from your request (normally this contains the Exception)
24979          */
24980         loadexception : true
24981     });
24982     
24983     if(this.proxy){
24984         this.proxy = Roo.factory(this.proxy, Roo.data);
24985         this.proxy.xmodule = this.xmodule || false;
24986         this.relayEvents(this.proxy,  ["loadexception"]);
24987     }
24988     this.sortToggle = {};
24989     this.sortOrder = []; // array of order of sorting - updated by grid if multisort is enabled.
24990
24991     Roo.data.Store.superclass.constructor.call(this);
24992
24993     if(this.inlineData){
24994         this.loadData(this.inlineData);
24995         delete this.inlineData;
24996     }
24997 };
24998
24999 Roo.extend(Roo.data.Store, Roo.util.Observable, {
25000      /**
25001     * @cfg {boolean} isLocal   flag if data is locally available (and can be always looked up
25002     * without a remote query - used by combo/forms at present.
25003     */
25004     
25005     /**
25006     * @cfg {Roo.data.DataProxy} proxy [required] The Proxy object which provides access to a data object.
25007     */
25008     /**
25009     * @cfg {Array} data Inline data to be loaded when the store is initialized.
25010     */
25011     /**
25012     * @cfg {Roo.data.DataReader} reader [required]  The Reader object which processes the data object and returns
25013     * an Array of Roo.data.record objects which are cached keyed by their <em>id</em> property.
25014     */
25015     /**
25016     * @cfg {Object} baseParams An object containing properties which are to be sent as parameters
25017     * on any HTTP request
25018     */
25019     /**
25020     * @cfg {Object} sortInfo A config object in the format: {field: "fieldName", direction: "ASC|DESC"}
25021     */
25022     /**
25023     * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns, remote only at present)
25024     */
25025     multiSort: false,
25026     /**
25027     * @cfg {boolean} remoteSort True if sorting is to be handled by requesting the Proxy to provide a refreshed
25028     * version of the data object in sorted order, as opposed to sorting the Record cache in place (defaults to false).
25029     */
25030     remoteSort : false,
25031
25032     /**
25033     * @cfg {boolean} pruneModifiedRecords True to clear all modified record information each time the store is
25034      * loaded or when a record is removed. (defaults to false).
25035     */
25036     pruneModifiedRecords : false,
25037
25038     // private
25039     lastOptions : null,
25040
25041     /**
25042      * Add Records to the Store and fires the add event.
25043      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
25044      */
25045     add : function(records){
25046         records = [].concat(records);
25047         for(var i = 0, len = records.length; i < len; i++){
25048             records[i].join(this);
25049         }
25050         var index = this.data.length;
25051         this.data.addAll(records);
25052         this.fireEvent("add", this, records, index);
25053     },
25054
25055     /**
25056      * Remove a Record from the Store and fires the remove event.
25057      * @param {Ext.data.Record} record The Roo.data.Record object to remove from the cache.
25058      */
25059     remove : function(record){
25060         var index = this.data.indexOf(record);
25061         this.data.removeAt(index);
25062  
25063         if(this.pruneModifiedRecords){
25064             this.modified.remove(record);
25065         }
25066         this.fireEvent("remove", this, record, index);
25067     },
25068
25069     /**
25070      * Remove all Records from the Store and fires the clear event.
25071      */
25072     removeAll : function(){
25073         this.data.clear();
25074         if(this.pruneModifiedRecords){
25075             this.modified = [];
25076         }
25077         this.fireEvent("clear", this);
25078     },
25079
25080     /**
25081      * Inserts Records to the Store at the given index and fires the add event.
25082      * @param {Number} index The start index at which to insert the passed Records.
25083      * @param {Roo.data.Record[]} records An Array of Roo.data.Record objects to add to the cache.
25084      */
25085     insert : function(index, records){
25086         records = [].concat(records);
25087         for(var i = 0, len = records.length; i < len; i++){
25088             this.data.insert(index, records[i]);
25089             records[i].join(this);
25090         }
25091         this.fireEvent("add", this, records, index);
25092     },
25093
25094     /**
25095      * Get the index within the cache of the passed Record.
25096      * @param {Roo.data.Record} record The Roo.data.Record object to to find.
25097      * @return {Number} The index of the passed Record. Returns -1 if not found.
25098      */
25099     indexOf : function(record){
25100         return this.data.indexOf(record);
25101     },
25102
25103     /**
25104      * Get the index within the cache of the Record with the passed id.
25105      * @param {String} id The id of the Record to find.
25106      * @return {Number} The index of the Record. Returns -1 if not found.
25107      */
25108     indexOfId : function(id){
25109         return this.data.indexOfKey(id);
25110     },
25111
25112     /**
25113      * Get the Record with the specified id.
25114      * @param {String} id The id of the Record to find.
25115      * @return {Roo.data.Record} The Record with the passed id. Returns undefined if not found.
25116      */
25117     getById : function(id){
25118         return this.data.key(id);
25119     },
25120
25121     /**
25122      * Get the Record at the specified index.
25123      * @param {Number} index The index of the Record to find.
25124      * @return {Roo.data.Record} The Record at the passed index. Returns undefined if not found.
25125      */
25126     getAt : function(index){
25127         return this.data.itemAt(index);
25128     },
25129
25130     /**
25131      * Returns a range of Records between specified indices.
25132      * @param {Number} startIndex (optional) The starting index (defaults to 0)
25133      * @param {Number} endIndex (optional) The ending index (defaults to the last Record in the Store)
25134      * @return {Roo.data.Record[]} An array of Records
25135      */
25136     getRange : function(start, end){
25137         return this.data.getRange(start, end);
25138     },
25139
25140     // private
25141     storeOptions : function(o){
25142         o = Roo.apply({}, o);
25143         delete o.callback;
25144         delete o.scope;
25145         this.lastOptions = o;
25146     },
25147
25148     /**
25149      * Loads the Record cache from the configured Proxy using the configured Reader.
25150      * <p>
25151      * If using remote paging, then the first load call must specify the <em>start</em>
25152      * and <em>limit</em> properties in the options.params property to establish the initial
25153      * position within the dataset, and the number of Records to cache on each read from the Proxy.
25154      * <p>
25155      * <strong>It is important to note that for remote data sources, loading is asynchronous,
25156      * and this call will return before the new data has been loaded. Perform any post-processing
25157      * in a callback function, or in a "load" event handler.</strong>
25158      * <p>
25159      * @param {Object} options An object containing properties which control loading options:<ul>
25160      * <li>params {Object} An object containing properties to pass as HTTP parameters to a remote data source.</li>
25161      * <li>params.data {Object} if you are using a MemoryProxy / JsonReader, use this as the data to load stuff..
25162      * <pre>
25163                 {
25164                     data : data,  // array of key=>value data like JsonReader
25165                     total : data.length,
25166                     success : true
25167                     
25168                 }
25169         </pre>
25170             }.</li>
25171      * <li>callback {Function} A function to be called after the Records have been loaded. The callback is
25172      * passed the following arguments:<ul>
25173      * <li>r : Roo.data.Record[]</li>
25174      * <li>options: Options object from the load call</li>
25175      * <li>success: Boolean success indicator</li></ul></li>
25176      * <li>scope {Object} Scope with which to call the callback (defaults to the Store object)</li>
25177      * <li>add {Boolean} indicator to append loaded records rather than replace the current cache.</li>
25178      * </ul>
25179      */
25180     load : function(options){
25181         options = options || {};
25182         if(this.fireEvent("beforeload", this, options) !== false){
25183             this.storeOptions(options);
25184             var p = Roo.apply(options.params || {}, this.baseParams);
25185             // if meta was not loaded from remote source.. try requesting it.
25186             if (!this.reader.metaFromRemote) {
25187                 p._requestMeta = 1;
25188             }
25189             if(this.sortInfo && this.remoteSort){
25190                 var pn = this.paramNames;
25191                 p[pn["sort"]] = this.sortInfo.field;
25192                 p[pn["dir"]] = this.sortInfo.direction;
25193             }
25194             if (this.multiSort) {
25195                 var pn = this.paramNames;
25196                 p[pn["multisort"]] = Roo.encode( { sort : this.sortToggle, order: this.sortOrder });
25197             }
25198             
25199             this.proxy.load(p, this.reader, this.loadRecords, this, options);
25200         }
25201     },
25202
25203     /**
25204      * Reloads the Record cache from the configured Proxy using the configured Reader and
25205      * the options from the last load operation performed.
25206      * @param {Object} options (optional) An object containing properties which may override the options
25207      * used in the last load operation. See {@link #load} for details (defaults to null, in which case
25208      * the most recently used options are reused).
25209      */
25210     reload : function(options){
25211         this.load(Roo.applyIf(options||{}, this.lastOptions));
25212     },
25213
25214     // private
25215     // Called as a callback by the Reader during a load operation.
25216     loadRecords : function(o, options, success){
25217          
25218         if(!o){
25219             if(success !== false){
25220                 this.fireEvent("load", this, [], options, o);
25221             }
25222             if(options.callback){
25223                 options.callback.call(options.scope || this, [], options, false);
25224             }
25225             return;
25226         }
25227         // if data returned failure - throw an exception.
25228         if (o.success === false) {
25229             // show a message if no listener is registered.
25230             if (!this.hasListener('loadexception') && typeof(o.raw.errorMsg) != 'undefined') {
25231                     Roo.MessageBox.alert("Error loading",o.raw.errorMsg);
25232             }
25233             // loadmask wil be hooked into this..
25234             this.fireEvent("loadexception", this, o, options, o.raw.errorMsg);
25235             return;
25236         }
25237         var r = o.records, t = o.totalRecords || r.length;
25238         
25239         this.fireEvent("beforeloadadd", this, r, options, o);
25240         
25241         if(!options || options.add !== true){
25242             if(this.pruneModifiedRecords){
25243                 this.modified = [];
25244             }
25245             for(var i = 0, len = r.length; i < len; i++){
25246                 r[i].join(this);
25247             }
25248             if(this.snapshot){
25249                 this.data = this.snapshot;
25250                 delete this.snapshot;
25251             }
25252             this.data.clear();
25253             this.data.addAll(r);
25254             this.totalLength = t;
25255             this.applySort();
25256             this.fireEvent("datachanged", this);
25257         }else{
25258             this.totalLength = Math.max(t, this.data.length+r.length);
25259             this.add(r);
25260         }
25261         
25262         if(this.parent && !Roo.isIOS && !this.useNativeIOS && this.parent.emptyTitle.length) {
25263                 
25264             var e = new Roo.data.Record({});
25265
25266             e.set(this.parent.displayField, this.parent.emptyTitle);
25267             e.set(this.parent.valueField, '');
25268
25269             this.insert(0, e);
25270         }
25271             
25272         this.fireEvent("load", this, r, options, o);
25273         if(options.callback){
25274             options.callback.call(options.scope || this, r, options, true);
25275         }
25276     },
25277
25278
25279     /**
25280      * Loads data from a passed data block. A Reader which understands the format of the data
25281      * must have been configured in the constructor.
25282      * @param {Object} data The data block from which to read the Records.  The format of the data expected
25283      * is dependent on the type of Reader that is configured and should correspond to that Reader's readRecords parameter.
25284      * @param {Boolean} append (Optional) True to append the new Records rather than replace the existing cache.
25285      */
25286     loadData : function(o, append){
25287         var r = this.reader.readRecords(o);
25288         this.loadRecords(r, {add: append}, true);
25289     },
25290     
25291      /**
25292      * using 'cn' the nested child reader read the child array into it's child stores.
25293      * @param {Object} rec The record with a 'children array
25294      */
25295     loadDataFromChildren : function(rec)
25296     {
25297         this.loadData(this.reader.toLoadData(rec));
25298     },
25299     
25300
25301     /**
25302      * Gets the number of cached records.
25303      * <p>
25304      * <em>If using paging, this may not be the total size of the dataset. If the data object
25305      * used by the Reader contains the dataset size, then the getTotalCount() function returns
25306      * the data set size</em>
25307      */
25308     getCount : function(){
25309         return this.data.length || 0;
25310     },
25311
25312     /**
25313      * Gets the total number of records in the dataset as returned by the server.
25314      * <p>
25315      * <em>If using paging, for this to be accurate, the data object used by the Reader must contain
25316      * the dataset size</em>
25317      */
25318     getTotalCount : function(){
25319         return this.totalLength || 0;
25320     },
25321
25322     /**
25323      * Returns the sort state of the Store as an object with two properties:
25324      * <pre><code>
25325  field {String} The name of the field by which the Records are sorted
25326  direction {String} The sort order, "ASC" or "DESC"
25327      * </code></pre>
25328      */
25329     getSortState : function(){
25330         return this.sortInfo;
25331     },
25332
25333     // private
25334     applySort : function(){
25335         if(this.sortInfo && !this.remoteSort){
25336             var s = this.sortInfo, f = s.field;
25337             var st = this.fields.get(f).sortType;
25338             var fn = function(r1, r2){
25339                 var v1 = st(r1.data[f]), v2 = st(r2.data[f]);
25340                 return v1 > v2 ? 1 : (v1 < v2 ? -1 : 0);
25341             };
25342             this.data.sort(s.direction, fn);
25343             if(this.snapshot && this.snapshot != this.data){
25344                 this.snapshot.sort(s.direction, fn);
25345             }
25346         }
25347     },
25348
25349     /**
25350      * Sets the default sort column and order to be used by the next load operation.
25351      * @param {String} fieldName The name of the field to sort by.
25352      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
25353      */
25354     setDefaultSort : function(field, dir){
25355         this.sortInfo = {field: field, direction: dir ? dir.toUpperCase() : "ASC"};
25356     },
25357
25358     /**
25359      * Sort the Records.
25360      * If remote sorting is used, the sort is performed on the server, and the cache is
25361      * reloaded. If local sorting is used, the cache is sorted internally.
25362      * @param {String} fieldName The name of the field to sort by.
25363      * @param {String} dir (optional) The sort order, "ASC" or "DESC" (defaults to "ASC")
25364      */
25365     sort : function(fieldName, dir){
25366         var f = this.fields.get(fieldName);
25367         if(!dir){
25368             this.sortToggle[f.name] = this.sortToggle[f.name] || f.sortDir;
25369             
25370             if(this.multiSort || (this.sortInfo && this.sortInfo.field == f.name) ){ // toggle sort dir
25371                 dir = (this.sortToggle[f.name] || "ASC").toggle("ASC", "DESC");
25372             }else{
25373                 dir = f.sortDir;
25374             }
25375         }
25376         this.sortToggle[f.name] = dir;
25377         this.sortInfo = {field: f.name, direction: dir};
25378         if(!this.remoteSort){
25379             this.applySort();
25380             this.fireEvent("datachanged", this);
25381         }else{
25382             this.load(this.lastOptions);
25383         }
25384     },
25385
25386     /**
25387      * Calls the specified function for each of the Records in the cache.
25388      * @param {Function} fn The function to call. The Record is passed as the first parameter.
25389      * Returning <em>false</em> aborts and exits the iteration.
25390      * @param {Object} scope (optional) The scope in which to call the function (defaults to the Record).
25391      */
25392     each : function(fn, scope){
25393         this.data.each(fn, scope);
25394     },
25395
25396     /**
25397      * Gets all records modified since the last commit.  Modified records are persisted across load operations
25398      * (e.g., during paging).
25399      * @return {Roo.data.Record[]} An array of Records containing outstanding modifications.
25400      */
25401     getModifiedRecords : function(){
25402         return this.modified;
25403     },
25404
25405     // private
25406     createFilterFn : function(property, value, anyMatch){
25407         if(!value.exec){ // not a regex
25408             value = String(value);
25409             if(value.length == 0){
25410                 return false;
25411             }
25412             value = new RegExp((anyMatch === true ? '' : '^') + Roo.escapeRe(value), "i");
25413         }
25414         return function(r){
25415             return value.test(r.data[property]);
25416         };
25417     },
25418
25419     /**
25420      * Sums the value of <i>property</i> for each record between start and end and returns the result.
25421      * @param {String} property A field on your records
25422      * @param {Number} start The record index to start at (defaults to 0)
25423      * @param {Number} end The last record index to include (defaults to length - 1)
25424      * @return {Number} The sum
25425      */
25426     sum : function(property, start, end){
25427         var rs = this.data.items, v = 0;
25428         start = start || 0;
25429         end = (end || end === 0) ? end : rs.length-1;
25430
25431         for(var i = start; i <= end; i++){
25432             v += (rs[i].data[property] || 0);
25433         }
25434         return v;
25435     },
25436
25437     /**
25438      * Filter the records by a specified property.
25439      * @param {String} field A field on your records
25440      * @param {String/RegExp} value Either a string that the field
25441      * should start with or a RegExp to test against the field
25442      * @param {Boolean} anyMatch True to match any part not just the beginning
25443      */
25444     filter : function(property, value, anyMatch){
25445         var fn = this.createFilterFn(property, value, anyMatch);
25446         return fn ? this.filterBy(fn) : this.clearFilter();
25447     },
25448
25449     /**
25450      * Filter by a function. The specified function will be called with each
25451      * record in this data source. If the function returns true the record is included,
25452      * otherwise it is filtered.
25453      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
25454      * @param {Object} scope (optional) The scope of the function (defaults to this)
25455      */
25456     filterBy : function(fn, scope){
25457         this.snapshot = this.snapshot || this.data;
25458         this.data = this.queryBy(fn, scope||this);
25459         this.fireEvent("datachanged", this);
25460     },
25461
25462     /**
25463      * Query the records by a specified property.
25464      * @param {String} field A field on your records
25465      * @param {String/RegExp} value Either a string that the field
25466      * should start with or a RegExp to test against the field
25467      * @param {Boolean} anyMatch True to match any part not just the beginning
25468      * @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
25469      */
25470     query : function(property, value, anyMatch){
25471         var fn = this.createFilterFn(property, value, anyMatch);
25472         return fn ? this.queryBy(fn) : this.data.clone();
25473     },
25474
25475     /**
25476      * Query by a function. The specified function will be called with each
25477      * record in this data source. If the function returns true the record is included
25478      * in the results.
25479      * @param {Function} fn The function to be called, it will receive 2 args (record, id)
25480      * @param {Object} scope (optional) The scope of the function (defaults to this)
25481       @return {MixedCollection} Returns an Roo.util.MixedCollection of the matched records
25482      **/
25483     queryBy : function(fn, scope){
25484         var data = this.snapshot || this.data;
25485         return data.filterBy(fn, scope||this);
25486     },
25487
25488     /**
25489      * Collects unique values for a particular dataIndex from this store.
25490      * @param {String} dataIndex The property to collect
25491      * @param {Boolean} allowNull (optional) Pass true to allow null, undefined or empty string values
25492      * @param {Boolean} bypassFilter (optional) Pass true to collect from all records, even ones which are filtered
25493      * @return {Array} An array of the unique values
25494      **/
25495     collect : function(dataIndex, allowNull, bypassFilter){
25496         var d = (bypassFilter === true && this.snapshot) ?
25497                 this.snapshot.items : this.data.items;
25498         var v, sv, r = [], l = {};
25499         for(var i = 0, len = d.length; i < len; i++){
25500             v = d[i].data[dataIndex];
25501             sv = String(v);
25502             if((allowNull || !Roo.isEmpty(v)) && !l[sv]){
25503                 l[sv] = true;
25504                 r[r.length] = v;
25505             }
25506         }
25507         return r;
25508     },
25509
25510     /**
25511      * Revert to a view of the Record cache with no filtering applied.
25512      * @param {Boolean} suppressEvent If true the filter is cleared silently without notifying listeners
25513      */
25514     clearFilter : function(suppressEvent){
25515         if(this.snapshot && this.snapshot != this.data){
25516             this.data = this.snapshot;
25517             delete this.snapshot;
25518             if(suppressEvent !== true){
25519                 this.fireEvent("datachanged", this);
25520             }
25521         }
25522     },
25523
25524     // private
25525     afterEdit : function(record){
25526         if(this.modified.indexOf(record) == -1){
25527             this.modified.push(record);
25528         }
25529         this.fireEvent("update", this, record, Roo.data.Record.EDIT);
25530     },
25531     
25532     // private
25533     afterReject : function(record){
25534         this.modified.remove(record);
25535         this.fireEvent("update", this, record, Roo.data.Record.REJECT);
25536     },
25537
25538     // private
25539     afterCommit : function(record){
25540         this.modified.remove(record);
25541         this.fireEvent("update", this, record, Roo.data.Record.COMMIT);
25542     },
25543
25544     /**
25545      * Commit all Records with outstanding changes. To handle updates for changes, subscribe to the
25546      * Store's "update" event, and perform updating when the third parameter is Roo.data.Record.COMMIT.
25547      */
25548     commitChanges : function(){
25549         var m = this.modified.slice(0);
25550         this.modified = [];
25551         for(var i = 0, len = m.length; i < len; i++){
25552             m[i].commit();
25553         }
25554     },
25555
25556     /**
25557      * Cancel outstanding changes on all changed records.
25558      */
25559     rejectChanges : function(){
25560         var m = this.modified.slice(0);
25561         this.modified = [];
25562         for(var i = 0, len = m.length; i < len; i++){
25563             m[i].reject();
25564         }
25565     },
25566
25567     onMetaChange : function(meta, rtype, o){
25568         this.recordType = rtype;
25569         this.fields = rtype.prototype.fields;
25570         delete this.snapshot;
25571         this.sortInfo = meta.sortInfo || this.sortInfo;
25572         this.modified = [];
25573         this.fireEvent('metachange', this, this.reader.meta);
25574     },
25575     
25576     moveIndex : function(data, type)
25577     {
25578         var index = this.indexOf(data);
25579         
25580         var newIndex = index + type;
25581         
25582         this.remove(data);
25583         
25584         this.insert(newIndex, data);
25585         
25586     }
25587 });/*
25588  * Based on:
25589  * Ext JS Library 1.1.1
25590  * Copyright(c) 2006-2007, Ext JS, LLC.
25591  *
25592  * Originally Released Under LGPL - original licence link has changed is not relivant.
25593  *
25594  * Fork - LGPL
25595  * <script type="text/javascript">
25596  */
25597
25598 /**
25599  * @class Roo.data.SimpleStore
25600  * @extends Roo.data.Store
25601  * Small helper class to make creating Stores from Array data easier.
25602  * @cfg {Number} id The array index of the record id. Leave blank to auto generate ids.
25603  * @cfg {Array} fields An array of field definition objects, or field name strings.
25604  * @cfg {Object} an existing reader (eg. copied from another store)
25605  * @cfg {Array} data The multi-dimensional array of data
25606  * @cfg {Roo.data.DataProxy} proxy [not-required]  
25607  * @cfg {Roo.data.Reader} reader  [not-required] 
25608  * @constructor
25609  * @param {Object} config
25610  */
25611 Roo.data.SimpleStore = function(config)
25612 {
25613     Roo.data.SimpleStore.superclass.constructor.call(this, {
25614         isLocal : true,
25615         reader: typeof(config.reader) != 'undefined' ? config.reader : new Roo.data.ArrayReader({
25616                 id: config.id
25617             },
25618             Roo.data.Record.create(config.fields)
25619         ),
25620         proxy : new Roo.data.MemoryProxy(config.data)
25621     });
25622     this.load();
25623 };
25624 Roo.extend(Roo.data.SimpleStore, Roo.data.Store);/*
25625  * Based on:
25626  * Ext JS Library 1.1.1
25627  * Copyright(c) 2006-2007, Ext JS, LLC.
25628  *
25629  * Originally Released Under LGPL - original licence link has changed is not relivant.
25630  *
25631  * Fork - LGPL
25632  * <script type="text/javascript">
25633  */
25634
25635 /**
25636 /**
25637  * @extends Roo.data.Store
25638  * @class Roo.data.JsonStore
25639  * Small helper class to make creating Stores for JSON data easier. <br/>
25640 <pre><code>
25641 var store = new Roo.data.JsonStore({
25642     url: 'get-images.php',
25643     root: 'images',
25644     fields: ['name', 'url', {name:'size', type: 'float'}, {name:'lastmod', type:'date'}]
25645 });
25646 </code></pre>
25647  * <b>Note: Although they are not listed, this class inherits all of the config options of Store,
25648  * JsonReader and HttpProxy (unless inline data is provided).</b>
25649  * @cfg {Array} fields An array of field definition objects, or field name strings.
25650  * @constructor
25651  * @param {Object} config
25652  */
25653 Roo.data.JsonStore = function(c){
25654     Roo.data.JsonStore.superclass.constructor.call(this, Roo.apply(c, {
25655         proxy: !c.data ? new Roo.data.HttpProxy({url: c.url}) : undefined,
25656         reader: new Roo.data.JsonReader(c, c.fields)
25657     }));
25658 };
25659 Roo.extend(Roo.data.JsonStore, Roo.data.Store);/*
25660  * Based on:
25661  * Ext JS Library 1.1.1
25662  * Copyright(c) 2006-2007, Ext JS, LLC.
25663  *
25664  * Originally Released Under LGPL - original licence link has changed is not relivant.
25665  *
25666  * Fork - LGPL
25667  * <script type="text/javascript">
25668  */
25669
25670  
25671 Roo.data.Field = function(config){
25672     if(typeof config == "string"){
25673         config = {name: config};
25674     }
25675     Roo.apply(this, config);
25676     
25677     if(!this.type){
25678         this.type = "auto";
25679     }
25680     
25681     var st = Roo.data.SortTypes;
25682     // named sortTypes are supported, here we look them up
25683     if(typeof this.sortType == "string"){
25684         this.sortType = st[this.sortType];
25685     }
25686     
25687     // set default sortType for strings and dates
25688     if(!this.sortType){
25689         switch(this.type){
25690             case "string":
25691                 this.sortType = st.asUCString;
25692                 break;
25693             case "date":
25694                 this.sortType = st.asDate;
25695                 break;
25696             default:
25697                 this.sortType = st.none;
25698         }
25699     }
25700
25701     // define once
25702     var stripRe = /[\$,%]/g;
25703
25704     // prebuilt conversion function for this field, instead of
25705     // switching every time we're reading a value
25706     if(!this.convert){
25707         var cv, dateFormat = this.dateFormat;
25708         switch(this.type){
25709             case "":
25710             case "auto":
25711             case undefined:
25712                 cv = function(v){ return v; };
25713                 break;
25714             case "string":
25715                 cv = function(v){ return (v === undefined || v === null) ? '' : String(v); };
25716                 break;
25717             case "int":
25718                 cv = function(v){
25719                     return v !== undefined && v !== null && v !== '' ?
25720                            parseInt(String(v).replace(stripRe, ""), 10) : '';
25721                     };
25722                 break;
25723             case "float":
25724                 cv = function(v){
25725                     return v !== undefined && v !== null && v !== '' ?
25726                            parseFloat(String(v).replace(stripRe, ""), 10) : ''; 
25727                     };
25728                 break;
25729             case "bool":
25730             case "boolean":
25731                 cv = function(v){ return v === true || v === "true" || v == 1; };
25732                 break;
25733             case "date":
25734                 cv = function(v){
25735                     if(!v){
25736                         return '';
25737                     }
25738                     if(v instanceof Date){
25739                         return v;
25740                     }
25741                     if(dateFormat){
25742                         if(dateFormat == "timestamp"){
25743                             return new Date(v*1000);
25744                         }
25745                         return Date.parseDate(v, dateFormat);
25746                     }
25747                     var parsed = Date.parse(v);
25748                     return parsed ? new Date(parsed) : null;
25749                 };
25750              break;
25751             
25752         }
25753         this.convert = cv;
25754     }
25755 };
25756
25757 Roo.data.Field.prototype = {
25758     dateFormat: null,
25759     defaultValue: "",
25760     mapping: null,
25761     sortType : null,
25762     sortDir : "ASC"
25763 };/*
25764  * Based on:
25765  * Ext JS Library 1.1.1
25766  * Copyright(c) 2006-2007, Ext JS, LLC.
25767  *
25768  * Originally Released Under LGPL - original licence link has changed is not relivant.
25769  *
25770  * Fork - LGPL
25771  * <script type="text/javascript">
25772  */
25773  
25774 // Base class for reading structured data from a data source.  This class is intended to be
25775 // extended (see ArrayReader, JsonReader and XmlReader) and should not be created directly.
25776
25777 /**
25778  * @class Roo.data.DataReader
25779  * @abstract
25780  * Base class for reading structured data from a data source.  This class is intended to be
25781  * extended (see {Roo.data.ArrayReader}, {Roo.data.JsonReader} and {Roo.data.XmlReader}) and should not be created directly.
25782  */
25783
25784 Roo.data.DataReader = function(meta, recordType){
25785     
25786     this.meta = meta;
25787     
25788     this.recordType = recordType instanceof Array ? 
25789         Roo.data.Record.create(recordType) : recordType;
25790 };
25791
25792 Roo.data.DataReader.prototype = {
25793     
25794     
25795     readerType : 'Data',
25796      /**
25797      * Create an empty record
25798      * @param {Object} data (optional) - overlay some values
25799      * @return {Roo.data.Record} record created.
25800      */
25801     newRow :  function(d) {
25802         var da =  {};
25803         this.recordType.prototype.fields.each(function(c) {
25804             switch( c.type) {
25805                 case 'int' : da[c.name] = 0; break;
25806                 case 'date' : da[c.name] = new Date(); break;
25807                 case 'float' : da[c.name] = 0.0; break;
25808                 case 'boolean' : da[c.name] = false; break;
25809                 default : da[c.name] = ""; break;
25810             }
25811             
25812         });
25813         return new this.recordType(Roo.apply(da, d));
25814     }
25815     
25816     
25817 };/*
25818  * Based on:
25819  * Ext JS Library 1.1.1
25820  * Copyright(c) 2006-2007, Ext JS, LLC.
25821  *
25822  * Originally Released Under LGPL - original licence link has changed is not relivant.
25823  *
25824  * Fork - LGPL
25825  * <script type="text/javascript">
25826  */
25827
25828 /**
25829  * @class Roo.data.DataProxy
25830  * @extends Roo.util.Observable
25831  * @abstract
25832  * This class is an abstract base class for implementations which provide retrieval of
25833  * unformatted data objects.<br>
25834  * <p>
25835  * DataProxy implementations are usually used in conjunction with an implementation of Roo.data.DataReader
25836  * (of the appropriate type which knows how to parse the data object) to provide a block of
25837  * {@link Roo.data.Records} to an {@link Roo.data.Store}.<br>
25838  * <p>
25839  * Custom implementations must implement the load method as described in
25840  * {@link Roo.data.HttpProxy#load}.
25841  */
25842 Roo.data.DataProxy = function(){
25843     this.addEvents({
25844         /**
25845          * @event beforeload
25846          * Fires before a network request is made to retrieve a data object.
25847          * @param {Object} This DataProxy object.
25848          * @param {Object} params The params parameter to the load function.
25849          */
25850         beforeload : true,
25851         /**
25852          * @event load
25853          * Fires before the load method's callback is called.
25854          * @param {Object} This DataProxy object.
25855          * @param {Object} o The data object.
25856          * @param {Object} arg The callback argument object passed to the load function.
25857          */
25858         load : true,
25859         /**
25860          * @event loadexception
25861          * Fires if an Exception occurs during data retrieval.
25862          * @param {Object} This DataProxy object.
25863          * @param {Object} o The data object.
25864          * @param {Object} arg The callback argument object passed to the load function.
25865          * @param {Object} e The Exception.
25866          */
25867         loadexception : true
25868     });
25869     Roo.data.DataProxy.superclass.constructor.call(this);
25870 };
25871
25872 Roo.extend(Roo.data.DataProxy, Roo.util.Observable);
25873
25874     /**
25875      * @cfg {void} listeners (Not available) Constructor blocks listeners from being set
25876      */
25877 /*
25878  * Based on:
25879  * Ext JS Library 1.1.1
25880  * Copyright(c) 2006-2007, Ext JS, LLC.
25881  *
25882  * Originally Released Under LGPL - original licence link has changed is not relivant.
25883  *
25884  * Fork - LGPL
25885  * <script type="text/javascript">
25886  */
25887 /**
25888  * @class Roo.data.MemoryProxy
25889  * @extends Roo.data.DataProxy
25890  * An implementation of Roo.data.DataProxy that simply passes the data specified in its constructor
25891  * to the Reader when its load method is called.
25892  * @constructor
25893  * @param {Object} config  A config object containing the objects needed for the Store to access data,
25894  */
25895 Roo.data.MemoryProxy = function(config){
25896     var data = config;
25897     if (typeof(config) != 'undefined' && typeof(config.data) != 'undefined') {
25898         data = config.data;
25899     }
25900     Roo.data.MemoryProxy.superclass.constructor.call(this);
25901     this.data = data;
25902 };
25903
25904 Roo.extend(Roo.data.MemoryProxy, Roo.data.DataProxy, {
25905     
25906     /**
25907      *  @cfg {Object} data The data object which the Reader uses to construct a block of Roo.data.Records.
25908      */
25909     /**
25910      * Load data from the requested source (in this case an in-memory
25911      * data object passed to the constructor), read the data object into
25912      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
25913      * process that block using the passed callback.
25914      * @param {Object} params This parameter is not used by the MemoryProxy class.
25915      * @param {Roo.data.DataReader} reader The Reader object which converts the data
25916      * object into a block of Roo.data.Records.
25917      * @param {Function} callback The function into which to pass the block of Roo.data.records.
25918      * The function must be passed <ul>
25919      * <li>The Record block object</li>
25920      * <li>The "arg" argument from the load function</li>
25921      * <li>A boolean success indicator</li>
25922      * </ul>
25923      * @param {Object} scope The scope in which to call the callback
25924      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
25925      */
25926     load : function(params, reader, callback, scope, arg){
25927         params = params || {};
25928         var result;
25929         try {
25930             result = reader.readRecords(params.data ? params.data :this.data);
25931         }catch(e){
25932             this.fireEvent("loadexception", this, arg, null, e);
25933             callback.call(scope, null, arg, false);
25934             return;
25935         }
25936         callback.call(scope, result, arg, true);
25937     },
25938     
25939     // private
25940     update : function(params, records){
25941         
25942     }
25943 });/*
25944  * Based on:
25945  * Ext JS Library 1.1.1
25946  * Copyright(c) 2006-2007, Ext JS, LLC.
25947  *
25948  * Originally Released Under LGPL - original licence link has changed is not relivant.
25949  *
25950  * Fork - LGPL
25951  * <script type="text/javascript">
25952  */
25953 /**
25954  * @class Roo.data.HttpProxy
25955  * @extends Roo.data.DataProxy
25956  * An implementation of {@link Roo.data.DataProxy} that reads a data object from an {@link Roo.data.Connection} object
25957  * configured to reference a certain URL.<br><br>
25958  * <p>
25959  * <em>Note that this class cannot be used to retrieve data from a domain other than the domain
25960  * from which the running page was served.<br><br>
25961  * <p>
25962  * For cross-domain access to remote data, use an {@link Roo.data.ScriptTagProxy}.</em><br><br>
25963  * <p>
25964  * Be aware that to enable the browser to parse an XML document, the server must set
25965  * the Content-Type header in the HTTP response to "text/xml".
25966  * @constructor
25967  * @param {Object} conn Connection config options to add to each request (e.g. {url: 'foo.php'} or
25968  * an {@link Roo.data.Connection} object.  If a Connection config is passed, the singleton {@link Roo.Ajax} object
25969  * will be used to make the request.
25970  */
25971 Roo.data.HttpProxy = function(conn){
25972     Roo.data.HttpProxy.superclass.constructor.call(this);
25973     // is conn a conn config or a real conn?
25974     this.conn = conn;
25975     this.useAjax = !conn || !conn.events;
25976   
25977 };
25978
25979 Roo.extend(Roo.data.HttpProxy, Roo.data.DataProxy, {
25980     // thse are take from connection...
25981     
25982     /**
25983      * @cfg {String} url (Optional) The default URL to be used for requests to the server. (defaults to undefined)
25984      */
25985     /**
25986      * @cfg {Object} extraParams (Optional) An object containing properties which are used as
25987      * extra parameters to each request made by this object. (defaults to undefined)
25988      */
25989     /**
25990      * @cfg {Object} defaultHeaders (Optional) An object containing request headers which are added
25991      *  to each request made by this object. (defaults to undefined)
25992      */
25993     /**
25994      * @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)
25995      */
25996     /**
25997      * @cfg {Number} timeout (Optional) The timeout in milliseconds to be used for requests. (defaults to 30000)
25998      */
25999      /**
26000      * @cfg {Boolean} autoAbort (Optional) Whether this request should abort any pending requests. (defaults to false)
26001      * @type Boolean
26002      */
26003   
26004
26005     /**
26006      * @cfg {Boolean} disableCaching (Optional) True to add a unique cache-buster param to GET requests. (defaults to true)
26007      * @type Boolean
26008      */
26009     /**
26010      * Return the {@link Roo.data.Connection} object being used by this Proxy.
26011      * @return {Connection} The Connection object. This object may be used to subscribe to events on
26012      * a finer-grained basis than the DataProxy events.
26013      */
26014     getConnection : function(){
26015         return this.useAjax ? Roo.Ajax : this.conn;
26016     },
26017
26018     /**
26019      * Load data from the configured {@link Roo.data.Connection}, read the data object into
26020      * a block of Roo.data.Records using the passed {@link Roo.data.DataReader} implementation, and
26021      * process that block using the passed callback.
26022      * @param {Object} params An object containing properties which are to be used as HTTP parameters
26023      * for the request to the remote server.
26024      * @param {Roo.data.DataReader} reader The Reader object which converts the data
26025      * object into a block of Roo.data.Records.
26026      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
26027      * The function must be passed <ul>
26028      * <li>The Record block object</li>
26029      * <li>The "arg" argument from the load function</li>
26030      * <li>A boolean success indicator</li>
26031      * </ul>
26032      * @param {Object} scope The scope in which to call the callback
26033      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
26034      */
26035     load : function(params, reader, callback, scope, arg){
26036         if(this.fireEvent("beforeload", this, params) !== false){
26037             var  o = {
26038                 params : params || {},
26039                 request: {
26040                     callback : callback,
26041                     scope : scope,
26042                     arg : arg
26043                 },
26044                 reader: reader,
26045                 callback : this.loadResponse,
26046                 scope: this
26047             };
26048             if(this.useAjax){
26049                 Roo.applyIf(o, this.conn);
26050                 if(this.activeRequest){
26051                     Roo.Ajax.abort(this.activeRequest);
26052                 }
26053                 this.activeRequest = Roo.Ajax.request(o);
26054             }else{
26055                 this.conn.request(o);
26056             }
26057         }else{
26058             callback.call(scope||this, null, arg, false);
26059         }
26060     },
26061
26062     // private
26063     loadResponse : function(o, success, response){
26064         delete this.activeRequest;
26065         if(!success){
26066             this.fireEvent("loadexception", this, o, response);
26067             o.request.callback.call(o.request.scope, null, o.request.arg, false);
26068             return;
26069         }
26070         var result;
26071         try {
26072             result = o.reader.read(response);
26073         }catch(e){
26074             o.success = false;
26075             o.raw = { errorMsg : response.responseText };
26076             this.fireEvent("loadexception", this, o, response, e);
26077             o.request.callback.call(o.request.scope, o, o.request.arg, false);
26078             return;
26079         }
26080         
26081         this.fireEvent("load", this, o, o.request.arg);
26082         o.request.callback.call(o.request.scope, result, o.request.arg, true);
26083     },
26084
26085     // private
26086     update : function(dataSet){
26087
26088     },
26089
26090     // private
26091     updateResponse : function(dataSet){
26092
26093     }
26094 });/*
26095  * Based on:
26096  * Ext JS Library 1.1.1
26097  * Copyright(c) 2006-2007, Ext JS, LLC.
26098  *
26099  * Originally Released Under LGPL - original licence link has changed is not relivant.
26100  *
26101  * Fork - LGPL
26102  * <script type="text/javascript">
26103  */
26104
26105 /**
26106  * @class Roo.data.ScriptTagProxy
26107  * An implementation of Roo.data.DataProxy that reads a data object from a URL which may be in a domain
26108  * other than the originating domain of the running page.<br><br>
26109  * <p>
26110  * <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
26111  * of the running page, you must use this class, rather than DataProxy.</em><br><br>
26112  * <p>
26113  * The content passed back from a server resource requested by a ScriptTagProxy is executable JavaScript
26114  * source code that is used as the source inside a &lt;script> tag.<br><br>
26115  * <p>
26116  * In order for the browser to process the returned data, the server must wrap the data object
26117  * with a call to a callback function, the name of which is passed as a parameter by the ScriptTagProxy.
26118  * Below is a Java example for a servlet which returns data for either a ScriptTagProxy, or an HttpProxy
26119  * depending on whether the callback name was passed:
26120  * <p>
26121  * <pre><code>
26122 boolean scriptTag = false;
26123 String cb = request.getParameter("callback");
26124 if (cb != null) {
26125     scriptTag = true;
26126     response.setContentType("text/javascript");
26127 } else {
26128     response.setContentType("application/x-json");
26129 }
26130 Writer out = response.getWriter();
26131 if (scriptTag) {
26132     out.write(cb + "(");
26133 }
26134 out.print(dataBlock.toJsonString());
26135 if (scriptTag) {
26136     out.write(");");
26137 }
26138 </pre></code>
26139  *
26140  * @constructor
26141  * @param {Object} config A configuration object.
26142  */
26143 Roo.data.ScriptTagProxy = function(config){
26144     Roo.data.ScriptTagProxy.superclass.constructor.call(this);
26145     Roo.apply(this, config);
26146     this.head = document.getElementsByTagName("head")[0];
26147 };
26148
26149 Roo.data.ScriptTagProxy.TRANS_ID = 1000;
26150
26151 Roo.extend(Roo.data.ScriptTagProxy, Roo.data.DataProxy, {
26152     /**
26153      * @cfg {String} url The URL from which to request the data object.
26154      */
26155     /**
26156      * @cfg {Number} timeout (Optional) The number of milliseconds to wait for a response. Defaults to 30 seconds.
26157      */
26158     timeout : 30000,
26159     /**
26160      * @cfg {String} callbackParam (Optional) The name of the parameter to pass to the server which tells
26161      * the server the name of the callback function set up by the load call to process the returned data object.
26162      * Defaults to "callback".<p>The server-side processing must read this parameter value, and generate
26163      * javascript output which calls this named function passing the data object as its only parameter.
26164      */
26165     callbackParam : "callback",
26166     /**
26167      *  @cfg {Boolean} nocache (Optional) Defaults to true. Disable cacheing by adding a unique parameter
26168      * name to the request.
26169      */
26170     nocache : true,
26171
26172     /**
26173      * Load data from the configured URL, read the data object into
26174      * a block of Roo.data.Records using the passed Roo.data.DataReader implementation, and
26175      * process that block using the passed callback.
26176      * @param {Object} params An object containing properties which are to be used as HTTP parameters
26177      * for the request to the remote server.
26178      * @param {Roo.data.DataReader} reader The Reader object which converts the data
26179      * object into a block of Roo.data.Records.
26180      * @param {Function} callback The function into which to pass the block of Roo.data.Records.
26181      * The function must be passed <ul>
26182      * <li>The Record block object</li>
26183      * <li>The "arg" argument from the load function</li>
26184      * <li>A boolean success indicator</li>
26185      * </ul>
26186      * @param {Object} scope The scope in which to call the callback
26187      * @param {Object} arg An optional argument which is passed to the callback as its second parameter.
26188      */
26189     load : function(params, reader, callback, scope, arg){
26190         if(this.fireEvent("beforeload", this, params) !== false){
26191
26192             var p = Roo.urlEncode(Roo.apply(params, this.extraParams));
26193
26194             var url = this.url;
26195             url += (url.indexOf("?") != -1 ? "&" : "?") + p;
26196             if(this.nocache){
26197                 url += "&_dc=" + (new Date().getTime());
26198             }
26199             var transId = ++Roo.data.ScriptTagProxy.TRANS_ID;
26200             var trans = {
26201                 id : transId,
26202                 cb : "stcCallback"+transId,
26203                 scriptId : "stcScript"+transId,
26204                 params : params,
26205                 arg : arg,
26206                 url : url,
26207                 callback : callback,
26208                 scope : scope,
26209                 reader : reader
26210             };
26211             var conn = this;
26212
26213             window[trans.cb] = function(o){
26214                 conn.handleResponse(o, trans);
26215             };
26216
26217             url += String.format("&{0}={1}", this.callbackParam, trans.cb);
26218
26219             if(this.autoAbort !== false){
26220                 this.abort();
26221             }
26222
26223             trans.timeoutId = this.handleFailure.defer(this.timeout, this, [trans]);
26224
26225             var script = document.createElement("script");
26226             script.setAttribute("src", url);
26227             script.setAttribute("type", "text/javascript");
26228             script.setAttribute("id", trans.scriptId);
26229             this.head.appendChild(script);
26230
26231             this.trans = trans;
26232         }else{
26233             callback.call(scope||this, null, arg, false);
26234         }
26235     },
26236
26237     // private
26238     isLoading : function(){
26239         return this.trans ? true : false;
26240     },
26241
26242     /**
26243      * Abort the current server request.
26244      */
26245     abort : function(){
26246         if(this.isLoading()){
26247             this.destroyTrans(this.trans);
26248         }
26249     },
26250
26251     // private
26252     destroyTrans : function(trans, isLoaded){
26253         this.head.removeChild(document.getElementById(trans.scriptId));
26254         clearTimeout(trans.timeoutId);
26255         if(isLoaded){
26256             window[trans.cb] = undefined;
26257             try{
26258                 delete window[trans.cb];
26259             }catch(e){}
26260         }else{
26261             // if hasn't been loaded, wait for load to remove it to prevent script error
26262             window[trans.cb] = function(){
26263                 window[trans.cb] = undefined;
26264                 try{
26265                     delete window[trans.cb];
26266                 }catch(e){}
26267             };
26268         }
26269     },
26270
26271     // private
26272     handleResponse : function(o, trans){
26273         this.trans = false;
26274         this.destroyTrans(trans, true);
26275         var result;
26276         try {
26277             result = trans.reader.readRecords(o);
26278         }catch(e){
26279             this.fireEvent("loadexception", this, o, trans.arg, e);
26280             trans.callback.call(trans.scope||window, null, trans.arg, false);
26281             return;
26282         }
26283         this.fireEvent("load", this, o, trans.arg);
26284         trans.callback.call(trans.scope||window, result, trans.arg, true);
26285     },
26286
26287     // private
26288     handleFailure : function(trans){
26289         this.trans = false;
26290         this.destroyTrans(trans, false);
26291         this.fireEvent("loadexception", this, null, trans.arg);
26292         trans.callback.call(trans.scope||window, null, trans.arg, false);
26293     }
26294 });/*
26295  * Based on:
26296  * Ext JS Library 1.1.1
26297  * Copyright(c) 2006-2007, Ext JS, LLC.
26298  *
26299  * Originally Released Under LGPL - original licence link has changed is not relivant.
26300  *
26301  * Fork - LGPL
26302  * <script type="text/javascript">
26303  */
26304
26305 /**
26306  * @class Roo.data.JsonReader
26307  * @extends Roo.data.DataReader
26308  * Data reader class to create an Array of Roo.data.Record objects from a JSON response
26309  * based on mappings in a provided Roo.data.Record constructor.
26310  * 
26311  * The default behaviour of a store is to send ?_requestMeta=1, unless the class has recieved 'metaData' property
26312  * in the reply previously. 
26313  * 
26314  * <p>
26315  * Example code:
26316  * <pre><code>
26317 var RecordDef = Roo.data.Record.create([
26318     {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
26319     {name: 'occupation'}                 // This field will use "occupation" as the mapping.
26320 ]);
26321 var myReader = new Roo.data.JsonReader({
26322     totalProperty: "results",    // The property which contains the total dataset size (optional)
26323     root: "rows",                // The property which contains an Array of row objects
26324     id: "id"                     // The property within each row object that provides an ID for the record (optional)
26325 }, RecordDef);
26326 </code></pre>
26327  * <p>
26328  * This would consume a JSON file like this:
26329  * <pre><code>
26330 { 'results': 2, 'rows': [
26331     { 'id': 1, 'name': 'Bill', occupation: 'Gardener' },
26332     { 'id': 2, 'name': 'Ben', occupation: 'Horticulturalist' } ]
26333 }
26334 </code></pre>
26335  * @cfg {String} totalProperty Name of the property from which to retrieve the total number of records
26336  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
26337  * paged from the remote server.
26338  * @cfg {String} successProperty Name of the property from which to retrieve the success attribute used by forms.
26339  * @cfg {String} root name of the property which contains the Array of row objects.
26340  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
26341  * @cfg {Array} fields Array of field definition objects
26342  * @constructor
26343  * Create a new JsonReader
26344  * @param {Object} meta Metadata configuration options
26345  * @param {Object} recordType Either an Array of field definition objects,
26346  * or an {@link Roo.data.Record} object created using {@link Roo.data.Record#create}.
26347  */
26348 Roo.data.JsonReader = function(meta, recordType){
26349     
26350     meta = meta || {};
26351     // set some defaults:
26352     Roo.applyIf(meta, {
26353         totalProperty: 'total',
26354         successProperty : 'success',
26355         root : 'data',
26356         id : 'id'
26357     });
26358     
26359     Roo.data.JsonReader.superclass.constructor.call(this, meta, recordType||meta.fields);
26360 };
26361 Roo.extend(Roo.data.JsonReader, Roo.data.DataReader, {
26362     
26363     readerType : 'Json',
26364     
26365     /**
26366      * @prop {Boolean} metaFromRemote  - if the meta data was loaded from the remote source.
26367      * Used by Store query builder to append _requestMeta to params.
26368      * 
26369      */
26370     metaFromRemote : false,
26371     /**
26372      * This method is only used by a DataProxy which has retrieved data from a remote server.
26373      * @param {Object} response The XHR object which contains the JSON data in its responseText.
26374      * @return {Object} data A data block which is used by an Roo.data.Store object as
26375      * a cache of Roo.data.Records.
26376      */
26377     read : function(response){
26378         var json = response.responseText;
26379        
26380         var o = /* eval:var:o */ eval("("+json+")");
26381         if(!o) {
26382             throw {message: "JsonReader.read: Json object not found"};
26383         }
26384         
26385         if(o.metaData){
26386             
26387             delete this.ef;
26388             this.metaFromRemote = true;
26389             this.meta = o.metaData;
26390             this.recordType = Roo.data.Record.create(o.metaData.fields);
26391             this.onMetaChange(this.meta, this.recordType, o);
26392         }
26393         return this.readRecords(o);
26394     },
26395
26396     // private function a store will implement
26397     onMetaChange : function(meta, recordType, o){
26398
26399     },
26400
26401     /**
26402          * @ignore
26403          */
26404     simpleAccess: function(obj, subsc) {
26405         return obj[subsc];
26406     },
26407
26408         /**
26409          * @ignore
26410          */
26411     getJsonAccessor: function(){
26412         var re = /[\[\.]/;
26413         return function(expr) {
26414             try {
26415                 return(re.test(expr))
26416                     ? new Function("obj", "return obj." + expr)
26417                     : function(obj){
26418                         return obj[expr];
26419                     };
26420             } catch(e){}
26421             return Roo.emptyFn;
26422         };
26423     }(),
26424
26425     /**
26426      * Create a data block containing Roo.data.Records from an XML document.
26427      * @param {Object} o An object which contains an Array of row objects in the property specified
26428      * in the config as 'root, and optionally a property, specified in the config as 'totalProperty'
26429      * which contains the total size of the dataset.
26430      * @return {Object} data A data block which is used by an Roo.data.Store object as
26431      * a cache of Roo.data.Records.
26432      */
26433     readRecords : function(o){
26434         /**
26435          * After any data loads, the raw JSON data is available for further custom processing.
26436          * @type Object
26437          */
26438         this.o = o;
26439         var s = this.meta, Record = this.recordType,
26440             f = Record ? Record.prototype.fields : null, fi = f ? f.items : [], fl = f ? f.length : 0;
26441
26442 //      Generate extraction functions for the totalProperty, the root, the id, and for each field
26443         if (!this.ef) {
26444             if(s.totalProperty) {
26445                     this.getTotal = this.getJsonAccessor(s.totalProperty);
26446                 }
26447                 if(s.successProperty) {
26448                     this.getSuccess = this.getJsonAccessor(s.successProperty);
26449                 }
26450                 this.getRoot = s.root ? this.getJsonAccessor(s.root) : function(p){return p;};
26451                 if (s.id) {
26452                         var g = this.getJsonAccessor(s.id);
26453                         this.getId = function(rec) {
26454                                 var r = g(rec);  
26455                                 return (r === undefined || r === "") ? null : r;
26456                         };
26457                 } else {
26458                         this.getId = function(){return null;};
26459                 }
26460             this.ef = [];
26461             for(var jj = 0; jj < fl; jj++){
26462                 f = fi[jj];
26463                 var map = (f.mapping !== undefined && f.mapping !== null) ? f.mapping : f.name;
26464                 this.ef[jj] = this.getJsonAccessor(map);
26465             }
26466         }
26467
26468         var root = this.getRoot(o), c = root.length, totalRecords = c, success = true;
26469         if(s.totalProperty){
26470             var vt = parseInt(this.getTotal(o), 10);
26471             if(!isNaN(vt)){
26472                 totalRecords = vt;
26473             }
26474         }
26475         if(s.successProperty){
26476             var vs = this.getSuccess(o);
26477             if(vs === false || vs === 'false'){
26478                 success = false;
26479             }
26480         }
26481         var records = [];
26482         for(var i = 0; i < c; i++){
26483             var n = root[i];
26484             var values = {};
26485             var id = this.getId(n);
26486             for(var j = 0; j < fl; j++){
26487                 f = fi[j];
26488                                 var v = this.ef[j](n);
26489                                 if (!f.convert) {
26490                                         Roo.log('missing convert for ' + f.name);
26491                                         Roo.log(f);
26492                                         continue;
26493                                 }
26494                                 values[f.name] = f.convert((v !== undefined) ? v : f.defaultValue);
26495             }
26496                         if (!Record) {
26497                                 return {
26498                                         raw : { errorMsg : "JSON Reader Error: fields or metadata not available to create Record" },
26499                                         success : false,
26500                                         records : [],
26501                                         totalRecords : 0
26502                                 };
26503                         }
26504             var record = new Record(values, id);
26505             record.json = n;
26506             records[i] = record;
26507         }
26508         return {
26509             raw : o,
26510             success : success,
26511             records : records,
26512             totalRecords : totalRecords
26513         };
26514     },
26515     // used when loading children.. @see loadDataFromChildren
26516     toLoadData: function(rec)
26517     {
26518         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
26519         var data = typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
26520         return { data : data, total : data.length };
26521         
26522     }
26523 });/*
26524  * Based on:
26525  * Ext JS Library 1.1.1
26526  * Copyright(c) 2006-2007, Ext JS, LLC.
26527  *
26528  * Originally Released Under LGPL - original licence link has changed is not relivant.
26529  *
26530  * Fork - LGPL
26531  * <script type="text/javascript">
26532  */
26533
26534 /**
26535  * @class Roo.data.XmlReader
26536  * @extends Roo.data.DataReader
26537  * Data reader class to create an Array of {@link Roo.data.Record} objects from an XML document
26538  * based on mappings in a provided Roo.data.Record constructor.<br><br>
26539  * <p>
26540  * <em>Note that in order for the browser to parse a returned XML document, the Content-Type
26541  * header in the HTTP response must be set to "text/xml".</em>
26542  * <p>
26543  * Example code:
26544  * <pre><code>
26545 var RecordDef = Roo.data.Record.create([
26546    {name: 'name', mapping: 'name'},     // "mapping" property not needed if it's the same as "name"
26547    {name: 'occupation'}                 // This field will use "occupation" as the mapping.
26548 ]);
26549 var myReader = new Roo.data.XmlReader({
26550    totalRecords: "results", // The element which contains the total dataset size (optional)
26551    record: "row",           // The repeated element which contains row information
26552    id: "id"                 // The element within the row that provides an ID for the record (optional)
26553 }, RecordDef);
26554 </code></pre>
26555  * <p>
26556  * This would consume an XML file like this:
26557  * <pre><code>
26558 &lt;?xml?>
26559 &lt;dataset>
26560  &lt;results>2&lt;/results>
26561  &lt;row>
26562    &lt;id>1&lt;/id>
26563    &lt;name>Bill&lt;/name>
26564    &lt;occupation>Gardener&lt;/occupation>
26565  &lt;/row>
26566  &lt;row>
26567    &lt;id>2&lt;/id>
26568    &lt;name>Ben&lt;/name>
26569    &lt;occupation>Horticulturalist&lt;/occupation>
26570  &lt;/row>
26571 &lt;/dataset>
26572 </code></pre>
26573  * @cfg {String} totalRecords The DomQuery path from which to retrieve the total number of records
26574  * in the dataset. This is only needed if the whole dataset is not passed in one go, but is being
26575  * paged from the remote server.
26576  * @cfg {String} record The DomQuery path to the repeated element which contains record information.
26577  * @cfg {String} success The DomQuery path to the success attribute used by forms.
26578  * @cfg {String} id The DomQuery path relative from the record element to the element that contains
26579  * a record identifier value.
26580  * @constructor
26581  * Create a new XmlReader
26582  * @param {Object} meta Metadata configuration options
26583  * @param {Mixed} recordType The definition of the data record type to produce.  This can be either a valid
26584  * Record subclass created with {@link Roo.data.Record#create}, or an array of objects with which to call
26585  * Roo.data.Record.create.  See the {@link Roo.data.Record} class for more details.
26586  */
26587 Roo.data.XmlReader = function(meta, recordType){
26588     meta = meta || {};
26589     Roo.data.XmlReader.superclass.constructor.call(this, meta, recordType||meta.fields);
26590 };
26591 Roo.extend(Roo.data.XmlReader, Roo.data.DataReader, {
26592     
26593     readerType : 'Xml',
26594     
26595     /**
26596      * This method is only used by a DataProxy which has retrieved data from a remote server.
26597          * @param {Object} response The XHR object which contains the parsed XML document.  The response is expected
26598          * to contain a method called 'responseXML' that returns an XML document object.
26599      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
26600      * a cache of Roo.data.Records.
26601      */
26602     read : function(response){
26603         var doc = response.responseXML;
26604         if(!doc) {
26605             throw {message: "XmlReader.read: XML Document not available"};
26606         }
26607         return this.readRecords(doc);
26608     },
26609
26610     /**
26611      * Create a data block containing Roo.data.Records from an XML document.
26612          * @param {Object} doc A parsed XML document.
26613      * @return {Object} records A data block which is used by an {@link Roo.data.Store} as
26614      * a cache of Roo.data.Records.
26615      */
26616     readRecords : function(doc){
26617         /**
26618          * After any data loads/reads, the raw XML Document is available for further custom processing.
26619          * @type XMLDocument
26620          */
26621         this.xmlData = doc;
26622         var root = doc.documentElement || doc;
26623         var q = Roo.DomQuery;
26624         var recordType = this.recordType, fields = recordType.prototype.fields;
26625         var sid = this.meta.id;
26626         var totalRecords = 0, success = true;
26627         if(this.meta.totalRecords){
26628             totalRecords = q.selectNumber(this.meta.totalRecords, root, 0);
26629         }
26630         
26631         if(this.meta.success){
26632             var sv = q.selectValue(this.meta.success, root, true);
26633             success = sv !== false && sv !== 'false';
26634         }
26635         var records = [];
26636         var ns = q.select(this.meta.record, root);
26637         for(var i = 0, len = ns.length; i < len; i++) {
26638                 var n = ns[i];
26639                 var values = {};
26640                 var id = sid ? q.selectValue(sid, n) : undefined;
26641                 for(var j = 0, jlen = fields.length; j < jlen; j++){
26642                     var f = fields.items[j];
26643                 var v = q.selectValue(f.mapping || f.name, n, f.defaultValue);
26644                     v = f.convert(v);
26645                     values[f.name] = v;
26646                 }
26647                 var record = new recordType(values, id);
26648                 record.node = n;
26649                 records[records.length] = record;
26650             }
26651
26652             return {
26653                 success : success,
26654                 records : records,
26655                 totalRecords : totalRecords || records.length
26656             };
26657     }
26658 });/*
26659  * Based on:
26660  * Ext JS Library 1.1.1
26661  * Copyright(c) 2006-2007, Ext JS, LLC.
26662  *
26663  * Originally Released Under LGPL - original licence link has changed is not relivant.
26664  *
26665  * Fork - LGPL
26666  * <script type="text/javascript">
26667  */
26668
26669 /**
26670  * @class Roo.data.ArrayReader
26671  * @extends Roo.data.DataReader
26672  * Data reader class to create an Array of Roo.data.Record objects from an Array.
26673  * Each element of that Array represents a row of data fields. The
26674  * fields are pulled into a Record object using as a subscript, the <em>mapping</em> property
26675  * of the field definition if it exists, or the field's ordinal position in the definition.<br>
26676  * <p>
26677  * Example code:.
26678  * <pre><code>
26679 var RecordDef = Roo.data.Record.create([
26680     {name: 'name', mapping: 1},         // "mapping" only needed if an "id" field is present which
26681     {name: 'occupation', mapping: 2}    // precludes using the ordinal position as the index.
26682 ]);
26683 var myReader = new Roo.data.ArrayReader({
26684     id: 0                     // The subscript within row Array that provides an ID for the Record (optional)
26685 }, RecordDef);
26686 </code></pre>
26687  * <p>
26688  * This would consume an Array like this:
26689  * <pre><code>
26690 [ [1, 'Bill', 'Gardener'], [2, 'Ben', 'Horticulturalist'] ]
26691   </code></pre>
26692  
26693  * @constructor
26694  * Create a new JsonReader
26695  * @param {Object} meta Metadata configuration options.
26696  * @param {Object|Array} recordType Either an Array of field definition objects
26697  * 
26698  * @cfg {Array} fields Array of field definition objects
26699  * @cfg {String} id Name of the property within a row object that contains a record identifier value.
26700  * as specified to {@link Roo.data.Record#create},
26701  * or an {@link Roo.data.Record} object
26702  *
26703  * 
26704  * created using {@link Roo.data.Record#create}.
26705  */
26706 Roo.data.ArrayReader = function(meta, recordType)
26707 {    
26708     Roo.data.ArrayReader.superclass.constructor.call(this, meta, recordType||meta.fields);
26709 };
26710
26711 Roo.extend(Roo.data.ArrayReader, Roo.data.JsonReader, {
26712     
26713       /**
26714      * Create a data block containing Roo.data.Records from an XML document.
26715      * @param {Object} o An Array of row objects which represents the dataset.
26716      * @return {Object} A data block which is used by an {@link Roo.data.Store} object as
26717      * a cache of Roo.data.Records.
26718      */
26719     readRecords : function(o)
26720     {
26721         var sid = this.meta ? this.meta.id : null;
26722         var recordType = this.recordType, fields = recordType.prototype.fields;
26723         var records = [];
26724         var root = o;
26725         for(var i = 0; i < root.length; i++){
26726             var n = root[i];
26727             var values = {};
26728             var id = ((sid || sid === 0) && n[sid] !== undefined && n[sid] !== "" ? n[sid] : null);
26729             for(var j = 0, jlen = fields.length; j < jlen; j++){
26730                 var f = fields.items[j];
26731                 var k = f.mapping !== undefined && f.mapping !== null ? f.mapping : j;
26732                 var v = n[k] !== undefined ? n[k] : f.defaultValue;
26733                 v = f.convert(v);
26734                 values[f.name] = v;
26735             }
26736             var record = new recordType(values, id);
26737             record.json = n;
26738             records[records.length] = record;
26739         }
26740         return {
26741             records : records,
26742             totalRecords : records.length
26743         };
26744     },
26745     // used when loading children.. @see loadDataFromChildren
26746     toLoadData: function(rec)
26747     {
26748         // expect rec just to be an array.. eg [a,b,c, [...] << cn ]
26749         return typeof(rec.data.cn) == 'undefined' ? [] : rec.data.cn;
26750         
26751     }
26752     
26753     
26754 });/*
26755  * Based on:
26756  * Ext JS Library 1.1.1
26757  * Copyright(c) 2006-2007, Ext JS, LLC.
26758  *
26759  * Originally Released Under LGPL - original licence link has changed is not relivant.
26760  *
26761  * Fork - LGPL
26762  * <script type="text/javascript">
26763  */
26764
26765
26766 /**
26767  * @class Roo.data.Tree
26768  * @extends Roo.util.Observable
26769  * Represents a tree data structure and bubbles all the events for its nodes. The nodes
26770  * in the tree have most standard DOM functionality.
26771  * @constructor
26772  * @param {Node} root (optional) The root node
26773  */
26774 Roo.data.Tree = function(root){
26775    this.nodeHash = {};
26776    /**
26777     * The root node for this tree
26778     * @type Node
26779     */
26780    this.root = null;
26781    if(root){
26782        this.setRootNode(root);
26783    }
26784    this.addEvents({
26785        /**
26786         * @event append
26787         * Fires when a new child node is appended to a node in this tree.
26788         * @param {Tree} tree The owner tree
26789         * @param {Node} parent The parent node
26790         * @param {Node} node The newly appended node
26791         * @param {Number} index The index of the newly appended node
26792         */
26793        "append" : true,
26794        /**
26795         * @event remove
26796         * Fires when a child node is removed from a node in this tree.
26797         * @param {Tree} tree The owner tree
26798         * @param {Node} parent The parent node
26799         * @param {Node} node The child node removed
26800         */
26801        "remove" : true,
26802        /**
26803         * @event move
26804         * Fires when a node is moved to a new location in the tree
26805         * @param {Tree} tree The owner tree
26806         * @param {Node} node The node moved
26807         * @param {Node} oldParent The old parent of this node
26808         * @param {Node} newParent The new parent of this node
26809         * @param {Number} index The index it was moved to
26810         */
26811        "move" : true,
26812        /**
26813         * @event insert
26814         * Fires when a new child node is inserted in a node in this tree.
26815         * @param {Tree} tree The owner tree
26816         * @param {Node} parent The parent node
26817         * @param {Node} node The child node inserted
26818         * @param {Node} refNode The child node the node was inserted before
26819         */
26820        "insert" : true,
26821        /**
26822         * @event beforeappend
26823         * Fires before a new child is appended to a node in this tree, return false to cancel the append.
26824         * @param {Tree} tree The owner tree
26825         * @param {Node} parent The parent node
26826         * @param {Node} node The child node to be appended
26827         */
26828        "beforeappend" : true,
26829        /**
26830         * @event beforeremove
26831         * Fires before a child is removed from a node in this tree, return false to cancel the remove.
26832         * @param {Tree} tree The owner tree
26833         * @param {Node} parent The parent node
26834         * @param {Node} node The child node to be removed
26835         */
26836        "beforeremove" : true,
26837        /**
26838         * @event beforemove
26839         * Fires before a node is moved to a new location in the tree. Return false to cancel the move.
26840         * @param {Tree} tree The owner tree
26841         * @param {Node} node The node being moved
26842         * @param {Node} oldParent The parent of the node
26843         * @param {Node} newParent The new parent the node is moving to
26844         * @param {Number} index The index it is being moved to
26845         */
26846        "beforemove" : true,
26847        /**
26848         * @event beforeinsert
26849         * Fires before a new child is inserted in a node in this tree, return false to cancel the insert.
26850         * @param {Tree} tree The owner tree
26851         * @param {Node} parent The parent node
26852         * @param {Node} node The child node to be inserted
26853         * @param {Node} refNode The child node the node is being inserted before
26854         */
26855        "beforeinsert" : true
26856    });
26857
26858     Roo.data.Tree.superclass.constructor.call(this);
26859 };
26860
26861 Roo.extend(Roo.data.Tree, Roo.util.Observable, {
26862     pathSeparator: "/",
26863
26864     proxyNodeEvent : function(){
26865         return this.fireEvent.apply(this, arguments);
26866     },
26867
26868     /**
26869      * Returns the root node for this tree.
26870      * @return {Node}
26871      */
26872     getRootNode : function(){
26873         return this.root;
26874     },
26875
26876     /**
26877      * Sets the root node for this tree.
26878      * @param {Node} node
26879      * @return {Node}
26880      */
26881     setRootNode : function(node){
26882         this.root = node;
26883         node.ownerTree = this;
26884         node.isRoot = true;
26885         this.registerNode(node);
26886         return node;
26887     },
26888
26889     /**
26890      * Gets a node in this tree by its id.
26891      * @param {String} id
26892      * @return {Node}
26893      */
26894     getNodeById : function(id){
26895         return this.nodeHash[id];
26896     },
26897
26898     registerNode : function(node){
26899         this.nodeHash[node.id] = node;
26900     },
26901
26902     unregisterNode : function(node){
26903         delete this.nodeHash[node.id];
26904     },
26905
26906     toString : function(){
26907         return "[Tree"+(this.id?" "+this.id:"")+"]";
26908     }
26909 });
26910
26911 /**
26912  * @class Roo.data.Node
26913  * @extends Roo.util.Observable
26914  * @cfg {Boolean} leaf true if this node is a leaf and does not have children
26915  * @cfg {String} id The id for this node. If one is not specified, one is generated.
26916  * @constructor
26917  * @param {Object} attributes The attributes/config for the node
26918  */
26919 Roo.data.Node = function(attributes){
26920     /**
26921      * The attributes supplied for the node. You can use this property to access any custom attributes you supplied.
26922      * @type {Object}
26923      */
26924     this.attributes = attributes || {};
26925     this.leaf = this.attributes.leaf;
26926     /**
26927      * The node id. @type String
26928      */
26929     this.id = this.attributes.id;
26930     if(!this.id){
26931         this.id = Roo.id(null, "ynode-");
26932         this.attributes.id = this.id;
26933     }
26934      
26935     
26936     /**
26937      * All child nodes of this node. @type Array
26938      */
26939     this.childNodes = [];
26940     if(!this.childNodes.indexOf){ // indexOf is a must
26941         this.childNodes.indexOf = function(o){
26942             for(var i = 0, len = this.length; i < len; i++){
26943                 if(this[i] == o) {
26944                     return i;
26945                 }
26946             }
26947             return -1;
26948         };
26949     }
26950     /**
26951      * The parent node for this node. @type Node
26952      */
26953     this.parentNode = null;
26954     /**
26955      * The first direct child node of this node, or null if this node has no child nodes. @type Node
26956      */
26957     this.firstChild = null;
26958     /**
26959      * The last direct child node of this node, or null if this node has no child nodes. @type Node
26960      */
26961     this.lastChild = null;
26962     /**
26963      * The node immediately preceding this node in the tree, or null if there is no sibling node. @type Node
26964      */
26965     this.previousSibling = null;
26966     /**
26967      * The node immediately following this node in the tree, or null if there is no sibling node. @type Node
26968      */
26969     this.nextSibling = null;
26970
26971     this.addEvents({
26972        /**
26973         * @event append
26974         * Fires when a new child node is appended
26975         * @param {Tree} tree The owner tree
26976         * @param {Node} this This node
26977         * @param {Node} node The newly appended node
26978         * @param {Number} index The index of the newly appended node
26979         */
26980        "append" : true,
26981        /**
26982         * @event remove
26983         * Fires when a child node is removed
26984         * @param {Tree} tree The owner tree
26985         * @param {Node} this This node
26986         * @param {Node} node The removed node
26987         */
26988        "remove" : true,
26989        /**
26990         * @event move
26991         * Fires when this node is moved to a new location in the tree
26992         * @param {Tree} tree The owner tree
26993         * @param {Node} this This node
26994         * @param {Node} oldParent The old parent of this node
26995         * @param {Node} newParent The new parent of this node
26996         * @param {Number} index The index it was moved to
26997         */
26998        "move" : true,
26999        /**
27000         * @event insert
27001         * Fires when a new child node is inserted.
27002         * @param {Tree} tree The owner tree
27003         * @param {Node} this This node
27004         * @param {Node} node The child node inserted
27005         * @param {Node} refNode The child node the node was inserted before
27006         */
27007        "insert" : true,
27008        /**
27009         * @event beforeappend
27010         * Fires before a new child is appended, return false to cancel the append.
27011         * @param {Tree} tree The owner tree
27012         * @param {Node} this This node
27013         * @param {Node} node The child node to be appended
27014         */
27015        "beforeappend" : true,
27016        /**
27017         * @event beforeremove
27018         * Fires before a child is removed, return false to cancel the remove.
27019         * @param {Tree} tree The owner tree
27020         * @param {Node} this This node
27021         * @param {Node} node The child node to be removed
27022         */
27023        "beforeremove" : true,
27024        /**
27025         * @event beforemove
27026         * Fires before this node is moved to a new location in the tree. Return false to cancel the move.
27027         * @param {Tree} tree The owner tree
27028         * @param {Node} this This node
27029         * @param {Node} oldParent The parent of this node
27030         * @param {Node} newParent The new parent this node is moving to
27031         * @param {Number} index The index it is being moved to
27032         */
27033        "beforemove" : true,
27034        /**
27035         * @event beforeinsert
27036         * Fires before a new child is inserted, return false to cancel the insert.
27037         * @param {Tree} tree The owner tree
27038         * @param {Node} this This node
27039         * @param {Node} node The child node to be inserted
27040         * @param {Node} refNode The child node the node is being inserted before
27041         */
27042        "beforeinsert" : true
27043    });
27044     this.listeners = this.attributes.listeners;
27045     Roo.data.Node.superclass.constructor.call(this);
27046 };
27047
27048 Roo.extend(Roo.data.Node, Roo.util.Observable, {
27049     fireEvent : function(evtName){
27050         // first do standard event for this node
27051         if(Roo.data.Node.superclass.fireEvent.apply(this, arguments) === false){
27052             return false;
27053         }
27054         // then bubble it up to the tree if the event wasn't cancelled
27055         var ot = this.getOwnerTree();
27056         if(ot){
27057             if(ot.proxyNodeEvent.apply(ot, arguments) === false){
27058                 return false;
27059             }
27060         }
27061         return true;
27062     },
27063
27064     /**
27065      * Returns true if this node is a leaf
27066      * @return {Boolean}
27067      */
27068     isLeaf : function(){
27069         return this.leaf === true;
27070     },
27071
27072     // private
27073     setFirstChild : function(node){
27074         this.firstChild = node;
27075     },
27076
27077     //private
27078     setLastChild : function(node){
27079         this.lastChild = node;
27080     },
27081
27082
27083     /**
27084      * Returns true if this node is the last child of its parent
27085      * @return {Boolean}
27086      */
27087     isLast : function(){
27088        return (!this.parentNode ? true : this.parentNode.lastChild == this);
27089     },
27090
27091     /**
27092      * Returns true if this node is the first child of its parent
27093      * @return {Boolean}
27094      */
27095     isFirst : function(){
27096        return (!this.parentNode ? true : this.parentNode.firstChild == this);
27097     },
27098
27099     hasChildNodes : function(){
27100         return !this.isLeaf() && this.childNodes.length > 0;
27101     },
27102
27103     /**
27104      * Insert node(s) as the last child node of this node.
27105      * @param {Node/Array} node The node or Array of nodes to append
27106      * @return {Node} The appended node if single append, or null if an array was passed
27107      */
27108     appendChild : function(node){
27109         var multi = false;
27110         if(node instanceof Array){
27111             multi = node;
27112         }else if(arguments.length > 1){
27113             multi = arguments;
27114         }
27115         
27116         // if passed an array or multiple args do them one by one
27117         if(multi){
27118             for(var i = 0, len = multi.length; i < len; i++) {
27119                 this.appendChild(multi[i]);
27120             }
27121         }else{
27122             if(this.fireEvent("beforeappend", this.ownerTree, this, node) === false){
27123                 return false;
27124             }
27125             var index = this.childNodes.length;
27126             var oldParent = node.parentNode;
27127             // it's a move, make sure we move it cleanly
27128             if(oldParent){
27129                 if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index) === false){
27130                     return false;
27131                 }
27132                 oldParent.removeChild(node);
27133             }
27134             
27135             index = this.childNodes.length;
27136             if(index == 0){
27137                 this.setFirstChild(node);
27138             }
27139             this.childNodes.push(node);
27140             node.parentNode = this;
27141             var ps = this.childNodes[index-1];
27142             if(ps){
27143                 node.previousSibling = ps;
27144                 ps.nextSibling = node;
27145             }else{
27146                 node.previousSibling = null;
27147             }
27148             node.nextSibling = null;
27149             this.setLastChild(node);
27150             node.setOwnerTree(this.getOwnerTree());
27151             this.fireEvent("append", this.ownerTree, this, node, index);
27152             if(this.ownerTree) {
27153                 this.ownerTree.fireEvent("appendnode", this, node, index);
27154             }
27155             if(oldParent){
27156                 node.fireEvent("move", this.ownerTree, node, oldParent, this, index);
27157             }
27158             return node;
27159         }
27160     },
27161
27162     /**
27163      * Removes a child node from this node.
27164      * @param {Node} node The node to remove
27165      * @return {Node} The removed node
27166      */
27167     removeChild : function(node){
27168         var index = this.childNodes.indexOf(node);
27169         if(index == -1){
27170             return false;
27171         }
27172         if(this.fireEvent("beforeremove", this.ownerTree, this, node) === false){
27173             return false;
27174         }
27175
27176         // remove it from childNodes collection
27177         this.childNodes.splice(index, 1);
27178
27179         // update siblings
27180         if(node.previousSibling){
27181             node.previousSibling.nextSibling = node.nextSibling;
27182         }
27183         if(node.nextSibling){
27184             node.nextSibling.previousSibling = node.previousSibling;
27185         }
27186
27187         // update child refs
27188         if(this.firstChild == node){
27189             this.setFirstChild(node.nextSibling);
27190         }
27191         if(this.lastChild == node){
27192             this.setLastChild(node.previousSibling);
27193         }
27194
27195         node.setOwnerTree(null);
27196         // clear any references from the node
27197         node.parentNode = null;
27198         node.previousSibling = null;
27199         node.nextSibling = null;
27200         this.fireEvent("remove", this.ownerTree, this, node);
27201         return node;
27202     },
27203
27204     /**
27205      * Inserts the first node before the second node in this nodes childNodes collection.
27206      * @param {Node} node The node to insert
27207      * @param {Node} refNode The node to insert before (if null the node is appended)
27208      * @return {Node} The inserted node
27209      */
27210     insertBefore : function(node, refNode){
27211         if(!refNode){ // like standard Dom, refNode can be null for append
27212             return this.appendChild(node);
27213         }
27214         // nothing to do
27215         if(node == refNode){
27216             return false;
27217         }
27218
27219         if(this.fireEvent("beforeinsert", this.ownerTree, this, node, refNode) === false){
27220             return false;
27221         }
27222         var index = this.childNodes.indexOf(refNode);
27223         var oldParent = node.parentNode;
27224         var refIndex = index;
27225
27226         // when moving internally, indexes will change after remove
27227         if(oldParent == this && this.childNodes.indexOf(node) < index){
27228             refIndex--;
27229         }
27230
27231         // it's a move, make sure we move it cleanly
27232         if(oldParent){
27233             if(node.fireEvent("beforemove", node.getOwnerTree(), node, oldParent, this, index, refNode) === false){
27234                 return false;
27235             }
27236             oldParent.removeChild(node);
27237         }
27238         if(refIndex == 0){
27239             this.setFirstChild(node);
27240         }
27241         this.childNodes.splice(refIndex, 0, node);
27242         node.parentNode = this;
27243         var ps = this.childNodes[refIndex-1];
27244         if(ps){
27245             node.previousSibling = ps;
27246             ps.nextSibling = node;
27247         }else{
27248             node.previousSibling = null;
27249         }
27250         node.nextSibling = refNode;
27251         refNode.previousSibling = node;
27252         node.setOwnerTree(this.getOwnerTree());
27253         this.fireEvent("insert", this.ownerTree, this, node, refNode);
27254         if(oldParent){
27255             node.fireEvent("move", this.ownerTree, node, oldParent, this, refIndex, refNode);
27256         }
27257         return node;
27258     },
27259
27260     /**
27261      * Returns the child node at the specified index.
27262      * @param {Number} index
27263      * @return {Node}
27264      */
27265     item : function(index){
27266         return this.childNodes[index];
27267     },
27268
27269     /**
27270      * Replaces one child node in this node with another.
27271      * @param {Node} newChild The replacement node
27272      * @param {Node} oldChild The node to replace
27273      * @return {Node} The replaced node
27274      */
27275     replaceChild : function(newChild, oldChild){
27276         this.insertBefore(newChild, oldChild);
27277         this.removeChild(oldChild);
27278         return oldChild;
27279     },
27280
27281     /**
27282      * Returns the index of a child node
27283      * @param {Node} node
27284      * @return {Number} The index of the node or -1 if it was not found
27285      */
27286     indexOf : function(child){
27287         return this.childNodes.indexOf(child);
27288     },
27289
27290     /**
27291      * Returns the tree this node is in.
27292      * @return {Tree}
27293      */
27294     getOwnerTree : function(){
27295         // if it doesn't have one, look for one
27296         if(!this.ownerTree){
27297             var p = this;
27298             while(p){
27299                 if(p.ownerTree){
27300                     this.ownerTree = p.ownerTree;
27301                     break;
27302                 }
27303                 p = p.parentNode;
27304             }
27305         }
27306         return this.ownerTree;
27307     },
27308
27309     /**
27310      * Returns depth of this node (the root node has a depth of 0)
27311      * @return {Number}
27312      */
27313     getDepth : function(){
27314         var depth = 0;
27315         var p = this;
27316         while(p.parentNode){
27317             ++depth;
27318             p = p.parentNode;
27319         }
27320         return depth;
27321     },
27322
27323     // private
27324     setOwnerTree : function(tree){
27325         // if it's move, we need to update everyone
27326         if(tree != this.ownerTree){
27327             if(this.ownerTree){
27328                 this.ownerTree.unregisterNode(this);
27329             }
27330             this.ownerTree = tree;
27331             var cs = this.childNodes;
27332             for(var i = 0, len = cs.length; i < len; i++) {
27333                 cs[i].setOwnerTree(tree);
27334             }
27335             if(tree){
27336                 tree.registerNode(this);
27337             }
27338         }
27339     },
27340
27341     /**
27342      * Returns the path for this node. The path can be used to expand or select this node programmatically.
27343      * @param {String} attr (optional) The attr to use for the path (defaults to the node's id)
27344      * @return {String} The path
27345      */
27346     getPath : function(attr){
27347         attr = attr || "id";
27348         var p = this.parentNode;
27349         var b = [this.attributes[attr]];
27350         while(p){
27351             b.unshift(p.attributes[attr]);
27352             p = p.parentNode;
27353         }
27354         var sep = this.getOwnerTree().pathSeparator;
27355         return sep + b.join(sep);
27356     },
27357
27358     /**
27359      * Bubbles up the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
27360      * function call will be the scope provided or the current node. The arguments to the function
27361      * will be the args provided or the current node. If the function returns false at any point,
27362      * the bubble is stopped.
27363      * @param {Function} fn The function to call
27364      * @param {Object} scope (optional) The scope of the function (defaults to current node)
27365      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
27366      */
27367     bubble : function(fn, scope, args){
27368         var p = this;
27369         while(p){
27370             if(fn.call(scope || p, args || p) === false){
27371                 break;
27372             }
27373             p = p.parentNode;
27374         }
27375     },
27376
27377     /**
27378      * Cascades down the tree from this node, calling the specified function with each node. The scope (<i>this</i>) of
27379      * function call will be the scope provided or the current node. The arguments to the function
27380      * will be the args provided or the current node. If the function returns false at any point,
27381      * the cascade is stopped on that branch.
27382      * @param {Function} fn The function to call
27383      * @param {Object} scope (optional) The scope of the function (defaults to current node)
27384      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
27385      */
27386     cascade : function(fn, scope, args){
27387         if(fn.call(scope || this, args || this) !== false){
27388             var cs = this.childNodes;
27389             for(var i = 0, len = cs.length; i < len; i++) {
27390                 cs[i].cascade(fn, scope, args);
27391             }
27392         }
27393     },
27394
27395     /**
27396      * Interates the child nodes of this node, calling the specified function with each node. The scope (<i>this</i>) of
27397      * function call will be the scope provided or the current node. The arguments to the function
27398      * will be the args provided or the current node. If the function returns false at any point,
27399      * the iteration stops.
27400      * @param {Function} fn The function to call
27401      * @param {Object} scope (optional) The scope of the function (defaults to current node)
27402      * @param {Array} args (optional) The args to call the function with (default to passing the current node)
27403      */
27404     eachChild : function(fn, scope, args){
27405         var cs = this.childNodes;
27406         for(var i = 0, len = cs.length; i < len; i++) {
27407                 if(fn.call(scope || this, args || cs[i]) === false){
27408                     break;
27409                 }
27410         }
27411     },
27412
27413     /**
27414      * Finds the first child that has the attribute with the specified value.
27415      * @param {String} attribute The attribute name
27416      * @param {Mixed} value The value to search for
27417      * @return {Node} The found child or null if none was found
27418      */
27419     findChild : function(attribute, value){
27420         var cs = this.childNodes;
27421         for(var i = 0, len = cs.length; i < len; i++) {
27422                 if(cs[i].attributes[attribute] == value){
27423                     return cs[i];
27424                 }
27425         }
27426         return null;
27427     },
27428
27429     /**
27430      * Finds the first child by a custom function. The child matches if the function passed
27431      * returns true.
27432      * @param {Function} fn
27433      * @param {Object} scope (optional)
27434      * @return {Node} The found child or null if none was found
27435      */
27436     findChildBy : function(fn, scope){
27437         var cs = this.childNodes;
27438         for(var i = 0, len = cs.length; i < len; i++) {
27439                 if(fn.call(scope||cs[i], cs[i]) === true){
27440                     return cs[i];
27441                 }
27442         }
27443         return null;
27444     },
27445
27446     /**
27447      * Sorts this nodes children using the supplied sort function
27448      * @param {Function} fn
27449      * @param {Object} scope (optional)
27450      */
27451     sort : function(fn, scope){
27452         var cs = this.childNodes;
27453         var len = cs.length;
27454         if(len > 0){
27455             var sortFn = scope ? function(){fn.apply(scope, arguments);} : fn;
27456             cs.sort(sortFn);
27457             for(var i = 0; i < len; i++){
27458                 var n = cs[i];
27459                 n.previousSibling = cs[i-1];
27460                 n.nextSibling = cs[i+1];
27461                 if(i == 0){
27462                     this.setFirstChild(n);
27463                 }
27464                 if(i == len-1){
27465                     this.setLastChild(n);
27466                 }
27467             }
27468         }
27469     },
27470
27471     /**
27472      * Returns true if this node is an ancestor (at any point) of the passed node.
27473      * @param {Node} node
27474      * @return {Boolean}
27475      */
27476     contains : function(node){
27477         return node.isAncestor(this);
27478     },
27479
27480     /**
27481      * Returns true if the passed node is an ancestor (at any point) of this node.
27482      * @param {Node} node
27483      * @return {Boolean}
27484      */
27485     isAncestor : function(node){
27486         var p = this.parentNode;
27487         while(p){
27488             if(p == node){
27489                 return true;
27490             }
27491             p = p.parentNode;
27492         }
27493         return false;
27494     },
27495
27496     toString : function(){
27497         return "[Node"+(this.id?" "+this.id:"")+"]";
27498     }
27499 });/*
27500  * Based on:
27501  * Ext JS Library 1.1.1
27502  * Copyright(c) 2006-2007, Ext JS, LLC.
27503  *
27504  * Originally Released Under LGPL - original licence link has changed is not relivant.
27505  *
27506  * Fork - LGPL
27507  * <script type="text/javascript">
27508  */
27509
27510
27511 /**
27512  * @class Roo.Shadow
27513  * Simple class that can provide a shadow effect for any element.  Note that the element MUST be absolutely positioned,
27514  * and the shadow does not provide any shimming.  This should be used only in simple cases -- for more advanced
27515  * functionality that can also provide the same shadow effect, see the {@link Roo.Layer} class.
27516  * @constructor
27517  * Create a new Shadow
27518  * @param {Object} config The config object
27519  */
27520 Roo.Shadow = function(config){
27521     Roo.apply(this, config);
27522     if(typeof this.mode != "string"){
27523         this.mode = this.defaultMode;
27524     }
27525     var o = this.offset, a = {h: 0};
27526     var rad = Math.floor(this.offset/2);
27527     switch(this.mode.toLowerCase()){ // all this hideous nonsense calculates the various offsets for shadows
27528         case "drop":
27529             a.w = 0;
27530             a.l = a.t = o;
27531             a.t -= 1;
27532             if(Roo.isIE){
27533                 a.l -= this.offset + rad;
27534                 a.t -= this.offset + rad;
27535                 a.w -= rad;
27536                 a.h -= rad;
27537                 a.t += 1;
27538             }
27539         break;
27540         case "sides":
27541             a.w = (o*2);
27542             a.l = -o;
27543             a.t = o-1;
27544             if(Roo.isIE){
27545                 a.l -= (this.offset - rad);
27546                 a.t -= this.offset + rad;
27547                 a.l += 1;
27548                 a.w -= (this.offset - rad)*2;
27549                 a.w -= rad + 1;
27550                 a.h -= 1;
27551             }
27552         break;
27553         case "frame":
27554             a.w = a.h = (o*2);
27555             a.l = a.t = -o;
27556             a.t += 1;
27557             a.h -= 2;
27558             if(Roo.isIE){
27559                 a.l -= (this.offset - rad);
27560                 a.t -= (this.offset - rad);
27561                 a.l += 1;
27562                 a.w -= (this.offset + rad + 1);
27563                 a.h -= (this.offset + rad);
27564                 a.h += 1;
27565             }
27566         break;
27567     };
27568
27569     this.adjusts = a;
27570 };
27571
27572 Roo.Shadow.prototype = {
27573     /**
27574      * @cfg {String} mode
27575      * The shadow display mode.  Supports the following options:<br />
27576      * sides: Shadow displays on both sides and bottom only<br />
27577      * frame: Shadow displays equally on all four sides<br />
27578      * drop: Traditional bottom-right drop shadow (default)
27579      */
27580     mode: false,
27581     /**
27582      * @cfg {String} offset
27583      * The number of pixels to offset the shadow from the element (defaults to 4)
27584      */
27585     offset: 4,
27586
27587     // private
27588     defaultMode: "drop",
27589
27590     /**
27591      * Displays the shadow under the target element
27592      * @param {String/HTMLElement/Element} targetEl The id or element under which the shadow should display
27593      */
27594     show : function(target){
27595         target = Roo.get(target);
27596         if(!this.el){
27597             this.el = Roo.Shadow.Pool.pull();
27598             if(this.el.dom.nextSibling != target.dom){
27599                 this.el.insertBefore(target);
27600             }
27601         }
27602         this.el.setStyle("z-index", this.zIndex || parseInt(target.getStyle("z-index"), 10)-1);
27603         if(Roo.isIE){
27604             this.el.dom.style.filter="progid:DXImageTransform.Microsoft.alpha(opacity=50) progid:DXImageTransform.Microsoft.Blur(pixelradius="+(this.offset)+")";
27605         }
27606         this.realign(
27607             target.getLeft(true),
27608             target.getTop(true),
27609             target.getWidth(),
27610             target.getHeight()
27611         );
27612         this.el.dom.style.display = "block";
27613     },
27614
27615     /**
27616      * Returns true if the shadow is visible, else false
27617      */
27618     isVisible : function(){
27619         return this.el ? true : false;  
27620     },
27621
27622     /**
27623      * Direct alignment when values are already available. Show must be called at least once before
27624      * calling this method to ensure it is initialized.
27625      * @param {Number} left The target element left position
27626      * @param {Number} top The target element top position
27627      * @param {Number} width The target element width
27628      * @param {Number} height The target element height
27629      */
27630     realign : function(l, t, w, h){
27631         if(!this.el){
27632             return;
27633         }
27634         var a = this.adjusts, d = this.el.dom, s = d.style;
27635         var iea = 0;
27636         s.left = (l+a.l)+"px";
27637         s.top = (t+a.t)+"px";
27638         var sw = (w+a.w), sh = (h+a.h), sws = sw +"px", shs = sh + "px";
27639  
27640         if(s.width != sws || s.height != shs){
27641             s.width = sws;
27642             s.height = shs;
27643             if(!Roo.isIE){
27644                 var cn = d.childNodes;
27645                 var sww = Math.max(0, (sw-12))+"px";
27646                 cn[0].childNodes[1].style.width = sww;
27647                 cn[1].childNodes[1].style.width = sww;
27648                 cn[2].childNodes[1].style.width = sww;
27649                 cn[1].style.height = Math.max(0, (sh-12))+"px";
27650             }
27651         }
27652     },
27653
27654     /**
27655      * Hides this shadow
27656      */
27657     hide : function(){
27658         if(this.el){
27659             this.el.dom.style.display = "none";
27660             Roo.Shadow.Pool.push(this.el);
27661             delete this.el;
27662         }
27663     },
27664
27665     /**
27666      * Adjust the z-index of this shadow
27667      * @param {Number} zindex The new z-index
27668      */
27669     setZIndex : function(z){
27670         this.zIndex = z;
27671         if(this.el){
27672             this.el.setStyle("z-index", z);
27673         }
27674     }
27675 };
27676
27677 // Private utility class that manages the internal Shadow cache
27678 Roo.Shadow.Pool = function(){
27679     var p = [];
27680     var markup = Roo.isIE ?
27681                  '<div class="x-ie-shadow"></div>' :
27682                  '<div class="x-shadow"><div class="xst"><div class="xstl"></div><div class="xstc"></div><div class="xstr"></div></div><div class="xsc"><div class="xsml"></div><div class="xsmc"></div><div class="xsmr"></div></div><div class="xsb"><div class="xsbl"></div><div class="xsbc"></div><div class="xsbr"></div></div></div>';
27683     return {
27684         pull : function(){
27685             var sh = p.shift();
27686             if(!sh){
27687                 sh = Roo.get(Roo.DomHelper.insertHtml("beforeBegin", document.body.firstChild, markup));
27688                 sh.autoBoxAdjust = false;
27689             }
27690             return sh;
27691         },
27692
27693         push : function(sh){
27694             p.push(sh);
27695         }
27696     };
27697 }();/*
27698  * Based on:
27699  * Ext JS Library 1.1.1
27700  * Copyright(c) 2006-2007, Ext JS, LLC.
27701  *
27702  * Originally Released Under LGPL - original licence link has changed is not relivant.
27703  *
27704  * Fork - LGPL
27705  * <script type="text/javascript">
27706  */
27707
27708
27709 /**
27710  * @class Roo.SplitBar
27711  * @extends Roo.util.Observable
27712  * Creates draggable splitter bar functionality from two elements (element to be dragged and element to be resized).
27713  * <br><br>
27714  * Usage:
27715  * <pre><code>
27716 var split = new Roo.SplitBar("elementToDrag", "elementToSize",
27717                    Roo.SplitBar.HORIZONTAL, Roo.SplitBar.LEFT);
27718 split.setAdapter(new Roo.SplitBar.AbsoluteLayoutAdapter("container"));
27719 split.minSize = 100;
27720 split.maxSize = 600;
27721 split.animate = true;
27722 split.on('moved', splitterMoved);
27723 </code></pre>
27724  * @constructor
27725  * Create a new SplitBar
27726  * @param {String/HTMLElement/Roo.Element} dragElement The element to be dragged and act as the SplitBar. 
27727  * @param {String/HTMLElement/Roo.Element} resizingElement The element to be resized based on where the SplitBar element is dragged 
27728  * @param {Number} orientation (optional) Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
27729  * @param {Number} placement (optional) Either Roo.SplitBar.LEFT or Roo.SplitBar.RIGHT for horizontal or  
27730                         Roo.SplitBar.TOP or Roo.SplitBar.BOTTOM for vertical. (By default, this is determined automatically by the initial
27731                         position of the SplitBar).
27732  */
27733 Roo.SplitBar = function(dragElement, resizingElement, orientation, placement, existingProxy){
27734     
27735     /** @private */
27736     this.el = Roo.get(dragElement, true);
27737     this.el.dom.unselectable = "on";
27738     /** @private */
27739     this.resizingEl = Roo.get(resizingElement, true);
27740
27741     /**
27742      * @private
27743      * The orientation of the split. Either Roo.SplitBar.HORIZONTAL or Roo.SplitBar.VERTICAL. (Defaults to HORIZONTAL)
27744      * Note: If this is changed after creating the SplitBar, the placement property must be manually updated
27745      * @type Number
27746      */
27747     this.orientation = orientation || Roo.SplitBar.HORIZONTAL;
27748     
27749     /**
27750      * The minimum size of the resizing element. (Defaults to 0)
27751      * @type Number
27752      */
27753     this.minSize = 0;
27754     
27755     /**
27756      * The maximum size of the resizing element. (Defaults to 2000)
27757      * @type Number
27758      */
27759     this.maxSize = 2000;
27760     
27761     /**
27762      * Whether to animate the transition to the new size
27763      * @type Boolean
27764      */
27765     this.animate = false;
27766     
27767     /**
27768      * Whether to create a transparent shim that overlays the page when dragging, enables dragging across iframes.
27769      * @type Boolean
27770      */
27771     this.useShim = false;
27772     
27773     /** @private */
27774     this.shim = null;
27775     
27776     if(!existingProxy){
27777         /** @private */
27778         this.proxy = Roo.SplitBar.createProxy(this.orientation);
27779     }else{
27780         this.proxy = Roo.get(existingProxy).dom;
27781     }
27782     /** @private */
27783     this.dd = new Roo.dd.DDProxy(this.el.dom.id, "XSplitBars", {dragElId : this.proxy.id});
27784     
27785     /** @private */
27786     this.dd.b4StartDrag = this.onStartProxyDrag.createDelegate(this);
27787     
27788     /** @private */
27789     this.dd.endDrag = this.onEndProxyDrag.createDelegate(this);
27790     
27791     /** @private */
27792     this.dragSpecs = {};
27793     
27794     /**
27795      * @private The adapter to use to positon and resize elements
27796      */
27797     this.adapter = new Roo.SplitBar.BasicLayoutAdapter();
27798     this.adapter.init(this);
27799     
27800     if(this.orientation == Roo.SplitBar.HORIZONTAL){
27801         /** @private */
27802         this.placement = placement || (this.el.getX() > this.resizingEl.getX() ? Roo.SplitBar.LEFT : Roo.SplitBar.RIGHT);
27803         this.el.addClass("x-splitbar-h");
27804     }else{
27805         /** @private */
27806         this.placement = placement || (this.el.getY() > this.resizingEl.getY() ? Roo.SplitBar.TOP : Roo.SplitBar.BOTTOM);
27807         this.el.addClass("x-splitbar-v");
27808     }
27809     
27810     this.addEvents({
27811         /**
27812          * @event resize
27813          * Fires when the splitter is moved (alias for {@link #event-moved})
27814          * @param {Roo.SplitBar} this
27815          * @param {Number} newSize the new width or height
27816          */
27817         "resize" : true,
27818         /**
27819          * @event moved
27820          * Fires when the splitter is moved
27821          * @param {Roo.SplitBar} this
27822          * @param {Number} newSize the new width or height
27823          */
27824         "moved" : true,
27825         /**
27826          * @event beforeresize
27827          * Fires before the splitter is dragged
27828          * @param {Roo.SplitBar} this
27829          */
27830         "beforeresize" : true,
27831
27832         "beforeapply" : true
27833     });
27834
27835     Roo.util.Observable.call(this);
27836 };
27837
27838 Roo.extend(Roo.SplitBar, Roo.util.Observable, {
27839     onStartProxyDrag : function(x, y){
27840         this.fireEvent("beforeresize", this);
27841         if(!this.overlay){
27842             var o = Roo.DomHelper.insertFirst(document.body,  {cls: "x-drag-overlay", html: "&#160;"}, true);
27843             o.unselectable();
27844             o.enableDisplayMode("block");
27845             // all splitbars share the same overlay
27846             Roo.SplitBar.prototype.overlay = o;
27847         }
27848         this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
27849         this.overlay.show();
27850         Roo.get(this.proxy).setDisplayed("block");
27851         var size = this.adapter.getElementSize(this);
27852         this.activeMinSize = this.getMinimumSize();;
27853         this.activeMaxSize = this.getMaximumSize();;
27854         var c1 = size - this.activeMinSize;
27855         var c2 = Math.max(this.activeMaxSize - size, 0);
27856         if(this.orientation == Roo.SplitBar.HORIZONTAL){
27857             this.dd.resetConstraints();
27858             this.dd.setXConstraint(
27859                 this.placement == Roo.SplitBar.LEFT ? c1 : c2, 
27860                 this.placement == Roo.SplitBar.LEFT ? c2 : c1
27861             );
27862             this.dd.setYConstraint(0, 0);
27863         }else{
27864             this.dd.resetConstraints();
27865             this.dd.setXConstraint(0, 0);
27866             this.dd.setYConstraint(
27867                 this.placement == Roo.SplitBar.TOP ? c1 : c2, 
27868                 this.placement == Roo.SplitBar.TOP ? c2 : c1
27869             );
27870          }
27871         this.dragSpecs.startSize = size;
27872         this.dragSpecs.startPoint = [x, y];
27873         Roo.dd.DDProxy.prototype.b4StartDrag.call(this.dd, x, y);
27874     },
27875     
27876     /** 
27877      * @private Called after the drag operation by the DDProxy
27878      */
27879     onEndProxyDrag : function(e){
27880         Roo.get(this.proxy).setDisplayed(false);
27881         var endPoint = Roo.lib.Event.getXY(e);
27882         if(this.overlay){
27883             this.overlay.hide();
27884         }
27885         var newSize;
27886         if(this.orientation == Roo.SplitBar.HORIZONTAL){
27887             newSize = this.dragSpecs.startSize + 
27888                 (this.placement == Roo.SplitBar.LEFT ?
27889                     endPoint[0] - this.dragSpecs.startPoint[0] :
27890                     this.dragSpecs.startPoint[0] - endPoint[0]
27891                 );
27892         }else{
27893             newSize = this.dragSpecs.startSize + 
27894                 (this.placement == Roo.SplitBar.TOP ?
27895                     endPoint[1] - this.dragSpecs.startPoint[1] :
27896                     this.dragSpecs.startPoint[1] - endPoint[1]
27897                 );
27898         }
27899         newSize = Math.min(Math.max(newSize, this.activeMinSize), this.activeMaxSize);
27900         if(newSize != this.dragSpecs.startSize){
27901             if(this.fireEvent('beforeapply', this, newSize) !== false){
27902                 this.adapter.setElementSize(this, newSize);
27903                 this.fireEvent("moved", this, newSize);
27904                 this.fireEvent("resize", this, newSize);
27905             }
27906         }
27907     },
27908     
27909     /**
27910      * Get the adapter this SplitBar uses
27911      * @return The adapter object
27912      */
27913     getAdapter : function(){
27914         return this.adapter;
27915     },
27916     
27917     /**
27918      * Set the adapter this SplitBar uses
27919      * @param {Object} adapter A SplitBar adapter object
27920      */
27921     setAdapter : function(adapter){
27922         this.adapter = adapter;
27923         this.adapter.init(this);
27924     },
27925     
27926     /**
27927      * Gets the minimum size for the resizing element
27928      * @return {Number} The minimum size
27929      */
27930     getMinimumSize : function(){
27931         return this.minSize;
27932     },
27933     
27934     /**
27935      * Sets the minimum size for the resizing element
27936      * @param {Number} minSize The minimum size
27937      */
27938     setMinimumSize : function(minSize){
27939         this.minSize = minSize;
27940     },
27941     
27942     /**
27943      * Gets the maximum size for the resizing element
27944      * @return {Number} The maximum size
27945      */
27946     getMaximumSize : function(){
27947         return this.maxSize;
27948     },
27949     
27950     /**
27951      * Sets the maximum size for the resizing element
27952      * @param {Number} maxSize The maximum size
27953      */
27954     setMaximumSize : function(maxSize){
27955         this.maxSize = maxSize;
27956     },
27957     
27958     /**
27959      * Sets the initialize size for the resizing element
27960      * @param {Number} size The initial size
27961      */
27962     setCurrentSize : function(size){
27963         var oldAnimate = this.animate;
27964         this.animate = false;
27965         this.adapter.setElementSize(this, size);
27966         this.animate = oldAnimate;
27967     },
27968     
27969     /**
27970      * Destroy this splitbar. 
27971      * @param {Boolean} removeEl True to remove the element
27972      */
27973     destroy : function(removeEl){
27974         if(this.shim){
27975             this.shim.remove();
27976         }
27977         this.dd.unreg();
27978         this.proxy.parentNode.removeChild(this.proxy);
27979         if(removeEl){
27980             this.el.remove();
27981         }
27982     }
27983 });
27984
27985 /**
27986  * @private static Create our own proxy element element. So it will be the same same size on all browsers, we won't use borders. Instead we use a background color.
27987  */
27988 Roo.SplitBar.createProxy = function(dir){
27989     var proxy = new Roo.Element(document.createElement("div"));
27990     proxy.unselectable();
27991     var cls = 'x-splitbar-proxy';
27992     proxy.addClass(cls + ' ' + (dir == Roo.SplitBar.HORIZONTAL ? cls +'-h' : cls + '-v'));
27993     document.body.appendChild(proxy.dom);
27994     return proxy.dom;
27995 };
27996
27997 /** 
27998  * @class Roo.SplitBar.BasicLayoutAdapter
27999  * Default Adapter. It assumes the splitter and resizing element are not positioned
28000  * elements and only gets/sets the width of the element. Generally used for table based layouts.
28001  */
28002 Roo.SplitBar.BasicLayoutAdapter = function(){
28003 };
28004
28005 Roo.SplitBar.BasicLayoutAdapter.prototype = {
28006     // do nothing for now
28007     init : function(s){
28008     
28009     },
28010     /**
28011      * Called before drag operations to get the current size of the resizing element. 
28012      * @param {Roo.SplitBar} s The SplitBar using this adapter
28013      */
28014      getElementSize : function(s){
28015         if(s.orientation == Roo.SplitBar.HORIZONTAL){
28016             return s.resizingEl.getWidth();
28017         }else{
28018             return s.resizingEl.getHeight();
28019         }
28020     },
28021     
28022     /**
28023      * Called after drag operations to set the size of the resizing element.
28024      * @param {Roo.SplitBar} s The SplitBar using this adapter
28025      * @param {Number} newSize The new size to set
28026      * @param {Function} onComplete A function to be invoked when resizing is complete
28027      */
28028     setElementSize : function(s, newSize, onComplete){
28029         if(s.orientation == Roo.SplitBar.HORIZONTAL){
28030             if(!s.animate){
28031                 s.resizingEl.setWidth(newSize);
28032                 if(onComplete){
28033                     onComplete(s, newSize);
28034                 }
28035             }else{
28036                 s.resizingEl.setWidth(newSize, true, .1, onComplete, 'easeOut');
28037             }
28038         }else{
28039             
28040             if(!s.animate){
28041                 s.resizingEl.setHeight(newSize);
28042                 if(onComplete){
28043                     onComplete(s, newSize);
28044                 }
28045             }else{
28046                 s.resizingEl.setHeight(newSize, true, .1, onComplete, 'easeOut');
28047             }
28048         }
28049     }
28050 };
28051
28052 /** 
28053  *@class Roo.SplitBar.AbsoluteLayoutAdapter
28054  * @extends Roo.SplitBar.BasicLayoutAdapter
28055  * Adapter that  moves the splitter element to align with the resized sizing element. 
28056  * Used with an absolute positioned SplitBar.
28057  * @param {String/HTMLElement/Roo.Element} container The container that wraps around the absolute positioned content. If it's
28058  * document.body, make sure you assign an id to the body element.
28059  */
28060 Roo.SplitBar.AbsoluteLayoutAdapter = function(container){
28061     this.basic = new Roo.SplitBar.BasicLayoutAdapter();
28062     this.container = Roo.get(container);
28063 };
28064
28065 Roo.SplitBar.AbsoluteLayoutAdapter.prototype = {
28066     init : function(s){
28067         this.basic.init(s);
28068     },
28069     
28070     getElementSize : function(s){
28071         return this.basic.getElementSize(s);
28072     },
28073     
28074     setElementSize : function(s, newSize, onComplete){
28075         this.basic.setElementSize(s, newSize, this.moveSplitter.createDelegate(this, [s]));
28076     },
28077     
28078     moveSplitter : function(s){
28079         var yes = Roo.SplitBar;
28080         switch(s.placement){
28081             case yes.LEFT:
28082                 s.el.setX(s.resizingEl.getRight());
28083                 break;
28084             case yes.RIGHT:
28085                 s.el.setStyle("right", (this.container.getWidth() - s.resizingEl.getLeft()) + "px");
28086                 break;
28087             case yes.TOP:
28088                 s.el.setY(s.resizingEl.getBottom());
28089                 break;
28090             case yes.BOTTOM:
28091                 s.el.setY(s.resizingEl.getTop() - s.el.getHeight());
28092                 break;
28093         }
28094     }
28095 };
28096
28097 /**
28098  * Orientation constant - Create a vertical SplitBar
28099  * @static
28100  * @type Number
28101  */
28102 Roo.SplitBar.VERTICAL = 1;
28103
28104 /**
28105  * Orientation constant - Create a horizontal SplitBar
28106  * @static
28107  * @type Number
28108  */
28109 Roo.SplitBar.HORIZONTAL = 2;
28110
28111 /**
28112  * Placement constant - The resizing element is to the left of the splitter element
28113  * @static
28114  * @type Number
28115  */
28116 Roo.SplitBar.LEFT = 1;
28117
28118 /**
28119  * Placement constant - The resizing element is to the right of the splitter element
28120  * @static
28121  * @type Number
28122  */
28123 Roo.SplitBar.RIGHT = 2;
28124
28125 /**
28126  * Placement constant - The resizing element is positioned above the splitter element
28127  * @static
28128  * @type Number
28129  */
28130 Roo.SplitBar.TOP = 3;
28131
28132 /**
28133  * Placement constant - The resizing element is positioned under splitter element
28134  * @static
28135  * @type Number
28136  */
28137 Roo.SplitBar.BOTTOM = 4;
28138 /*
28139  * Based on:
28140  * Ext JS Library 1.1.1
28141  * Copyright(c) 2006-2007, Ext JS, LLC.
28142  *
28143  * Originally Released Under LGPL - original licence link has changed is not relivant.
28144  *
28145  * Fork - LGPL
28146  * <script type="text/javascript">
28147  */
28148
28149 /**
28150  * @class Roo.View
28151  * @extends Roo.util.Observable
28152  * Create a "View" for an element based on a data model or UpdateManager and the supplied DomHelper template. 
28153  * This class also supports single and multi selection modes. <br>
28154  * Create a data model bound view:
28155  <pre><code>
28156  var store = new Roo.data.Store(...);
28157
28158  var view = new Roo.View({
28159     el : "my-element",
28160     tpl : '&lt;div id="{0}"&gt;{2} - {1}&lt;/div&gt;', // auto create template
28161  
28162     singleSelect: true,
28163     selectedClass: "ydataview-selected",
28164     store: store
28165  });
28166
28167  // listen for node click?
28168  view.on("click", function(vw, index, node, e){
28169  alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
28170  });
28171
28172  // load XML data
28173  dataModel.load("foobar.xml");
28174  </code></pre>
28175  For an example of creating a JSON/UpdateManager view, see {@link Roo.JsonView}.
28176  * <br><br>
28177  * <b>Note: The root of your template must be a single node. Table/row implementations may work but are not supported due to
28178  * IE"s limited insertion support with tables and Opera"s faulty event bubbling.</b>
28179  * 
28180  * Note: old style constructor is still suported (container, template, config)
28181  * 
28182  * @constructor
28183  * Create a new View
28184  * @param {Object} config The config object
28185  * 
28186  */
28187 Roo.View = function(config, depreciated_tpl, depreciated_config){
28188     
28189     this.parent = false;
28190     
28191     if (typeof(depreciated_tpl) == 'undefined') {
28192         // new way.. - universal constructor.
28193         Roo.apply(this, config);
28194         this.el  = Roo.get(this.el);
28195     } else {
28196         // old format..
28197         this.el  = Roo.get(config);
28198         this.tpl = depreciated_tpl;
28199         Roo.apply(this, depreciated_config);
28200     }
28201     this.wrapEl  = this.el.wrap().wrap();
28202     ///this.el = this.wrapEla.appendChild(document.createElement("div"));
28203     
28204     
28205     if(typeof(this.tpl) == "string"){
28206         this.tpl = new Roo.Template(this.tpl);
28207     } else {
28208         // support xtype ctors..
28209         this.tpl = new Roo.factory(this.tpl, Roo);
28210     }
28211     
28212     
28213     this.tpl.compile();
28214     
28215     /** @private */
28216     this.addEvents({
28217         /**
28218          * @event beforeclick
28219          * Fires before a click is processed. Returns false to cancel the default action.
28220          * @param {Roo.View} this
28221          * @param {Number} index The index of the target node
28222          * @param {HTMLElement} node The target node
28223          * @param {Roo.EventObject} e The raw event object
28224          */
28225             "beforeclick" : true,
28226         /**
28227          * @event click
28228          * Fires when a template node is clicked.
28229          * @param {Roo.View} this
28230          * @param {Number} index The index of the target node
28231          * @param {HTMLElement} node The target node
28232          * @param {Roo.EventObject} e The raw event object
28233          */
28234             "click" : true,
28235         /**
28236          * @event dblclick
28237          * Fires when a template node is double clicked.
28238          * @param {Roo.View} this
28239          * @param {Number} index The index of the target node
28240          * @param {HTMLElement} node The target node
28241          * @param {Roo.EventObject} e The raw event object
28242          */
28243             "dblclick" : true,
28244         /**
28245          * @event contextmenu
28246          * Fires when a template node is right clicked.
28247          * @param {Roo.View} this
28248          * @param {Number} index The index of the target node
28249          * @param {HTMLElement} node The target node
28250          * @param {Roo.EventObject} e The raw event object
28251          */
28252             "contextmenu" : true,
28253         /**
28254          * @event selectionchange
28255          * Fires when the selected nodes change.
28256          * @param {Roo.View} this
28257          * @param {Array} selections Array of the selected nodes
28258          */
28259             "selectionchange" : true,
28260     
28261         /**
28262          * @event beforeselect
28263          * Fires before a selection is made. If any handlers return false, the selection is cancelled.
28264          * @param {Roo.View} this
28265          * @param {HTMLElement} node The node to be selected
28266          * @param {Array} selections Array of currently selected nodes
28267          */
28268             "beforeselect" : true,
28269         /**
28270          * @event preparedata
28271          * Fires on every row to render, to allow you to change the data.
28272          * @param {Roo.View} this
28273          * @param {Object} data to be rendered (change this)
28274          */
28275           "preparedata" : true
28276           
28277           
28278         });
28279
28280
28281
28282     this.el.on({
28283         "click": this.onClick,
28284         "dblclick": this.onDblClick,
28285         "contextmenu": this.onContextMenu,
28286         scope:this
28287     });
28288
28289     this.selections = [];
28290     this.nodes = [];
28291     this.cmp = new Roo.CompositeElementLite([]);
28292     if(this.store){
28293         this.store = Roo.factory(this.store, Roo.data);
28294         this.setStore(this.store, true);
28295     }
28296     
28297     if ( this.footer && this.footer.xtype) {
28298            
28299          var fctr = this.wrapEl.appendChild(document.createElement("div"));
28300         
28301         this.footer.dataSource = this.store;
28302         this.footer.container = fctr;
28303         this.footer = Roo.factory(this.footer, Roo);
28304         fctr.insertFirst(this.el);
28305         
28306         // this is a bit insane - as the paging toolbar seems to detach the el..
28307 //        dom.parentNode.parentNode.parentNode
28308          // they get detached?
28309     }
28310     
28311     
28312     Roo.View.superclass.constructor.call(this);
28313     
28314     
28315 };
28316
28317 Roo.extend(Roo.View, Roo.util.Observable, {
28318     
28319      /**
28320      * @cfg {Roo.data.Store} store Data store to load data from.
28321      */
28322     store : false,
28323     
28324     /**
28325      * @cfg {String|Roo.Element} el The container element.
28326      */
28327     el : '',
28328     
28329     /**
28330      * @cfg {String|Roo.Template} tpl The template used by this View 
28331      */
28332     tpl : false,
28333     /**
28334      * @cfg {String} dataName the named area of the template to use as the data area
28335      *                          Works with domtemplates roo-name="name"
28336      */
28337     dataName: false,
28338     /**
28339      * @cfg {String} selectedClass The css class to add to selected nodes
28340      */
28341     selectedClass : "x-view-selected",
28342      /**
28343      * @cfg {String} emptyText The empty text to show when nothing is loaded.
28344      */
28345     emptyText : "",
28346     
28347     /**
28348      * @cfg {String} text to display on mask (default Loading)
28349      */
28350     mask : false,
28351     /**
28352      * @cfg {Boolean} multiSelect Allow multiple selection
28353      */
28354     multiSelect : false,
28355     /**
28356      * @cfg {Boolean} singleSelect Allow single selection
28357      */
28358     singleSelect:  false,
28359     
28360     /**
28361      * @cfg {Boolean} toggleSelect - selecting 
28362      */
28363     toggleSelect : false,
28364     
28365     /**
28366      * @cfg {Boolean} tickable - selecting 
28367      */
28368     tickable : false,
28369     
28370     /**
28371      * Returns the element this view is bound to.
28372      * @return {Roo.Element}
28373      */
28374     getEl : function(){
28375         return this.wrapEl;
28376     },
28377     
28378     
28379
28380     /**
28381      * Refreshes the view. - called by datachanged on the store. - do not call directly.
28382      */
28383     refresh : function(){
28384         //Roo.log('refresh');
28385         var t = this.tpl;
28386         
28387         // if we are using something like 'domtemplate', then
28388         // the what gets used is:
28389         // t.applySubtemplate(NAME, data, wrapping data..)
28390         // the outer template then get' applied with
28391         //     the store 'extra data'
28392         // and the body get's added to the
28393         //      roo-name="data" node?
28394         //      <span class='roo-tpl-{name}'></span> ?????
28395         
28396         
28397         
28398         this.clearSelections();
28399         this.el.update("");
28400         var html = [];
28401         var records = this.store.getRange();
28402         if(records.length < 1) {
28403             
28404             // is this valid??  = should it render a template??
28405             
28406             this.el.update(this.emptyText);
28407             return;
28408         }
28409         var el = this.el;
28410         if (this.dataName) {
28411             this.el.update(t.apply(this.store.meta)); //????
28412             el = this.el.child('.roo-tpl-' + this.dataName);
28413         }
28414         
28415         for(var i = 0, len = records.length; i < len; i++){
28416             var data = this.prepareData(records[i].data, i, records[i]);
28417             this.fireEvent("preparedata", this, data, i, records[i]);
28418             
28419             var d = Roo.apply({}, data);
28420             
28421             if(this.tickable){
28422                 Roo.apply(d, {'roo-id' : Roo.id()});
28423                 
28424                 var _this = this;
28425             
28426                 Roo.each(this.parent.item, function(item){
28427                     if(item[_this.parent.valueField] != data[_this.parent.valueField]){
28428                         return;
28429                     }
28430                     Roo.apply(d, {'roo-data-checked' : 'checked'});
28431                 });
28432             }
28433             
28434             html[html.length] = Roo.util.Format.trim(
28435                 this.dataName ?
28436                     t.applySubtemplate(this.dataName, d, this.store.meta) :
28437                     t.apply(d)
28438             );
28439         }
28440         
28441         
28442         
28443         el.update(html.join(""));
28444         this.nodes = el.dom.childNodes;
28445         this.updateIndexes(0);
28446     },
28447     
28448
28449     /**
28450      * Function to override to reformat the data that is sent to
28451      * the template for each node.
28452      * DEPRICATED - use the preparedata event handler.
28453      * @param {Array/Object} data The raw data (array of colData for a data model bound view or
28454      * a JSON object for an UpdateManager bound view).
28455      */
28456     prepareData : function(data, index, record)
28457     {
28458         this.fireEvent("preparedata", this, data, index, record);
28459         return data;
28460     },
28461
28462     onUpdate : function(ds, record){
28463         // Roo.log('on update');   
28464         this.clearSelections();
28465         var index = this.store.indexOf(record);
28466         var n = this.nodes[index];
28467         this.tpl.insertBefore(n, this.prepareData(record.data, index, record));
28468         n.parentNode.removeChild(n);
28469         this.updateIndexes(index, index);
28470     },
28471
28472     
28473     
28474 // --------- FIXME     
28475     onAdd : function(ds, records, index)
28476     {
28477         //Roo.log(['on Add', ds, records, index] );        
28478         this.clearSelections();
28479         if(this.nodes.length == 0){
28480             this.refresh();
28481             return;
28482         }
28483         var n = this.nodes[index];
28484         for(var i = 0, len = records.length; i < len; i++){
28485             var d = this.prepareData(records[i].data, i, records[i]);
28486             if(n){
28487                 this.tpl.insertBefore(n, d);
28488             }else{
28489                 
28490                 this.tpl.append(this.el, d);
28491             }
28492         }
28493         this.updateIndexes(index);
28494     },
28495
28496     onRemove : function(ds, record, index){
28497        // Roo.log('onRemove');
28498         this.clearSelections();
28499         var el = this.dataName  ?
28500             this.el.child('.roo-tpl-' + this.dataName) :
28501             this.el; 
28502         
28503         el.dom.removeChild(this.nodes[index]);
28504         this.updateIndexes(index);
28505     },
28506
28507     /**
28508      * Refresh an individual node.
28509      * @param {Number} index
28510      */
28511     refreshNode : function(index){
28512         this.onUpdate(this.store, this.store.getAt(index));
28513     },
28514
28515     updateIndexes : function(startIndex, endIndex){
28516         var ns = this.nodes;
28517         startIndex = startIndex || 0;
28518         endIndex = endIndex || ns.length - 1;
28519         for(var i = startIndex; i <= endIndex; i++){
28520             ns[i].nodeIndex = i;
28521         }
28522     },
28523
28524     /**
28525      * Changes the data store this view uses and refresh the view.
28526      * @param {Store} store
28527      */
28528     setStore : function(store, initial){
28529         if(!initial && this.store){
28530             this.store.un("datachanged", this.refresh);
28531             this.store.un("add", this.onAdd);
28532             this.store.un("remove", this.onRemove);
28533             this.store.un("update", this.onUpdate);
28534             this.store.un("clear", this.refresh);
28535             this.store.un("beforeload", this.onBeforeLoad);
28536             this.store.un("load", this.onLoad);
28537             this.store.un("loadexception", this.onLoad);
28538         }
28539         if(store){
28540           
28541             store.on("datachanged", this.refresh, this);
28542             store.on("add", this.onAdd, this);
28543             store.on("remove", this.onRemove, this);
28544             store.on("update", this.onUpdate, this);
28545             store.on("clear", this.refresh, this);
28546             store.on("beforeload", this.onBeforeLoad, this);
28547             store.on("load", this.onLoad, this);
28548             store.on("loadexception", this.onLoad, this);
28549         }
28550         
28551         if(store){
28552             this.refresh();
28553         }
28554     },
28555     /**
28556      * onbeforeLoad - masks the loading area.
28557      *
28558      */
28559     onBeforeLoad : function(store,opts)
28560     {
28561          //Roo.log('onBeforeLoad');   
28562         if (!opts.add) {
28563             this.el.update("");
28564         }
28565         this.el.mask(this.mask ? this.mask : "Loading" ); 
28566     },
28567     onLoad : function ()
28568     {
28569         this.el.unmask();
28570     },
28571     
28572
28573     /**
28574      * Returns the template node the passed child belongs to or null if it doesn't belong to one.
28575      * @param {HTMLElement} node
28576      * @return {HTMLElement} The template node
28577      */
28578     findItemFromChild : function(node){
28579         var el = this.dataName  ?
28580             this.el.child('.roo-tpl-' + this.dataName,true) :
28581             this.el.dom; 
28582         
28583         if(!node || node.parentNode == el){
28584                     return node;
28585             }
28586             var p = node.parentNode;
28587             while(p && p != el){
28588             if(p.parentNode == el){
28589                 return p;
28590             }
28591             p = p.parentNode;
28592         }
28593             return null;
28594     },
28595
28596     /** @ignore */
28597     onClick : function(e){
28598         var item = this.findItemFromChild(e.getTarget());
28599         if(item){
28600             var index = this.indexOf(item);
28601             if(this.onItemClick(item, index, e) !== false){
28602                 this.fireEvent("click", this, index, item, e);
28603             }
28604         }else{
28605             this.clearSelections();
28606         }
28607     },
28608
28609     /** @ignore */
28610     onContextMenu : function(e){
28611         var item = this.findItemFromChild(e.getTarget());
28612         if(item){
28613             this.fireEvent("contextmenu", this, this.indexOf(item), item, e);
28614         }
28615     },
28616
28617     /** @ignore */
28618     onDblClick : function(e){
28619         var item = this.findItemFromChild(e.getTarget());
28620         if(item){
28621             this.fireEvent("dblclick", this, this.indexOf(item), item, e);
28622         }
28623     },
28624
28625     onItemClick : function(item, index, e)
28626     {
28627         if(this.fireEvent("beforeclick", this, index, item, e) === false){
28628             return false;
28629         }
28630         if (this.toggleSelect) {
28631             var m = this.isSelected(item) ? 'unselect' : 'select';
28632             //Roo.log(m);
28633             var _t = this;
28634             _t[m](item, true, false);
28635             return true;
28636         }
28637         if(this.multiSelect || this.singleSelect){
28638             if(this.multiSelect && e.shiftKey && this.lastSelection){
28639                 this.select(this.getNodes(this.indexOf(this.lastSelection), index), false);
28640             }else{
28641                 this.select(item, this.multiSelect && e.ctrlKey);
28642                 this.lastSelection = item;
28643             }
28644             
28645             if(!this.tickable){
28646                 e.preventDefault();
28647             }
28648             
28649         }
28650         return true;
28651     },
28652
28653     /**
28654      * Get the number of selected nodes.
28655      * @return {Number}
28656      */
28657     getSelectionCount : function(){
28658         return this.selections.length;
28659     },
28660
28661     /**
28662      * Get the currently selected nodes.
28663      * @return {Array} An array of HTMLElements
28664      */
28665     getSelectedNodes : function(){
28666         return this.selections;
28667     },
28668
28669     /**
28670      * Get the indexes of the selected nodes.
28671      * @return {Array}
28672      */
28673     getSelectedIndexes : function(){
28674         var indexes = [], s = this.selections;
28675         for(var i = 0, len = s.length; i < len; i++){
28676             indexes.push(s[i].nodeIndex);
28677         }
28678         return indexes;
28679     },
28680
28681     /**
28682      * Clear all selections
28683      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange event
28684      */
28685     clearSelections : function(suppressEvent){
28686         if(this.nodes && (this.multiSelect || this.singleSelect) && this.selections.length > 0){
28687             this.cmp.elements = this.selections;
28688             this.cmp.removeClass(this.selectedClass);
28689             this.selections = [];
28690             if(!suppressEvent){
28691                 this.fireEvent("selectionchange", this, this.selections);
28692             }
28693         }
28694     },
28695
28696     /**
28697      * Returns true if the passed node is selected
28698      * @param {HTMLElement/Number} node The node or node index
28699      * @return {Boolean}
28700      */
28701     isSelected : function(node){
28702         var s = this.selections;
28703         if(s.length < 1){
28704             return false;
28705         }
28706         node = this.getNode(node);
28707         return s.indexOf(node) !== -1;
28708     },
28709
28710     /**
28711      * Selects nodes.
28712      * @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
28713      * @param {Boolean} keepExisting (optional) true to keep existing selections
28714      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
28715      */
28716     select : function(nodeInfo, keepExisting, suppressEvent){
28717         if(nodeInfo instanceof Array){
28718             if(!keepExisting){
28719                 this.clearSelections(true);
28720             }
28721             for(var i = 0, len = nodeInfo.length; i < len; i++){
28722                 this.select(nodeInfo[i], true, true);
28723             }
28724             return;
28725         } 
28726         var node = this.getNode(nodeInfo);
28727         if(!node || this.isSelected(node)){
28728             return; // already selected.
28729         }
28730         if(!keepExisting){
28731             this.clearSelections(true);
28732         }
28733         
28734         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
28735             Roo.fly(node).addClass(this.selectedClass);
28736             this.selections.push(node);
28737             if(!suppressEvent){
28738                 this.fireEvent("selectionchange", this, this.selections);
28739             }
28740         }
28741         
28742         
28743     },
28744       /**
28745      * Unselects nodes.
28746      * @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
28747      * @param {Boolean} keepExisting (optional) true IGNORED (for campatibility with select)
28748      * @param {Boolean} suppressEvent (optional) true to skip firing of the selectionchange vent
28749      */
28750     unselect : function(nodeInfo, keepExisting, suppressEvent)
28751     {
28752         if(nodeInfo instanceof Array){
28753             Roo.each(this.selections, function(s) {
28754                 this.unselect(s, nodeInfo);
28755             }, this);
28756             return;
28757         }
28758         var node = this.getNode(nodeInfo);
28759         if(!node || !this.isSelected(node)){
28760             //Roo.log("not selected");
28761             return; // not selected.
28762         }
28763         // fireevent???
28764         var ns = [];
28765         Roo.each(this.selections, function(s) {
28766             if (s == node ) {
28767                 Roo.fly(node).removeClass(this.selectedClass);
28768
28769                 return;
28770             }
28771             ns.push(s);
28772         },this);
28773         
28774         this.selections= ns;
28775         this.fireEvent("selectionchange", this, this.selections);
28776     },
28777
28778     /**
28779      * Gets a template node.
28780      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
28781      * @return {HTMLElement} The node or null if it wasn't found
28782      */
28783     getNode : function(nodeInfo){
28784         if(typeof nodeInfo == "string"){
28785             return document.getElementById(nodeInfo);
28786         }else if(typeof nodeInfo == "number"){
28787             return this.nodes[nodeInfo];
28788         }
28789         return nodeInfo;
28790     },
28791
28792     /**
28793      * Gets a range template nodes.
28794      * @param {Number} startIndex
28795      * @param {Number} endIndex
28796      * @return {Array} An array of nodes
28797      */
28798     getNodes : function(start, end){
28799         var ns = this.nodes;
28800         start = start || 0;
28801         end = typeof end == "undefined" ? ns.length - 1 : end;
28802         var nodes = [];
28803         if(start <= end){
28804             for(var i = start; i <= end; i++){
28805                 nodes.push(ns[i]);
28806             }
28807         } else{
28808             for(var i = start; i >= end; i--){
28809                 nodes.push(ns[i]);
28810             }
28811         }
28812         return nodes;
28813     },
28814
28815     /**
28816      * Finds the index of the passed node
28817      * @param {HTMLElement/String/Number} nodeInfo An HTMLElement template node, index of a template node or the id of a template node
28818      * @return {Number} The index of the node or -1
28819      */
28820     indexOf : function(node){
28821         node = this.getNode(node);
28822         if(typeof node.nodeIndex == "number"){
28823             return node.nodeIndex;
28824         }
28825         var ns = this.nodes;
28826         for(var i = 0, len = ns.length; i < len; i++){
28827             if(ns[i] == node){
28828                 return i;
28829             }
28830         }
28831         return -1;
28832     }
28833 });
28834 /*
28835  * Based on:
28836  * Ext JS Library 1.1.1
28837  * Copyright(c) 2006-2007, Ext JS, LLC.
28838  *
28839  * Originally Released Under LGPL - original licence link has changed is not relivant.
28840  *
28841  * Fork - LGPL
28842  * <script type="text/javascript">
28843  */
28844
28845 /**
28846  * @class Roo.JsonView
28847  * @extends Roo.View
28848  * Shortcut class to create a JSON + {@link Roo.UpdateManager} template view. Usage:
28849 <pre><code>
28850 var view = new Roo.JsonView({
28851     container: "my-element",
28852     tpl: '&lt;div id="{id}"&gt;{foo} - {bar}&lt;/div&gt;', // auto create template
28853     multiSelect: true, 
28854     jsonRoot: "data" 
28855 });
28856
28857 // listen for node click?
28858 view.on("click", function(vw, index, node, e){
28859     alert('Node "' + node.id + '" at index: ' + index + " was clicked.");
28860 });
28861
28862 // direct load of JSON data
28863 view.load("foobar.php");
28864
28865 // Example from my blog list
28866 var tpl = new Roo.Template(
28867     '&lt;div class="entry"&gt;' +
28868     '&lt;a class="entry-title" href="{link}"&gt;{title}&lt;/a&gt;' +
28869     "&lt;h4&gt;{date} by {author} | {comments} Comments&lt;/h4&gt;{description}" +
28870     "&lt;/div&gt;&lt;hr /&gt;"
28871 );
28872
28873 var moreView = new Roo.JsonView({
28874     container :  "entry-list", 
28875     template : tpl,
28876     jsonRoot: "posts"
28877 });
28878 moreView.on("beforerender", this.sortEntries, this);
28879 moreView.load({
28880     url: "/blog/get-posts.php",
28881     params: "allposts=true",
28882     text: "Loading Blog Entries..."
28883 });
28884 </code></pre>
28885
28886 * Note: old code is supported with arguments : (container, template, config)
28887
28888
28889  * @constructor
28890  * Create a new JsonView
28891  * 
28892  * @param {Object} config The config object
28893  * 
28894  */
28895 Roo.JsonView = function(config, depreciated_tpl, depreciated_config){
28896     
28897     
28898     Roo.JsonView.superclass.constructor.call(this, config, depreciated_tpl, depreciated_config);
28899
28900     var um = this.el.getUpdateManager();
28901     um.setRenderer(this);
28902     um.on("update", this.onLoad, this);
28903     um.on("failure", this.onLoadException, this);
28904
28905     /**
28906      * @event beforerender
28907      * Fires before rendering of the downloaded JSON data.
28908      * @param {Roo.JsonView} this
28909      * @param {Object} data The JSON data loaded
28910      */
28911     /**
28912      * @event load
28913      * Fires when data is loaded.
28914      * @param {Roo.JsonView} this
28915      * @param {Object} data The JSON data loaded
28916      * @param {Object} response The raw Connect response object
28917      */
28918     /**
28919      * @event loadexception
28920      * Fires when loading fails.
28921      * @param {Roo.JsonView} this
28922      * @param {Object} response The raw Connect response object
28923      */
28924     this.addEvents({
28925         'beforerender' : true,
28926         'load' : true,
28927         'loadexception' : true
28928     });
28929 };
28930 Roo.extend(Roo.JsonView, Roo.View, {
28931     /**
28932      * @type {String} The root property in the loaded JSON object that contains the data
28933      */
28934     jsonRoot : "",
28935
28936     /**
28937      * Refreshes the view.
28938      */
28939     refresh : function(){
28940         this.clearSelections();
28941         this.el.update("");
28942         var html = [];
28943         var o = this.jsonData;
28944         if(o && o.length > 0){
28945             for(var i = 0, len = o.length; i < len; i++){
28946                 var data = this.prepareData(o[i], i, o);
28947                 html[html.length] = this.tpl.apply(data);
28948             }
28949         }else{
28950             html.push(this.emptyText);
28951         }
28952         this.el.update(html.join(""));
28953         this.nodes = this.el.dom.childNodes;
28954         this.updateIndexes(0);
28955     },
28956
28957     /**
28958      * Performs an async HTTP request, and loads the JSON from the response. If <i>params</i> are specified it uses POST, otherwise it uses GET.
28959      * @param {Object/String/Function} url The URL for this request, or a function to call to get the URL, or a config object containing any of the following options:
28960      <pre><code>
28961      view.load({
28962          url: "your-url.php",
28963          params: {param1: "foo", param2: "bar"}, // or a URL encoded string
28964          callback: yourFunction,
28965          scope: yourObject, //(optional scope)
28966          discardUrl: false,
28967          nocache: false,
28968          text: "Loading...",
28969          timeout: 30,
28970          scripts: false
28971      });
28972      </code></pre>
28973      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
28974      * are respectively shorthand for <i>disableCaching</i>, <i>indicatorText</i>, and <i>loadScripts</i> and are used to set their associated property on this UpdateManager instance.
28975      * @param {String/Object} params (optional) The parameters to pass, as either a URL encoded string "param1=1&amp;param2=2" or an object {param1: 1, param2: 2}
28976      * @param {Function} callback (optional) Callback when transaction is complete - called with signature (oElement, bSuccess)
28977      * @param {Boolean} discardUrl (optional) By default when you execute an update the defaultUrl is changed to the last used URL. If true, it will not store the URL.
28978      */
28979     load : function(){
28980         var um = this.el.getUpdateManager();
28981         um.update.apply(um, arguments);
28982     },
28983
28984     // note - render is a standard framework call...
28985     // using it for the response is really flaky... - it's called by UpdateManager normally, except when called by the XComponent/addXtype.
28986     render : function(el, response){
28987         
28988         this.clearSelections();
28989         this.el.update("");
28990         var o;
28991         try{
28992             if (response != '') {
28993                 o = Roo.util.JSON.decode(response.responseText);
28994                 if(this.jsonRoot){
28995                     
28996                     o = o[this.jsonRoot];
28997                 }
28998             }
28999         } catch(e){
29000         }
29001         /**
29002          * The current JSON data or null
29003          */
29004         this.jsonData = o;
29005         this.beforeRender();
29006         this.refresh();
29007     },
29008
29009 /**
29010  * Get the number of records in the current JSON dataset
29011  * @return {Number}
29012  */
29013     getCount : function(){
29014         return this.jsonData ? this.jsonData.length : 0;
29015     },
29016
29017 /**
29018  * Returns the JSON object for the specified node(s)
29019  * @param {HTMLElement/Array} node The node or an array of nodes
29020  * @return {Object/Array} If you pass in an array, you get an array back, otherwise
29021  * you get the JSON object for the node
29022  */
29023     getNodeData : function(node){
29024         if(node instanceof Array){
29025             var data = [];
29026             for(var i = 0, len = node.length; i < len; i++){
29027                 data.push(this.getNodeData(node[i]));
29028             }
29029             return data;
29030         }
29031         return this.jsonData[this.indexOf(node)] || null;
29032     },
29033
29034     beforeRender : function(){
29035         this.snapshot = this.jsonData;
29036         if(this.sortInfo){
29037             this.sort.apply(this, this.sortInfo);
29038         }
29039         this.fireEvent("beforerender", this, this.jsonData);
29040     },
29041
29042     onLoad : function(el, o){
29043         this.fireEvent("load", this, this.jsonData, o);
29044     },
29045
29046     onLoadException : function(el, o){
29047         this.fireEvent("loadexception", this, o);
29048     },
29049
29050 /**
29051  * Filter the data by a specific property.
29052  * @param {String} property A property on your JSON objects
29053  * @param {String/RegExp} value Either string that the property values
29054  * should start with, or a RegExp to test against the property
29055  */
29056     filter : function(property, value){
29057         if(this.jsonData){
29058             var data = [];
29059             var ss = this.snapshot;
29060             if(typeof value == "string"){
29061                 var vlen = value.length;
29062                 if(vlen == 0){
29063                     this.clearFilter();
29064                     return;
29065                 }
29066                 value = value.toLowerCase();
29067                 for(var i = 0, len = ss.length; i < len; i++){
29068                     var o = ss[i];
29069                     if(o[property].substr(0, vlen).toLowerCase() == value){
29070                         data.push(o);
29071                     }
29072                 }
29073             } else if(value.exec){ // regex?
29074                 for(var i = 0, len = ss.length; i < len; i++){
29075                     var o = ss[i];
29076                     if(value.test(o[property])){
29077                         data.push(o);
29078                     }
29079                 }
29080             } else{
29081                 return;
29082             }
29083             this.jsonData = data;
29084             this.refresh();
29085         }
29086     },
29087
29088 /**
29089  * Filter by a function. The passed function will be called with each
29090  * object in the current dataset. If the function returns true the value is kept,
29091  * otherwise it is filtered.
29092  * @param {Function} fn
29093  * @param {Object} scope (optional) The scope of the function (defaults to this JsonView)
29094  */
29095     filterBy : function(fn, scope){
29096         if(this.jsonData){
29097             var data = [];
29098             var ss = this.snapshot;
29099             for(var i = 0, len = ss.length; i < len; i++){
29100                 var o = ss[i];
29101                 if(fn.call(scope || this, o)){
29102                     data.push(o);
29103                 }
29104             }
29105             this.jsonData = data;
29106             this.refresh();
29107         }
29108     },
29109
29110 /**
29111  * Clears the current filter.
29112  */
29113     clearFilter : function(){
29114         if(this.snapshot && this.jsonData != this.snapshot){
29115             this.jsonData = this.snapshot;
29116             this.refresh();
29117         }
29118     },
29119
29120
29121 /**
29122  * Sorts the data for this view and refreshes it.
29123  * @param {String} property A property on your JSON objects to sort on
29124  * @param {String} direction (optional) "desc" or "asc" (defaults to "asc")
29125  * @param {Function} sortType (optional) A function to call to convert the data to a sortable value.
29126  */
29127     sort : function(property, dir, sortType){
29128         this.sortInfo = Array.prototype.slice.call(arguments, 0);
29129         if(this.jsonData){
29130             var p = property;
29131             var dsc = dir && dir.toLowerCase() == "desc";
29132             var f = function(o1, o2){
29133                 var v1 = sortType ? sortType(o1[p]) : o1[p];
29134                 var v2 = sortType ? sortType(o2[p]) : o2[p];
29135                 ;
29136                 if(v1 < v2){
29137                     return dsc ? +1 : -1;
29138                 } else if(v1 > v2){
29139                     return dsc ? -1 : +1;
29140                 } else{
29141                     return 0;
29142                 }
29143             };
29144             this.jsonData.sort(f);
29145             this.refresh();
29146             if(this.jsonData != this.snapshot){
29147                 this.snapshot.sort(f);
29148             }
29149         }
29150     }
29151 });/*
29152  * Based on:
29153  * Ext JS Library 1.1.1
29154  * Copyright(c) 2006-2007, Ext JS, LLC.
29155  *
29156  * Originally Released Under LGPL - original licence link has changed is not relivant.
29157  *
29158  * Fork - LGPL
29159  * <script type="text/javascript">
29160  */
29161  
29162
29163 /**
29164  * @class Roo.ColorPalette
29165  * @extends Roo.Component
29166  * Simple color palette class for choosing colors.  The palette can be rendered to any container.<br />
29167  * Here's an example of typical usage:
29168  * <pre><code>
29169 var cp = new Roo.ColorPalette({value:'993300'});  // initial selected color
29170 cp.render('my-div');
29171
29172 cp.on('select', function(palette, selColor){
29173     // do something with selColor
29174 });
29175 </code></pre>
29176  * @constructor
29177  * Create a new ColorPalette
29178  * @param {Object} config The config object
29179  */
29180 Roo.ColorPalette = function(config){
29181     Roo.ColorPalette.superclass.constructor.call(this, config);
29182     this.addEvents({
29183         /**
29184              * @event select
29185              * Fires when a color is selected
29186              * @param {ColorPalette} this
29187              * @param {String} color The 6-digit color hex code (without the # symbol)
29188              */
29189         select: true
29190     });
29191
29192     if(this.handler){
29193         this.on("select", this.handler, this.scope, true);
29194     }
29195 };
29196 Roo.extend(Roo.ColorPalette, Roo.Component, {
29197     /**
29198      * @cfg {String} itemCls
29199      * The CSS class to apply to the containing element (defaults to "x-color-palette")
29200      */
29201     itemCls : "x-color-palette",
29202     /**
29203      * @cfg {String} value
29204      * The initial color to highlight (should be a valid 6-digit color hex code without the # symbol).  Note that
29205      * the hex codes are case-sensitive.
29206      */
29207     value : null,
29208     clickEvent:'click',
29209     // private
29210     ctype: "Roo.ColorPalette",
29211
29212     /**
29213      * @cfg {Boolean} allowReselect If set to true then reselecting a color that is already selected fires the selection event
29214      */
29215     allowReselect : false,
29216
29217     /**
29218      * <p>An array of 6-digit color hex code strings (without the # symbol).  This array can contain any number
29219      * of colors, and each hex code should be unique.  The width of the palette is controlled via CSS by adjusting
29220      * the width property of the 'x-color-palette' class (or assigning a custom class), so you can balance the number
29221      * of colors with the width setting until the box is symmetrical.</p>
29222      * <p>You can override individual colors if needed:</p>
29223      * <pre><code>
29224 var cp = new Roo.ColorPalette();
29225 cp.colors[0] = "FF0000";  // change the first box to red
29226 </code></pre>
29227
29228 Or you can provide a custom array of your own for complete control:
29229 <pre><code>
29230 var cp = new Roo.ColorPalette();
29231 cp.colors = ["000000", "993300", "333300"];
29232 </code></pre>
29233      * @type Array
29234      */
29235     colors : [
29236         "000000", "993300", "333300", "003300", "003366", "000080", "333399", "333333",
29237         "800000", "FF6600", "808000", "008000", "008080", "0000FF", "666699", "808080",
29238         "FF0000", "FF9900", "99CC00", "339966", "33CCCC", "3366FF", "800080", "969696",
29239         "FF00FF", "FFCC00", "FFFF00", "00FF00", "00FFFF", "00CCFF", "993366", "C0C0C0",
29240         "FF99CC", "FFCC99", "FFFF99", "CCFFCC", "CCFFFF", "99CCFF", "CC99FF", "FFFFFF"
29241     ],
29242
29243     // private
29244     onRender : function(container, position){
29245         var t = new Roo.MasterTemplate(
29246             '<tpl><a href="#" class="color-{0}" hidefocus="on"><em><span style="background:#{0}" unselectable="on">&#160;</span></em></a></tpl>'
29247         );
29248         var c = this.colors;
29249         for(var i = 0, len = c.length; i < len; i++){
29250             t.add([c[i]]);
29251         }
29252         var el = document.createElement("div");
29253         el.className = this.itemCls;
29254         t.overwrite(el);
29255         container.dom.insertBefore(el, position);
29256         this.el = Roo.get(el);
29257         this.el.on(this.clickEvent, this.handleClick,  this, {delegate: "a"});
29258         if(this.clickEvent != 'click'){
29259             this.el.on('click', Roo.emptyFn,  this, {delegate: "a", preventDefault:true});
29260         }
29261     },
29262
29263     // private
29264     afterRender : function(){
29265         Roo.ColorPalette.superclass.afterRender.call(this);
29266         if(this.value){
29267             var s = this.value;
29268             this.value = null;
29269             this.select(s);
29270         }
29271     },
29272
29273     // private
29274     handleClick : function(e, t){
29275         e.preventDefault();
29276         if(!this.disabled){
29277             var c = t.className.match(/(?:^|\s)color-(.{6})(?:\s|$)/)[1];
29278             this.select(c.toUpperCase());
29279         }
29280     },
29281
29282     /**
29283      * Selects the specified color in the palette (fires the select event)
29284      * @param {String} color A valid 6-digit color hex code (# will be stripped if included)
29285      */
29286     select : function(color){
29287         color = color.replace("#", "");
29288         if(color != this.value || this.allowReselect){
29289             var el = this.el;
29290             if(this.value){
29291                 el.child("a.color-"+this.value).removeClass("x-color-palette-sel");
29292             }
29293             el.child("a.color-"+color).addClass("x-color-palette-sel");
29294             this.value = color;
29295             this.fireEvent("select", this, color);
29296         }
29297     }
29298 });/*
29299  * Based on:
29300  * Ext JS Library 1.1.1
29301  * Copyright(c) 2006-2007, Ext JS, LLC.
29302  *
29303  * Originally Released Under LGPL - original licence link has changed is not relivant.
29304  *
29305  * Fork - LGPL
29306  * <script type="text/javascript">
29307  */
29308  
29309 /**
29310  * @class Roo.DatePicker
29311  * @extends Roo.Component
29312  * Simple date picker class.
29313  * @constructor
29314  * Create a new DatePicker
29315  * @param {Object} config The config object
29316  */
29317 Roo.DatePicker = function(config){
29318     Roo.DatePicker.superclass.constructor.call(this, config);
29319
29320     this.value = config && config.value ?
29321                  config.value.clearTime() : new Date().clearTime();
29322
29323     this.addEvents({
29324         /**
29325              * @event select
29326              * Fires when a date is selected
29327              * @param {DatePicker} this
29328              * @param {Date} date The selected date
29329              */
29330         'select': true,
29331         /**
29332              * @event monthchange
29333              * Fires when the displayed month changes 
29334              * @param {DatePicker} this
29335              * @param {Date} date The selected month
29336              */
29337         'monthchange': true
29338     });
29339
29340     if(this.handler){
29341         this.on("select", this.handler,  this.scope || this);
29342     }
29343     // build the disabledDatesRE
29344     if(!this.disabledDatesRE && this.disabledDates){
29345         var dd = this.disabledDates;
29346         var re = "(?:";
29347         for(var i = 0; i < dd.length; i++){
29348             re += dd[i];
29349             if(i != dd.length-1) {
29350                 re += "|";
29351             }
29352         }
29353         this.disabledDatesRE = new RegExp(re + ")");
29354     }
29355 };
29356
29357 Roo.extend(Roo.DatePicker, Roo.Component, {
29358     /**
29359      * @cfg {String} todayText
29360      * The text to display on the button that selects the current date (defaults to "Today")
29361      */
29362     todayText : "Today",
29363     /**
29364      * @cfg {String} okText
29365      * The text to display on the ok button
29366      */
29367     okText : "&#160;OK&#160;", // &#160; to give the user extra clicking room
29368     /**
29369      * @cfg {String} cancelText
29370      * The text to display on the cancel button
29371      */
29372     cancelText : "Cancel",
29373     /**
29374      * @cfg {String} todayTip
29375      * The tooltip to display for the button that selects the current date (defaults to "{current date} (Spacebar)")
29376      */
29377     todayTip : "{0} (Spacebar)",
29378     /**
29379      * @cfg {Date} minDate
29380      * Minimum allowable date (JavaScript date object, defaults to null)
29381      */
29382     minDate : null,
29383     /**
29384      * @cfg {Date} maxDate
29385      * Maximum allowable date (JavaScript date object, defaults to null)
29386      */
29387     maxDate : null,
29388     /**
29389      * @cfg {String} minText
29390      * The error text to display if the minDate validation fails (defaults to "This date is before the minimum date")
29391      */
29392     minText : "This date is before the minimum date",
29393     /**
29394      * @cfg {String} maxText
29395      * The error text to display if the maxDate validation fails (defaults to "This date is after the maximum date")
29396      */
29397     maxText : "This date is after the maximum date",
29398     /**
29399      * @cfg {String} format
29400      * The default date format string which can be overriden for localization support.  The format must be
29401      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
29402      */
29403     format : "m/d/y",
29404     /**
29405      * @cfg {Array} disabledDays
29406      * An array of days to disable, 0-based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
29407      */
29408     disabledDays : null,
29409     /**
29410      * @cfg {String} disabledDaysText
29411      * The tooltip to display when the date falls on a disabled day (defaults to "")
29412      */
29413     disabledDaysText : "",
29414     /**
29415      * @cfg {RegExp} disabledDatesRE
29416      * JavaScript regular expression used to disable a pattern of dates (defaults to null)
29417      */
29418     disabledDatesRE : null,
29419     /**
29420      * @cfg {String} disabledDatesText
29421      * The tooltip text to display when the date falls on a disabled date (defaults to "")
29422      */
29423     disabledDatesText : "",
29424     /**
29425      * @cfg {Boolean} constrainToViewport
29426      * True to constrain the date picker to the viewport (defaults to true)
29427      */
29428     constrainToViewport : true,
29429     /**
29430      * @cfg {Array} monthNames
29431      * An array of textual month names which can be overriden for localization support (defaults to Date.monthNames)
29432      */
29433     monthNames : Date.monthNames,
29434     /**
29435      * @cfg {Array} dayNames
29436      * An array of textual day names which can be overriden for localization support (defaults to Date.dayNames)
29437      */
29438     dayNames : Date.dayNames,
29439     /**
29440      * @cfg {String} nextText
29441      * The next month navigation button tooltip (defaults to 'Next Month (Control+Right)')
29442      */
29443     nextText: 'Next Month (Control+Right)',
29444     /**
29445      * @cfg {String} prevText
29446      * The previous month navigation button tooltip (defaults to 'Previous Month (Control+Left)')
29447      */
29448     prevText: 'Previous Month (Control+Left)',
29449     /**
29450      * @cfg {String} monthYearText
29451      * The header month selector tooltip (defaults to 'Choose a month (Control+Up/Down to move years)')
29452      */
29453     monthYearText: 'Choose a month (Control+Up/Down to move years)',
29454     /**
29455      * @cfg {Number} startDay
29456      * Day index at which the week should begin, 0-based (defaults to 0, which is Sunday)
29457      */
29458     startDay : 0,
29459     /**
29460      * @cfg {Bool} showClear
29461      * Show a clear button (usefull for date form elements that can be blank.)
29462      */
29463     
29464     showClear: false,
29465     
29466     /**
29467      * Sets the value of the date field
29468      * @param {Date} value The date to set
29469      */
29470     setValue : function(value){
29471         var old = this.value;
29472         
29473         if (typeof(value) == 'string') {
29474          
29475             value = Date.parseDate(value, this.format);
29476         }
29477         if (!value) {
29478             value = new Date();
29479         }
29480         
29481         this.value = value.clearTime(true);
29482         if(this.el){
29483             this.update(this.value);
29484         }
29485     },
29486
29487     /**
29488      * Gets the current selected value of the date field
29489      * @return {Date} The selected date
29490      */
29491     getValue : function(){
29492         return this.value;
29493     },
29494
29495     // private
29496     focus : function(){
29497         if(this.el){
29498             this.update(this.activeDate);
29499         }
29500     },
29501
29502     // privateval
29503     onRender : function(container, position){
29504         
29505         var m = [
29506              '<table cellspacing="0">',
29507                 '<tr><td class="x-date-left"><a href="#" title="', this.prevText ,'">&#160;</a></td><td class="x-date-middle" align="center"></td><td class="x-date-right"><a href="#" title="', this.nextText ,'">&#160;</a></td></tr>',
29508                 '<tr><td colspan="3"><table class="x-date-inner" cellspacing="0"><thead><tr>'];
29509         var dn = this.dayNames;
29510         for(var i = 0; i < 7; i++){
29511             var d = this.startDay+i;
29512             if(d > 6){
29513                 d = d-7;
29514             }
29515             m.push("<th><span>", dn[d].substr(0,1), "</span></th>");
29516         }
29517         m[m.length] = "</tr></thead><tbody><tr>";
29518         for(var i = 0; i < 42; i++) {
29519             if(i % 7 == 0 && i != 0){
29520                 m[m.length] = "</tr><tr>";
29521             }
29522             m[m.length] = '<td><a href="#" hidefocus="on" class="x-date-date" tabIndex="1"><em><span></span></em></a></td>';
29523         }
29524         m[m.length] = '</tr></tbody></table></td></tr><tr>'+
29525             '<td colspan="3" class="x-date-bottom" align="center"></td></tr></table><div class="x-date-mp"></div>';
29526
29527         var el = document.createElement("div");
29528         el.className = "x-date-picker";
29529         el.innerHTML = m.join("");
29530
29531         container.dom.insertBefore(el, position);
29532
29533         this.el = Roo.get(el);
29534         this.eventEl = Roo.get(el.firstChild);
29535
29536         new Roo.util.ClickRepeater(this.el.child("td.x-date-left a"), {
29537             handler: this.showPrevMonth,
29538             scope: this,
29539             preventDefault:true,
29540             stopDefault:true
29541         });
29542
29543         new Roo.util.ClickRepeater(this.el.child("td.x-date-right a"), {
29544             handler: this.showNextMonth,
29545             scope: this,
29546             preventDefault:true,
29547             stopDefault:true
29548         });
29549
29550         this.eventEl.on("mousewheel", this.handleMouseWheel,  this);
29551
29552         this.monthPicker = this.el.down('div.x-date-mp');
29553         this.monthPicker.enableDisplayMode('block');
29554         
29555         var kn = new Roo.KeyNav(this.eventEl, {
29556             "left" : function(e){
29557                 e.ctrlKey ?
29558                     this.showPrevMonth() :
29559                     this.update(this.activeDate.add("d", -1));
29560             },
29561
29562             "right" : function(e){
29563                 e.ctrlKey ?
29564                     this.showNextMonth() :
29565                     this.update(this.activeDate.add("d", 1));
29566             },
29567
29568             "up" : function(e){
29569                 e.ctrlKey ?
29570                     this.showNextYear() :
29571                     this.update(this.activeDate.add("d", -7));
29572             },
29573
29574             "down" : function(e){
29575                 e.ctrlKey ?
29576                     this.showPrevYear() :
29577                     this.update(this.activeDate.add("d", 7));
29578             },
29579
29580             "pageUp" : function(e){
29581                 this.showNextMonth();
29582             },
29583
29584             "pageDown" : function(e){
29585                 this.showPrevMonth();
29586             },
29587
29588             "enter" : function(e){
29589                 e.stopPropagation();
29590                 return true;
29591             },
29592
29593             scope : this
29594         });
29595
29596         this.eventEl.on("click", this.handleDateClick,  this, {delegate: "a.x-date-date"});
29597
29598         this.eventEl.addKeyListener(Roo.EventObject.SPACE, this.selectToday,  this);
29599
29600         this.el.unselectable();
29601         
29602         this.cells = this.el.select("table.x-date-inner tbody td");
29603         this.textNodes = this.el.query("table.x-date-inner tbody span");
29604
29605         this.mbtn = new Roo.Button(this.el.child("td.x-date-middle", true), {
29606             text: "&#160;",
29607             tooltip: this.monthYearText
29608         });
29609
29610         this.mbtn.on('click', this.showMonthPicker, this);
29611         this.mbtn.el.child(this.mbtn.menuClassTarget).addClass("x-btn-with-menu");
29612
29613
29614         var today = (new Date()).dateFormat(this.format);
29615         
29616         var baseTb = new Roo.Toolbar(this.el.child("td.x-date-bottom", true));
29617         if (this.showClear) {
29618             baseTb.add( new Roo.Toolbar.Fill());
29619         }
29620         baseTb.add({
29621             text: String.format(this.todayText, today),
29622             tooltip: String.format(this.todayTip, today),
29623             handler: this.selectToday,
29624             scope: this
29625         });
29626         
29627         //var todayBtn = new Roo.Button(this.el.child("td.x-date-bottom", true), {
29628             
29629         //});
29630         if (this.showClear) {
29631             
29632             baseTb.add( new Roo.Toolbar.Fill());
29633             baseTb.add({
29634                 text: '&#160;',
29635                 cls: 'x-btn-icon x-btn-clear',
29636                 handler: function() {
29637                     //this.value = '';
29638                     this.fireEvent("select", this, '');
29639                 },
29640                 scope: this
29641             });
29642         }
29643         
29644         
29645         if(Roo.isIE){
29646             this.el.repaint();
29647         }
29648         this.update(this.value);
29649     },
29650
29651     createMonthPicker : function(){
29652         if(!this.monthPicker.dom.firstChild){
29653             var buf = ['<table border="0" cellspacing="0">'];
29654             for(var i = 0; i < 6; i++){
29655                 buf.push(
29656                     '<tr><td class="x-date-mp-month"><a href="#">', this.monthNames[i].substr(0, 3), '</a></td>',
29657                     '<td class="x-date-mp-month x-date-mp-sep"><a href="#">', this.monthNames[i+6].substr(0, 3), '</a></td>',
29658                     i == 0 ?
29659                     '<td class="x-date-mp-ybtn" align="center"><a class="x-date-mp-prev"></a></td><td class="x-date-mp-ybtn" align="center"><a class="x-date-mp-next"></a></td></tr>' :
29660                     '<td class="x-date-mp-year"><a href="#"></a></td><td class="x-date-mp-year"><a href="#"></a></td></tr>'
29661                 );
29662             }
29663             buf.push(
29664                 '<tr class="x-date-mp-btns"><td colspan="4"><button type="button" class="x-date-mp-ok">',
29665                     this.okText,
29666                     '</button><button type="button" class="x-date-mp-cancel">',
29667                     this.cancelText,
29668                     '</button></td></tr>',
29669                 '</table>'
29670             );
29671             this.monthPicker.update(buf.join(''));
29672             this.monthPicker.on('click', this.onMonthClick, this);
29673             this.monthPicker.on('dblclick', this.onMonthDblClick, this);
29674
29675             this.mpMonths = this.monthPicker.select('td.x-date-mp-month');
29676             this.mpYears = this.monthPicker.select('td.x-date-mp-year');
29677
29678             this.mpMonths.each(function(m, a, i){
29679                 i += 1;
29680                 if((i%2) == 0){
29681                     m.dom.xmonth = 5 + Math.round(i * .5);
29682                 }else{
29683                     m.dom.xmonth = Math.round((i-1) * .5);
29684                 }
29685             });
29686         }
29687     },
29688
29689     showMonthPicker : function(){
29690         this.createMonthPicker();
29691         var size = this.el.getSize();
29692         this.monthPicker.setSize(size);
29693         this.monthPicker.child('table').setSize(size);
29694
29695         this.mpSelMonth = (this.activeDate || this.value).getMonth();
29696         this.updateMPMonth(this.mpSelMonth);
29697         this.mpSelYear = (this.activeDate || this.value).getFullYear();
29698         this.updateMPYear(this.mpSelYear);
29699
29700         this.monthPicker.slideIn('t', {duration:.2});
29701     },
29702
29703     updateMPYear : function(y){
29704         this.mpyear = y;
29705         var ys = this.mpYears.elements;
29706         for(var i = 1; i <= 10; i++){
29707             var td = ys[i-1], y2;
29708             if((i%2) == 0){
29709                 y2 = y + Math.round(i * .5);
29710                 td.firstChild.innerHTML = y2;
29711                 td.xyear = y2;
29712             }else{
29713                 y2 = y - (5-Math.round(i * .5));
29714                 td.firstChild.innerHTML = y2;
29715                 td.xyear = y2;
29716             }
29717             this.mpYears.item(i-1)[y2 == this.mpSelYear ? 'addClass' : 'removeClass']('x-date-mp-sel');
29718         }
29719     },
29720
29721     updateMPMonth : function(sm){
29722         this.mpMonths.each(function(m, a, i){
29723             m[m.dom.xmonth == sm ? 'addClass' : 'removeClass']('x-date-mp-sel');
29724         });
29725     },
29726
29727     selectMPMonth: function(m){
29728         
29729     },
29730
29731     onMonthClick : function(e, t){
29732         e.stopEvent();
29733         var el = new Roo.Element(t), pn;
29734         if(el.is('button.x-date-mp-cancel')){
29735             this.hideMonthPicker();
29736         }
29737         else if(el.is('button.x-date-mp-ok')){
29738             this.update(new Date(this.mpSelYear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
29739             this.hideMonthPicker();
29740         }
29741         else if(pn = el.up('td.x-date-mp-month', 2)){
29742             this.mpMonths.removeClass('x-date-mp-sel');
29743             pn.addClass('x-date-mp-sel');
29744             this.mpSelMonth = pn.dom.xmonth;
29745         }
29746         else if(pn = el.up('td.x-date-mp-year', 2)){
29747             this.mpYears.removeClass('x-date-mp-sel');
29748             pn.addClass('x-date-mp-sel');
29749             this.mpSelYear = pn.dom.xyear;
29750         }
29751         else if(el.is('a.x-date-mp-prev')){
29752             this.updateMPYear(this.mpyear-10);
29753         }
29754         else if(el.is('a.x-date-mp-next')){
29755             this.updateMPYear(this.mpyear+10);
29756         }
29757     },
29758
29759     onMonthDblClick : function(e, t){
29760         e.stopEvent();
29761         var el = new Roo.Element(t), pn;
29762         if(pn = el.up('td.x-date-mp-month', 2)){
29763             this.update(new Date(this.mpSelYear, pn.dom.xmonth, (this.activeDate || this.value).getDate()));
29764             this.hideMonthPicker();
29765         }
29766         else if(pn = el.up('td.x-date-mp-year', 2)){
29767             this.update(new Date(pn.dom.xyear, this.mpSelMonth, (this.activeDate || this.value).getDate()));
29768             this.hideMonthPicker();
29769         }
29770     },
29771
29772     hideMonthPicker : function(disableAnim){
29773         if(this.monthPicker){
29774             if(disableAnim === true){
29775                 this.monthPicker.hide();
29776             }else{
29777                 this.monthPicker.slideOut('t', {duration:.2});
29778             }
29779         }
29780     },
29781
29782     // private
29783     showPrevMonth : function(e){
29784         this.update(this.activeDate.add("mo", -1));
29785     },
29786
29787     // private
29788     showNextMonth : function(e){
29789         this.update(this.activeDate.add("mo", 1));
29790     },
29791
29792     // private
29793     showPrevYear : function(){
29794         this.update(this.activeDate.add("y", -1));
29795     },
29796
29797     // private
29798     showNextYear : function(){
29799         this.update(this.activeDate.add("y", 1));
29800     },
29801
29802     // private
29803     handleMouseWheel : function(e){
29804         var delta = e.getWheelDelta();
29805         if(delta > 0){
29806             this.showPrevMonth();
29807             e.stopEvent();
29808         } else if(delta < 0){
29809             this.showNextMonth();
29810             e.stopEvent();
29811         }
29812     },
29813
29814     // private
29815     handleDateClick : function(e, t){
29816         e.stopEvent();
29817         if(t.dateValue && !Roo.fly(t.parentNode).hasClass("x-date-disabled")){
29818             this.setValue(new Date(t.dateValue));
29819             this.fireEvent("select", this, this.value);
29820         }
29821     },
29822
29823     // private
29824     selectToday : function(){
29825         this.setValue(new Date().clearTime());
29826         this.fireEvent("select", this, this.value);
29827     },
29828
29829     // private
29830     update : function(date)
29831     {
29832         var vd = this.activeDate;
29833         this.activeDate = date;
29834         if(vd && this.el){
29835             var t = date.getTime();
29836             if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
29837                 this.cells.removeClass("x-date-selected");
29838                 this.cells.each(function(c){
29839                    if(c.dom.firstChild.dateValue == t){
29840                        c.addClass("x-date-selected");
29841                        setTimeout(function(){
29842                             try{c.dom.firstChild.focus();}catch(e){}
29843                        }, 50);
29844                        return false;
29845                    }
29846                 });
29847                 return;
29848             }
29849         }
29850         
29851         var days = date.getDaysInMonth();
29852         var firstOfMonth = date.getFirstDateOfMonth();
29853         var startingPos = firstOfMonth.getDay()-this.startDay;
29854
29855         if(startingPos <= this.startDay){
29856             startingPos += 7;
29857         }
29858
29859         var pm = date.add("mo", -1);
29860         var prevStart = pm.getDaysInMonth()-startingPos;
29861
29862         var cells = this.cells.elements;
29863         var textEls = this.textNodes;
29864         days += startingPos;
29865
29866         // convert everything to numbers so it's fast
29867         var day = 86400000;
29868         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
29869         var today = new Date().clearTime().getTime();
29870         var sel = date.clearTime().getTime();
29871         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
29872         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
29873         var ddMatch = this.disabledDatesRE;
29874         var ddText = this.disabledDatesText;
29875         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
29876         var ddaysText = this.disabledDaysText;
29877         var format = this.format;
29878
29879         var setCellClass = function(cal, cell){
29880             cell.title = "";
29881             var t = d.getTime();
29882             cell.firstChild.dateValue = t;
29883             if(t == today){
29884                 cell.className += " x-date-today";
29885                 cell.title = cal.todayText;
29886             }
29887             if(t == sel){
29888                 cell.className += " x-date-selected";
29889                 setTimeout(function(){
29890                     try{cell.firstChild.focus();}catch(e){}
29891                 }, 50);
29892             }
29893             // disabling
29894             if(t < min) {
29895                 cell.className = " x-date-disabled";
29896                 cell.title = cal.minText;
29897                 return;
29898             }
29899             if(t > max) {
29900                 cell.className = " x-date-disabled";
29901                 cell.title = cal.maxText;
29902                 return;
29903             }
29904             if(ddays){
29905                 if(ddays.indexOf(d.getDay()) != -1){
29906                     cell.title = ddaysText;
29907                     cell.className = " x-date-disabled";
29908                 }
29909             }
29910             if(ddMatch && format){
29911                 var fvalue = d.dateFormat(format);
29912                 if(ddMatch.test(fvalue)){
29913                     cell.title = ddText.replace("%0", fvalue);
29914                     cell.className = " x-date-disabled";
29915                 }
29916             }
29917         };
29918
29919         var i = 0;
29920         for(; i < startingPos; i++) {
29921             textEls[i].innerHTML = (++prevStart);
29922             d.setDate(d.getDate()+1);
29923             cells[i].className = "x-date-prevday";
29924             setCellClass(this, cells[i]);
29925         }
29926         for(; i < days; i++){
29927             intDay = i - startingPos + 1;
29928             textEls[i].innerHTML = (intDay);
29929             d.setDate(d.getDate()+1);
29930             cells[i].className = "x-date-active";
29931             setCellClass(this, cells[i]);
29932         }
29933         var extraDays = 0;
29934         for(; i < 42; i++) {
29935              textEls[i].innerHTML = (++extraDays);
29936              d.setDate(d.getDate()+1);
29937              cells[i].className = "x-date-nextday";
29938              setCellClass(this, cells[i]);
29939         }
29940
29941         this.mbtn.setText(this.monthNames[date.getMonth()] + " " + date.getFullYear());
29942         this.fireEvent('monthchange', this, date);
29943         
29944         if(!this.internalRender){
29945             var main = this.el.dom.firstChild;
29946             var w = main.offsetWidth;
29947             this.el.setWidth(w + this.el.getBorderWidth("lr"));
29948             Roo.fly(main).setWidth(w);
29949             this.internalRender = true;
29950             // opera does not respect the auto grow header center column
29951             // then, after it gets a width opera refuses to recalculate
29952             // without a second pass
29953             if(Roo.isOpera && !this.secondPass){
29954                 main.rows[0].cells[1].style.width = (w - (main.rows[0].cells[0].offsetWidth+main.rows[0].cells[2].offsetWidth)) + "px";
29955                 this.secondPass = true;
29956                 this.update.defer(10, this, [date]);
29957             }
29958         }
29959         
29960         
29961     }
29962 });        /*
29963  * Based on:
29964  * Ext JS Library 1.1.1
29965  * Copyright(c) 2006-2007, Ext JS, LLC.
29966  *
29967  * Originally Released Under LGPL - original licence link has changed is not relivant.
29968  *
29969  * Fork - LGPL
29970  * <script type="text/javascript">
29971  */
29972 /**
29973  * @class Roo.TabPanel
29974  * @extends Roo.util.Observable
29975  * A lightweight tab container.
29976  * <br><br>
29977  * Usage:
29978  * <pre><code>
29979 // basic tabs 1, built from existing content
29980 var tabs = new Roo.TabPanel("tabs1");
29981 tabs.addTab("script", "View Script");
29982 tabs.addTab("markup", "View Markup");
29983 tabs.activate("script");
29984
29985 // more advanced tabs, built from javascript
29986 var jtabs = new Roo.TabPanel("jtabs");
29987 jtabs.addTab("jtabs-1", "Normal Tab", "My content was added during construction.");
29988
29989 // set up the UpdateManager
29990 var tab2 = jtabs.addTab("jtabs-2", "Ajax Tab 1");
29991 var updater = tab2.getUpdateManager();
29992 updater.setDefaultUrl("ajax1.htm");
29993 tab2.on('activate', updater.refresh, updater, true);
29994
29995 // Use setUrl for Ajax loading
29996 var tab3 = jtabs.addTab("jtabs-3", "Ajax Tab 2");
29997 tab3.setUrl("ajax2.htm", null, true);
29998
29999 // Disabled tab
30000 var tab4 = jtabs.addTab("tabs1-5", "Disabled Tab", "Can't see me cause I'm disabled");
30001 tab4.disable();
30002
30003 jtabs.activate("jtabs-1");
30004  * </code></pre>
30005  * @constructor
30006  * Create a new TabPanel.
30007  * @param {String/HTMLElement/Roo.Element} container The id, DOM element or Roo.Element container where this TabPanel is to be rendered.
30008  * @param {Object/Boolean} config Config object to set any properties for this TabPanel, or true to render the tabs on the bottom.
30009  */
30010 Roo.TabPanel = function(container, config){
30011     /**
30012     * The container element for this TabPanel.
30013     * @type Roo.Element
30014     */
30015     this.el = Roo.get(container, true);
30016     if(config){
30017         if(typeof config == "boolean"){
30018             this.tabPosition = config ? "bottom" : "top";
30019         }else{
30020             Roo.apply(this, config);
30021         }
30022     }
30023     if(this.tabPosition == "bottom"){
30024         this.bodyEl = Roo.get(this.createBody(this.el.dom));
30025         this.el.addClass("x-tabs-bottom");
30026     }
30027     this.stripWrap = Roo.get(this.createStrip(this.el.dom), true);
30028     this.stripEl = Roo.get(this.createStripList(this.stripWrap.dom), true);
30029     this.stripBody = Roo.get(this.stripWrap.dom.firstChild.firstChild, true);
30030     if(Roo.isIE){
30031         Roo.fly(this.stripWrap.dom.firstChild).setStyle("overflow-x", "hidden");
30032     }
30033     if(this.tabPosition != "bottom"){
30034         /** The body element that contains {@link Roo.TabPanelItem} bodies. +
30035          * @type Roo.Element
30036          */
30037         this.bodyEl = Roo.get(this.createBody(this.el.dom));
30038         this.el.addClass("x-tabs-top");
30039     }
30040     this.items = [];
30041
30042     this.bodyEl.setStyle("position", "relative");
30043
30044     this.active = null;
30045     this.activateDelegate = this.activate.createDelegate(this);
30046
30047     this.addEvents({
30048         /**
30049          * @event tabchange
30050          * Fires when the active tab changes
30051          * @param {Roo.TabPanel} this
30052          * @param {Roo.TabPanelItem} activePanel The new active tab
30053          */
30054         "tabchange": true,
30055         /**
30056          * @event beforetabchange
30057          * Fires before the active tab changes, set cancel to true on the "e" parameter to cancel the change
30058          * @param {Roo.TabPanel} this
30059          * @param {Object} e Set cancel to true on this object to cancel the tab change
30060          * @param {Roo.TabPanelItem} tab The tab being changed to
30061          */
30062         "beforetabchange" : true
30063     });
30064
30065     Roo.EventManager.onWindowResize(this.onResize, this);
30066     this.cpad = this.el.getPadding("lr");
30067     this.hiddenCount = 0;
30068
30069
30070     // toolbar on the tabbar support...
30071     if (this.toolbar) {
30072         var tcfg = this.toolbar;
30073         tcfg.container = this.stripEl.child('td.x-tab-strip-toolbar');  
30074         this.toolbar = new Roo.Toolbar(tcfg);
30075         if (Roo.isSafari) {
30076             var tbl = tcfg.container.child('table', true);
30077             tbl.setAttribute('width', '100%');
30078         }
30079         
30080     }
30081    
30082
30083
30084     Roo.TabPanel.superclass.constructor.call(this);
30085 };
30086
30087 Roo.extend(Roo.TabPanel, Roo.util.Observable, {
30088     /*
30089      *@cfg {String} tabPosition "top" or "bottom" (defaults to "top")
30090      */
30091     tabPosition : "top",
30092     /*
30093      *@cfg {Number} currentTabWidth The width of the current tab (defaults to 0)
30094      */
30095     currentTabWidth : 0,
30096     /*
30097      *@cfg {Number} minTabWidth The minimum width of a tab (defaults to 40) (ignored if {@link #resizeTabs} is not true)
30098      */
30099     minTabWidth : 40,
30100     /*
30101      *@cfg {Number} maxTabWidth The maximum width of a tab (defaults to 250) (ignored if {@link #resizeTabs} is not true)
30102      */
30103     maxTabWidth : 250,
30104     /*
30105      *@cfg {Number} preferredTabWidth The preferred (default) width of a tab (defaults to 175) (ignored if {@link #resizeTabs} is not true)
30106      */
30107     preferredTabWidth : 175,
30108     /*
30109      *@cfg {Boolean} resizeTabs True to enable dynamic tab resizing (defaults to false)
30110      */
30111     resizeTabs : false,
30112     /*
30113      *@cfg {Boolean} monitorResize Set this to true to turn on window resize monitoring (ignored if {@link #resizeTabs} is not true) (defaults to true)
30114      */
30115     monitorResize : true,
30116     /*
30117      *@cfg {Object} toolbar xtype description of toolbar to show at the right of the tab bar. 
30118      */
30119     toolbar : false,
30120
30121     /**
30122      * Creates a new {@link Roo.TabPanelItem} by looking for an existing element with the provided id -- if it's not found it creates one.
30123      * @param {String} id The id of the div to use <b>or create</b>
30124      * @param {String} text The text for the tab
30125      * @param {String} content (optional) Content to put in the TabPanelItem body
30126      * @param {Boolean} closable (optional) True to create a close icon on the tab
30127      * @return {Roo.TabPanelItem} The created TabPanelItem
30128      */
30129     addTab : function(id, text, content, closable){
30130         var item = new Roo.TabPanelItem(this, id, text, closable);
30131         this.addTabItem(item);
30132         if(content){
30133             item.setContent(content);
30134         }
30135         return item;
30136     },
30137
30138     /**
30139      * Returns the {@link Roo.TabPanelItem} with the specified id/index
30140      * @param {String/Number} id The id or index of the TabPanelItem to fetch.
30141      * @return {Roo.TabPanelItem}
30142      */
30143     getTab : function(id){
30144         return this.items[id];
30145     },
30146
30147     /**
30148      * Hides the {@link Roo.TabPanelItem} with the specified id/index
30149      * @param {String/Number} id The id or index of the TabPanelItem to hide.
30150      */
30151     hideTab : function(id){
30152         var t = this.items[id];
30153         if(!t.isHidden()){
30154            t.setHidden(true);
30155            this.hiddenCount++;
30156            this.autoSizeTabs();
30157         }
30158     },
30159
30160     /**
30161      * "Unhides" the {@link Roo.TabPanelItem} with the specified id/index.
30162      * @param {String/Number} id The id or index of the TabPanelItem to unhide.
30163      */
30164     unhideTab : function(id){
30165         var t = this.items[id];
30166         if(t.isHidden()){
30167            t.setHidden(false);
30168            this.hiddenCount--;
30169            this.autoSizeTabs();
30170         }
30171     },
30172
30173     /**
30174      * Adds an existing {@link Roo.TabPanelItem}.
30175      * @param {Roo.TabPanelItem} item The TabPanelItem to add
30176      */
30177     addTabItem : function(item){
30178         this.items[item.id] = item;
30179         this.items.push(item);
30180         if(this.resizeTabs){
30181            item.setWidth(this.currentTabWidth || this.preferredTabWidth);
30182            this.autoSizeTabs();
30183         }else{
30184             item.autoSize();
30185         }
30186     },
30187
30188     /**
30189      * Removes a {@link Roo.TabPanelItem}.
30190      * @param {String/Number} id The id or index of the TabPanelItem to remove.
30191      */
30192     removeTab : function(id){
30193         var items = this.items;
30194         var tab = items[id];
30195         if(!tab) { return; }
30196         var index = items.indexOf(tab);
30197         if(this.active == tab && items.length > 1){
30198             var newTab = this.getNextAvailable(index);
30199             if(newTab) {
30200                 newTab.activate();
30201             }
30202         }
30203         this.stripEl.dom.removeChild(tab.pnode.dom);
30204         if(tab.bodyEl.dom.parentNode == this.bodyEl.dom){ // if it was moved already prevent error
30205             this.bodyEl.dom.removeChild(tab.bodyEl.dom);
30206         }
30207         items.splice(index, 1);
30208         delete this.items[tab.id];
30209         tab.fireEvent("close", tab);
30210         tab.purgeListeners();
30211         this.autoSizeTabs();
30212     },
30213
30214     getNextAvailable : function(start){
30215         var items = this.items;
30216         var index = start;
30217         // look for a next tab that will slide over to
30218         // replace the one being removed
30219         while(index < items.length){
30220             var item = items[++index];
30221             if(item && !item.isHidden()){
30222                 return item;
30223             }
30224         }
30225         // if one isn't found select the previous tab (on the left)
30226         index = start;
30227         while(index >= 0){
30228             var item = items[--index];
30229             if(item && !item.isHidden()){
30230                 return item;
30231             }
30232         }
30233         return null;
30234     },
30235
30236     /**
30237      * Disables a {@link Roo.TabPanelItem}. It cannot be the active tab, if it is this call is ignored.
30238      * @param {String/Number} id The id or index of the TabPanelItem to disable.
30239      */
30240     disableTab : function(id){
30241         var tab = this.items[id];
30242         if(tab && this.active != tab){
30243             tab.disable();
30244         }
30245     },
30246
30247     /**
30248      * Enables a {@link Roo.TabPanelItem} that is disabled.
30249      * @param {String/Number} id The id or index of the TabPanelItem to enable.
30250      */
30251     enableTab : function(id){
30252         var tab = this.items[id];
30253         tab.enable();
30254     },
30255
30256     /**
30257      * Activates a {@link Roo.TabPanelItem}. The currently active one will be deactivated.
30258      * @param {String/Number} id The id or index of the TabPanelItem to activate.
30259      * @return {Roo.TabPanelItem} The TabPanelItem.
30260      */
30261     activate : function(id){
30262         var tab = this.items[id];
30263         if(!tab){
30264             return null;
30265         }
30266         if(tab == this.active || tab.disabled){
30267             return tab;
30268         }
30269         var e = {};
30270         this.fireEvent("beforetabchange", this, e, tab);
30271         if(e.cancel !== true && !tab.disabled){
30272             if(this.active){
30273                 this.active.hide();
30274             }
30275             this.active = this.items[id];
30276             this.active.show();
30277             this.fireEvent("tabchange", this, this.active);
30278         }
30279         return tab;
30280     },
30281
30282     /**
30283      * Gets the active {@link Roo.TabPanelItem}.
30284      * @return {Roo.TabPanelItem} The active TabPanelItem or null if none are active.
30285      */
30286     getActiveTab : function(){
30287         return this.active;
30288     },
30289
30290     /**
30291      * Updates the tab body element to fit the height of the container element
30292      * for overflow scrolling
30293      * @param {Number} targetHeight (optional) Override the starting height from the elements height
30294      */
30295     syncHeight : function(targetHeight){
30296         var height = (targetHeight || this.el.getHeight())-this.el.getBorderWidth("tb")-this.el.getPadding("tb");
30297         var bm = this.bodyEl.getMargins();
30298         var newHeight = height-(this.stripWrap.getHeight()||0)-(bm.top+bm.bottom);
30299         this.bodyEl.setHeight(newHeight);
30300         return newHeight;
30301     },
30302
30303     onResize : function(){
30304         if(this.monitorResize){
30305             this.autoSizeTabs();
30306         }
30307     },
30308
30309     /**
30310      * Disables tab resizing while tabs are being added (if {@link #resizeTabs} is false this does nothing)
30311      */
30312     beginUpdate : function(){
30313         this.updating = true;
30314     },
30315
30316     /**
30317      * Stops an update and resizes the tabs (if {@link #resizeTabs} is false this does nothing)
30318      */
30319     endUpdate : function(){
30320         this.updating = false;
30321         this.autoSizeTabs();
30322     },
30323
30324     /**
30325      * Manual call to resize the tabs (if {@link #resizeTabs} is false this does nothing)
30326      */
30327     autoSizeTabs : function(){
30328         var count = this.items.length;
30329         var vcount = count - this.hiddenCount;
30330         if(!this.resizeTabs || count < 1 || vcount < 1 || this.updating) {
30331             return;
30332         }
30333         var w = Math.max(this.el.getWidth() - this.cpad, 10);
30334         var availWidth = Math.floor(w / vcount);
30335         var b = this.stripBody;
30336         if(b.getWidth() > w){
30337             var tabs = this.items;
30338             this.setTabWidth(Math.max(availWidth, this.minTabWidth)-2);
30339             if(availWidth < this.minTabWidth){
30340                 /*if(!this.sleft){    // incomplete scrolling code
30341                     this.createScrollButtons();
30342                 }
30343                 this.showScroll();
30344                 this.stripClip.setWidth(w - (this.sleft.getWidth()+this.sright.getWidth()));*/
30345             }
30346         }else{
30347             if(this.currentTabWidth < this.preferredTabWidth){
30348                 this.setTabWidth(Math.min(availWidth, this.preferredTabWidth)-2);
30349             }
30350         }
30351     },
30352
30353     /**
30354      * Returns the number of tabs in this TabPanel.
30355      * @return {Number}
30356      */
30357      getCount : function(){
30358          return this.items.length;
30359      },
30360
30361     /**
30362      * Resizes all the tabs to the passed width
30363      * @param {Number} The new width
30364      */
30365     setTabWidth : function(width){
30366         this.currentTabWidth = width;
30367         for(var i = 0, len = this.items.length; i < len; i++) {
30368                 if(!this.items[i].isHidden()) {
30369                 this.items[i].setWidth(width);
30370             }
30371         }
30372     },
30373
30374     /**
30375      * Destroys this TabPanel
30376      * @param {Boolean} removeEl (optional) True to remove the element from the DOM as well (defaults to undefined)
30377      */
30378     destroy : function(removeEl){
30379         Roo.EventManager.removeResizeListener(this.onResize, this);
30380         for(var i = 0, len = this.items.length; i < len; i++){
30381             this.items[i].purgeListeners();
30382         }
30383         if(removeEl === true){
30384             this.el.update("");
30385             this.el.remove();
30386         }
30387     }
30388 });
30389
30390 /**
30391  * @class Roo.TabPanelItem
30392  * @extends Roo.util.Observable
30393  * Represents an individual item (tab plus body) in a TabPanel.
30394  * @param {Roo.TabPanel} tabPanel The {@link Roo.TabPanel} this TabPanelItem belongs to
30395  * @param {String} id The id of this TabPanelItem
30396  * @param {String} text The text for the tab of this TabPanelItem
30397  * @param {Boolean} closable True to allow this TabPanelItem to be closable (defaults to false)
30398  */
30399 Roo.TabPanelItem = function(tabPanel, id, text, closable){
30400     /**
30401      * The {@link Roo.TabPanel} this TabPanelItem belongs to
30402      * @type Roo.TabPanel
30403      */
30404     this.tabPanel = tabPanel;
30405     /**
30406      * The id for this TabPanelItem
30407      * @type String
30408      */
30409     this.id = id;
30410     /** @private */
30411     this.disabled = false;
30412     /** @private */
30413     this.text = text;
30414     /** @private */
30415     this.loaded = false;
30416     this.closable = closable;
30417
30418     /**
30419      * The body element for this TabPanelItem.
30420      * @type Roo.Element
30421      */
30422     this.bodyEl = Roo.get(tabPanel.createItemBody(tabPanel.bodyEl.dom, id));
30423     this.bodyEl.setVisibilityMode(Roo.Element.VISIBILITY);
30424     this.bodyEl.setStyle("display", "block");
30425     this.bodyEl.setStyle("zoom", "1");
30426     this.hideAction();
30427
30428     var els = tabPanel.createStripElements(tabPanel.stripEl.dom, text, closable);
30429     /** @private */
30430     this.el = Roo.get(els.el, true);
30431     this.inner = Roo.get(els.inner, true);
30432     this.textEl = Roo.get(this.el.dom.firstChild.firstChild.firstChild, true);
30433     this.pnode = Roo.get(els.el.parentNode, true);
30434     this.el.on("mousedown", this.onTabMouseDown, this);
30435     this.el.on("click", this.onTabClick, this);
30436     /** @private */
30437     if(closable){
30438         var c = Roo.get(els.close, true);
30439         c.dom.title = this.closeText;
30440         c.addClassOnOver("close-over");
30441         c.on("click", this.closeClick, this);
30442      }
30443
30444     this.addEvents({
30445          /**
30446          * @event activate
30447          * Fires when this tab becomes the active tab.
30448          * @param {Roo.TabPanel} tabPanel The parent TabPanel
30449          * @param {Roo.TabPanelItem} this
30450          */
30451         "activate": true,
30452         /**
30453          * @event beforeclose
30454          * Fires before this tab is closed. To cancel the close, set cancel to true on e (e.cancel = true).
30455          * @param {Roo.TabPanelItem} this
30456          * @param {Object} e Set cancel to true on this object to cancel the close.
30457          */
30458         "beforeclose": true,
30459         /**
30460          * @event close
30461          * Fires when this tab is closed.
30462          * @param {Roo.TabPanelItem} this
30463          */
30464          "close": true,
30465         /**
30466          * @event deactivate
30467          * Fires when this tab is no longer the active tab.
30468          * @param {Roo.TabPanel} tabPanel The parent TabPanel
30469          * @param {Roo.TabPanelItem} this
30470          */
30471          "deactivate" : true
30472     });
30473     this.hidden = false;
30474
30475     Roo.TabPanelItem.superclass.constructor.call(this);
30476 };
30477
30478 Roo.extend(Roo.TabPanelItem, Roo.util.Observable, {
30479     purgeListeners : function(){
30480        Roo.util.Observable.prototype.purgeListeners.call(this);
30481        this.el.removeAllListeners();
30482     },
30483     /**
30484      * Shows this TabPanelItem -- this <b>does not</b> deactivate the currently active TabPanelItem.
30485      */
30486     show : function(){
30487         this.pnode.addClass("on");
30488         this.showAction();
30489         if(Roo.isOpera){
30490             this.tabPanel.stripWrap.repaint();
30491         }
30492         this.fireEvent("activate", this.tabPanel, this);
30493     },
30494
30495     /**
30496      * Returns true if this tab is the active tab.
30497      * @return {Boolean}
30498      */
30499     isActive : function(){
30500         return this.tabPanel.getActiveTab() == this;
30501     },
30502
30503     /**
30504      * Hides this TabPanelItem -- if you don't activate another TabPanelItem this could look odd.
30505      */
30506     hide : function(){
30507         this.pnode.removeClass("on");
30508         this.hideAction();
30509         this.fireEvent("deactivate", this.tabPanel, this);
30510     },
30511
30512     hideAction : function(){
30513         this.bodyEl.hide();
30514         this.bodyEl.setStyle("position", "absolute");
30515         this.bodyEl.setLeft("-20000px");
30516         this.bodyEl.setTop("-20000px");
30517     },
30518
30519     showAction : function(){
30520         this.bodyEl.setStyle("position", "relative");
30521         this.bodyEl.setTop("");
30522         this.bodyEl.setLeft("");
30523         this.bodyEl.show();
30524     },
30525
30526     /**
30527      * Set the tooltip for the tab.
30528      * @param {String} tooltip The tab's tooltip
30529      */
30530     setTooltip : function(text){
30531         if(Roo.QuickTips && Roo.QuickTips.isEnabled()){
30532             this.textEl.dom.qtip = text;
30533             this.textEl.dom.removeAttribute('title');
30534         }else{
30535             this.textEl.dom.title = text;
30536         }
30537     },
30538
30539     onTabClick : function(e){
30540         e.preventDefault();
30541         this.tabPanel.activate(this.id);
30542     },
30543
30544     onTabMouseDown : function(e){
30545         e.preventDefault();
30546         this.tabPanel.activate(this.id);
30547     },
30548
30549     getWidth : function(){
30550         return this.inner.getWidth();
30551     },
30552
30553     setWidth : function(width){
30554         var iwidth = width - this.pnode.getPadding("lr");
30555         this.inner.setWidth(iwidth);
30556         this.textEl.setWidth(iwidth-this.inner.getPadding("lr"));
30557         this.pnode.setWidth(width);
30558     },
30559
30560     /**
30561      * Show or hide the tab
30562      * @param {Boolean} hidden True to hide or false to show.
30563      */
30564     setHidden : function(hidden){
30565         this.hidden = hidden;
30566         this.pnode.setStyle("display", hidden ? "none" : "");
30567     },
30568
30569     /**
30570      * Returns true if this tab is "hidden"
30571      * @return {Boolean}
30572      */
30573     isHidden : function(){
30574         return this.hidden;
30575     },
30576
30577     /**
30578      * Returns the text for this tab
30579      * @return {String}
30580      */
30581     getText : function(){
30582         return this.text;
30583     },
30584
30585     autoSize : function(){
30586         //this.el.beginMeasure();
30587         this.textEl.setWidth(1);
30588         /*
30589          *  #2804 [new] Tabs in Roojs
30590          *  increase the width by 2-4 pixels to prevent the ellipssis showing in chrome
30591          */
30592         this.setWidth(this.textEl.dom.scrollWidth+this.pnode.getPadding("lr")+this.inner.getPadding("lr") + 2);
30593         //this.el.endMeasure();
30594     },
30595
30596     /**
30597      * Sets the text for the tab (Note: this also sets the tooltip text)
30598      * @param {String} text The tab's text and tooltip
30599      */
30600     setText : function(text){
30601         this.text = text;
30602         this.textEl.update(text);
30603         this.setTooltip(text);
30604         if(!this.tabPanel.resizeTabs){
30605             this.autoSize();
30606         }
30607     },
30608     /**
30609      * Activates this TabPanelItem -- this <b>does</b> deactivate the currently active TabPanelItem.
30610      */
30611     activate : function(){
30612         this.tabPanel.activate(this.id);
30613     },
30614
30615     /**
30616      * Disables this TabPanelItem -- this does nothing if this is the active TabPanelItem.
30617      */
30618     disable : function(){
30619         if(this.tabPanel.active != this){
30620             this.disabled = true;
30621             this.pnode.addClass("disabled");
30622         }
30623     },
30624
30625     /**
30626      * Enables this TabPanelItem if it was previously disabled.
30627      */
30628     enable : function(){
30629         this.disabled = false;
30630         this.pnode.removeClass("disabled");
30631     },
30632
30633     /**
30634      * Sets the content for this TabPanelItem.
30635      * @param {String} content The content
30636      * @param {Boolean} loadScripts true to look for and load scripts
30637      */
30638     setContent : function(content, loadScripts){
30639         this.bodyEl.update(content, loadScripts);
30640     },
30641
30642     /**
30643      * Gets the {@link Roo.UpdateManager} for the body of this TabPanelItem. Enables you to perform Ajax updates.
30644      * @return {Roo.UpdateManager} The UpdateManager
30645      */
30646     getUpdateManager : function(){
30647         return this.bodyEl.getUpdateManager();
30648     },
30649
30650     /**
30651      * Set a URL to be used to load the content for this TabPanelItem.
30652      * @param {String/Function} url The URL to load the content from, or a function to call to get the URL
30653      * @param {String/Object} params (optional) The string params for the update call or an object of the params. See {@link Roo.UpdateManager#update} for more details. (Defaults to null)
30654      * @param {Boolean} loadOnce (optional) Whether to only load the content once. If this is false it makes the Ajax call every time this TabPanelItem is activated. (Defaults to false)
30655      * @return {Roo.UpdateManager} The UpdateManager
30656      */
30657     setUrl : function(url, params, loadOnce){
30658         if(this.refreshDelegate){
30659             this.un('activate', this.refreshDelegate);
30660         }
30661         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
30662         this.on("activate", this.refreshDelegate);
30663         return this.bodyEl.getUpdateManager();
30664     },
30665
30666     /** @private */
30667     _handleRefresh : function(url, params, loadOnce){
30668         if(!loadOnce || !this.loaded){
30669             var updater = this.bodyEl.getUpdateManager();
30670             updater.update(url, params, this._setLoaded.createDelegate(this));
30671         }
30672     },
30673
30674     /**
30675      *   Forces a content refresh from the URL specified in the {@link #setUrl} method.
30676      *   Will fail silently if the setUrl method has not been called.
30677      *   This does not activate the panel, just updates its content.
30678      */
30679     refresh : function(){
30680         if(this.refreshDelegate){
30681            this.loaded = false;
30682            this.refreshDelegate();
30683         }
30684     },
30685
30686     /** @private */
30687     _setLoaded : function(){
30688         this.loaded = true;
30689     },
30690
30691     /** @private */
30692     closeClick : function(e){
30693         var o = {};
30694         e.stopEvent();
30695         this.fireEvent("beforeclose", this, o);
30696         if(o.cancel !== true){
30697             this.tabPanel.removeTab(this.id);
30698         }
30699     },
30700     /**
30701      * The text displayed in the tooltip for the close icon.
30702      * @type String
30703      */
30704     closeText : "Close this tab"
30705 });
30706
30707 /** @private */
30708 Roo.TabPanel.prototype.createStrip = function(container){
30709     var strip = document.createElement("div");
30710     strip.className = "x-tabs-wrap";
30711     container.appendChild(strip);
30712     return strip;
30713 };
30714 /** @private */
30715 Roo.TabPanel.prototype.createStripList = function(strip){
30716     // div wrapper for retard IE
30717     // returns the "tr" element.
30718     strip.innerHTML = '<div class="x-tabs-strip-wrap">'+
30719         '<table class="x-tabs-strip" cellspacing="0" cellpadding="0" border="0"><tbody><tr>'+
30720         '<td class="x-tab-strip-toolbar"></td></tr></tbody></table></div>';
30721     return strip.firstChild.firstChild.firstChild.firstChild;
30722 };
30723 /** @private */
30724 Roo.TabPanel.prototype.createBody = function(container){
30725     var body = document.createElement("div");
30726     Roo.id(body, "tab-body");
30727     Roo.fly(body).addClass("x-tabs-body");
30728     container.appendChild(body);
30729     return body;
30730 };
30731 /** @private */
30732 Roo.TabPanel.prototype.createItemBody = function(bodyEl, id){
30733     var body = Roo.getDom(id);
30734     if(!body){
30735         body = document.createElement("div");
30736         body.id = id;
30737     }
30738     Roo.fly(body).addClass("x-tabs-item-body");
30739     bodyEl.insertBefore(body, bodyEl.firstChild);
30740     return body;
30741 };
30742 /** @private */
30743 Roo.TabPanel.prototype.createStripElements = function(stripEl, text, closable){
30744     var td = document.createElement("td");
30745     stripEl.insertBefore(td, stripEl.childNodes[stripEl.childNodes.length-1]);
30746     //stripEl.appendChild(td);
30747     if(closable){
30748         td.className = "x-tabs-closable";
30749         if(!this.closeTpl){
30750             this.closeTpl = new Roo.Template(
30751                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
30752                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span>' +
30753                '<div unselectable="on" class="close-icon">&#160;</div></em></span></a>'
30754             );
30755         }
30756         var el = this.closeTpl.overwrite(td, {"text": text});
30757         var close = el.getElementsByTagName("div")[0];
30758         var inner = el.getElementsByTagName("em")[0];
30759         return {"el": el, "close": close, "inner": inner};
30760     } else {
30761         if(!this.tabTpl){
30762             this.tabTpl = new Roo.Template(
30763                '<a href="#" class="x-tabs-right"><span class="x-tabs-left"><em class="x-tabs-inner">' +
30764                '<span unselectable="on"' + (this.disableTooltips ? '' : ' title="{text}"') +' class="x-tabs-text">{text}</span></em></span></a>'
30765             );
30766         }
30767         var el = this.tabTpl.overwrite(td, {"text": text});
30768         var inner = el.getElementsByTagName("em")[0];
30769         return {"el": el, "inner": inner};
30770     }
30771 };/*
30772  * Based on:
30773  * Ext JS Library 1.1.1
30774  * Copyright(c) 2006-2007, Ext JS, LLC.
30775  *
30776  * Originally Released Under LGPL - original licence link has changed is not relivant.
30777  *
30778  * Fork - LGPL
30779  * <script type="text/javascript">
30780  */
30781
30782 /**
30783  * @class Roo.Button
30784  * @extends Roo.util.Observable
30785  * Simple Button class
30786  * @cfg {String} text The button text
30787  * @cfg {String} icon The path to an image to display in the button (the image will be set as the background-image
30788  * CSS property of the button by default, so if you want a mixed icon/text button, set cls:"x-btn-text-icon")
30789  * @cfg {Function} handler A function called when the button is clicked (can be used instead of click event)
30790  * @cfg {Object} scope The scope of the handler
30791  * @cfg {Number} minWidth The minimum width for this button (used to give a set of buttons a common width)
30792  * @cfg {String/Object} tooltip The tooltip for the button - can be a string or QuickTips config object
30793  * @cfg {Boolean} hidden True to start hidden (defaults to false)
30794  * @cfg {Boolean} disabled True to start disabled (defaults to false)
30795  * @cfg {Boolean} pressed True to start pressed (only if enableToggle = true)
30796  * @cfg {String} toggleGroup The group this toggle button is a member of (only 1 per group can be pressed, only
30797    applies if enableToggle = true)
30798  * @cfg {String/HTMLElement/Element} renderTo The element to append the button to
30799  * @cfg {Boolean/Object} repeat True to repeat fire the click event while the mouse is down. This can also be
30800   an {@link Roo.util.ClickRepeater} config object (defaults to false).
30801  * @constructor
30802  * Create a new button
30803  * @param {Object} config The config object
30804  */
30805 Roo.Button = function(renderTo, config)
30806 {
30807     if (!config) {
30808         config = renderTo;
30809         renderTo = config.renderTo || false;
30810     }
30811     
30812     Roo.apply(this, config);
30813     this.addEvents({
30814         /**
30815              * @event click
30816              * Fires when this button is clicked
30817              * @param {Button} this
30818              * @param {EventObject} e The click event
30819              */
30820             "click" : true,
30821         /**
30822              * @event toggle
30823              * Fires when the "pressed" state of this button changes (only if enableToggle = true)
30824              * @param {Button} this
30825              * @param {Boolean} pressed
30826              */
30827             "toggle" : true,
30828         /**
30829              * @event mouseover
30830              * Fires when the mouse hovers over the button
30831              * @param {Button} this
30832              * @param {Event} e The event object
30833              */
30834         'mouseover' : true,
30835         /**
30836              * @event mouseout
30837              * Fires when the mouse exits the button
30838              * @param {Button} this
30839              * @param {Event} e The event object
30840              */
30841         'mouseout': true,
30842          /**
30843              * @event render
30844              * Fires when the button is rendered
30845              * @param {Button} this
30846              */
30847         'render': true
30848     });
30849     if(this.menu){
30850         this.menu = Roo.menu.MenuMgr.get(this.menu);
30851     }
30852     // register listeners first!!  - so render can be captured..
30853     Roo.util.Observable.call(this);
30854     if(renderTo){
30855         this.render(renderTo);
30856     }
30857     
30858   
30859 };
30860
30861 Roo.extend(Roo.Button, Roo.util.Observable, {
30862     /**
30863      * 
30864      */
30865     
30866     /**
30867      * Read-only. True if this button is hidden
30868      * @type Boolean
30869      */
30870     hidden : false,
30871     /**
30872      * Read-only. True if this button is disabled
30873      * @type Boolean
30874      */
30875     disabled : false,
30876     /**
30877      * Read-only. True if this button is pressed (only if enableToggle = true)
30878      * @type Boolean
30879      */
30880     pressed : false,
30881
30882     /**
30883      * @cfg {Number} tabIndex 
30884      * The DOM tabIndex for this button (defaults to undefined)
30885      */
30886     tabIndex : undefined,
30887
30888     /**
30889      * @cfg {Boolean} enableToggle
30890      * True to enable pressed/not pressed toggling (defaults to false)
30891      */
30892     enableToggle: false,
30893     /**
30894      * @cfg {Roo.menu.Menu} menu
30895      * Standard menu attribute consisting of a reference to a menu object, a menu id or a menu config blob (defaults to undefined).
30896      */
30897     menu : undefined,
30898     /**
30899      * @cfg {String} menuAlign
30900      * The position to align the menu to (see {@link Roo.Element#alignTo} for more details, defaults to 'tl-bl?').
30901      */
30902     menuAlign : "tl-bl?",
30903
30904     /**
30905      * @cfg {String} iconCls
30906      * A css class which sets a background image to be used as the icon for this button (defaults to undefined).
30907      */
30908     iconCls : undefined,
30909     /**
30910      * @cfg {String} type
30911      * The button's type, corresponding to the DOM input element type attribute.  Either "submit," "reset" or "button" (default).
30912      */
30913     type : 'button',
30914
30915     // private
30916     menuClassTarget: 'tr',
30917
30918     /**
30919      * @cfg {String} clickEvent
30920      * The type of event to map to the button's event handler (defaults to 'click')
30921      */
30922     clickEvent : 'click',
30923
30924     /**
30925      * @cfg {Boolean} handleMouseEvents
30926      * False to disable visual cues on mouseover, mouseout and mousedown (defaults to true)
30927      */
30928     handleMouseEvents : true,
30929
30930     /**
30931      * @cfg {String} tooltipType
30932      * The type of tooltip to use. Either "qtip" (default) for QuickTips or "title" for title attribute.
30933      */
30934     tooltipType : 'qtip',
30935
30936     /**
30937      * @cfg {String} cls
30938      * A CSS class to apply to the button's main element.
30939      */
30940     
30941     /**
30942      * @cfg {Roo.Template} template (Optional)
30943      * An {@link Roo.Template} with which to create the Button's main element. This Template must
30944      * contain numeric substitution parameter 0 if it is to display the tRoo property. Changing the template could
30945      * require code modifications if required elements (e.g. a button) aren't present.
30946      */
30947
30948     // private
30949     render : function(renderTo){
30950         var btn;
30951         if(this.hideParent){
30952             this.parentEl = Roo.get(renderTo);
30953         }
30954         if(!this.dhconfig){
30955             if(!this.template){
30956                 if(!Roo.Button.buttonTemplate){
30957                     // hideous table template
30958                     Roo.Button.buttonTemplate = new Roo.Template(
30959                         '<table border="0" cellpadding="0" cellspacing="0" class="x-btn-wrap"><tbody><tr>',
30960                         '<td class="x-btn-left"><i>&#160;</i></td><td class="x-btn-center"><em unselectable="on"><button class="x-btn-text" type="{1}">{0}</button></em></td><td class="x-btn-right"><i>&#160;</i></td>',
30961                         "</tr></tbody></table>");
30962                 }
30963                 this.template = Roo.Button.buttonTemplate;
30964             }
30965             btn = this.template.append(renderTo, [this.text || '&#160;', this.type], true);
30966             var btnEl = btn.child("button:first");
30967             btnEl.on('focus', this.onFocus, this);
30968             btnEl.on('blur', this.onBlur, this);
30969             if(this.cls){
30970                 btn.addClass(this.cls);
30971             }
30972             if(this.icon){
30973                 btnEl.setStyle('background-image', 'url(' +this.icon +')');
30974             }
30975             if(this.iconCls){
30976                 btnEl.addClass(this.iconCls);
30977                 if(!this.cls){
30978                     btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
30979                 }
30980             }
30981             if(this.tabIndex !== undefined){
30982                 btnEl.dom.tabIndex = this.tabIndex;
30983             }
30984             if(this.tooltip){
30985                 if(typeof this.tooltip == 'object'){
30986                     Roo.QuickTips.tips(Roo.apply({
30987                           target: btnEl.id
30988                     }, this.tooltip));
30989                 } else {
30990                     btnEl.dom[this.tooltipType] = this.tooltip;
30991                 }
30992             }
30993         }else{
30994             btn = Roo.DomHelper.append(Roo.get(renderTo).dom, this.dhconfig, true);
30995         }
30996         this.el = btn;
30997         if(this.id){
30998             this.el.dom.id = this.el.id = this.id;
30999         }
31000         if(this.menu){
31001             this.el.child(this.menuClassTarget).addClass("x-btn-with-menu");
31002             this.menu.on("show", this.onMenuShow, this);
31003             this.menu.on("hide", this.onMenuHide, this);
31004         }
31005         btn.addClass("x-btn");
31006         if(Roo.isIE && !Roo.isIE7){
31007             this.autoWidth.defer(1, this);
31008         }else{
31009             this.autoWidth();
31010         }
31011         if(this.handleMouseEvents){
31012             btn.on("mouseover", this.onMouseOver, this);
31013             btn.on("mouseout", this.onMouseOut, this);
31014             btn.on("mousedown", this.onMouseDown, this);
31015         }
31016         btn.on(this.clickEvent, this.onClick, this);
31017         //btn.on("mouseup", this.onMouseUp, this);
31018         if(this.hidden){
31019             this.hide();
31020         }
31021         if(this.disabled){
31022             this.disable();
31023         }
31024         Roo.ButtonToggleMgr.register(this);
31025         if(this.pressed){
31026             this.el.addClass("x-btn-pressed");
31027         }
31028         if(this.repeat){
31029             var repeater = new Roo.util.ClickRepeater(btn,
31030                 typeof this.repeat == "object" ? this.repeat : {}
31031             );
31032             repeater.on("click", this.onClick,  this);
31033         }
31034         
31035         this.fireEvent('render', this);
31036         
31037     },
31038     /**
31039      * Returns the button's underlying element
31040      * @return {Roo.Element} The element
31041      */
31042     getEl : function(){
31043         return this.el;  
31044     },
31045     
31046     /**
31047      * Destroys this Button and removes any listeners.
31048      */
31049     destroy : function(){
31050         Roo.ButtonToggleMgr.unregister(this);
31051         this.el.removeAllListeners();
31052         this.purgeListeners();
31053         this.el.remove();
31054     },
31055
31056     // private
31057     autoWidth : function(){
31058         if(this.el){
31059             this.el.setWidth("auto");
31060             if(Roo.isIE7 && Roo.isStrict){
31061                 var ib = this.el.child('button');
31062                 if(ib && ib.getWidth() > 20){
31063                     ib.clip();
31064                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
31065                 }
31066             }
31067             if(this.minWidth){
31068                 if(this.hidden){
31069                     this.el.beginMeasure();
31070                 }
31071                 if(this.el.getWidth() < this.minWidth){
31072                     this.el.setWidth(this.minWidth);
31073                 }
31074                 if(this.hidden){
31075                     this.el.endMeasure();
31076                 }
31077             }
31078         }
31079     },
31080
31081     /**
31082      * Assigns this button's click handler
31083      * @param {Function} handler The function to call when the button is clicked
31084      * @param {Object} scope (optional) Scope for the function passed in
31085      */
31086     setHandler : function(handler, scope){
31087         this.handler = handler;
31088         this.scope = scope;  
31089     },
31090     
31091     /**
31092      * Sets this button's text
31093      * @param {String} text The button text
31094      */
31095     setText : function(text){
31096         this.text = text;
31097         if(this.el){
31098             this.el.child("td.x-btn-center button.x-btn-text").update(text);
31099         }
31100         this.autoWidth();
31101     },
31102     
31103     /**
31104      * Gets the text for this button
31105      * @return {String} The button text
31106      */
31107     getText : function(){
31108         return this.text;  
31109     },
31110     
31111     /**
31112      * Show this button
31113      */
31114     show: function(){
31115         this.hidden = false;
31116         if(this.el){
31117             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "");
31118         }
31119     },
31120     
31121     /**
31122      * Hide this button
31123      */
31124     hide: function(){
31125         this.hidden = true;
31126         if(this.el){
31127             this[this.hideParent? 'parentEl' : 'el'].setStyle("display", "none");
31128         }
31129     },
31130     
31131     /**
31132      * Convenience function for boolean show/hide
31133      * @param {Boolean} visible True to show, false to hide
31134      */
31135     setVisible: function(visible){
31136         if(visible) {
31137             this.show();
31138         }else{
31139             this.hide();
31140         }
31141     },
31142     /**
31143          * Similar to toggle, but does not trigger event.
31144          * @param {Boolean} state [required] Force a particular state
31145          */
31146         setPressed : function(state)
31147         {
31148             if(state != this.pressed){
31149             if(state){
31150                 this.el.addClass("x-btn-pressed");
31151                 this.pressed = true;
31152             }else{
31153                 this.el.removeClass("x-btn-pressed");
31154                 this.pressed = false;
31155             }
31156         }
31157         },
31158         
31159     /**
31160      * If a state it passed, it becomes the pressed state otherwise the current state is toggled.
31161      * @param {Boolean} state (optional) Force a particular state
31162      */
31163     toggle : function(state){
31164         state = state === undefined ? !this.pressed : state;
31165         if(state != this.pressed){
31166             if(state){
31167                 this.el.addClass("x-btn-pressed");
31168                 this.pressed = true;
31169                 this.fireEvent("toggle", this, true);
31170             }else{
31171                 this.el.removeClass("x-btn-pressed");
31172                 this.pressed = false;
31173                 this.fireEvent("toggle", this, false);
31174             }
31175             if(this.toggleHandler){
31176                 this.toggleHandler.call(this.scope || this, this, state);
31177             }
31178         }
31179     },
31180     
31181         
31182         
31183     /**
31184      * Focus the button
31185      */
31186     focus : function(){
31187         this.el.child('button:first').focus();
31188     },
31189     
31190     /**
31191      * Disable this button
31192      */
31193     disable : function(){
31194         if(this.el){
31195             this.el.addClass("x-btn-disabled");
31196         }
31197         this.disabled = true;
31198     },
31199     
31200     /**
31201      * Enable this button
31202      */
31203     enable : function(){
31204         if(this.el){
31205             this.el.removeClass("x-btn-disabled");
31206         }
31207         this.disabled = false;
31208     },
31209
31210     /**
31211      * Convenience function for boolean enable/disable
31212      * @param {Boolean} enabled True to enable, false to disable
31213      */
31214     setDisabled : function(v){
31215         this[v !== true ? "enable" : "disable"]();
31216     },
31217
31218     // private
31219     onClick : function(e)
31220     {
31221         if(e){
31222             e.preventDefault();
31223         }
31224         if(e.button != 0){
31225             return;
31226         }
31227         if(!this.disabled){
31228             if(this.enableToggle){
31229                 this.toggle();
31230             }
31231             if(this.menu && !this.menu.isVisible()){
31232                 this.menu.show(this.el, this.menuAlign);
31233             }
31234             this.fireEvent("click", this, e);
31235             if(this.handler){
31236                 this.el.removeClass("x-btn-over");
31237                 this.handler.call(this.scope || this, this, e);
31238             }
31239         }
31240     },
31241     // private
31242     onMouseOver : function(e){
31243         if(!this.disabled){
31244             this.el.addClass("x-btn-over");
31245             this.fireEvent('mouseover', this, e);
31246         }
31247     },
31248     // private
31249     onMouseOut : function(e){
31250         if(!e.within(this.el,  true)){
31251             this.el.removeClass("x-btn-over");
31252             this.fireEvent('mouseout', this, e);
31253         }
31254     },
31255     // private
31256     onFocus : function(e){
31257         if(!this.disabled){
31258             this.el.addClass("x-btn-focus");
31259         }
31260     },
31261     // private
31262     onBlur : function(e){
31263         this.el.removeClass("x-btn-focus");
31264     },
31265     // private
31266     onMouseDown : function(e){
31267         if(!this.disabled && e.button == 0){
31268             this.el.addClass("x-btn-click");
31269             Roo.get(document).on('mouseup', this.onMouseUp, this);
31270         }
31271     },
31272     // private
31273     onMouseUp : function(e){
31274         if(e.button == 0){
31275             this.el.removeClass("x-btn-click");
31276             Roo.get(document).un('mouseup', this.onMouseUp, this);
31277         }
31278     },
31279     // private
31280     onMenuShow : function(e){
31281         this.el.addClass("x-btn-menu-active");
31282     },
31283     // private
31284     onMenuHide : function(e){
31285         this.el.removeClass("x-btn-menu-active");
31286     }   
31287 });
31288
31289 // Private utility class used by Button
31290 Roo.ButtonToggleMgr = function(){
31291    var groups = {};
31292    
31293    function toggleGroup(btn, state){
31294        if(state){
31295            var g = groups[btn.toggleGroup];
31296            for(var i = 0, l = g.length; i < l; i++){
31297                if(g[i] != btn){
31298                    g[i].toggle(false);
31299                }
31300            }
31301        }
31302    }
31303    
31304    return {
31305        register : function(btn){
31306            if(!btn.toggleGroup){
31307                return;
31308            }
31309            var g = groups[btn.toggleGroup];
31310            if(!g){
31311                g = groups[btn.toggleGroup] = [];
31312            }
31313            g.push(btn);
31314            btn.on("toggle", toggleGroup);
31315        },
31316        
31317        unregister : function(btn){
31318            if(!btn.toggleGroup){
31319                return;
31320            }
31321            var g = groups[btn.toggleGroup];
31322            if(g){
31323                g.remove(btn);
31324                btn.un("toggle", toggleGroup);
31325            }
31326        }
31327    };
31328 }();/*
31329  * Based on:
31330  * Ext JS Library 1.1.1
31331  * Copyright(c) 2006-2007, Ext JS, LLC.
31332  *
31333  * Originally Released Under LGPL - original licence link has changed is not relivant.
31334  *
31335  * Fork - LGPL
31336  * <script type="text/javascript">
31337  */
31338  
31339 /**
31340  * @class Roo.SplitButton
31341  * @extends Roo.Button
31342  * A split button that provides a built-in dropdown arrow that can fire an event separately from the default
31343  * click event of the button.  Typically this would be used to display a dropdown menu that provides additional
31344  * options to the primary button action, but any custom handler can provide the arrowclick implementation.
31345  * @cfg {Function} arrowHandler A function called when the arrow button is clicked (can be used instead of click event)
31346  * @cfg {String} arrowTooltip The title attribute of the arrow
31347  * @constructor
31348  * Create a new menu button
31349  * @param {String/HTMLElement/Element} renderTo The element to append the button to
31350  * @param {Object} config The config object
31351  */
31352 Roo.SplitButton = function(renderTo, config){
31353     Roo.SplitButton.superclass.constructor.call(this, renderTo, config);
31354     /**
31355      * @event arrowclick
31356      * Fires when this button's arrow is clicked
31357      * @param {SplitButton} this
31358      * @param {EventObject} e The click event
31359      */
31360     this.addEvents({"arrowclick":true});
31361 };
31362
31363 Roo.extend(Roo.SplitButton, Roo.Button, {
31364     render : function(renderTo){
31365         // this is one sweet looking template!
31366         var tpl = new Roo.Template(
31367             '<table cellspacing="0" class="x-btn-menu-wrap x-btn"><tr><td>',
31368             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-text-wrap"><tbody>',
31369             '<tr><td class="x-btn-left"><i>&#160;</i></td><td class="x-btn-center"><button class="x-btn-text" type="{1}">{0}</button></td></tr>',
31370             "</tbody></table></td><td>",
31371             '<table cellspacing="0" class="x-btn-wrap x-btn-menu-arrow-wrap"><tbody>',
31372             '<tr><td class="x-btn-center"><button class="x-btn-menu-arrow-el" type="button">&#160;</button></td><td class="x-btn-right"><i>&#160;</i></td></tr>',
31373             "</tbody></table></td></tr></table>"
31374         );
31375         var btn = tpl.append(renderTo, [this.text, this.type], true);
31376         var btnEl = btn.child("button");
31377         if(this.cls){
31378             btn.addClass(this.cls);
31379         }
31380         if(this.icon){
31381             btnEl.setStyle('background-image', 'url(' +this.icon +')');
31382         }
31383         if(this.iconCls){
31384             btnEl.addClass(this.iconCls);
31385             if(!this.cls){
31386                 btn.addClass(this.text ? 'x-btn-text-icon' : 'x-btn-icon');
31387             }
31388         }
31389         this.el = btn;
31390         if(this.handleMouseEvents){
31391             btn.on("mouseover", this.onMouseOver, this);
31392             btn.on("mouseout", this.onMouseOut, this);
31393             btn.on("mousedown", this.onMouseDown, this);
31394             btn.on("mouseup", this.onMouseUp, this);
31395         }
31396         btn.on(this.clickEvent, this.onClick, this);
31397         if(this.tooltip){
31398             if(typeof this.tooltip == 'object'){
31399                 Roo.QuickTips.tips(Roo.apply({
31400                       target: btnEl.id
31401                 }, this.tooltip));
31402             } else {
31403                 btnEl.dom[this.tooltipType] = this.tooltip;
31404             }
31405         }
31406         if(this.arrowTooltip){
31407             btn.child("button:nth(2)").dom[this.tooltipType] = this.arrowTooltip;
31408         }
31409         if(this.hidden){
31410             this.hide();
31411         }
31412         if(this.disabled){
31413             this.disable();
31414         }
31415         if(this.pressed){
31416             this.el.addClass("x-btn-pressed");
31417         }
31418         if(Roo.isIE && !Roo.isIE7){
31419             this.autoWidth.defer(1, this);
31420         }else{
31421             this.autoWidth();
31422         }
31423         if(this.menu){
31424             this.menu.on("show", this.onMenuShow, this);
31425             this.menu.on("hide", this.onMenuHide, this);
31426         }
31427         this.fireEvent('render', this);
31428     },
31429
31430     // private
31431     autoWidth : function(){
31432         if(this.el){
31433             var tbl = this.el.child("table:first");
31434             var tbl2 = this.el.child("table:last");
31435             this.el.setWidth("auto");
31436             tbl.setWidth("auto");
31437             if(Roo.isIE7 && Roo.isStrict){
31438                 var ib = this.el.child('button:first');
31439                 if(ib && ib.getWidth() > 20){
31440                     ib.clip();
31441                     ib.setWidth(Roo.util.TextMetrics.measure(ib, this.text).width+ib.getFrameWidth('lr'));
31442                 }
31443             }
31444             if(this.minWidth){
31445                 if(this.hidden){
31446                     this.el.beginMeasure();
31447                 }
31448                 if((tbl.getWidth()+tbl2.getWidth()) < this.minWidth){
31449                     tbl.setWidth(this.minWidth-tbl2.getWidth());
31450                 }
31451                 if(this.hidden){
31452                     this.el.endMeasure();
31453                 }
31454             }
31455             this.el.setWidth(tbl.getWidth()+tbl2.getWidth());
31456         } 
31457     },
31458     /**
31459      * Sets this button's click handler
31460      * @param {Function} handler The function to call when the button is clicked
31461      * @param {Object} scope (optional) Scope for the function passed above
31462      */
31463     setHandler : function(handler, scope){
31464         this.handler = handler;
31465         this.scope = scope;  
31466     },
31467     
31468     /**
31469      * Sets this button's arrow click handler
31470      * @param {Function} handler The function to call when the arrow is clicked
31471      * @param {Object} scope (optional) Scope for the function passed above
31472      */
31473     setArrowHandler : function(handler, scope){
31474         this.arrowHandler = handler;
31475         this.scope = scope;  
31476     },
31477     
31478     /**
31479      * Focus the button
31480      */
31481     focus : function(){
31482         if(this.el){
31483             this.el.child("button:first").focus();
31484         }
31485     },
31486
31487     // private
31488     onClick : function(e){
31489         e.preventDefault();
31490         if(!this.disabled){
31491             if(e.getTarget(".x-btn-menu-arrow-wrap")){
31492                 if(this.menu && !this.menu.isVisible()){
31493                     this.menu.show(this.el, this.menuAlign);
31494                 }
31495                 this.fireEvent("arrowclick", this, e);
31496                 if(this.arrowHandler){
31497                     this.arrowHandler.call(this.scope || this, this, e);
31498                 }
31499             }else{
31500                 this.fireEvent("click", this, e);
31501                 if(this.handler){
31502                     this.handler.call(this.scope || this, this, e);
31503                 }
31504             }
31505         }
31506     },
31507     // private
31508     onMouseDown : function(e){
31509         if(!this.disabled){
31510             Roo.fly(e.getTarget("table")).addClass("x-btn-click");
31511         }
31512     },
31513     // private
31514     onMouseUp : function(e){
31515         Roo.fly(e.getTarget("table")).removeClass("x-btn-click");
31516     }   
31517 });
31518
31519
31520 // backwards compat
31521 Roo.MenuButton = Roo.SplitButton;/*
31522  * Based on:
31523  * Ext JS Library 1.1.1
31524  * Copyright(c) 2006-2007, Ext JS, LLC.
31525  *
31526  * Originally Released Under LGPL - original licence link has changed is not relivant.
31527  *
31528  * Fork - LGPL
31529  * <script type="text/javascript">
31530  */
31531
31532 /**
31533  * @class Roo.Toolbar
31534  * @children   Roo.Toolbar.Item Roo.Toolbar.Button Roo.Toolbar.SplitButton Roo.form.Field 
31535  * Basic Toolbar class.
31536  * @constructor
31537  * Creates a new Toolbar
31538  * @param {Object} container The config object
31539  */ 
31540 Roo.Toolbar = function(container, buttons, config)
31541 {
31542     /// old consturctor format still supported..
31543     if(container instanceof Array){ // omit the container for later rendering
31544         buttons = container;
31545         config = buttons;
31546         container = null;
31547     }
31548     if (typeof(container) == 'object' && container.xtype) {
31549         config = container;
31550         container = config.container;
31551         buttons = config.buttons || []; // not really - use items!!
31552     }
31553     var xitems = [];
31554     if (config && config.items) {
31555         xitems = config.items;
31556         delete config.items;
31557     }
31558     Roo.apply(this, config);
31559     this.buttons = buttons;
31560     
31561     if(container){
31562         this.render(container);
31563     }
31564     this.xitems = xitems;
31565     Roo.each(xitems, function(b) {
31566         this.add(b);
31567     }, this);
31568     
31569 };
31570
31571 Roo.Toolbar.prototype = {
31572     /**
31573      * @cfg {Array} items
31574      * array of button configs or elements to add (will be converted to a MixedCollection)
31575      */
31576     items: false,
31577     /**
31578      * @cfg {String/HTMLElement/Element} container
31579      * The id or element that will contain the toolbar
31580      */
31581     // private
31582     render : function(ct){
31583         this.el = Roo.get(ct);
31584         if(this.cls){
31585             this.el.addClass(this.cls);
31586         }
31587         // using a table allows for vertical alignment
31588         // 100% width is needed by Safari...
31589         this.el.update('<div class="x-toolbar x-small-editor"><table cellspacing="0"><tr></tr></table></div>');
31590         this.tr = this.el.child("tr", true);
31591         var autoId = 0;
31592         this.items = new Roo.util.MixedCollection(false, function(o){
31593             return o.id || ("item" + (++autoId));
31594         });
31595         if(this.buttons){
31596             this.add.apply(this, this.buttons);
31597             delete this.buttons;
31598         }
31599     },
31600
31601     /**
31602      * Adds element(s) to the toolbar -- this function takes a variable number of 
31603      * arguments of mixed type and adds them to the toolbar.
31604      * @param {Mixed} arg1 The following types of arguments are all valid:<br />
31605      * <ul>
31606      * <li>{@link Roo.Toolbar.Button} config: A valid button config object (equivalent to {@link #addButton})</li>
31607      * <li>HtmlElement: Any standard HTML element (equivalent to {@link #addElement})</li>
31608      * <li>Field: Any form field (equivalent to {@link #addField})</li>
31609      * <li>Item: Any subclass of {@link Roo.Toolbar.Item} (equivalent to {@link #addItem})</li>
31610      * <li>String: Any generic string (gets wrapped in a {@link Roo.Toolbar.TextItem}, equivalent to {@link #addText}).
31611      * Note that there are a few special strings that are treated differently as explained nRoo.</li>
31612      * <li>'separator' or '-': Creates a separator element (equivalent to {@link #addSeparator})</li>
31613      * <li>' ': Creates a spacer element (equivalent to {@link #addSpacer})</li>
31614      * <li>'->': Creates a fill element (equivalent to {@link #addFill})</li>
31615      * </ul>
31616      * @param {Mixed} arg2
31617      * @param {Mixed} etc.
31618      */
31619     add : function(){
31620         var a = arguments, l = a.length;
31621         for(var i = 0; i < l; i++){
31622             this._add(a[i]);
31623         }
31624     },
31625     // private..
31626     _add : function(el) {
31627         
31628         if (el.xtype) {
31629             el = Roo.factory(el, typeof(Roo.Toolbar[el.xtype]) == 'undefined' ? Roo.form : Roo.Toolbar);
31630         }
31631         
31632         if (el.applyTo){ // some kind of form field
31633             return this.addField(el);
31634         } 
31635         if (el.render){ // some kind of Toolbar.Item
31636             return this.addItem(el);
31637         }
31638         if (typeof el == "string"){ // string
31639             if(el == "separator" || el == "-"){
31640                 return this.addSeparator();
31641             }
31642             if (el == " "){
31643                 return this.addSpacer();
31644             }
31645             if(el == "->"){
31646                 return this.addFill();
31647             }
31648             return this.addText(el);
31649             
31650         }
31651         if(el.tagName){ // element
31652             return this.addElement(el);
31653         }
31654         if(typeof el == "object"){ // must be button config?
31655             return this.addButton(el);
31656         }
31657         // and now what?!?!
31658         return false;
31659         
31660     },
31661     
31662     /**
31663      * Add an Xtype element
31664      * @param {Object} xtype Xtype Object
31665      * @return {Object} created Object
31666      */
31667     addxtype : function(e){
31668         return this.add(e);  
31669     },
31670     
31671     /**
31672      * Returns the Element for this toolbar.
31673      * @return {Roo.Element}
31674      */
31675     getEl : function(){
31676         return this.el;  
31677     },
31678     
31679     /**
31680      * Adds a separator
31681      * @return {Roo.Toolbar.Item} The separator item
31682      */
31683     addSeparator : function(){
31684         return this.addItem(new Roo.Toolbar.Separator());
31685     },
31686
31687     /**
31688      * Adds a spacer element
31689      * @return {Roo.Toolbar.Spacer} The spacer item
31690      */
31691     addSpacer : function(){
31692         return this.addItem(new Roo.Toolbar.Spacer());
31693     },
31694
31695     /**
31696      * Adds a fill element that forces subsequent additions to the right side of the toolbar
31697      * @return {Roo.Toolbar.Fill} The fill item
31698      */
31699     addFill : function(){
31700         return this.addItem(new Roo.Toolbar.Fill());
31701     },
31702
31703     /**
31704      * Adds any standard HTML element to the toolbar
31705      * @param {String/HTMLElement/Element} el The element or id of the element to add
31706      * @return {Roo.Toolbar.Item} The element's item
31707      */
31708     addElement : function(el){
31709         return this.addItem(new Roo.Toolbar.Item(el));
31710     },
31711     /**
31712      * Collection of items on the toolbar.. (only Toolbar Items, so use fields to retrieve fields)
31713      * @type Roo.util.MixedCollection  
31714      */
31715     items : false,
31716      
31717     /**
31718      * Adds any Toolbar.Item or subclass
31719      * @param {Roo.Toolbar.Item} item
31720      * @return {Roo.Toolbar.Item} The item
31721      */
31722     addItem : function(item){
31723         var td = this.nextBlock();
31724         item.render(td);
31725         this.items.add(item);
31726         return item;
31727     },
31728     
31729     /**
31730      * Adds a button (or buttons). See {@link Roo.Toolbar.Button} for more info on the config.
31731      * @param {Object/Array} config A button config or array of configs
31732      * @return {Roo.Toolbar.Button/Array}
31733      */
31734     addButton : function(config){
31735         if(config instanceof Array){
31736             var buttons = [];
31737             for(var i = 0, len = config.length; i < len; i++) {
31738                 buttons.push(this.addButton(config[i]));
31739             }
31740             return buttons;
31741         }
31742         var b = config;
31743         if(!(config instanceof Roo.Toolbar.Button)){
31744             b = config.split ?
31745                 new Roo.Toolbar.SplitButton(config) :
31746                 new Roo.Toolbar.Button(config);
31747         }
31748         var td = this.nextBlock();
31749         b.render(td);
31750         this.items.add(b);
31751         return b;
31752     },
31753     
31754     /**
31755      * Adds text to the toolbar
31756      * @param {String} text The text to add
31757      * @return {Roo.Toolbar.Item} The element's item
31758      */
31759     addText : function(text){
31760         return this.addItem(new Roo.Toolbar.TextItem(text));
31761     },
31762     
31763     /**
31764      * Inserts any {@link Roo.Toolbar.Item}/{@link Roo.Toolbar.Button} at the specified index.
31765      * @param {Number} index The index where the item is to be inserted
31766      * @param {Object/Roo.Toolbar.Item/Roo.Toolbar.Button (may be Array)} item The button, or button config object to be inserted.
31767      * @return {Roo.Toolbar.Button/Item}
31768      */
31769     insertButton : function(index, item){
31770         if(item instanceof Array){
31771             var buttons = [];
31772             for(var i = 0, len = item.length; i < len; i++) {
31773                buttons.push(this.insertButton(index + i, item[i]));
31774             }
31775             return buttons;
31776         }
31777         if (!(item instanceof Roo.Toolbar.Button)){
31778            item = new Roo.Toolbar.Button(item);
31779         }
31780         var td = document.createElement("td");
31781         this.tr.insertBefore(td, this.tr.childNodes[index]);
31782         item.render(td);
31783         this.items.insert(index, item);
31784         return item;
31785     },
31786     
31787     /**
31788      * Adds a new element to the toolbar from the passed {@link Roo.DomHelper} config.
31789      * @param {Object} config
31790      * @return {Roo.Toolbar.Item} The element's item
31791      */
31792     addDom : function(config, returnEl){
31793         var td = this.nextBlock();
31794         Roo.DomHelper.overwrite(td, config);
31795         var ti = new Roo.Toolbar.Item(td.firstChild);
31796         ti.render(td);
31797         this.items.add(ti);
31798         return ti;
31799     },
31800
31801     /**
31802      * Collection of fields on the toolbar.. usefull for quering (value is false if there are no fields)
31803      * @type Roo.util.MixedCollection  
31804      */
31805     fields : false,
31806     
31807     /**
31808      * Adds a dynamically rendered Roo.form field (TextField, ComboBox, etc).
31809      * Note: the field should not have been rendered yet. For a field that has already been
31810      * rendered, use {@link #addElement}.
31811      * @param {Roo.form.Field} field
31812      * @return {Roo.ToolbarItem}
31813      */
31814      
31815       
31816     addField : function(field) {
31817         if (!this.fields) {
31818             var autoId = 0;
31819             this.fields = new Roo.util.MixedCollection(false, function(o){
31820                 return o.id || ("item" + (++autoId));
31821             });
31822
31823         }
31824         
31825         var td = this.nextBlock();
31826         field.render(td);
31827         var ti = new Roo.Toolbar.Item(td.firstChild);
31828         ti.render(td);
31829         this.items.add(ti);
31830         this.fields.add(field);
31831         return ti;
31832     },
31833     /**
31834      * Hide the toolbar
31835      * @method hide
31836      */
31837      
31838       
31839     hide : function()
31840     {
31841         this.el.child('div').setVisibilityMode(Roo.Element.DISPLAY);
31842         this.el.child('div').hide();
31843     },
31844     /**
31845      * Show the toolbar
31846      * @method show
31847      */
31848     show : function()
31849     {
31850         this.el.child('div').show();
31851     },
31852       
31853     // private
31854     nextBlock : function(){
31855         var td = document.createElement("td");
31856         this.tr.appendChild(td);
31857         return td;
31858     },
31859
31860     // private
31861     destroy : function(){
31862         if(this.items){ // rendered?
31863             Roo.destroy.apply(Roo, this.items.items);
31864         }
31865         if(this.fields){ // rendered?
31866             Roo.destroy.apply(Roo, this.fields.items);
31867         }
31868         Roo.Element.uncache(this.el, this.tr);
31869     }
31870 };
31871
31872 /**
31873  * @class Roo.Toolbar.Item
31874  * The base class that other classes should extend in order to get some basic common toolbar item functionality.
31875  * @constructor
31876  * Creates a new Item
31877  * @param {HTMLElement} el 
31878  */
31879 Roo.Toolbar.Item = function(el){
31880     var cfg = {};
31881     if (typeof (el.xtype) != 'undefined') {
31882         cfg = el;
31883         el = cfg.el;
31884     }
31885     
31886     this.el = Roo.getDom(el);
31887     this.id = Roo.id(this.el);
31888     this.hidden = false;
31889     
31890     this.addEvents({
31891          /**
31892              * @event render
31893              * Fires when the button is rendered
31894              * @param {Button} this
31895              */
31896         'render': true
31897     });
31898     Roo.Toolbar.Item.superclass.constructor.call(this,cfg);
31899 };
31900 Roo.extend(Roo.Toolbar.Item, Roo.util.Observable, {
31901 //Roo.Toolbar.Item.prototype = {
31902     
31903     /**
31904      * Get this item's HTML Element
31905      * @return {HTMLElement}
31906      */
31907     getEl : function(){
31908        return this.el;  
31909     },
31910
31911     // private
31912     render : function(td){
31913         
31914          this.td = td;
31915         td.appendChild(this.el);
31916         
31917         this.fireEvent('render', this);
31918     },
31919     
31920     /**
31921      * Removes and destroys this item.
31922      */
31923     destroy : function(){
31924         this.td.parentNode.removeChild(this.td);
31925     },
31926     
31927     /**
31928      * Shows this item.
31929      */
31930     show: function(){
31931         this.hidden = false;
31932         this.td.style.display = "";
31933     },
31934     
31935     /**
31936      * Hides this item.
31937      */
31938     hide: function(){
31939         this.hidden = true;
31940         this.td.style.display = "none";
31941     },
31942     
31943     /**
31944      * Convenience function for boolean show/hide.
31945      * @param {Boolean} visible true to show/false to hide
31946      */
31947     setVisible: function(visible){
31948         if(visible) {
31949             this.show();
31950         }else{
31951             this.hide();
31952         }
31953     },
31954     
31955     /**
31956      * Try to focus this item.
31957      */
31958     focus : function(){
31959         Roo.fly(this.el).focus();
31960     },
31961     
31962     /**
31963      * Disables this item.
31964      */
31965     disable : function(){
31966         Roo.fly(this.td).addClass("x-item-disabled");
31967         this.disabled = true;
31968         this.el.disabled = true;
31969     },
31970     
31971     /**
31972      * Enables this item.
31973      */
31974     enable : function(){
31975         Roo.fly(this.td).removeClass("x-item-disabled");
31976         this.disabled = false;
31977         this.el.disabled = false;
31978     }
31979 });
31980
31981
31982 /**
31983  * @class Roo.Toolbar.Separator
31984  * @extends Roo.Toolbar.Item
31985  * A simple toolbar separator class
31986  * @constructor
31987  * Creates a new Separator
31988  */
31989 Roo.Toolbar.Separator = function(cfg){
31990     
31991     var s = document.createElement("span");
31992     s.className = "ytb-sep";
31993     if (cfg) {
31994         cfg.el = s;
31995     }
31996     
31997     Roo.Toolbar.Separator.superclass.constructor.call(this, cfg || s);
31998 };
31999 Roo.extend(Roo.Toolbar.Separator, Roo.Toolbar.Item, {
32000     enable:Roo.emptyFn,
32001     disable:Roo.emptyFn,
32002     focus:Roo.emptyFn
32003 });
32004
32005 /**
32006  * @class Roo.Toolbar.Spacer
32007  * @extends Roo.Toolbar.Item
32008  * A simple element that adds extra horizontal space to a toolbar.
32009  * @constructor
32010  * Creates a new Spacer
32011  */
32012 Roo.Toolbar.Spacer = function(cfg){
32013     var s = document.createElement("div");
32014     s.className = "ytb-spacer";
32015     if (cfg) {
32016         cfg.el = s;
32017     }
32018     Roo.Toolbar.Spacer.superclass.constructor.call(this, cfg || s);
32019 };
32020 Roo.extend(Roo.Toolbar.Spacer, Roo.Toolbar.Item, {
32021     enable:Roo.emptyFn,
32022     disable:Roo.emptyFn,
32023     focus:Roo.emptyFn
32024 });
32025
32026 /**
32027  * @class Roo.Toolbar.Fill
32028  * @extends Roo.Toolbar.Spacer
32029  * A simple element that adds a greedy (100% width) horizontal space to a toolbar.
32030  * @constructor
32031  * Creates a new Spacer
32032  */
32033 Roo.Toolbar.Fill = Roo.extend(Roo.Toolbar.Spacer, {
32034     // private
32035     render : function(td){
32036         td.style.width = '100%';
32037         Roo.Toolbar.Fill.superclass.render.call(this, td);
32038     }
32039 });
32040
32041 /**
32042  * @class Roo.Toolbar.TextItem
32043  * @extends Roo.Toolbar.Item
32044  * A simple class that renders text directly into a toolbar.
32045  * @constructor
32046  * Creates a new TextItem
32047  * @cfg {string} text 
32048  */
32049 Roo.Toolbar.TextItem = function(cfg){
32050     var  text = cfg || "";
32051     if (typeof(cfg) == 'object') {
32052         text = cfg.text || "";
32053     }  else {
32054         cfg = null;
32055     }
32056     var s = document.createElement("span");
32057     s.className = "ytb-text";
32058     s.innerHTML = text;
32059     if (cfg) {
32060         cfg.el  = s;
32061     }
32062     
32063     Roo.Toolbar.TextItem.superclass.constructor.call(this, cfg ||  s);
32064 };
32065 Roo.extend(Roo.Toolbar.TextItem, Roo.Toolbar.Item, {
32066     
32067      
32068     enable:Roo.emptyFn,
32069     disable:Roo.emptyFn,
32070     focus:Roo.emptyFn,
32071      /**
32072      * Shows this button
32073      */
32074     show: function(){
32075         this.hidden = false;
32076         this.el.style.display = "";
32077     },
32078     
32079     /**
32080      * Hides this button
32081      */
32082     hide: function(){
32083         this.hidden = true;
32084         this.el.style.display = "none";
32085     }
32086     
32087 });
32088
32089 /**
32090  * @class Roo.Toolbar.Button
32091  * @extends Roo.Button
32092  * A button that renders into a toolbar.
32093  * @constructor
32094  * Creates a new Button
32095  * @param {Object} config A standard {@link Roo.Button} config object
32096  */
32097 Roo.Toolbar.Button = function(config){
32098     Roo.Toolbar.Button.superclass.constructor.call(this, null, config);
32099 };
32100 Roo.extend(Roo.Toolbar.Button, Roo.Button,
32101 {
32102     
32103     
32104     render : function(td){
32105         this.td = td;
32106         Roo.Toolbar.Button.superclass.render.call(this, td);
32107     },
32108     
32109     /**
32110      * Removes and destroys this button
32111      */
32112     destroy : function(){
32113         Roo.Toolbar.Button.superclass.destroy.call(this);
32114         this.td.parentNode.removeChild(this.td);
32115     },
32116     
32117     /**
32118      * Shows this button
32119      */
32120     show: function(){
32121         this.hidden = false;
32122         this.td.style.display = "";
32123     },
32124     
32125     /**
32126      * Hides this button
32127      */
32128     hide: function(){
32129         this.hidden = true;
32130         this.td.style.display = "none";
32131     },
32132
32133     /**
32134      * Disables this item
32135      */
32136     disable : function(){
32137         Roo.fly(this.td).addClass("x-item-disabled");
32138         this.disabled = true;
32139     },
32140
32141     /**
32142      * Enables this item
32143      */
32144     enable : function(){
32145         Roo.fly(this.td).removeClass("x-item-disabled");
32146         this.disabled = false;
32147     }
32148 });
32149 // backwards compat
32150 Roo.ToolbarButton = Roo.Toolbar.Button;
32151
32152 /**
32153  * @class Roo.Toolbar.SplitButton
32154  * @extends Roo.SplitButton
32155  * A menu button that renders into a toolbar.
32156  * @constructor
32157  * Creates a new SplitButton
32158  * @param {Object} config A standard {@link Roo.SplitButton} config object
32159  */
32160 Roo.Toolbar.SplitButton = function(config){
32161     Roo.Toolbar.SplitButton.superclass.constructor.call(this, null, config);
32162 };
32163 Roo.extend(Roo.Toolbar.SplitButton, Roo.SplitButton, {
32164     render : function(td){
32165         this.td = td;
32166         Roo.Toolbar.SplitButton.superclass.render.call(this, td);
32167     },
32168     
32169     /**
32170      * Removes and destroys this button
32171      */
32172     destroy : function(){
32173         Roo.Toolbar.SplitButton.superclass.destroy.call(this);
32174         this.td.parentNode.removeChild(this.td);
32175     },
32176     
32177     /**
32178      * Shows this button
32179      */
32180     show: function(){
32181         this.hidden = false;
32182         this.td.style.display = "";
32183     },
32184     
32185     /**
32186      * Hides this button
32187      */
32188     hide: function(){
32189         this.hidden = true;
32190         this.td.style.display = "none";
32191     }
32192 });
32193
32194 // backwards compat
32195 Roo.Toolbar.MenuButton = Roo.Toolbar.SplitButton;/*
32196  * Based on:
32197  * Ext JS Library 1.1.1
32198  * Copyright(c) 2006-2007, Ext JS, LLC.
32199  *
32200  * Originally Released Under LGPL - original licence link has changed is not relivant.
32201  *
32202  * Fork - LGPL
32203  * <script type="text/javascript">
32204  */
32205  
32206 /**
32207  * @class Roo.PagingToolbar
32208  * @extends Roo.Toolbar
32209  * @children   Roo.Toolbar.Item Roo.Toolbar.Button Roo.Toolbar.SplitButton Roo.form.Field
32210  * A specialized toolbar that is bound to a {@link Roo.data.Store} and provides automatic paging controls.
32211  * @constructor
32212  * Create a new PagingToolbar
32213  * @param {Object} config The config object
32214  */
32215 Roo.PagingToolbar = function(el, ds, config)
32216 {
32217     // old args format still supported... - xtype is prefered..
32218     if (typeof(el) == 'object' && el.xtype) {
32219         // created from xtype...
32220         config = el;
32221         ds = el.dataSource;
32222         el = config.container;
32223     }
32224     var items = [];
32225     if (config.items) {
32226         items = config.items;
32227         config.items = [];
32228     }
32229     
32230     Roo.PagingToolbar.superclass.constructor.call(this, el, null, config);
32231     this.ds = ds;
32232     this.cursor = 0;
32233     this.renderButtons(this.el);
32234     this.bind(ds);
32235     
32236     // supprot items array.
32237    
32238     Roo.each(items, function(e) {
32239         this.add(Roo.factory(e));
32240     },this);
32241     
32242 };
32243
32244 Roo.extend(Roo.PagingToolbar, Roo.Toolbar, {
32245    
32246     /**
32247      * @cfg {String/HTMLElement/Element} container
32248      * container The id or element that will contain the toolbar
32249      */
32250     /**
32251      * @cfg {Boolean} displayInfo
32252      * True to display the displayMsg (defaults to false)
32253      */
32254     
32255     
32256     /**
32257      * @cfg {Number} pageSize
32258      * The number of records to display per page (defaults to 20)
32259      */
32260     pageSize: 20,
32261     /**
32262      * @cfg {String} displayMsg
32263      * The paging status message to display (defaults to "Displaying {start} - {end} of {total}")
32264      */
32265     displayMsg : 'Displaying {0} - {1} of {2}',
32266     /**
32267      * @cfg {String} emptyMsg
32268      * The message to display when no records are found (defaults to "No data to display")
32269      */
32270     emptyMsg : 'No data to display',
32271     /**
32272      * Customizable piece of the default paging text (defaults to "Page")
32273      * @type String
32274      */
32275     beforePageText : "Page",
32276     /**
32277      * Customizable piece of the default paging text (defaults to "of %0")
32278      * @type String
32279      */
32280     afterPageText : "of {0}",
32281     /**
32282      * Customizable piece of the default paging text (defaults to "First Page")
32283      * @type String
32284      */
32285     firstText : "First Page",
32286     /**
32287      * Customizable piece of the default paging text (defaults to "Previous Page")
32288      * @type String
32289      */
32290     prevText : "Previous Page",
32291     /**
32292      * Customizable piece of the default paging text (defaults to "Next Page")
32293      * @type String
32294      */
32295     nextText : "Next Page",
32296     /**
32297      * Customizable piece of the default paging text (defaults to "Last Page")
32298      * @type String
32299      */
32300     lastText : "Last Page",
32301     /**
32302      * Customizable piece of the default paging text (defaults to "Refresh")
32303      * @type String
32304      */
32305     refreshText : "Refresh",
32306
32307     // private
32308     renderButtons : function(el){
32309         Roo.PagingToolbar.superclass.render.call(this, el);
32310         this.first = this.addButton({
32311             tooltip: this.firstText,
32312             cls: "x-btn-icon x-grid-page-first",
32313             disabled: true,
32314             handler: this.onClick.createDelegate(this, ["first"])
32315         });
32316         this.prev = this.addButton({
32317             tooltip: this.prevText,
32318             cls: "x-btn-icon x-grid-page-prev",
32319             disabled: true,
32320             handler: this.onClick.createDelegate(this, ["prev"])
32321         });
32322         //this.addSeparator();
32323         this.add(this.beforePageText);
32324         this.field = Roo.get(this.addDom({
32325            tag: "input",
32326            type: "text",
32327            size: "3",
32328            value: "1",
32329            cls: "x-grid-page-number"
32330         }).el);
32331         this.field.on("keydown", this.onPagingKeydown, this);
32332         this.field.on("focus", function(){this.dom.select();});
32333         this.afterTextEl = this.addText(String.format(this.afterPageText, 1));
32334         this.field.setHeight(18);
32335         //this.addSeparator();
32336         this.next = this.addButton({
32337             tooltip: this.nextText,
32338             cls: "x-btn-icon x-grid-page-next",
32339             disabled: true,
32340             handler: this.onClick.createDelegate(this, ["next"])
32341         });
32342         this.last = this.addButton({
32343             tooltip: this.lastText,
32344             cls: "x-btn-icon x-grid-page-last",
32345             disabled: true,
32346             handler: this.onClick.createDelegate(this, ["last"])
32347         });
32348         //this.addSeparator();
32349         this.loading = this.addButton({
32350             tooltip: this.refreshText,
32351             cls: "x-btn-icon x-grid-loading",
32352             handler: this.onClick.createDelegate(this, ["refresh"])
32353         });
32354
32355         if(this.displayInfo){
32356             this.displayEl = Roo.fly(this.el.dom.firstChild).createChild({cls:'x-paging-info'});
32357         }
32358     },
32359
32360     // private
32361     updateInfo : function(){
32362         if(this.displayEl){
32363             var count = this.ds.getCount();
32364             var msg = count == 0 ?
32365                 this.emptyMsg :
32366                 String.format(
32367                     this.displayMsg,
32368                     this.cursor+1, this.cursor+count, this.ds.getTotalCount()    
32369                 );
32370             this.displayEl.update(msg);
32371         }
32372     },
32373
32374     // private
32375     onLoad : function(ds, r, o){
32376        this.cursor = o.params ? o.params.start : 0;
32377        var d = this.getPageData(), ap = d.activePage, ps = d.pages;
32378
32379        this.afterTextEl.el.innerHTML = String.format(this.afterPageText, d.pages);
32380        this.field.dom.value = ap;
32381        this.first.setDisabled(ap == 1);
32382        this.prev.setDisabled(ap == 1);
32383        this.next.setDisabled(ap == ps);
32384        this.last.setDisabled(ap == ps);
32385        this.loading.enable();
32386        this.updateInfo();
32387     },
32388
32389     // private
32390     getPageData : function(){
32391         var total = this.ds.getTotalCount();
32392         return {
32393             total : total,
32394             activePage : Math.ceil((this.cursor+this.pageSize)/this.pageSize),
32395             pages :  total < this.pageSize ? 1 : Math.ceil(total/this.pageSize)
32396         };
32397     },
32398
32399     // private
32400     onLoadError : function(){
32401         this.loading.enable();
32402     },
32403
32404     // private
32405     onPagingKeydown : function(e){
32406         var k = e.getKey();
32407         var d = this.getPageData();
32408         if(k == e.RETURN){
32409             var v = this.field.dom.value, pageNum;
32410             if(!v || isNaN(pageNum = parseInt(v, 10))){
32411                 this.field.dom.value = d.activePage;
32412                 return;
32413             }
32414             pageNum = Math.min(Math.max(1, pageNum), d.pages) - 1;
32415             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
32416             e.stopEvent();
32417         }
32418         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))
32419         {
32420           var pageNum = (k == e.HOME || (k == e.DOWN && e.ctrlKey) || (k == e.LEFT && e.ctrlKey) || (k == e.PAGEDOWN && e.ctrlKey)) ? 1 : d.pages;
32421           this.field.dom.value = pageNum;
32422           this.ds.load({params:{start: (pageNum - 1) * this.pageSize, limit: this.pageSize}});
32423           e.stopEvent();
32424         }
32425         else if(k == e.UP || k == e.RIGHT || k == e.PAGEUP || k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN)
32426         {
32427           var v = this.field.dom.value, pageNum; 
32428           var increment = (e.shiftKey) ? 10 : 1;
32429           if(k == e.DOWN || k == e.LEFT || k == e.PAGEDOWN) {
32430             increment *= -1;
32431           }
32432           if(!v || isNaN(pageNum = parseInt(v, 10))) {
32433             this.field.dom.value = d.activePage;
32434             return;
32435           }
32436           else if(parseInt(v, 10) + increment >= 1 & parseInt(v, 10) + increment <= d.pages)
32437           {
32438             this.field.dom.value = parseInt(v, 10) + increment;
32439             pageNum = Math.min(Math.max(1, pageNum + increment), d.pages) - 1;
32440             this.ds.load({params:{start: pageNum * this.pageSize, limit: this.pageSize}});
32441           }
32442           e.stopEvent();
32443         }
32444     },
32445
32446     // private
32447     beforeLoad : function(){
32448         if(this.loading){
32449             this.loading.disable();
32450         }
32451     },
32452     /**
32453      * event that occurs when you click on the navigation buttons - can be used to trigger load of a grid.
32454      * @param {String} which (first|prev|next|last|refresh)  which button to press.
32455      *
32456      */
32457     // private
32458     onClick : function(which){
32459         var ds = this.ds;
32460         switch(which){
32461             case "first":
32462                 ds.load({params:{start: 0, limit: this.pageSize}});
32463             break;
32464             case "prev":
32465                 ds.load({params:{start: Math.max(0, this.cursor-this.pageSize), limit: this.pageSize}});
32466             break;
32467             case "next":
32468                 ds.load({params:{start: this.cursor+this.pageSize, limit: this.pageSize}});
32469             break;
32470             case "last":
32471                 var total = ds.getTotalCount();
32472                 var extra = total % this.pageSize;
32473                 var lastStart = extra ? (total - extra) : total-this.pageSize;
32474                 ds.load({params:{start: lastStart, limit: this.pageSize}});
32475             break;
32476             case "refresh":
32477                 ds.load({params:{start: this.cursor, limit: this.pageSize}});
32478             break;
32479         }
32480     },
32481
32482     /**
32483      * Unbinds the paging toolbar from the specified {@link Roo.data.Store}
32484      * @param {Roo.data.Store} store The data store to unbind
32485      */
32486     unbind : function(ds){
32487         ds.un("beforeload", this.beforeLoad, this);
32488         ds.un("load", this.onLoad, this);
32489         ds.un("loadexception", this.onLoadError, this);
32490         ds.un("remove", this.updateInfo, this);
32491         ds.un("add", this.updateInfo, this);
32492         this.ds = undefined;
32493     },
32494
32495     /**
32496      * Binds the paging toolbar to the specified {@link Roo.data.Store}
32497      * @param {Roo.data.Store} store The data store to bind
32498      */
32499     bind : function(ds){
32500         ds.on("beforeload", this.beforeLoad, this);
32501         ds.on("load", this.onLoad, this);
32502         ds.on("loadexception", this.onLoadError, this);
32503         ds.on("remove", this.updateInfo, this);
32504         ds.on("add", this.updateInfo, this);
32505         this.ds = ds;
32506     }
32507 });/*
32508  * Based on:
32509  * Ext JS Library 1.1.1
32510  * Copyright(c) 2006-2007, Ext JS, LLC.
32511  *
32512  * Originally Released Under LGPL - original licence link has changed is not relivant.
32513  *
32514  * Fork - LGPL
32515  * <script type="text/javascript">
32516  */
32517
32518 /**
32519  * @class Roo.Resizable
32520  * @extends Roo.util.Observable
32521  * <p>Applies drag handles to an element to make it resizable. The drag handles are inserted into the element
32522  * and positioned absolute. Some elements, such as a textarea or image, don't support this. To overcome that, you can wrap
32523  * the textarea in a div and set "resizeChild" to true (or to the id of the element), <b>or</b> set wrap:true in your config and
32524  * the element will be wrapped for you automatically.</p>
32525  * <p>Here is the list of valid resize handles:</p>
32526  * <pre>
32527 Value   Description
32528 ------  -------------------
32529  'n'     north
32530  's'     south
32531  'e'     east
32532  'w'     west
32533  'nw'    northwest
32534  'sw'    southwest
32535  'se'    southeast
32536  'ne'    northeast
32537  'hd'    horizontal drag
32538  'all'   all
32539 </pre>
32540  * <p>Here's an example showing the creation of a typical Resizable:</p>
32541  * <pre><code>
32542 var resizer = new Roo.Resizable("element-id", {
32543     handles: 'all',
32544     minWidth: 200,
32545     minHeight: 100,
32546     maxWidth: 500,
32547     maxHeight: 400,
32548     pinned: true
32549 });
32550 resizer.on("resize", myHandler);
32551 </code></pre>
32552  * <p>To hide a particular handle, set its display to none in CSS, or through script:<br>
32553  * resizer.east.setDisplayed(false);</p>
32554  * @cfg {Boolean/String/Element} resizeChild True to resize the first child, or id/element to resize (defaults to false)
32555  * @cfg {Array/String} adjustments String "auto" or an array [width, height] with values to be <b>added</b> to the
32556  * resize operation's new size (defaults to [0, 0])
32557  * @cfg {Number} minWidth The minimum width for the element (defaults to 5)
32558  * @cfg {Number} minHeight The minimum height for the element (defaults to 5)
32559  * @cfg {Number} maxWidth The maximum width for the element (defaults to 10000)
32560  * @cfg {Number} maxHeight The maximum height for the element (defaults to 10000)
32561  * @cfg {Boolean} enabled False to disable resizing (defaults to true)
32562  * @cfg {Boolean} wrap True to wrap an element with a div if needed (required for textareas and images, defaults to false)
32563  * @cfg {Number} width The width of the element in pixels (defaults to null)
32564  * @cfg {Number} height The height of the element in pixels (defaults to null)
32565  * @cfg {Boolean} animate True to animate the resize (not compatible with dynamic sizing, defaults to false)
32566  * @cfg {Number} duration Animation duration if animate = true (defaults to .35)
32567  * @cfg {Boolean} dynamic True to resize the element while dragging instead of using a proxy (defaults to false)
32568  * @cfg {String} handles String consisting of the resize handles to display (defaults to undefined)
32569  * @cfg {Boolean} multiDirectional <b>Deprecated</b>.  The old style of adding multi-direction resize handles, deprecated
32570  * in favor of the handles config option (defaults to false)
32571  * @cfg {Boolean} disableTrackOver True to disable mouse tracking. This is only applied at config time. (defaults to false)
32572  * @cfg {String} easing Animation easing if animate = true (defaults to 'easingOutStrong')
32573  * @cfg {Number} widthIncrement The increment to snap the width resize in pixels (dynamic must be true, defaults to 0)
32574  * @cfg {Number} heightIncrement The increment to snap the height resize in pixels (dynamic must be true, defaults to 0)
32575  * @cfg {Boolean} pinned True to ensure that the resize handles are always visible, false to display them only when the
32576  * user mouses over the resizable borders. This is only applied at config time. (defaults to false)
32577  * @cfg {Boolean} preserveRatio True to preserve the original ratio between height and width during resize (defaults to false)
32578  * @cfg {Boolean} transparent True for transparent handles. This is only applied at config time. (defaults to false)
32579  * @cfg {Number} minX The minimum allowed page X for the element (only used for west resizing, defaults to 0)
32580  * @cfg {Number} minY The minimum allowed page Y for the element (only used for north resizing, defaults to 0)
32581  * @cfg {Boolean} draggable Convenience to initialize drag drop (defaults to false)
32582  * @constructor
32583  * Create a new resizable component
32584  * @param {String/HTMLElement/Roo.Element} el The id or element to resize
32585  * @param {Object} config configuration options
32586   */
32587 Roo.Resizable = function(el, config)
32588 {
32589     this.el = Roo.get(el);
32590
32591     if(config && config.wrap){
32592         config.resizeChild = this.el;
32593         this.el = this.el.wrap(typeof config.wrap == "object" ? config.wrap : {cls:"xresizable-wrap"});
32594         this.el.id = this.el.dom.id = config.resizeChild.id + "-rzwrap";
32595         this.el.setStyle("overflow", "hidden");
32596         this.el.setPositioning(config.resizeChild.getPositioning());
32597         config.resizeChild.clearPositioning();
32598         if(!config.width || !config.height){
32599             var csize = config.resizeChild.getSize();
32600             this.el.setSize(csize.width, csize.height);
32601         }
32602         if(config.pinned && !config.adjustments){
32603             config.adjustments = "auto";
32604         }
32605     }
32606
32607     this.proxy = this.el.createProxy({tag: "div", cls: "x-resizable-proxy", id: this.el.id + "-rzproxy"});
32608     this.proxy.unselectable();
32609     this.proxy.enableDisplayMode('block');
32610
32611     Roo.apply(this, config);
32612
32613     if(this.pinned){
32614         this.disableTrackOver = true;
32615         this.el.addClass("x-resizable-pinned");
32616     }
32617     // if the element isn't positioned, make it relative
32618     var position = this.el.getStyle("position");
32619     if(position != "absolute" && position != "fixed"){
32620         this.el.setStyle("position", "relative");
32621     }
32622     if(!this.handles){ // no handles passed, must be legacy style
32623         this.handles = 's,e,se';
32624         if(this.multiDirectional){
32625             this.handles += ',n,w';
32626         }
32627     }
32628     if(this.handles == "all"){
32629         this.handles = "n s e w ne nw se sw";
32630     }
32631     var hs = this.handles.split(/\s*?[,;]\s*?| /);
32632     var ps = Roo.Resizable.positions;
32633     for(var i = 0, len = hs.length; i < len; i++){
32634         if(hs[i] && ps[hs[i]]){
32635             var pos = ps[hs[i]];
32636             this[pos] = new Roo.Resizable.Handle(this, pos, this.disableTrackOver, this.transparent);
32637         }
32638     }
32639     // legacy
32640     this.corner = this.southeast;
32641     
32642     // updateBox = the box can move..
32643     if(this.handles.indexOf("n") != -1 || this.handles.indexOf("w") != -1 || this.handles.indexOf("hd") != -1) {
32644         this.updateBox = true;
32645     }
32646
32647     this.activeHandle = null;
32648
32649     if(this.resizeChild){
32650         if(typeof this.resizeChild == "boolean"){
32651             this.resizeChild = Roo.get(this.el.dom.firstChild, true);
32652         }else{
32653             this.resizeChild = Roo.get(this.resizeChild, true);
32654         }
32655     }
32656     
32657     if(this.adjustments == "auto"){
32658         var rc = this.resizeChild;
32659         var hw = this.west, he = this.east, hn = this.north, hs = this.south;
32660         if(rc && (hw || hn)){
32661             rc.position("relative");
32662             rc.setLeft(hw ? hw.el.getWidth() : 0);
32663             rc.setTop(hn ? hn.el.getHeight() : 0);
32664         }
32665         this.adjustments = [
32666             (he ? -he.el.getWidth() : 0) + (hw ? -hw.el.getWidth() : 0),
32667             (hn ? -hn.el.getHeight() : 0) + (hs ? -hs.el.getHeight() : 0) -1
32668         ];
32669     }
32670
32671     if(this.draggable){
32672         this.dd = this.dynamic ?
32673             this.el.initDD(null) : this.el.initDDProxy(null, {dragElId: this.proxy.id});
32674         this.dd.setHandleElId(this.resizeChild ? this.resizeChild.id : this.el.id);
32675     }
32676
32677     // public events
32678     this.addEvents({
32679         /**
32680          * @event beforeresize
32681          * Fired before resize is allowed. Set enabled to false to cancel resize.
32682          * @param {Roo.Resizable} this
32683          * @param {Roo.EventObject} e The mousedown event
32684          */
32685         "beforeresize" : true,
32686         /**
32687          * @event resizing
32688          * Fired a resizing.
32689          * @param {Roo.Resizable} this
32690          * @param {Number} x The new x position
32691          * @param {Number} y The new y position
32692          * @param {Number} w The new w width
32693          * @param {Number} h The new h hight
32694          * @param {Roo.EventObject} e The mouseup event
32695          */
32696         "resizing" : true,
32697         /**
32698          * @event resize
32699          * Fired after a resize.
32700          * @param {Roo.Resizable} this
32701          * @param {Number} width The new width
32702          * @param {Number} height The new height
32703          * @param {Roo.EventObject} e The mouseup event
32704          */
32705         "resize" : true
32706     });
32707
32708     if(this.width !== null && this.height !== null){
32709         this.resizeTo(this.width, this.height);
32710     }else{
32711         this.updateChildSize();
32712     }
32713     if(Roo.isIE){
32714         this.el.dom.style.zoom = 1;
32715     }
32716     Roo.Resizable.superclass.constructor.call(this);
32717 };
32718
32719 Roo.extend(Roo.Resizable, Roo.util.Observable, {
32720         resizeChild : false,
32721         adjustments : [0, 0],
32722         minWidth : 5,
32723         minHeight : 5,
32724         maxWidth : 10000,
32725         maxHeight : 10000,
32726         enabled : true,
32727         animate : false,
32728         duration : .35,
32729         dynamic : false,
32730         handles : false,
32731         multiDirectional : false,
32732         disableTrackOver : false,
32733         easing : 'easeOutStrong',
32734         widthIncrement : 0,
32735         heightIncrement : 0,
32736         pinned : false,
32737         width : null,
32738         height : null,
32739         preserveRatio : false,
32740         transparent: false,
32741         minX: 0,
32742         minY: 0,
32743         draggable: false,
32744
32745         /**
32746          * @cfg {String/HTMLElement/Element} constrainTo Constrain the resize to a particular element
32747          */
32748         constrainTo: undefined,
32749         /**
32750          * @cfg {Roo.lib.Region} resizeRegion Constrain the resize to a particular region
32751          */
32752         resizeRegion: undefined,
32753
32754
32755     /**
32756      * Perform a manual resize
32757      * @param {Number} width
32758      * @param {Number} height
32759      */
32760     resizeTo : function(width, height){
32761         this.el.setSize(width, height);
32762         this.updateChildSize();
32763         this.fireEvent("resize", this, width, height, null);
32764     },
32765
32766     // private
32767     startSizing : function(e, handle){
32768         this.fireEvent("beforeresize", this, e);
32769         if(this.enabled){ // 2nd enabled check in case disabled before beforeresize handler
32770
32771             if(!this.overlay){
32772                 this.overlay = this.el.createProxy({tag: "div", cls: "x-resizable-overlay", html: "&#160;"});
32773                 this.overlay.unselectable();
32774                 this.overlay.enableDisplayMode("block");
32775                 this.overlay.on("mousemove", this.onMouseMove, this);
32776                 this.overlay.on("mouseup", this.onMouseUp, this);
32777             }
32778             this.overlay.setStyle("cursor", handle.el.getStyle("cursor"));
32779
32780             this.resizing = true;
32781             this.startBox = this.el.getBox();
32782             this.startPoint = e.getXY();
32783             this.offsets = [(this.startBox.x + this.startBox.width) - this.startPoint[0],
32784                             (this.startBox.y + this.startBox.height) - this.startPoint[1]];
32785
32786             this.overlay.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
32787             this.overlay.show();
32788
32789             if(this.constrainTo) {
32790                 var ct = Roo.get(this.constrainTo);
32791                 this.resizeRegion = ct.getRegion().adjust(
32792                     ct.getFrameWidth('t'),
32793                     ct.getFrameWidth('l'),
32794                     -ct.getFrameWidth('b'),
32795                     -ct.getFrameWidth('r')
32796                 );
32797             }
32798
32799             this.proxy.setStyle('visibility', 'hidden'); // workaround display none
32800             this.proxy.show();
32801             this.proxy.setBox(this.startBox);
32802             if(!this.dynamic){
32803                 this.proxy.setStyle('visibility', 'visible');
32804             }
32805         }
32806     },
32807
32808     // private
32809     onMouseDown : function(handle, e){
32810         if(this.enabled){
32811             e.stopEvent();
32812             this.activeHandle = handle;
32813             this.startSizing(e, handle);
32814         }
32815     },
32816
32817     // private
32818     onMouseUp : function(e){
32819         var size = this.resizeElement();
32820         this.resizing = false;
32821         this.handleOut();
32822         this.overlay.hide();
32823         this.proxy.hide();
32824         this.fireEvent("resize", this, size.width, size.height, e);
32825     },
32826
32827     // private
32828     updateChildSize : function(){
32829         
32830         if(this.resizeChild){
32831             var el = this.el;
32832             var child = this.resizeChild;
32833             var adj = this.adjustments;
32834             if(el.dom.offsetWidth){
32835                 var b = el.getSize(true);
32836                 child.setSize(b.width+adj[0], b.height+adj[1]);
32837             }
32838             // Second call here for IE
32839             // The first call enables instant resizing and
32840             // the second call corrects scroll bars if they
32841             // exist
32842             if(Roo.isIE){
32843                 setTimeout(function(){
32844                     if(el.dom.offsetWidth){
32845                         var b = el.getSize(true);
32846                         child.setSize(b.width+adj[0], b.height+adj[1]);
32847                     }
32848                 }, 10);
32849             }
32850         }
32851     },
32852
32853     // private
32854     snap : function(value, inc, min){
32855         if(!inc || !value) {
32856             return value;
32857         }
32858         var newValue = value;
32859         var m = value % inc;
32860         if(m > 0){
32861             if(m > (inc/2)){
32862                 newValue = value + (inc-m);
32863             }else{
32864                 newValue = value - m;
32865             }
32866         }
32867         return Math.max(min, newValue);
32868     },
32869
32870     // private
32871     resizeElement : function(){
32872         var box = this.proxy.getBox();
32873         if(this.updateBox){
32874             this.el.setBox(box, false, this.animate, this.duration, null, this.easing);
32875         }else{
32876             this.el.setSize(box.width, box.height, this.animate, this.duration, null, this.easing);
32877         }
32878         this.updateChildSize();
32879         if(!this.dynamic){
32880             this.proxy.hide();
32881         }
32882         return box;
32883     },
32884
32885     // private
32886     constrain : function(v, diff, m, mx){
32887         if(v - diff < m){
32888             diff = v - m;
32889         }else if(v - diff > mx){
32890             diff = mx - v;
32891         }
32892         return diff;
32893     },
32894
32895     // private
32896     onMouseMove : function(e){
32897         
32898         if(this.enabled){
32899             try{// try catch so if something goes wrong the user doesn't get hung
32900
32901             if(this.resizeRegion && !this.resizeRegion.contains(e.getPoint())) {
32902                 return;
32903             }
32904
32905             //var curXY = this.startPoint;
32906             var curSize = this.curSize || this.startBox;
32907             var x = this.startBox.x, y = this.startBox.y;
32908             var ox = x, oy = y;
32909             var w = curSize.width, h = curSize.height;
32910             var ow = w, oh = h;
32911             var mw = this.minWidth, mh = this.minHeight;
32912             var mxw = this.maxWidth, mxh = this.maxHeight;
32913             var wi = this.widthIncrement;
32914             var hi = this.heightIncrement;
32915
32916             var eventXY = e.getXY();
32917             var diffX = -(this.startPoint[0] - Math.max(this.minX, eventXY[0]));
32918             var diffY = -(this.startPoint[1] - Math.max(this.minY, eventXY[1]));
32919
32920             var pos = this.activeHandle.position;
32921
32922             switch(pos){
32923                 case "east":
32924                     w += diffX;
32925                     w = Math.min(Math.max(mw, w), mxw);
32926                     break;
32927              
32928                 case "south":
32929                     h += diffY;
32930                     h = Math.min(Math.max(mh, h), mxh);
32931                     break;
32932                 case "southeast":
32933                     w += diffX;
32934                     h += diffY;
32935                     w = Math.min(Math.max(mw, w), mxw);
32936                     h = Math.min(Math.max(mh, h), mxh);
32937                     break;
32938                 case "north":
32939                     diffY = this.constrain(h, diffY, mh, mxh);
32940                     y += diffY;
32941                     h -= diffY;
32942                     break;
32943                 case "hdrag":
32944                     
32945                     if (wi) {
32946                         var adiffX = Math.abs(diffX);
32947                         var sub = (adiffX % wi); // how much 
32948                         if (sub > (wi/2)) { // far enough to snap
32949                             diffX = (diffX > 0) ? diffX-sub + wi : diffX+sub - wi;
32950                         } else {
32951                             // remove difference.. 
32952                             diffX = (diffX > 0) ? diffX-sub : diffX+sub;
32953                         }
32954                     }
32955                     x += diffX;
32956                     x = Math.max(this.minX, x);
32957                     break;
32958                 case "west":
32959                     diffX = this.constrain(w, diffX, mw, mxw);
32960                     x += diffX;
32961                     w -= diffX;
32962                     break;
32963                 case "northeast":
32964                     w += diffX;
32965                     w = Math.min(Math.max(mw, w), mxw);
32966                     diffY = this.constrain(h, diffY, mh, mxh);
32967                     y += diffY;
32968                     h -= diffY;
32969                     break;
32970                 case "northwest":
32971                     diffX = this.constrain(w, diffX, mw, mxw);
32972                     diffY = this.constrain(h, diffY, mh, mxh);
32973                     y += diffY;
32974                     h -= diffY;
32975                     x += diffX;
32976                     w -= diffX;
32977                     break;
32978                case "southwest":
32979                     diffX = this.constrain(w, diffX, mw, mxw);
32980                     h += diffY;
32981                     h = Math.min(Math.max(mh, h), mxh);
32982                     x += diffX;
32983                     w -= diffX;
32984                     break;
32985             }
32986
32987             var sw = this.snap(w, wi, mw);
32988             var sh = this.snap(h, hi, mh);
32989             if(sw != w || sh != h){
32990                 switch(pos){
32991                     case "northeast":
32992                         y -= sh - h;
32993                     break;
32994                     case "north":
32995                         y -= sh - h;
32996                         break;
32997                     case "southwest":
32998                         x -= sw - w;
32999                     break;
33000                     case "west":
33001                         x -= sw - w;
33002                         break;
33003                     case "northwest":
33004                         x -= sw - w;
33005                         y -= sh - h;
33006                     break;
33007                 }
33008                 w = sw;
33009                 h = sh;
33010             }
33011
33012             if(this.preserveRatio){
33013                 switch(pos){
33014                     case "southeast":
33015                     case "east":
33016                         h = oh * (w/ow);
33017                         h = Math.min(Math.max(mh, h), mxh);
33018                         w = ow * (h/oh);
33019                        break;
33020                     case "south":
33021                         w = ow * (h/oh);
33022                         w = Math.min(Math.max(mw, w), mxw);
33023                         h = oh * (w/ow);
33024                         break;
33025                     case "northeast":
33026                         w = ow * (h/oh);
33027                         w = Math.min(Math.max(mw, w), mxw);
33028                         h = oh * (w/ow);
33029                     break;
33030                     case "north":
33031                         var tw = w;
33032                         w = ow * (h/oh);
33033                         w = Math.min(Math.max(mw, w), mxw);
33034                         h = oh * (w/ow);
33035                         x += (tw - w) / 2;
33036                         break;
33037                     case "southwest":
33038                         h = oh * (w/ow);
33039                         h = Math.min(Math.max(mh, h), mxh);
33040                         var tw = w;
33041                         w = ow * (h/oh);
33042                         x += tw - w;
33043                         break;
33044                     case "west":
33045                         var th = h;
33046                         h = oh * (w/ow);
33047                         h = Math.min(Math.max(mh, h), mxh);
33048                         y += (th - h) / 2;
33049                         var tw = w;
33050                         w = ow * (h/oh);
33051                         x += tw - w;
33052                        break;
33053                     case "northwest":
33054                         var tw = w;
33055                         var th = h;
33056                         h = oh * (w/ow);
33057                         h = Math.min(Math.max(mh, h), mxh);
33058                         w = ow * (h/oh);
33059                         y += th - h;
33060                         x += tw - w;
33061                        break;
33062
33063                 }
33064             }
33065             if (pos == 'hdrag') {
33066                 w = ow;
33067             }
33068             this.proxy.setBounds(x, y, w, h);
33069             if(this.dynamic){
33070                 this.resizeElement();
33071             }
33072             }catch(e){}
33073         }
33074         this.fireEvent("resizing", this, x, y, w, h, e);
33075     },
33076
33077     // private
33078     handleOver : function(){
33079         if(this.enabled){
33080             this.el.addClass("x-resizable-over");
33081         }
33082     },
33083
33084     // private
33085     handleOut : function(){
33086         if(!this.resizing){
33087             this.el.removeClass("x-resizable-over");
33088         }
33089     },
33090
33091     /**
33092      * Returns the element this component is bound to.
33093      * @return {Roo.Element}
33094      */
33095     getEl : function(){
33096         return this.el;
33097     },
33098
33099     /**
33100      * Returns the resizeChild element (or null).
33101      * @return {Roo.Element}
33102      */
33103     getResizeChild : function(){
33104         return this.resizeChild;
33105     },
33106     groupHandler : function()
33107     {
33108         
33109     },
33110     /**
33111      * Destroys this resizable. If the element was wrapped and
33112      * removeEl is not true then the element remains.
33113      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
33114      */
33115     destroy : function(removeEl){
33116         this.proxy.remove();
33117         if(this.overlay){
33118             this.overlay.removeAllListeners();
33119             this.overlay.remove();
33120         }
33121         var ps = Roo.Resizable.positions;
33122         for(var k in ps){
33123             if(typeof ps[k] != "function" && this[ps[k]]){
33124                 var h = this[ps[k]];
33125                 h.el.removeAllListeners();
33126                 h.el.remove();
33127             }
33128         }
33129         if(removeEl){
33130             this.el.update("");
33131             this.el.remove();
33132         }
33133     }
33134 });
33135
33136 // private
33137 // hash to map config positions to true positions
33138 Roo.Resizable.positions = {
33139     n: "north", s: "south", e: "east", w: "west", se: "southeast", sw: "southwest", nw: "northwest", ne: "northeast", 
33140     hd: "hdrag"
33141 };
33142
33143 // private
33144 Roo.Resizable.Handle = function(rz, pos, disableTrackOver, transparent){
33145     if(!this.tpl){
33146         // only initialize the template if resizable is used
33147         var tpl = Roo.DomHelper.createTemplate(
33148             {tag: "div", cls: "x-resizable-handle x-resizable-handle-{0}"}
33149         );
33150         tpl.compile();
33151         Roo.Resizable.Handle.prototype.tpl = tpl;
33152     }
33153     this.position = pos;
33154     this.rz = rz;
33155     // show north drag fro topdra
33156     var handlepos = pos == 'hdrag' ? 'north' : pos;
33157     
33158     this.el = this.tpl.append(rz.el.dom, [handlepos], true);
33159     if (pos == 'hdrag') {
33160         this.el.setStyle('cursor', 'pointer');
33161     }
33162     this.el.unselectable();
33163     if(transparent){
33164         this.el.setOpacity(0);
33165     }
33166     this.el.on("mousedown", this.onMouseDown, this);
33167     if(!disableTrackOver){
33168         this.el.on("mouseover", this.onMouseOver, this);
33169         this.el.on("mouseout", this.onMouseOut, this);
33170     }
33171 };
33172
33173 // private
33174 Roo.Resizable.Handle.prototype = {
33175     afterResize : function(rz){
33176         Roo.log('after?');
33177         // do nothing
33178     },
33179     // private
33180     onMouseDown : function(e){
33181         this.rz.onMouseDown(this, e);
33182     },
33183     // private
33184     onMouseOver : function(e){
33185         this.rz.handleOver(this, e);
33186     },
33187     // private
33188     onMouseOut : function(e){
33189         this.rz.handleOut(this, e);
33190     }
33191 };/*
33192  * Based on:
33193  * Ext JS Library 1.1.1
33194  * Copyright(c) 2006-2007, Ext JS, LLC.
33195  *
33196  * Originally Released Under LGPL - original licence link has changed is not relivant.
33197  *
33198  * Fork - LGPL
33199  * <script type="text/javascript">
33200  */
33201
33202 /**
33203  * @class Roo.Editor
33204  * @extends Roo.Component
33205  * A base editor field that handles displaying/hiding on demand and has some built-in sizing and event handling logic.
33206  * @constructor
33207  * Create a new Editor
33208  * @param {Roo.form.Field} field The Field object (or descendant)
33209  * @param {Object} config The config object
33210  */
33211 Roo.Editor = function(field, config){
33212     Roo.Editor.superclass.constructor.call(this, config);
33213     this.field = field;
33214     this.addEvents({
33215         /**
33216              * @event beforestartedit
33217              * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
33218              * false from the handler of this event.
33219              * @param {Editor} this
33220              * @param {Roo.Element} boundEl The underlying element bound to this editor
33221              * @param {Mixed} value The field value being set
33222              */
33223         "beforestartedit" : true,
33224         /**
33225              * @event startedit
33226              * Fires when this editor is displayed
33227              * @param {Roo.Element} boundEl The underlying element bound to this editor
33228              * @param {Mixed} value The starting field value
33229              */
33230         "startedit" : true,
33231         /**
33232              * @event beforecomplete
33233              * Fires after a change has been made to the field, but before the change is reflected in the underlying
33234              * field.  Saving the change to the field can be canceled by returning false from the handler of this event.
33235              * Note that if the value has not changed and ignoreNoChange = true, the editing will still end but this
33236              * event will not fire since no edit actually occurred.
33237              * @param {Editor} this
33238              * @param {Mixed} value The current field value
33239              * @param {Mixed} startValue The original field value
33240              */
33241         "beforecomplete" : true,
33242         /**
33243              * @event complete
33244              * Fires after editing is complete and any changed value has been written to the underlying field.
33245              * @param {Editor} this
33246              * @param {Mixed} value The current field value
33247              * @param {Mixed} startValue The original field value
33248              */
33249         "complete" : true,
33250         /**
33251          * @event specialkey
33252          * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
33253          * {@link Roo.EventObject#getKey} to determine which key was pressed.
33254          * @param {Roo.form.Field} this
33255          * @param {Roo.EventObject} e The event object
33256          */
33257         "specialkey" : true
33258     });
33259 };
33260
33261 Roo.extend(Roo.Editor, Roo.Component, {
33262     /**
33263      * @cfg {Boolean/String} autosize
33264      * True for the editor to automatically adopt the size of the underlying field, "width" to adopt the width only,
33265      * or "height" to adopt the height only (defaults to false)
33266      */
33267     /**
33268      * @cfg {Boolean} revertInvalid
33269      * True to automatically revert the field value and cancel the edit when the user completes an edit and the field
33270      * validation fails (defaults to true)
33271      */
33272     /**
33273      * @cfg {Boolean} ignoreNoChange
33274      * True to skip the the edit completion process (no save, no events fired) if the user completes an edit and
33275      * the value has not changed (defaults to false).  Applies only to string values - edits for other data types
33276      * will never be ignored.
33277      */
33278     /**
33279      * @cfg {Boolean} hideEl
33280      * False to keep the bound element visible while the editor is displayed (defaults to true)
33281      */
33282     /**
33283      * @cfg {Mixed} value
33284      * The data value of the underlying field (defaults to "")
33285      */
33286     value : "",
33287     /**
33288      * @cfg {String} alignment
33289      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "c-c?").
33290      */
33291     alignment: "c-c?",
33292     /**
33293      * @cfg {Boolean/String} shadow "sides" for sides/bottom only, "frame" for 4-way shadow, and "drop"
33294      * for bottom-right shadow (defaults to "frame")
33295      */
33296     shadow : "frame",
33297     /**
33298      * @cfg {Boolean} constrain True to constrain the editor to the viewport
33299      */
33300     constrain : false,
33301     /**
33302      * @cfg {Boolean} completeOnEnter True to complete the edit when the enter key is pressed (defaults to false)
33303      */
33304     completeOnEnter : false,
33305     /**
33306      * @cfg {Boolean} cancelOnEsc True to cancel the edit when the escape key is pressed (defaults to false)
33307      */
33308     cancelOnEsc : false,
33309     /**
33310      * @cfg {Boolean} updateEl True to update the innerHTML of the bound element when the update completes (defaults to false)
33311      */
33312     updateEl : false,
33313
33314     // private
33315     onRender : function(ct, position){
33316         this.el = new Roo.Layer({
33317             shadow: this.shadow,
33318             cls: "x-editor",
33319             parentEl : ct,
33320             shim : this.shim,
33321             shadowOffset:4,
33322             id: this.id,
33323             constrain: this.constrain
33324         });
33325         this.el.setStyle("overflow", Roo.isGecko ? "auto" : "hidden");
33326         if(this.field.msgTarget != 'title'){
33327             this.field.msgTarget = 'qtip';
33328         }
33329         this.field.render(this.el);
33330         if(Roo.isGecko){
33331             this.field.el.dom.setAttribute('autocomplete', 'off');
33332         }
33333         this.field.on("specialkey", this.onSpecialKey, this);
33334         if(this.swallowKeys){
33335             this.field.el.swallowEvent(['keydown','keypress']);
33336         }
33337         this.field.show();
33338         this.field.on("blur", this.onBlur, this);
33339         if(this.field.grow){
33340             this.field.on("autosize", this.el.sync,  this.el, {delay:1});
33341         }
33342     },
33343
33344     onSpecialKey : function(field, e)
33345     {
33346         //Roo.log('editor onSpecialKey');
33347         if(this.completeOnEnter && e.getKey() == e.ENTER){
33348             e.stopEvent();
33349             this.completeEdit();
33350             return;
33351         }
33352         // do not fire special key otherwise it might hide close the editor...
33353         if(e.getKey() == e.ENTER){    
33354             return;
33355         }
33356         if(this.cancelOnEsc && e.getKey() == e.ESC){
33357             this.cancelEdit();
33358             return;
33359         } 
33360         this.fireEvent('specialkey', field, e);
33361     
33362     },
33363
33364     /**
33365      * Starts the editing process and shows the editor.
33366      * @param {String/HTMLElement/Element} el The element to edit
33367      * @param {String} value (optional) A value to initialize the editor with. If a value is not provided, it defaults
33368       * to the innerHTML of el.
33369      */
33370     startEdit : function(el, value){
33371         if(this.editing){
33372             this.completeEdit();
33373         }
33374         this.boundEl = Roo.get(el);
33375         var v = value !== undefined ? value : this.boundEl.dom.innerHTML;
33376         if(!this.rendered){
33377             this.render(this.parentEl || document.body);
33378         }
33379         if(this.fireEvent("beforestartedit", this, this.boundEl, v) === false){
33380             return;
33381         }
33382         this.startValue = v;
33383         this.field.setValue(v);
33384         if(this.autoSize){
33385             var sz = this.boundEl.getSize();
33386             switch(this.autoSize){
33387                 case "width":
33388                 this.setSize(sz.width,  "");
33389                 break;
33390                 case "height":
33391                 this.setSize("",  sz.height);
33392                 break;
33393                 default:
33394                 this.setSize(sz.width,  sz.height);
33395             }
33396         }
33397         this.el.alignTo(this.boundEl, this.alignment);
33398         this.editing = true;
33399         if(Roo.QuickTips){
33400             Roo.QuickTips.disable();
33401         }
33402         this.show();
33403     },
33404
33405     /**
33406      * Sets the height and width of this editor.
33407      * @param {Number} width The new width
33408      * @param {Number} height The new height
33409      */
33410     setSize : function(w, h){
33411         this.field.setSize(w, h);
33412         if(this.el){
33413             this.el.sync();
33414         }
33415     },
33416
33417     /**
33418      * Realigns the editor to the bound field based on the current alignment config value.
33419      */
33420     realign : function(){
33421         this.el.alignTo(this.boundEl, this.alignment);
33422     },
33423
33424     /**
33425      * Ends the editing process, persists the changed value to the underlying field, and hides the editor.
33426      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after edit (defaults to false)
33427      */
33428     completeEdit : function(remainVisible){
33429         if(!this.editing){
33430             return;
33431         }
33432         var v = this.getValue();
33433         if(this.revertInvalid !== false && !this.field.isValid()){
33434             v = this.startValue;
33435             this.cancelEdit(true);
33436         }
33437         if(String(v) === String(this.startValue) && this.ignoreNoChange){
33438             this.editing = false;
33439             this.hide();
33440             return;
33441         }
33442         if(this.fireEvent("beforecomplete", this, v, this.startValue) !== false){
33443             this.editing = false;
33444             if(this.updateEl && this.boundEl){
33445                 this.boundEl.update(v);
33446             }
33447             if(remainVisible !== true){
33448                 this.hide();
33449             }
33450             this.fireEvent("complete", this, v, this.startValue);
33451         }
33452     },
33453
33454     // private
33455     onShow : function(){
33456         this.el.show();
33457         if(this.hideEl !== false){
33458             this.boundEl.hide();
33459         }
33460         this.field.show();
33461         if(Roo.isIE && !this.fixIEFocus){ // IE has problems with focusing the first time
33462             this.fixIEFocus = true;
33463             this.deferredFocus.defer(50, this);
33464         }else{
33465             this.field.focus();
33466         }
33467         this.fireEvent("startedit", this.boundEl, this.startValue);
33468     },
33469
33470     deferredFocus : function(){
33471         if(this.editing){
33472             this.field.focus();
33473         }
33474     },
33475
33476     /**
33477      * Cancels the editing process and hides the editor without persisting any changes.  The field value will be
33478      * reverted to the original starting value.
33479      * @param {Boolean} remainVisible Override the default behavior and keep the editor visible after
33480      * cancel (defaults to false)
33481      */
33482     cancelEdit : function(remainVisible){
33483         if(this.editing){
33484             this.setValue(this.startValue);
33485             if(remainVisible !== true){
33486                 this.hide();
33487             }
33488         }
33489     },
33490
33491     // private
33492     onBlur : function(){
33493         if(this.allowBlur !== true && this.editing){
33494             this.completeEdit();
33495         }
33496     },
33497
33498     // private
33499     onHide : function(){
33500         if(this.editing){
33501             this.completeEdit();
33502             return;
33503         }
33504         this.field.blur();
33505         if(this.field.collapse){
33506             this.field.collapse();
33507         }
33508         this.el.hide();
33509         if(this.hideEl !== false){
33510             this.boundEl.show();
33511         }
33512         if(Roo.QuickTips){
33513             Roo.QuickTips.enable();
33514         }
33515     },
33516
33517     /**
33518      * Sets the data value of the editor
33519      * @param {Mixed} value Any valid value supported by the underlying field
33520      */
33521     setValue : function(v){
33522         this.field.setValue(v);
33523     },
33524
33525     /**
33526      * Gets the data value of the editor
33527      * @return {Mixed} The data value
33528      */
33529     getValue : function(){
33530         return this.field.getValue();
33531     }
33532 });/*
33533  * Based on:
33534  * Ext JS Library 1.1.1
33535  * Copyright(c) 2006-2007, Ext JS, LLC.
33536  *
33537  * Originally Released Under LGPL - original licence link has changed is not relivant.
33538  *
33539  * Fork - LGPL
33540  * <script type="text/javascript">
33541  */
33542  
33543 /**
33544  * @class Roo.BasicDialog
33545  * @extends Roo.util.Observable
33546  * @parent none builder
33547  * Lightweight Dialog Class.  The code below shows the creation of a typical dialog using existing HTML markup:
33548  * <pre><code>
33549 var dlg = new Roo.BasicDialog("my-dlg", {
33550     height: 200,
33551     width: 300,
33552     minHeight: 100,
33553     minWidth: 150,
33554     modal: true,
33555     proxyDrag: true,
33556     shadow: true
33557 });
33558 dlg.addKeyListener(27, dlg.hide, dlg); // ESC can also close the dialog
33559 dlg.addButton('OK', dlg.hide, dlg);    // Could call a save function instead of hiding
33560 dlg.addButton('Cancel', dlg.hide, dlg);
33561 dlg.show();
33562 </code></pre>
33563   <b>A Dialog should always be a direct child of the body element.</b>
33564  * @cfg {Boolean/DomHelper} autoCreate True to auto create from scratch, or using a DomHelper Object (defaults to false)
33565  * @cfg {String} title Default text to display in the title bar (defaults to null)
33566  * @cfg {Number} width Width of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
33567  * @cfg {Number} height Height of the dialog in pixels (can also be set via CSS).  Determined by browser if unspecified.
33568  * @cfg {Number} x The default left page coordinate of the dialog (defaults to center screen)
33569  * @cfg {Number} y The default top page coordinate of the dialog (defaults to center screen)
33570  * @cfg {String/Element} animateTarget Id or element from which the dialog should animate while opening
33571  * (defaults to null with no animation)
33572  * @cfg {Boolean} resizable False to disable manual dialog resizing (defaults to true)
33573  * @cfg {String} resizeHandles Which resize handles to display - see the {@link Roo.Resizable} handles config
33574  * property for valid values (defaults to 'all')
33575  * @cfg {Number} minHeight The minimum allowable height for a resizable dialog (defaults to 80)
33576  * @cfg {Number} minWidth The minimum allowable width for a resizable dialog (defaults to 200)
33577  * @cfg {Boolean} modal True to show the dialog modally, preventing user interaction with the rest of the page (defaults to false)
33578  * @cfg {Boolean} autoScroll True to allow the dialog body contents to overflow and display scrollbars (defaults to false)
33579  * @cfg {Boolean} closable False to remove the built-in top-right corner close button (defaults to true)
33580  * @cfg {Boolean} collapsible False to remove the built-in top-right corner collapse button (defaults to true)
33581  * @cfg {Boolean} constraintoviewport True to keep the dialog constrained within the visible viewport boundaries (defaults to true)
33582  * @cfg {Boolean} syncHeightBeforeShow True to cause the dimensions to be recalculated before the dialog is shown (defaults to false)
33583  * @cfg {Boolean} draggable False to disable dragging of the dialog within the viewport (defaults to true)
33584  * @cfg {Boolean} autoTabs If true, all elements with class 'x-dlg-tab' will get automatically converted to tabs (defaults to false)
33585  * @cfg {String} tabTag The tag name of tab elements, used when autoTabs = true (defaults to 'div')
33586  * @cfg {Boolean} proxyDrag True to drag a lightweight proxy element rather than the dialog itself, used when
33587  * draggable = true (defaults to false)
33588  * @cfg {Boolean} fixedcenter True to ensure that anytime the dialog is shown or resized it gets centered (defaults to false)
33589  * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
33590  * shadow (defaults to false)
33591  * @cfg {Number} shadowOffset The number of pixels to offset the shadow if displayed (defaults to 5)
33592  * @cfg {String} buttonAlign Valid values are "left," "center" and "right" (defaults to "right")
33593  * @cfg {Number} minButtonWidth Minimum width of all dialog buttons (defaults to 75)
33594  * @cfg {Array} buttons Array of buttons
33595  * @cfg {Boolean} shim True to create an iframe shim that prevents selects from showing through (defaults to false)
33596  * @constructor
33597  * Create a new BasicDialog.
33598  * @param {String/HTMLElement/Roo.Element} el The container element or DOM node, or its id
33599  * @param {Object} config Configuration options
33600  */
33601 Roo.BasicDialog = function(el, config){
33602     this.el = Roo.get(el);
33603     var dh = Roo.DomHelper;
33604     if(!this.el && config && config.autoCreate){
33605         if(typeof config.autoCreate == "object"){
33606             if(!config.autoCreate.id){
33607                 config.autoCreate.id = el;
33608             }
33609             this.el = dh.append(document.body,
33610                         config.autoCreate, true);
33611         }else{
33612             this.el = dh.append(document.body,
33613                         {tag: "div", id: el, style:'visibility:hidden;'}, true);
33614         }
33615     }
33616     el = this.el;
33617     el.setDisplayed(true);
33618     el.hide = this.hideAction;
33619     this.id = el.id;
33620     el.addClass("x-dlg");
33621
33622     Roo.apply(this, config);
33623
33624     this.proxy = el.createProxy("x-dlg-proxy");
33625     this.proxy.hide = this.hideAction;
33626     this.proxy.setOpacity(.5);
33627     this.proxy.hide();
33628
33629     if(config.width){
33630         el.setWidth(config.width);
33631     }
33632     if(config.height){
33633         el.setHeight(config.height);
33634     }
33635     this.size = el.getSize();
33636     if(typeof config.x != "undefined" && typeof config.y != "undefined"){
33637         this.xy = [config.x,config.y];
33638     }else{
33639         this.xy = el.getCenterXY(true);
33640     }
33641     /** The header element @type Roo.Element */
33642     this.header = el.child("> .x-dlg-hd");
33643     /** The body element @type Roo.Element */
33644     this.body = el.child("> .x-dlg-bd");
33645     /** The footer element @type Roo.Element */
33646     this.footer = el.child("> .x-dlg-ft");
33647
33648     if(!this.header){
33649         this.header = el.createChild({tag: "div", cls:"x-dlg-hd", html: "&#160;"}, this.body ? this.body.dom : null);
33650     }
33651     if(!this.body){
33652         this.body = el.createChild({tag: "div", cls:"x-dlg-bd"});
33653     }
33654
33655     this.header.unselectable();
33656     if(this.title){
33657         this.header.update(this.title);
33658     }
33659     // this element allows the dialog to be focused for keyboard event
33660     this.focusEl = el.createChild({tag: "a", href:"#", cls:"x-dlg-focus", tabIndex:"-1"});
33661     this.focusEl.swallowEvent("click", true);
33662
33663     this.header.wrap({cls:"x-dlg-hd-right"}).wrap({cls:"x-dlg-hd-left"}, true);
33664
33665     // wrap the body and footer for special rendering
33666     this.bwrap = this.body.wrap({tag: "div", cls:"x-dlg-dlg-body"});
33667     if(this.footer){
33668         this.bwrap.dom.appendChild(this.footer.dom);
33669     }
33670
33671     this.bg = this.el.createChild({
33672         tag: "div", cls:"x-dlg-bg",
33673         html: '<div class="x-dlg-bg-left"><div class="x-dlg-bg-right"><div class="x-dlg-bg-center">&#160;</div></div></div>'
33674     });
33675     this.centerBg = this.bg.child("div.x-dlg-bg-center");
33676
33677
33678     if(this.autoScroll !== false && !this.autoTabs){
33679         this.body.setStyle("overflow", "auto");
33680     }
33681
33682     this.toolbox = this.el.createChild({cls: "x-dlg-toolbox"});
33683
33684     if(this.closable !== false){
33685         this.el.addClass("x-dlg-closable");
33686         this.close = this.toolbox.createChild({cls:"x-dlg-close"});
33687         this.close.on("click", this.closeClick, this);
33688         this.close.addClassOnOver("x-dlg-close-over");
33689     }
33690     if(this.collapsible !== false){
33691         this.collapseBtn = this.toolbox.createChild({cls:"x-dlg-collapse"});
33692         this.collapseBtn.on("click", this.collapseClick, this);
33693         this.collapseBtn.addClassOnOver("x-dlg-collapse-over");
33694         this.header.on("dblclick", this.collapseClick, this);
33695     }
33696     if(this.resizable !== false){
33697         this.el.addClass("x-dlg-resizable");
33698         this.resizer = new Roo.Resizable(el, {
33699             minWidth: this.minWidth || 80,
33700             minHeight:this.minHeight || 80,
33701             handles: this.resizeHandles || "all",
33702             pinned: true
33703         });
33704         this.resizer.on("beforeresize", this.beforeResize, this);
33705         this.resizer.on("resize", this.onResize, this);
33706     }
33707     if(this.draggable !== false){
33708         el.addClass("x-dlg-draggable");
33709         if (!this.proxyDrag) {
33710             var dd = new Roo.dd.DD(el.dom.id, "WindowDrag");
33711         }
33712         else {
33713             var dd = new Roo.dd.DDProxy(el.dom.id, "WindowDrag", {dragElId: this.proxy.id});
33714         }
33715         dd.setHandleElId(this.header.id);
33716         dd.endDrag = this.endMove.createDelegate(this);
33717         dd.startDrag = this.startMove.createDelegate(this);
33718         dd.onDrag = this.onDrag.createDelegate(this);
33719         dd.scroll = false;
33720         this.dd = dd;
33721     }
33722     if(this.modal){
33723         this.mask = dh.append(document.body, {tag: "div", cls:"x-dlg-mask"}, true);
33724         this.mask.enableDisplayMode("block");
33725         this.mask.hide();
33726         this.el.addClass("x-dlg-modal");
33727     }
33728     if(this.shadow){
33729         this.shadow = new Roo.Shadow({
33730             mode : typeof this.shadow == "string" ? this.shadow : "sides",
33731             offset : this.shadowOffset
33732         });
33733     }else{
33734         this.shadowOffset = 0;
33735     }
33736     if(Roo.useShims && this.shim !== false){
33737         this.shim = this.el.createShim();
33738         this.shim.hide = this.hideAction;
33739         this.shim.hide();
33740     }else{
33741         this.shim = false;
33742     }
33743     if(this.autoTabs){
33744         this.initTabs();
33745     }
33746     if (this.buttons) { 
33747         var bts= this.buttons;
33748         this.buttons = [];
33749         Roo.each(bts, function(b) {
33750             this.addButton(b);
33751         }, this);
33752     }
33753     
33754     
33755     this.addEvents({
33756         /**
33757          * @event keydown
33758          * Fires when a key is pressed
33759          * @param {Roo.BasicDialog} this
33760          * @param {Roo.EventObject} e
33761          */
33762         "keydown" : true,
33763         /**
33764          * @event move
33765          * Fires when this dialog is moved by the user.
33766          * @param {Roo.BasicDialog} this
33767          * @param {Number} x The new page X
33768          * @param {Number} y The new page Y
33769          */
33770         "move" : true,
33771         /**
33772          * @event resize
33773          * Fires when this dialog is resized by the user.
33774          * @param {Roo.BasicDialog} this
33775          * @param {Number} width The new width
33776          * @param {Number} height The new height
33777          */
33778         "resize" : true,
33779         /**
33780          * @event beforehide
33781          * Fires before this dialog is hidden.
33782          * @param {Roo.BasicDialog} this
33783          */
33784         "beforehide" : true,
33785         /**
33786          * @event hide
33787          * Fires when this dialog is hidden.
33788          * @param {Roo.BasicDialog} this
33789          */
33790         "hide" : true,
33791         /**
33792          * @event beforeshow
33793          * Fires before this dialog is shown.
33794          * @param {Roo.BasicDialog} this
33795          */
33796         "beforeshow" : true,
33797         /**
33798          * @event show
33799          * Fires when this dialog is shown.
33800          * @param {Roo.BasicDialog} this
33801          */
33802         "show" : true
33803     });
33804     el.on("keydown", this.onKeyDown, this);
33805     el.on("mousedown", this.toFront, this);
33806     Roo.EventManager.onWindowResize(this.adjustViewport, this, true);
33807     this.el.hide();
33808     Roo.DialogManager.register(this);
33809     Roo.BasicDialog.superclass.constructor.call(this);
33810 };
33811
33812 Roo.extend(Roo.BasicDialog, Roo.util.Observable, {
33813     shadowOffset: Roo.isIE ? 6 : 5,
33814     minHeight: 80,
33815     minWidth: 200,
33816     minButtonWidth: 75,
33817     defaultButton: null,
33818     buttonAlign: "right",
33819     tabTag: 'div',
33820     firstShow: true,
33821
33822     /**
33823      * Sets the dialog title text
33824      * @param {String} text The title text to display
33825      * @return {Roo.BasicDialog} this
33826      */
33827     setTitle : function(text){
33828         this.header.update(text);
33829         return this;
33830     },
33831
33832     // private
33833     closeClick : function(){
33834         this.hide();
33835     },
33836
33837     // private
33838     collapseClick : function(){
33839         this[this.collapsed ? "expand" : "collapse"]();
33840     },
33841
33842     /**
33843      * Collapses the dialog to its minimized state (only the title bar is visible).
33844      * Equivalent to the user clicking the collapse dialog button.
33845      */
33846     collapse : function(){
33847         if(!this.collapsed){
33848             this.collapsed = true;
33849             this.el.addClass("x-dlg-collapsed");
33850             this.restoreHeight = this.el.getHeight();
33851             this.resizeTo(this.el.getWidth(), this.header.getHeight());
33852         }
33853     },
33854
33855     /**
33856      * Expands a collapsed dialog back to its normal state.  Equivalent to the user
33857      * clicking the expand dialog button.
33858      */
33859     expand : function(){
33860         if(this.collapsed){
33861             this.collapsed = false;
33862             this.el.removeClass("x-dlg-collapsed");
33863             this.resizeTo(this.el.getWidth(), this.restoreHeight);
33864         }
33865     },
33866
33867     /**
33868      * Reinitializes the tabs component, clearing out old tabs and finding new ones.
33869      * @return {Roo.TabPanel} The tabs component
33870      */
33871     initTabs : function(){
33872         var tabs = this.getTabs();
33873         while(tabs.getTab(0)){
33874             tabs.removeTab(0);
33875         }
33876         this.el.select(this.tabTag+'.x-dlg-tab').each(function(el){
33877             var dom = el.dom;
33878             tabs.addTab(Roo.id(dom), dom.title);
33879             dom.title = "";
33880         });
33881         tabs.activate(0);
33882         return tabs;
33883     },
33884
33885     // private
33886     beforeResize : function(){
33887         this.resizer.minHeight = Math.max(this.minHeight, this.getHeaderFooterHeight(true)+40);
33888     },
33889
33890     // private
33891     onResize : function(){
33892         this.refreshSize();
33893         this.syncBodyHeight();
33894         this.adjustAssets();
33895         this.focus();
33896         this.fireEvent("resize", this, this.size.width, this.size.height);
33897     },
33898
33899     // private
33900     onKeyDown : function(e){
33901         if(this.isVisible()){
33902             this.fireEvent("keydown", this, e);
33903         }
33904     },
33905
33906     /**
33907      * Resizes the dialog.
33908      * @param {Number} width
33909      * @param {Number} height
33910      * @return {Roo.BasicDialog} this
33911      */
33912     resizeTo : function(width, height){
33913         this.el.setSize(width, height);
33914         this.size = {width: width, height: height};
33915         this.syncBodyHeight();
33916         if(this.fixedcenter){
33917             this.center();
33918         }
33919         if(this.isVisible()){
33920             this.constrainXY();
33921             this.adjustAssets();
33922         }
33923         this.fireEvent("resize", this, width, height);
33924         return this;
33925     },
33926
33927
33928     /**
33929      * Resizes the dialog to fit the specified content size.
33930      * @param {Number} width
33931      * @param {Number} height
33932      * @return {Roo.BasicDialog} this
33933      */
33934     setContentSize : function(w, h){
33935         h += this.getHeaderFooterHeight() + this.body.getMargins("tb");
33936         w += this.body.getMargins("lr") + this.bwrap.getMargins("lr") + this.centerBg.getPadding("lr");
33937         //if(!this.el.isBorderBox()){
33938             h +=  this.body.getPadding("tb") + this.bwrap.getBorderWidth("tb") + this.body.getBorderWidth("tb") + this.el.getBorderWidth("tb");
33939             w += this.body.getPadding("lr") + this.bwrap.getBorderWidth("lr") + this.body.getBorderWidth("lr") + this.bwrap.getPadding("lr") + this.el.getBorderWidth("lr");
33940         //}
33941         if(this.tabs){
33942             h += this.tabs.stripWrap.getHeight() + this.tabs.bodyEl.getMargins("tb") + this.tabs.bodyEl.getPadding("tb");
33943             w += this.tabs.bodyEl.getMargins("lr") + this.tabs.bodyEl.getPadding("lr");
33944         }
33945         this.resizeTo(w, h);
33946         return this;
33947     },
33948
33949     /**
33950      * Adds a key listener for when this dialog is displayed.  This allows you to hook in a function that will be
33951      * executed in response to a particular key being pressed while the dialog is active.
33952      * @param {Number/Array/Object} key Either the numeric key code, array of key codes or an object with the following options:
33953      *                                  {key: (number or array), shift: (true/false), ctrl: (true/false), alt: (true/false)}
33954      * @param {Function} fn The function to call
33955      * @param {Object} scope (optional) The scope of the function
33956      * @return {Roo.BasicDialog} this
33957      */
33958     addKeyListener : function(key, fn, scope){
33959         var keyCode, shift, ctrl, alt;
33960         if(typeof key == "object" && !(key instanceof Array)){
33961             keyCode = key["key"];
33962             shift = key["shift"];
33963             ctrl = key["ctrl"];
33964             alt = key["alt"];
33965         }else{
33966             keyCode = key;
33967         }
33968         var handler = function(dlg, e){
33969             if((!shift || e.shiftKey) && (!ctrl || e.ctrlKey) &&  (!alt || e.altKey)){
33970                 var k = e.getKey();
33971                 if(keyCode instanceof Array){
33972                     for(var i = 0, len = keyCode.length; i < len; i++){
33973                         if(keyCode[i] == k){
33974                           fn.call(scope || window, dlg, k, e);
33975                           return;
33976                         }
33977                     }
33978                 }else{
33979                     if(k == keyCode){
33980                         fn.call(scope || window, dlg, k, e);
33981                     }
33982                 }
33983             }
33984         };
33985         this.on("keydown", handler);
33986         return this;
33987     },
33988
33989     /**
33990      * Returns the TabPanel component (creates it if it doesn't exist).
33991      * Note: If you wish to simply check for the existence of tabs without creating them,
33992      * check for a null 'tabs' property.
33993      * @return {Roo.TabPanel} The tabs component
33994      */
33995     getTabs : function(){
33996         if(!this.tabs){
33997             this.el.addClass("x-dlg-auto-tabs");
33998             this.body.addClass(this.tabPosition == "bottom" ? "x-tabs-bottom" : "x-tabs-top");
33999             this.tabs = new Roo.TabPanel(this.body.dom, this.tabPosition == "bottom");
34000         }
34001         return this.tabs;
34002     },
34003
34004     /**
34005      * Adds a button to the footer section of the dialog.
34006      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
34007      * object or a valid Roo.DomHelper element config
34008      * @param {Function} handler The function called when the button is clicked
34009      * @param {Object} scope (optional) The scope of the handler function (accepts position as a property)
34010      * @return {Roo.Button} The new button
34011      */
34012     addButton : function(config, handler, scope){
34013         var dh = Roo.DomHelper;
34014         if(!this.footer){
34015             this.footer = dh.append(this.bwrap, {tag: "div", cls:"x-dlg-ft"}, true);
34016         }
34017         if(!this.btnContainer){
34018             var tb = this.footer.createChild({
34019
34020                 cls:"x-dlg-btns x-dlg-btns-"+this.buttonAlign,
34021                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
34022             }, null, true);
34023             this.btnContainer = tb.firstChild.firstChild.firstChild;
34024         }
34025         var bconfig = {
34026             handler: handler,
34027             scope: scope,
34028             minWidth: this.minButtonWidth,
34029             hideParent:true
34030         };
34031         if(typeof config == "string"){
34032             bconfig.text = config;
34033         }else{
34034             if(config.tag){
34035                 bconfig.dhconfig = config;
34036             }else{
34037                 Roo.apply(bconfig, config);
34038             }
34039         }
34040         var fc = false;
34041         if ((typeof(bconfig.position) != 'undefined') && bconfig.position < this.btnContainer.childNodes.length-1) {
34042             bconfig.position = Math.max(0, bconfig.position);
34043             fc = this.btnContainer.childNodes[bconfig.position];
34044         }
34045          
34046         var btn = new Roo.Button(
34047             fc ? 
34048                 this.btnContainer.insertBefore(document.createElement("td"),fc)
34049                 : this.btnContainer.appendChild(document.createElement("td")),
34050             //Roo.get(this.btnContainer).createChild( { tag: 'td'},  fc ),
34051             bconfig
34052         );
34053         this.syncBodyHeight();
34054         if(!this.buttons){
34055             /**
34056              * Array of all the buttons that have been added to this dialog via addButton
34057              * @type Array
34058              */
34059             this.buttons = [];
34060         }
34061         this.buttons.push(btn);
34062         return btn;
34063     },
34064
34065     /**
34066      * Sets the default button to be focused when the dialog is displayed.
34067      * @param {Roo.BasicDialog.Button} btn The button object returned by {@link #addButton}
34068      * @return {Roo.BasicDialog} this
34069      */
34070     setDefaultButton : function(btn){
34071         this.defaultButton = btn;
34072         return this;
34073     },
34074
34075     // private
34076     getHeaderFooterHeight : function(safe){
34077         var height = 0;
34078         if(this.header){
34079            height += this.header.getHeight();
34080         }
34081         if(this.footer){
34082            var fm = this.footer.getMargins();
34083             height += (this.footer.getHeight()+fm.top+fm.bottom);
34084         }
34085         height += this.bwrap.getPadding("tb")+this.bwrap.getBorderWidth("tb");
34086         height += this.centerBg.getPadding("tb");
34087         return height;
34088     },
34089
34090     // private
34091     syncBodyHeight : function()
34092     {
34093         var bd = this.body, // the text
34094             cb = this.centerBg, // wrapper around bottom.. but does not seem to be used..
34095             bw = this.bwrap;
34096         var height = this.size.height - this.getHeaderFooterHeight(false);
34097         bd.setHeight(height-bd.getMargins("tb"));
34098         var hh = this.header.getHeight();
34099         var h = this.size.height-hh;
34100         cb.setHeight(h);
34101         
34102         bw.setLeftTop(cb.getPadding("l"), hh+cb.getPadding("t"));
34103         bw.setHeight(h-cb.getPadding("tb"));
34104         
34105         bw.setWidth(this.el.getWidth(true)-cb.getPadding("lr"));
34106         bd.setWidth(bw.getWidth(true));
34107         if(this.tabs){
34108             this.tabs.syncHeight();
34109             if(Roo.isIE){
34110                 this.tabs.el.repaint();
34111             }
34112         }
34113     },
34114
34115     /**
34116      * Restores the previous state of the dialog if Roo.state is configured.
34117      * @return {Roo.BasicDialog} this
34118      */
34119     restoreState : function(){
34120         var box = Roo.state.Manager.get(this.stateId || (this.el.id + "-state"));
34121         if(box && box.width){
34122             this.xy = [box.x, box.y];
34123             this.resizeTo(box.width, box.height);
34124         }
34125         return this;
34126     },
34127
34128     // private
34129     beforeShow : function(){
34130         this.expand();
34131         if(this.fixedcenter){
34132             this.xy = this.el.getCenterXY(true);
34133         }
34134         if(this.modal){
34135             Roo.get(document.body).addClass("x-body-masked");
34136             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34137             this.mask.show();
34138         }
34139         this.constrainXY();
34140     },
34141
34142     // private
34143     animShow : function(){
34144         var b = Roo.get(this.animateTarget).getBox();
34145         this.proxy.setSize(b.width, b.height);
34146         this.proxy.setLocation(b.x, b.y);
34147         this.proxy.show();
34148         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height,
34149                     true, .35, this.showEl.createDelegate(this));
34150     },
34151
34152     /**
34153      * Shows the dialog.
34154      * @param {String/HTMLElement/Roo.Element} animateTarget (optional) Reset the animation target
34155      * @return {Roo.BasicDialog} this
34156      */
34157     show : function(animateTarget){
34158         if (this.fireEvent("beforeshow", this) === false){
34159             return;
34160         }
34161         if(this.syncHeightBeforeShow){
34162             this.syncBodyHeight();
34163         }else if(this.firstShow){
34164             this.firstShow = false;
34165             this.syncBodyHeight(); // sync the height on the first show instead of in the constructor
34166         }
34167         this.animateTarget = animateTarget || this.animateTarget;
34168         if(!this.el.isVisible()){
34169             this.beforeShow();
34170             if(this.animateTarget && Roo.get(this.animateTarget)){
34171                 this.animShow();
34172             }else{
34173                 this.showEl();
34174             }
34175         }
34176         return this;
34177     },
34178
34179     // private
34180     showEl : function(){
34181         this.proxy.hide();
34182         this.el.setXY(this.xy);
34183         this.el.show();
34184         this.adjustAssets(true);
34185         this.toFront();
34186         this.focus();
34187         // IE peekaboo bug - fix found by Dave Fenwick
34188         if(Roo.isIE){
34189             this.el.repaint();
34190         }
34191         this.fireEvent("show", this);
34192     },
34193
34194     /**
34195      * Focuses the dialog.  If a defaultButton is set, it will receive focus, otherwise the
34196      * dialog itself will receive focus.
34197      */
34198     focus : function(){
34199         if(this.defaultButton){
34200             this.defaultButton.focus();
34201         }else{
34202             this.focusEl.focus();
34203         }
34204     },
34205
34206     // private
34207     constrainXY : function(){
34208         if(this.constraintoviewport !== false){
34209             if(!this.viewSize){
34210                 if(this.container){
34211                     var s = this.container.getSize();
34212                     this.viewSize = [s.width, s.height];
34213                 }else{
34214                     this.viewSize = [Roo.lib.Dom.getViewWidth(),Roo.lib.Dom.getViewHeight()];
34215                 }
34216             }
34217             var s = Roo.get(this.container||document).getScroll();
34218
34219             var x = this.xy[0], y = this.xy[1];
34220             var w = this.size.width, h = this.size.height;
34221             var vw = this.viewSize[0], vh = this.viewSize[1];
34222             // only move it if it needs it
34223             var moved = false;
34224             // first validate right/bottom
34225             if(x + w > vw+s.left){
34226                 x = vw - w;
34227                 moved = true;
34228             }
34229             if(y + h > vh+s.top){
34230                 y = vh - h;
34231                 moved = true;
34232             }
34233             // then make sure top/left isn't negative
34234             if(x < s.left){
34235                 x = s.left;
34236                 moved = true;
34237             }
34238             if(y < s.top){
34239                 y = s.top;
34240                 moved = true;
34241             }
34242             if(moved){
34243                 // cache xy
34244                 this.xy = [x, y];
34245                 if(this.isVisible()){
34246                     this.el.setLocation(x, y);
34247                     this.adjustAssets();
34248                 }
34249             }
34250         }
34251     },
34252
34253     // private
34254     onDrag : function(){
34255         if(!this.proxyDrag){
34256             this.xy = this.el.getXY();
34257             this.adjustAssets();
34258         }
34259     },
34260
34261     // private
34262     adjustAssets : function(doShow){
34263         var x = this.xy[0], y = this.xy[1];
34264         var w = this.size.width, h = this.size.height;
34265         if(doShow === true){
34266             if(this.shadow){
34267                 this.shadow.show(this.el);
34268             }
34269             if(this.shim){
34270                 this.shim.show();
34271             }
34272         }
34273         if(this.shadow && this.shadow.isVisible()){
34274             this.shadow.show(this.el);
34275         }
34276         if(this.shim && this.shim.isVisible()){
34277             this.shim.setBounds(x, y, w, h);
34278         }
34279     },
34280
34281     // private
34282     adjustViewport : function(w, h){
34283         if(!w || !h){
34284             w = Roo.lib.Dom.getViewWidth();
34285             h = Roo.lib.Dom.getViewHeight();
34286         }
34287         // cache the size
34288         this.viewSize = [w, h];
34289         if(this.modal && this.mask.isVisible()){
34290             this.mask.setSize(w, h); // first make sure the mask isn't causing overflow
34291             this.mask.setSize(Roo.lib.Dom.getViewWidth(true), Roo.lib.Dom.getViewHeight(true));
34292         }
34293         if(this.isVisible()){
34294             this.constrainXY();
34295         }
34296     },
34297
34298     /**
34299      * Destroys this dialog and all its supporting elements (including any tabs, shim,
34300      * shadow, proxy, mask, etc.)  Also removes all event listeners.
34301      * @param {Boolean} removeEl (optional) true to remove the element from the DOM
34302      */
34303     destroy : function(removeEl){
34304         if(this.isVisible()){
34305             this.animateTarget = null;
34306             this.hide();
34307         }
34308         Roo.EventManager.removeResizeListener(this.adjustViewport, this);
34309         if(this.tabs){
34310             this.tabs.destroy(removeEl);
34311         }
34312         Roo.destroy(
34313              this.shim,
34314              this.proxy,
34315              this.resizer,
34316              this.close,
34317              this.mask
34318         );
34319         if(this.dd){
34320             this.dd.unreg();
34321         }
34322         if(this.buttons){
34323            for(var i = 0, len = this.buttons.length; i < len; i++){
34324                this.buttons[i].destroy();
34325            }
34326         }
34327         this.el.removeAllListeners();
34328         if(removeEl === true){
34329             this.el.update("");
34330             this.el.remove();
34331         }
34332         Roo.DialogManager.unregister(this);
34333     },
34334
34335     // private
34336     startMove : function(){
34337         if(this.proxyDrag){
34338             this.proxy.show();
34339         }
34340         if(this.constraintoviewport !== false){
34341             this.dd.constrainTo(document.body, {right: this.shadowOffset, bottom: this.shadowOffset});
34342         }
34343     },
34344
34345     // private
34346     endMove : function(){
34347         if(!this.proxyDrag){
34348             Roo.dd.DD.prototype.endDrag.apply(this.dd, arguments);
34349         }else{
34350             Roo.dd.DDProxy.prototype.endDrag.apply(this.dd, arguments);
34351             this.proxy.hide();
34352         }
34353         this.refreshSize();
34354         this.adjustAssets();
34355         this.focus();
34356         this.fireEvent("move", this, this.xy[0], this.xy[1]);
34357     },
34358
34359     /**
34360      * Brings this dialog to the front of any other visible dialogs
34361      * @return {Roo.BasicDialog} this
34362      */
34363     toFront : function(){
34364         Roo.DialogManager.bringToFront(this);
34365         return this;
34366     },
34367
34368     /**
34369      * Sends this dialog to the back (under) of any other visible dialogs
34370      * @return {Roo.BasicDialog} this
34371      */
34372     toBack : function(){
34373         Roo.DialogManager.sendToBack(this);
34374         return this;
34375     },
34376
34377     /**
34378      * Centers this dialog in the viewport
34379      * @return {Roo.BasicDialog} this
34380      */
34381     center : function(){
34382         var xy = this.el.getCenterXY(true);
34383         this.moveTo(xy[0], xy[1]);
34384         return this;
34385     },
34386
34387     /**
34388      * Moves the dialog's top-left corner to the specified point
34389      * @param {Number} x
34390      * @param {Number} y
34391      * @return {Roo.BasicDialog} this
34392      */
34393     moveTo : function(x, y){
34394         this.xy = [x,y];
34395         if(this.isVisible()){
34396             this.el.setXY(this.xy);
34397             this.adjustAssets();
34398         }
34399         return this;
34400     },
34401
34402     /**
34403      * Aligns the dialog to the specified element
34404      * @param {String/HTMLElement/Roo.Element} element The element to align to.
34405      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details).
34406      * @param {Array} offsets (optional) Offset the positioning by [x, y]
34407      * @return {Roo.BasicDialog} this
34408      */
34409     alignTo : function(element, position, offsets){
34410         this.xy = this.el.getAlignToXY(element, position, offsets);
34411         if(this.isVisible()){
34412             this.el.setXY(this.xy);
34413             this.adjustAssets();
34414         }
34415         return this;
34416     },
34417
34418     /**
34419      * Anchors an element to another element and realigns it when the window is resized.
34420      * @param {String/HTMLElement/Roo.Element} element The element to align to.
34421      * @param {String} position The position to align to (see {@link Roo.Element#alignTo} for more details)
34422      * @param {Array} offsets (optional) Offset the positioning by [x, y]
34423      * @param {Boolean/Number} monitorScroll (optional) true to monitor body scroll and reposition. If this parameter
34424      * is a number, it is used as the buffer delay (defaults to 50ms).
34425      * @return {Roo.BasicDialog} this
34426      */
34427     anchorTo : function(el, alignment, offsets, monitorScroll){
34428         var action = function(){
34429             this.alignTo(el, alignment, offsets);
34430         };
34431         Roo.EventManager.onWindowResize(action, this);
34432         var tm = typeof monitorScroll;
34433         if(tm != 'undefined'){
34434             Roo.EventManager.on(window, 'scroll', action, this,
34435                 {buffer: tm == 'number' ? monitorScroll : 50});
34436         }
34437         action.call(this);
34438         return this;
34439     },
34440
34441     /**
34442      * Returns true if the dialog is visible
34443      * @return {Boolean}
34444      */
34445     isVisible : function(){
34446         return this.el.isVisible();
34447     },
34448
34449     // private
34450     animHide : function(callback){
34451         var b = Roo.get(this.animateTarget).getBox();
34452         this.proxy.show();
34453         this.proxy.setBounds(this.xy[0], this.xy[1], this.size.width, this.size.height);
34454         this.el.hide();
34455         this.proxy.setBounds(b.x, b.y, b.width, b.height, true, .35,
34456                     this.hideEl.createDelegate(this, [callback]));
34457     },
34458
34459     /**
34460      * Hides the dialog.
34461      * @param {Function} callback (optional) Function to call when the dialog is hidden
34462      * @return {Roo.BasicDialog} this
34463      */
34464     hide : function(callback){
34465         if (this.fireEvent("beforehide", this) === false){
34466             return;
34467         }
34468         if(this.shadow){
34469             this.shadow.hide();
34470         }
34471         if(this.shim) {
34472           this.shim.hide();
34473         }
34474         // sometimes animateTarget seems to get set.. causing problems...
34475         // this just double checks..
34476         if(this.animateTarget && Roo.get(this.animateTarget)) {
34477            this.animHide(callback);
34478         }else{
34479             this.el.hide();
34480             this.hideEl(callback);
34481         }
34482         return this;
34483     },
34484
34485     // private
34486     hideEl : function(callback){
34487         this.proxy.hide();
34488         if(this.modal){
34489             this.mask.hide();
34490             Roo.get(document.body).removeClass("x-body-masked");
34491         }
34492         this.fireEvent("hide", this);
34493         if(typeof callback == "function"){
34494             callback();
34495         }
34496     },
34497
34498     // private
34499     hideAction : function(){
34500         this.setLeft("-10000px");
34501         this.setTop("-10000px");
34502         this.setStyle("visibility", "hidden");
34503     },
34504
34505     // private
34506     refreshSize : function(){
34507         this.size = this.el.getSize();
34508         this.xy = this.el.getXY();
34509         Roo.state.Manager.set(this.stateId || this.el.id + "-state", this.el.getBox());
34510     },
34511
34512     // private
34513     // z-index is managed by the DialogManager and may be overwritten at any time
34514     setZIndex : function(index){
34515         if(this.modal){
34516             this.mask.setStyle("z-index", index);
34517         }
34518         if(this.shim){
34519             this.shim.setStyle("z-index", ++index);
34520         }
34521         if(this.shadow){
34522             this.shadow.setZIndex(++index);
34523         }
34524         this.el.setStyle("z-index", ++index);
34525         if(this.proxy){
34526             this.proxy.setStyle("z-index", ++index);
34527         }
34528         if(this.resizer){
34529             this.resizer.proxy.setStyle("z-index", ++index);
34530         }
34531
34532         this.lastZIndex = index;
34533     },
34534
34535     /**
34536      * Returns the element for this dialog
34537      * @return {Roo.Element} The underlying dialog Element
34538      */
34539     getEl : function(){
34540         return this.el;
34541     }
34542 });
34543
34544 /**
34545  * @class Roo.DialogManager
34546  * Provides global access to BasicDialogs that have been created and
34547  * support for z-indexing (layering) multiple open dialogs.
34548  */
34549 Roo.DialogManager = function(){
34550     var list = {};
34551     var accessList = [];
34552     var front = null;
34553
34554     // private
34555     var sortDialogs = function(d1, d2){
34556         return (!d1._lastAccess || d1._lastAccess < d2._lastAccess) ? -1 : 1;
34557     };
34558
34559     // private
34560     var orderDialogs = function(){
34561         accessList.sort(sortDialogs);
34562         var seed = Roo.DialogManager.zseed;
34563         for(var i = 0, len = accessList.length; i < len; i++){
34564             var dlg = accessList[i];
34565             if(dlg){
34566                 dlg.setZIndex(seed + (i*10));
34567             }
34568         }
34569     };
34570
34571     return {
34572         /**
34573          * The starting z-index for BasicDialogs (defaults to 9000)
34574          * @type Number The z-index value
34575          */
34576         zseed : 9000,
34577
34578         // private
34579         register : function(dlg){
34580             list[dlg.id] = dlg;
34581             accessList.push(dlg);
34582         },
34583
34584         // private
34585         unregister : function(dlg){
34586             delete list[dlg.id];
34587             var i=0;
34588             var len=0;
34589             if(!accessList.indexOf){
34590                 for(  i = 0, len = accessList.length; i < len; i++){
34591                     if(accessList[i] == dlg){
34592                         accessList.splice(i, 1);
34593                         return;
34594                     }
34595                 }
34596             }else{
34597                  i = accessList.indexOf(dlg);
34598                 if(i != -1){
34599                     accessList.splice(i, 1);
34600                 }
34601             }
34602         },
34603
34604         /**
34605          * Gets a registered dialog by id
34606          * @param {String/Object} id The id of the dialog or a dialog
34607          * @return {Roo.BasicDialog} this
34608          */
34609         get : function(id){
34610             return typeof id == "object" ? id : list[id];
34611         },
34612
34613         /**
34614          * Brings the specified dialog to the front
34615          * @param {String/Object} dlg The id of the dialog or a dialog
34616          * @return {Roo.BasicDialog} this
34617          */
34618         bringToFront : function(dlg){
34619             dlg = this.get(dlg);
34620             if(dlg != front){
34621                 front = dlg;
34622                 dlg._lastAccess = new Date().getTime();
34623                 orderDialogs();
34624             }
34625             return dlg;
34626         },
34627
34628         /**
34629          * Sends the specified dialog to the back
34630          * @param {String/Object} dlg The id of the dialog or a dialog
34631          * @return {Roo.BasicDialog} this
34632          */
34633         sendToBack : function(dlg){
34634             dlg = this.get(dlg);
34635             dlg._lastAccess = -(new Date().getTime());
34636             orderDialogs();
34637             return dlg;
34638         },
34639
34640         /**
34641          * Hides all dialogs
34642          */
34643         hideAll : function(){
34644             for(var id in list){
34645                 if(list[id] && typeof list[id] != "function" && list[id].isVisible()){
34646                     list[id].hide();
34647                 }
34648             }
34649         }
34650     };
34651 }();
34652
34653 /**
34654  * @class Roo.LayoutDialog
34655  * @extends Roo.BasicDialog
34656  * @children Roo.ContentPanel
34657  * @parent builder none
34658  * Dialog which provides adjustments for working with a layout in a Dialog.
34659  * Add your necessary layout config options to the dialog's config.<br>
34660  * Example usage (including a nested layout):
34661  * <pre><code>
34662 if(!dialog){
34663     dialog = new Roo.LayoutDialog("download-dlg", {
34664         modal: true,
34665         width:600,
34666         height:450,
34667         shadow:true,
34668         minWidth:500,
34669         minHeight:350,
34670         autoTabs:true,
34671         proxyDrag:true,
34672         // layout config merges with the dialog config
34673         center:{
34674             tabPosition: "top",
34675             alwaysShowTabs: true
34676         }
34677     });
34678     dialog.addKeyListener(27, dialog.hide, dialog);
34679     dialog.setDefaultButton(dialog.addButton("Close", dialog.hide, dialog));
34680     dialog.addButton("Build It!", this.getDownload, this);
34681
34682     // we can even add nested layouts
34683     var innerLayout = new Roo.BorderLayout("dl-inner", {
34684         east: {
34685             initialSize: 200,
34686             autoScroll:true,
34687             split:true
34688         },
34689         center: {
34690             autoScroll:true
34691         }
34692     });
34693     innerLayout.beginUpdate();
34694     innerLayout.add("east", new Roo.ContentPanel("dl-details"));
34695     innerLayout.add("center", new Roo.ContentPanel("selection-panel"));
34696     innerLayout.endUpdate(true);
34697
34698     var layout = dialog.getLayout();
34699     layout.beginUpdate();
34700     layout.add("center", new Roo.ContentPanel("standard-panel",
34701                         {title: "Download the Source", fitToFrame:true}));
34702     layout.add("center", new Roo.NestedLayoutPanel(innerLayout,
34703                {title: "Build your own roo.js"}));
34704     layout.getRegion("center").showPanel(sp);
34705     layout.endUpdate();
34706 }
34707 </code></pre>
34708     * @constructor
34709     * @param {String/HTMLElement/Roo.Element} el The id of or container element, or config
34710     * @param {Object} config configuration options
34711   */
34712 Roo.LayoutDialog = function(el, cfg){
34713     
34714     var config=  cfg;
34715     if (typeof(cfg) == 'undefined') {
34716         config = Roo.apply({}, el);
34717         // not sure why we use documentElement here.. - it should always be body.
34718         // IE7 borks horribly if we use documentElement.
34719         // webkit also does not like documentElement - it creates a body element...
34720         el = Roo.get( document.body || document.documentElement ).createChild();
34721         //config.autoCreate = true;
34722     }
34723     
34724     
34725     config.autoTabs = false;
34726     Roo.LayoutDialog.superclass.constructor.call(this, el, config);
34727     this.body.setStyle({overflow:"hidden", position:"relative"});
34728     this.layout = new Roo.BorderLayout(this.body.dom, config);
34729     this.layout.monitorWindowResize = false;
34730     this.el.addClass("x-dlg-auto-layout");
34731     // fix case when center region overwrites center function
34732     this.center = Roo.BasicDialog.prototype.center;
34733     this.on("show", this.layout.layout, this.layout, true);
34734     if (config.items) {
34735         var xitems = config.items;
34736         delete config.items;
34737         Roo.each(xitems, this.addxtype, this);
34738     }
34739     
34740     
34741 };
34742 Roo.extend(Roo.LayoutDialog, Roo.BasicDialog, {
34743     
34744     
34745     /**
34746      * @cfg {Roo.LayoutRegion} east  
34747      */
34748     /**
34749      * @cfg {Roo.LayoutRegion} west
34750      */
34751     /**
34752      * @cfg {Roo.LayoutRegion} south
34753      */
34754     /**
34755      * @cfg {Roo.LayoutRegion} north
34756      */
34757     /**
34758      * @cfg {Roo.LayoutRegion} center
34759      */
34760     /**
34761      * @cfg {Roo.Button} buttons[]  Bottom buttons..
34762      */
34763     
34764     
34765     /**
34766      * Ends update of the layout <strike>and resets display to none</strike>. Use standard beginUpdate/endUpdate on the layout.
34767      * @deprecated
34768      */
34769     endUpdate : function(){
34770         this.layout.endUpdate();
34771     },
34772
34773     /**
34774      * Begins an update of the layout <strike>and sets display to block and visibility to hidden</strike>. Use standard beginUpdate/endUpdate on the layout.
34775      *  @deprecated
34776      */
34777     beginUpdate : function(){
34778         this.layout.beginUpdate();
34779     },
34780
34781     /**
34782      * Get the BorderLayout for this dialog
34783      * @return {Roo.BorderLayout}
34784      */
34785     getLayout : function(){
34786         return this.layout;
34787     },
34788
34789     showEl : function(){
34790         Roo.LayoutDialog.superclass.showEl.apply(this, arguments);
34791         if(Roo.isIE7){
34792             this.layout.layout();
34793         }
34794     },
34795
34796     // private
34797     // Use the syncHeightBeforeShow config option to control this automatically
34798     syncBodyHeight : function(){
34799         Roo.LayoutDialog.superclass.syncBodyHeight.call(this);
34800         if(this.layout){this.layout.layout();}
34801     },
34802     
34803       /**
34804      * Add an xtype element (actually adds to the layout.)
34805      * @return {Object} xdata xtype object data.
34806      */
34807     
34808     addxtype : function(c) {
34809         return this.layout.addxtype(c);
34810     }
34811 });/*
34812  * Based on:
34813  * Ext JS Library 1.1.1
34814  * Copyright(c) 2006-2007, Ext JS, LLC.
34815  *
34816  * Originally Released Under LGPL - original licence link has changed is not relivant.
34817  *
34818  * Fork - LGPL
34819  * <script type="text/javascript">
34820  */
34821  
34822 /**
34823  * @class Roo.MessageBox
34824  * @static
34825  * Utility class for generating different styles of message boxes.  The alias Roo.Msg can also be used.
34826  * Example usage:
34827  *<pre><code>
34828 // Basic alert:
34829 Roo.Msg.alert('Status', 'Changes saved successfully.');
34830
34831 // Prompt for user data:
34832 Roo.Msg.prompt('Name', 'Please enter your name:', function(btn, text){
34833     if (btn == 'ok'){
34834         // process text value...
34835     }
34836 });
34837
34838 // Show a dialog using config options:
34839 Roo.Msg.show({
34840    title:'Save Changes?',
34841    msg: 'Your are closing a tab that has unsaved changes. Would you like to save your changes?',
34842    buttons: Roo.Msg.YESNOCANCEL,
34843    fn: processResult,
34844    animEl: 'elId'
34845 });
34846 </code></pre>
34847  * @static
34848  */
34849 Roo.MessageBox = function(){
34850     var dlg, opt, mask, waitTimer;
34851     var bodyEl, msgEl, textboxEl, textareaEl, progressEl, pp;
34852     var buttons, activeTextEl, bwidth;
34853
34854     // private
34855     var handleButton = function(button){
34856         dlg.hide();
34857         Roo.callback(opt.fn, opt.scope||window, [button, activeTextEl.dom.value], 1);
34858     };
34859
34860     // private
34861     var handleHide = function(){
34862         if(opt && opt.cls){
34863             dlg.el.removeClass(opt.cls);
34864         }
34865         if(waitTimer){
34866             Roo.TaskMgr.stop(waitTimer);
34867             waitTimer = null;
34868         }
34869     };
34870
34871     // private
34872     var updateButtons = function(b){
34873         var width = 0;
34874         if(!b){
34875             buttons["ok"].hide();
34876             buttons["cancel"].hide();
34877             buttons["yes"].hide();
34878             buttons["no"].hide();
34879             dlg.footer.dom.style.display = 'none';
34880             return width;
34881         }
34882         dlg.footer.dom.style.display = '';
34883         for(var k in buttons){
34884             if(typeof buttons[k] != "function"){
34885                 if(b[k]){
34886                     buttons[k].show();
34887                     buttons[k].setText(typeof b[k] == "string" ? b[k] : Roo.MessageBox.buttonText[k]);
34888                     width += buttons[k].el.getWidth()+15;
34889                 }else{
34890                     buttons[k].hide();
34891                 }
34892             }
34893         }
34894         return width;
34895     };
34896
34897     // private
34898     var handleEsc = function(d, k, e){
34899         if(opt && opt.closable !== false){
34900             dlg.hide();
34901         }
34902         if(e){
34903             e.stopEvent();
34904         }
34905     };
34906
34907     return {
34908         /**
34909          * Returns a reference to the underlying {@link Roo.BasicDialog} element
34910          * @return {Roo.BasicDialog} The BasicDialog element
34911          */
34912         getDialog : function(){
34913            if(!dlg){
34914                 dlg = new Roo.BasicDialog("x-msg-box", {
34915                     autoCreate : true,
34916                     shadow: true,
34917                     draggable: true,
34918                     resizable:false,
34919                     constraintoviewport:false,
34920                     fixedcenter:true,
34921                     collapsible : false,
34922                     shim:true,
34923                     modal: true,
34924                     width:400, height:100,
34925                     buttonAlign:"center",
34926                     closeClick : function(){
34927                         if(opt && opt.buttons && opt.buttons.no && !opt.buttons.cancel){
34928                             handleButton("no");
34929                         }else{
34930                             handleButton("cancel");
34931                         }
34932                     }
34933                 });
34934               
34935                 dlg.on("hide", handleHide);
34936                 mask = dlg.mask;
34937                 dlg.addKeyListener(27, handleEsc);
34938                 buttons = {};
34939                 var bt = this.buttonText;
34940                 buttons["ok"] = dlg.addButton(bt["ok"], handleButton.createCallback("ok"));
34941                 buttons["yes"] = dlg.addButton(bt["yes"], handleButton.createCallback("yes"));
34942                 buttons["no"] = dlg.addButton(bt["no"], handleButton.createCallback("no"));
34943                 buttons["cancel"] = dlg.addButton(bt["cancel"], handleButton.createCallback("cancel"));
34944                 bodyEl = dlg.body.createChild({
34945
34946                     html:'<span class="roo-mb-text"></span><br /><input type="text" class="roo-mb-input" /><textarea class="roo-mb-textarea"></textarea><div class="roo-mb-progress-wrap"><div class="roo-mb-progress"><div class="roo-mb-progress-bar">&#160;</div></div></div>'
34947                 });
34948                 msgEl = bodyEl.dom.firstChild;
34949                 textboxEl = Roo.get(bodyEl.dom.childNodes[2]);
34950                 textboxEl.enableDisplayMode();
34951                 textboxEl.addKeyListener([10,13], function(){
34952                     if(dlg.isVisible() && opt && opt.buttons){
34953                         if(opt.buttons.ok){
34954                             handleButton("ok");
34955                         }else if(opt.buttons.yes){
34956                             handleButton("yes");
34957                         }
34958                     }
34959                 });
34960                 textareaEl = Roo.get(bodyEl.dom.childNodes[3]);
34961                 textareaEl.enableDisplayMode();
34962                 progressEl = Roo.get(bodyEl.dom.childNodes[4]);
34963                 progressEl.enableDisplayMode();
34964                 var pf = progressEl.dom.firstChild;
34965                 if (pf) {
34966                     pp = Roo.get(pf.firstChild);
34967                     pp.setHeight(pf.offsetHeight);
34968                 }
34969                 
34970             }
34971             return dlg;
34972         },
34973
34974         /**
34975          * Updates the message box body text
34976          * @param {String} text (optional) Replaces the message box element's innerHTML with the specified string (defaults to
34977          * the XHTML-compliant non-breaking space character '&amp;#160;')
34978          * @return {Roo.MessageBox} This message box
34979          */
34980         updateText : function(text){
34981             if(!dlg.isVisible() && !opt.width){
34982                 dlg.resizeTo(this.maxWidth, 100); // resize first so content is never clipped from previous shows
34983             }
34984             msgEl.innerHTML = text || '&#160;';
34985       
34986             var cw =  Math.max(msgEl.offsetWidth, msgEl.parentNode.scrollWidth);
34987             //Roo.log("guesed size: " + JSON.stringify([cw,msgEl.offsetWidth, msgEl.parentNode.scrollWidth]));
34988             var w = Math.max(
34989                     Math.min(opt.width || cw , this.maxWidth), 
34990                     Math.max(opt.minWidth || this.minWidth, bwidth)
34991             );
34992             if(opt.prompt){
34993                 activeTextEl.setWidth(w);
34994             }
34995             if(dlg.isVisible()){
34996                 dlg.fixedcenter = false;
34997             }
34998             // to big, make it scroll. = But as usual stupid IE does not support
34999             // !important..
35000             
35001             if ( bodyEl.getHeight() > (Roo.lib.Dom.getViewHeight() - 100)) {
35002                 bodyEl.setHeight ( Roo.lib.Dom.getViewHeight() - 100 );
35003                 bodyEl.dom.style.overflowY = 'auto' + ( Roo.isIE ? '' : ' !important');
35004             } else {
35005                 bodyEl.dom.style.height = '';
35006                 bodyEl.dom.style.overflowY = '';
35007             }
35008             if (cw > w) {
35009                 bodyEl.dom.style.get = 'auto' + ( Roo.isIE ? '' : ' !important');
35010             } else {
35011                 bodyEl.dom.style.overflowX = '';
35012             }
35013             
35014             dlg.setContentSize(w, bodyEl.getHeight());
35015             if(dlg.isVisible()){
35016                 dlg.fixedcenter = true;
35017             }
35018             return this;
35019         },
35020
35021         /**
35022          * Updates a progress-style message box's text and progress bar.  Only relevant on message boxes
35023          * initiated via {@link Roo.MessageBox#progress} or by calling {@link Roo.MessageBox#show} with progress: true.
35024          * @param {Number} value Any number between 0 and 1 (e.g., .5)
35025          * @param {String} text (optional) If defined, the message box's body text is replaced with the specified string (defaults to undefined)
35026          * @return {Roo.MessageBox} This message box
35027          */
35028         updateProgress : function(value, text){
35029             if(text){
35030                 this.updateText(text);
35031             }
35032             if (pp) { // weird bug on my firefox - for some reason this is not defined
35033                 pp.setWidth(Math.floor(value*progressEl.dom.firstChild.offsetWidth));
35034             }
35035             return this;
35036         },        
35037
35038         /**
35039          * Returns true if the message box is currently displayed
35040          * @return {Boolean} True if the message box is visible, else false
35041          */
35042         isVisible : function(){
35043             return dlg && dlg.isVisible();  
35044         },
35045
35046         /**
35047          * Hides the message box if it is displayed
35048          */
35049         hide : function(){
35050             if(this.isVisible()){
35051                 dlg.hide();
35052             }  
35053         },
35054
35055         /**
35056          * Displays a new message box, or reinitializes an existing message box, based on the config options
35057          * passed in. All functions (e.g. prompt, alert, etc) on MessageBox call this function internally.
35058          * The following config object properties are supported:
35059          * <pre>
35060 Property    Type             Description
35061 ----------  ---------------  ------------------------------------------------------------------------------------
35062 animEl            String/Element   An id or Element from which the message box should animate as it opens and
35063                                    closes (defaults to undefined)
35064 buttons           Object/Boolean   A button config object (e.g., Roo.MessageBox.OKCANCEL or {ok:'Foo',
35065                                    cancel:'Bar'}), or false to not show any buttons (defaults to false)
35066 closable          Boolean          False to hide the top-right close button (defaults to true).  Note that
35067                                    progress and wait dialogs will ignore this property and always hide the
35068                                    close button as they can only be closed programmatically.
35069 cls               String           A custom CSS class to apply to the message box element
35070 defaultTextHeight Number           The default height in pixels of the message box's multiline textarea if
35071                                    displayed (defaults to 75)
35072 fn                Function         A callback function to execute after closing the dialog.  The arguments to the
35073                                    function will be btn (the name of the button that was clicked, if applicable,
35074                                    e.g. "ok"), and text (the value of the active text field, if applicable).
35075                                    Progress and wait dialogs will ignore this option since they do not respond to
35076                                    user actions and can only be closed programmatically, so any required function
35077                                    should be called by the same code after it closes the dialog.
35078 icon              String           A CSS class that provides a background image to be used as an icon for
35079                                    the dialog (e.g., Roo.MessageBox.WARNING or 'custom-class', defaults to '')
35080 maxWidth          Number           The maximum width in pixels of the message box (defaults to 600)
35081 minWidth          Number           The minimum width in pixels of the message box (defaults to 100)
35082 modal             Boolean          False to allow user interaction with the page while the message box is
35083                                    displayed (defaults to true)
35084 msg               String           A string that will replace the existing message box body text (defaults
35085                                    to the XHTML-compliant non-breaking space character '&#160;')
35086 multiline         Boolean          True to prompt the user to enter multi-line text (defaults to false)
35087 progress          Boolean          True to display a progress bar (defaults to false)
35088 progressText      String           The text to display inside the progress bar if progress = true (defaults to '')
35089 prompt            Boolean          True to prompt the user to enter single-line text (defaults to false)
35090 proxyDrag         Boolean          True to display a lightweight proxy while dragging (defaults to false)
35091 title             String           The title text
35092 value             String           The string value to set into the active textbox element if displayed
35093 wait              Boolean          True to display a progress bar (defaults to false)
35094 width             Number           The width of the dialog in pixels
35095 </pre>
35096          *
35097          * Example usage:
35098          * <pre><code>
35099 Roo.Msg.show({
35100    title: 'Address',
35101    msg: 'Please enter your address:',
35102    width: 300,
35103    buttons: Roo.MessageBox.OKCANCEL,
35104    multiline: true,
35105    fn: saveAddress,
35106    animEl: 'addAddressBtn'
35107 });
35108 </code></pre>
35109          * @param {Object} config Configuration options
35110          * @return {Roo.MessageBox} This message box
35111          */
35112         show : function(options)
35113         {
35114             
35115             // this causes nightmares if you show one dialog after another
35116             // especially on callbacks..
35117              
35118             if(this.isVisible()){
35119                 
35120                 this.hide();
35121                 Roo.log("[Roo.Messagebox] Show called while message displayed:" );
35122                 Roo.log("Old Dialog Message:" +  msgEl.innerHTML );
35123                 Roo.log("New Dialog Message:" +  options.msg )
35124                 //this.alert("ERROR", "Multiple dialogs where displayed at the same time");
35125                 //throw "Roo.MessageBox ERROR : Multiple dialogs where displayed at the same time";
35126                 
35127             }
35128             var d = this.getDialog();
35129             opt = options;
35130             d.setTitle(opt.title || "&#160;");
35131             d.close.setDisplayed(opt.closable !== false);
35132             activeTextEl = textboxEl;
35133             opt.prompt = opt.prompt || (opt.multiline ? true : false);
35134             if(opt.prompt){
35135                 if(opt.multiline){
35136                     textboxEl.hide();
35137                     textareaEl.show();
35138                     textareaEl.setHeight(typeof opt.multiline == "number" ?
35139                         opt.multiline : this.defaultTextHeight);
35140                     activeTextEl = textareaEl;
35141                 }else{
35142                     textboxEl.show();
35143                     textareaEl.hide();
35144                 }
35145             }else{
35146                 textboxEl.hide();
35147                 textareaEl.hide();
35148             }
35149             progressEl.setDisplayed(opt.progress === true);
35150             this.updateProgress(0);
35151             activeTextEl.dom.value = opt.value || "";
35152             if(opt.prompt){
35153                 dlg.setDefaultButton(activeTextEl);
35154             }else{
35155                 var bs = opt.buttons;
35156                 var db = null;
35157                 if(bs && bs.ok){
35158                     db = buttons["ok"];
35159                 }else if(bs && bs.yes){
35160                     db = buttons["yes"];
35161                 }
35162                 dlg.setDefaultButton(db);
35163             }
35164             bwidth = updateButtons(opt.buttons);
35165             this.updateText(opt.msg);
35166             if(opt.cls){
35167                 d.el.addClass(opt.cls);
35168             }
35169             d.proxyDrag = opt.proxyDrag === true;
35170             d.modal = opt.modal !== false;
35171             d.mask = opt.modal !== false ? mask : false;
35172             if(!d.isVisible()){
35173                 // force it to the end of the z-index stack so it gets a cursor in FF
35174                 document.body.appendChild(dlg.el.dom);
35175                 d.animateTarget = null;
35176                 d.show(options.animEl);
35177             }
35178             dlg.toFront();
35179             return this;
35180         },
35181
35182         /**
35183          * Displays a message box with a progress bar.  This message box has no buttons and is not closeable by
35184          * the user.  You are responsible for updating the progress bar as needed via {@link Roo.MessageBox#updateProgress}
35185          * and closing the message box when the process is complete.
35186          * @param {String} title The title bar text
35187          * @param {String} msg The message box body text
35188          * @return {Roo.MessageBox} This message box
35189          */
35190         progress : function(title, msg){
35191             this.show({
35192                 title : title,
35193                 msg : msg,
35194                 buttons: false,
35195                 progress:true,
35196                 closable:false,
35197                 minWidth: this.minProgressWidth,
35198                 modal : true
35199             });
35200             return this;
35201         },
35202
35203         /**
35204          * Displays a standard read-only message box with an OK button (comparable to the basic JavaScript Window.alert).
35205          * If a callback function is passed it will be called after the user clicks the button, and the
35206          * id of the button that was clicked will be passed as the only parameter to the callback
35207          * (could also be the top-right close button).
35208          * @param {String} title The title bar text
35209          * @param {String} msg The message box body text
35210          * @param {Function} fn (optional) The callback function invoked after the message box is closed
35211          * @param {Object} scope (optional) The scope of the callback function
35212          * @return {Roo.MessageBox} This message box
35213          */
35214         alert : function(title, msg, fn, scope){
35215             this.show({
35216                 title : title,
35217                 msg : msg,
35218                 buttons: this.OK,
35219                 fn: fn,
35220                 scope : scope,
35221                 modal : true
35222             });
35223             return this;
35224         },
35225
35226         /**
35227          * Displays a message box with an infinitely auto-updating progress bar.  This can be used to block user
35228          * interaction while waiting for a long-running process to complete that does not have defined intervals.
35229          * You are responsible for closing the message box when the process is complete.
35230          * @param {String} msg The message box body text
35231          * @param {String} title (optional) The title bar text
35232          * @return {Roo.MessageBox} This message box
35233          */
35234         wait : function(msg, title){
35235             this.show({
35236                 title : title,
35237                 msg : msg,
35238                 buttons: false,
35239                 closable:false,
35240                 progress:true,
35241                 modal:true,
35242                 width:300,
35243                 wait:true
35244             });
35245             waitTimer = Roo.TaskMgr.start({
35246                 run: function(i){
35247                     Roo.MessageBox.updateProgress(((((i+20)%20)+1)*5)*.01);
35248                 },
35249                 interval: 1000
35250             });
35251             return this;
35252         },
35253
35254         /**
35255          * Displays a confirmation message box with Yes and No buttons (comparable to JavaScript's Window.confirm).
35256          * If a callback function is passed it will be called after the user clicks either button, and the id of the
35257          * button that was clicked will be passed as the only parameter to the callback (could also be the top-right close button).
35258          * @param {String} title The title bar text
35259          * @param {String} msg The message box body text
35260          * @param {Function} fn (optional) The callback function invoked after the message box is closed
35261          * @param {Object} scope (optional) The scope of the callback function
35262          * @return {Roo.MessageBox} This message box
35263          */
35264         confirm : function(title, msg, fn, scope){
35265             this.show({
35266                 title : title,
35267                 msg : msg,
35268                 buttons: this.YESNO,
35269                 fn: fn,
35270                 scope : scope,
35271                 modal : true
35272             });
35273             return this;
35274         },
35275
35276         /**
35277          * Displays a message box with OK and Cancel buttons prompting the user to enter some text (comparable to
35278          * JavaScript's Window.prompt).  The prompt can be a single-line or multi-line textbox.  If a callback function
35279          * is passed it will be called after the user clicks either button, and the id of the button that was clicked
35280          * (could also be the top-right close button) and the text that was entered will be passed as the two
35281          * parameters to the callback.
35282          * @param {String} title The title bar text
35283          * @param {String} msg The message box body text
35284          * @param {Function} fn (optional) The callback function invoked after the message box is closed
35285          * @param {Object} scope (optional) The scope of the callback function
35286          * @param {Boolean/Number} multiline (optional) True to create a multiline textbox using the defaultTextHeight
35287          * property, or the height in pixels to create the textbox (defaults to false / single-line)
35288          * @return {Roo.MessageBox} This message box
35289          */
35290         prompt : function(title, msg, fn, scope, multiline){
35291             this.show({
35292                 title : title,
35293                 msg : msg,
35294                 buttons: this.OKCANCEL,
35295                 fn: fn,
35296                 minWidth:250,
35297                 scope : scope,
35298                 prompt:true,
35299                 multiline: multiline,
35300                 modal : true
35301             });
35302             return this;
35303         },
35304
35305         /**
35306          * Button config that displays a single OK button
35307          * @type Object
35308          */
35309         OK : {ok:true},
35310         /**
35311          * Button config that displays Yes and No buttons
35312          * @type Object
35313          */
35314         YESNO : {yes:true, no:true},
35315         /**
35316          * Button config that displays OK and Cancel buttons
35317          * @type Object
35318          */
35319         OKCANCEL : {ok:true, cancel:true},
35320         /**
35321          * Button config that displays Yes, No and Cancel buttons
35322          * @type Object
35323          */
35324         YESNOCANCEL : {yes:true, no:true, cancel:true},
35325
35326         /**
35327          * The default height in pixels of the message box's multiline textarea if displayed (defaults to 75)
35328          * @type Number
35329          */
35330         defaultTextHeight : 75,
35331         /**
35332          * The maximum width in pixels of the message box (defaults to 600)
35333          * @type Number
35334          */
35335         maxWidth : 600,
35336         /**
35337          * The minimum width in pixels of the message box (defaults to 100)
35338          * @type Number
35339          */
35340         minWidth : 100,
35341         /**
35342          * The minimum width in pixels of the message box if it is a progress-style dialog.  This is useful
35343          * for setting a different minimum width than text-only dialogs may need (defaults to 250)
35344          * @type Number
35345          */
35346         minProgressWidth : 250,
35347         /**
35348          * An object containing the default button text strings that can be overriden for localized language support.
35349          * Supported properties are: ok, cancel, yes and no.
35350          * Customize the default text like so: Roo.MessageBox.buttonText.yes = "S?";
35351          * @type Object
35352          */
35353         buttonText : {
35354             ok : "OK",
35355             cancel : "Cancel",
35356             yes : "Yes",
35357             no : "No"
35358         }
35359     };
35360 }();
35361
35362 /**
35363  * Shorthand for {@link Roo.MessageBox}
35364  */
35365 Roo.Msg = Roo.MessageBox;/*
35366  * Based on:
35367  * Ext JS Library 1.1.1
35368  * Copyright(c) 2006-2007, Ext JS, LLC.
35369  *
35370  * Originally Released Under LGPL - original licence link has changed is not relivant.
35371  *
35372  * Fork - LGPL
35373  * <script type="text/javascript">
35374  */
35375 /**
35376  * @class Roo.QuickTips
35377  * Provides attractive and customizable tooltips for any element.
35378  * @static
35379  */
35380 Roo.QuickTips = function(){
35381     var el, tipBody, tipBodyText, tipTitle, tm, cfg, close, tagEls = {}, esc, removeCls = null, bdLeft, bdRight;
35382     var ce, bd, xy, dd;
35383     var visible = false, disabled = true, inited = false;
35384     var showProc = 1, hideProc = 1, dismissProc = 1, locks = [];
35385     
35386     var onOver = function(e){
35387         if(disabled){
35388             return;
35389         }
35390         var t = e.getTarget();
35391         if(!t || t.nodeType !== 1 || t == document || t == document.body){
35392             return;
35393         }
35394         if(ce && t == ce.el){
35395             clearTimeout(hideProc);
35396             return;
35397         }
35398         if(t && tagEls[t.id]){
35399             tagEls[t.id].el = t;
35400             showProc = show.defer(tm.showDelay, tm, [tagEls[t.id]]);
35401             return;
35402         }
35403         var ttp, et = Roo.fly(t);
35404         var ns = cfg.namespace;
35405         if(tm.interceptTitles && t.title){
35406             ttp = t.title;
35407             t.qtip = ttp;
35408             t.removeAttribute("title");
35409             e.preventDefault();
35410         }else{
35411             ttp = t.qtip || et.getAttributeNS(ns, cfg.attribute) || et.getAttributeNS(cfg.alt_namespace, cfg.attribute) ;
35412         }
35413         if(ttp){
35414             showProc = show.defer(tm.showDelay, tm, [{
35415                 el: t, 
35416                 text: ttp.replace(/\\n/g,'<br/>'),
35417                 width: et.getAttributeNS(ns, cfg.width),
35418                 autoHide: et.getAttributeNS(ns, cfg.hide) != "user",
35419                 title: et.getAttributeNS(ns, cfg.title),
35420                     cls: et.getAttributeNS(ns, cfg.cls)
35421             }]);
35422         }
35423     };
35424     
35425     var onOut = function(e){
35426         clearTimeout(showProc);
35427         var t = e.getTarget();
35428         if(t && ce && ce.el == t && (tm.autoHide && ce.autoHide !== false)){
35429             hideProc = setTimeout(hide, tm.hideDelay);
35430         }
35431     };
35432     
35433     var onMove = function(e){
35434         if(disabled){
35435             return;
35436         }
35437         xy = e.getXY();
35438         xy[1] += 18;
35439         if(tm.trackMouse && ce){
35440             el.setXY(xy);
35441         }
35442     };
35443     
35444     var onDown = function(e){
35445         clearTimeout(showProc);
35446         clearTimeout(hideProc);
35447         if(!e.within(el)){
35448             if(tm.hideOnClick){
35449                 hide();
35450                 tm.disable();
35451                 tm.enable.defer(100, tm);
35452             }
35453         }
35454     };
35455     
35456     var getPad = function(){
35457         return 2;//bdLeft.getPadding('l')+bdRight.getPadding('r');
35458     };
35459
35460     var show = function(o){
35461         if(disabled){
35462             return;
35463         }
35464         clearTimeout(dismissProc);
35465         ce = o;
35466         if(removeCls){ // in case manually hidden
35467             el.removeClass(removeCls);
35468             removeCls = null;
35469         }
35470         if(ce.cls){
35471             el.addClass(ce.cls);
35472             removeCls = ce.cls;
35473         }
35474         if(ce.title){
35475             tipTitle.update(ce.title);
35476             tipTitle.show();
35477         }else{
35478             tipTitle.update('');
35479             tipTitle.hide();
35480         }
35481         el.dom.style.width  = tm.maxWidth+'px';
35482         //tipBody.dom.style.width = '';
35483         tipBodyText.update(o.text);
35484         var p = getPad(), w = ce.width;
35485         if(!w){
35486             var td = tipBodyText.dom;
35487             var aw = Math.max(td.offsetWidth, td.clientWidth, td.scrollWidth);
35488             if(aw > tm.maxWidth){
35489                 w = tm.maxWidth;
35490             }else if(aw < tm.minWidth){
35491                 w = tm.minWidth;
35492             }else{
35493                 w = aw;
35494             }
35495         }
35496         //tipBody.setWidth(w);
35497         el.setWidth(parseInt(w, 10) + p);
35498         if(ce.autoHide === false){
35499             close.setDisplayed(true);
35500             if(dd){
35501                 dd.unlock();
35502             }
35503         }else{
35504             close.setDisplayed(false);
35505             if(dd){
35506                 dd.lock();
35507             }
35508         }
35509         if(xy){
35510             el.avoidY = xy[1]-18;
35511             el.setXY(xy);
35512         }
35513         if(tm.animate){
35514             el.setOpacity(.1);
35515             el.setStyle("visibility", "visible");
35516             el.fadeIn({callback: afterShow});
35517         }else{
35518             afterShow();
35519         }
35520     };
35521     
35522     var afterShow = function(){
35523         if(ce){
35524             el.show();
35525             esc.enable();
35526             if(tm.autoDismiss && ce.autoHide !== false){
35527                 dismissProc = setTimeout(hide, tm.autoDismissDelay);
35528             }
35529         }
35530     };
35531     
35532     var hide = function(noanim){
35533         clearTimeout(dismissProc);
35534         clearTimeout(hideProc);
35535         ce = null;
35536         if(el.isVisible()){
35537             esc.disable();
35538             if(noanim !== true && tm.animate){
35539                 el.fadeOut({callback: afterHide});
35540             }else{
35541                 afterHide();
35542             } 
35543         }
35544     };
35545     
35546     var afterHide = function(){
35547         el.hide();
35548         if(removeCls){
35549             el.removeClass(removeCls);
35550             removeCls = null;
35551         }
35552     };
35553     
35554     return {
35555         /**
35556         * @cfg {Number} minWidth
35557         * The minimum width of the quick tip (defaults to 40)
35558         */
35559        minWidth : 40,
35560         /**
35561         * @cfg {Number} maxWidth
35562         * The maximum width of the quick tip (defaults to 300)
35563         */
35564        maxWidth : 300,
35565         /**
35566         * @cfg {Boolean} interceptTitles
35567         * True to automatically use the element's DOM title value if available (defaults to false)
35568         */
35569        interceptTitles : false,
35570         /**
35571         * @cfg {Boolean} trackMouse
35572         * True to have the quick tip follow the mouse as it moves over the target element (defaults to false)
35573         */
35574        trackMouse : false,
35575         /**
35576         * @cfg {Boolean} hideOnClick
35577         * True to hide the quick tip if the user clicks anywhere in the document (defaults to true)
35578         */
35579        hideOnClick : true,
35580         /**
35581         * @cfg {Number} showDelay
35582         * Delay in milliseconds before the quick tip displays after the mouse enters the target element (defaults to 500)
35583         */
35584        showDelay : 500,
35585         /**
35586         * @cfg {Number} hideDelay
35587         * Delay in milliseconds before the quick tip hides when autoHide = true (defaults to 200)
35588         */
35589        hideDelay : 200,
35590         /**
35591         * @cfg {Boolean} autoHide
35592         * True to automatically hide the quick tip after the mouse exits the target element (defaults to true).
35593         * Used in conjunction with hideDelay.
35594         */
35595        autoHide : true,
35596         /**
35597         * @cfg {Boolean}
35598         * True to automatically hide the quick tip after a set period of time, regardless of the user's actions
35599         * (defaults to true).  Used in conjunction with autoDismissDelay.
35600         */
35601        autoDismiss : true,
35602         /**
35603         * @cfg {Number}
35604         * Delay in milliseconds before the quick tip hides when autoDismiss = true (defaults to 5000)
35605         */
35606        autoDismissDelay : 5000,
35607        /**
35608         * @cfg {Boolean} animate
35609         * True to turn on fade animation. Defaults to false (ClearType/scrollbar flicker issues in IE7).
35610         */
35611        animate : false,
35612
35613        /**
35614         * @cfg {String} title
35615         * Title text to display (defaults to '').  This can be any valid HTML markup.
35616         */
35617         title: '',
35618        /**
35619         * @cfg {String} text
35620         * Body text to display (defaults to '').  This can be any valid HTML markup.
35621         */
35622         text : '',
35623        /**
35624         * @cfg {String} cls
35625         * A CSS class to apply to the base quick tip element (defaults to '').
35626         */
35627         cls : '',
35628        /**
35629         * @cfg {Number} width
35630         * Width in pixels of the quick tip (defaults to auto).  Width will be ignored if it exceeds the bounds of
35631         * minWidth or maxWidth.
35632         */
35633         width : null,
35634
35635     /**
35636      * Initialize and enable QuickTips for first use.  This should be called once before the first attempt to access
35637      * or display QuickTips in a page.
35638      */
35639        init : function(){
35640           tm = Roo.QuickTips;
35641           cfg = tm.tagConfig;
35642           if(!inited){
35643               if(!Roo.isReady){ // allow calling of init() before onReady
35644                   Roo.onReady(Roo.QuickTips.init, Roo.QuickTips);
35645                   return;
35646               }
35647               el = new Roo.Layer({cls:"x-tip", shadow:"drop", shim: true, constrain:true, shadowOffset:4});
35648               el.fxDefaults = {stopFx: true};
35649               // maximum custom styling
35650               //el.update('<div class="x-tip-top-left"><div class="x-tip-top-right"><div class="x-tip-top"></div></div></div><div class="x-tip-bd-left"><div class="x-tip-bd-right"><div class="x-tip-bd"><div class="x-tip-close"></div><h3></h3><div class="x-tip-bd-inner"></div><div class="x-clear"></div></div></div></div><div class="x-tip-ft-left"><div class="x-tip-ft-right"><div class="x-tip-ft"></div></div></div>');
35651               el.update('<div class="x-tip-bd"><div class="x-tip-close"></div><h3></h3><div class="x-tip-bd-inner"></div><div class="x-clear"></div></div>');              
35652               tipTitle = el.child('h3');
35653               tipTitle.enableDisplayMode("block");
35654               tipBody = el.child('div.x-tip-bd');
35655               tipBodyText = el.child('div.x-tip-bd-inner');
35656               //bdLeft = el.child('div.x-tip-bd-left');
35657               //bdRight = el.child('div.x-tip-bd-right');
35658               close = el.child('div.x-tip-close');
35659               close.enableDisplayMode("block");
35660               close.on("click", hide);
35661               var d = Roo.get(document);
35662               d.on("mousedown", onDown);
35663               d.on("mouseover", onOver);
35664               d.on("mouseout", onOut);
35665               d.on("mousemove", onMove);
35666               esc = d.addKeyListener(27, hide);
35667               esc.disable();
35668               if(Roo.dd.DD){
35669                   dd = el.initDD("default", null, {
35670                       onDrag : function(){
35671                           el.sync();  
35672                       }
35673                   });
35674                   dd.setHandleElId(tipTitle.id);
35675                   dd.lock();
35676               }
35677               inited = true;
35678           }
35679           this.enable(); 
35680        },
35681
35682     /**
35683      * Configures a new quick tip instance and assigns it to a target element.  The following config options
35684      * are supported:
35685      * <pre>
35686 Property    Type                   Description
35687 ----------  ---------------------  ------------------------------------------------------------------------
35688 target      Element/String/Array   An Element, id or array of ids that this quick tip should be tied to
35689      * </ul>
35690      * @param {Object} config The config object
35691      */
35692        register : function(config){
35693            var cs = config instanceof Array ? config : arguments;
35694            for(var i = 0, len = cs.length; i < len; i++) {
35695                var c = cs[i];
35696                var target = c.target;
35697                if(target){
35698                    if(target instanceof Array){
35699                        for(var j = 0, jlen = target.length; j < jlen; j++){
35700                            tagEls[target[j]] = c;
35701                        }
35702                    }else{
35703                        tagEls[typeof target == 'string' ? target : Roo.id(target)] = c;
35704                    }
35705                }
35706            }
35707        },
35708
35709     /**
35710      * Removes this quick tip from its element and destroys it.
35711      * @param {String/HTMLElement/Element} el The element from which the quick tip is to be removed.
35712      */
35713        unregister : function(el){
35714            delete tagEls[Roo.id(el)];
35715        },
35716
35717     /**
35718      * Enable this quick tip.
35719      */
35720        enable : function(){
35721            if(inited && disabled){
35722                locks.pop();
35723                if(locks.length < 1){
35724                    disabled = false;
35725                }
35726            }
35727        },
35728
35729     /**
35730      * Disable this quick tip.
35731      */
35732        disable : function(){
35733           disabled = true;
35734           clearTimeout(showProc);
35735           clearTimeout(hideProc);
35736           clearTimeout(dismissProc);
35737           if(ce){
35738               hide(true);
35739           }
35740           locks.push(1);
35741        },
35742
35743     /**
35744      * Returns true if the quick tip is enabled, else false.
35745      */
35746        isEnabled : function(){
35747             return !disabled;
35748        },
35749
35750         // private
35751        tagConfig : {
35752            namespace : "roo", // was ext?? this may break..
35753            alt_namespace : "ext",
35754            attribute : "qtip",
35755            width : "width",
35756            target : "target",
35757            title : "qtitle",
35758            hide : "hide",
35759            cls : "qclass"
35760        }
35761    };
35762 }();
35763
35764 // backwards compat
35765 Roo.QuickTips.tips = Roo.QuickTips.register;/*
35766  * Based on:
35767  * Ext JS Library 1.1.1
35768  * Copyright(c) 2006-2007, Ext JS, LLC.
35769  *
35770  * Originally Released Under LGPL - original licence link has changed is not relivant.
35771  *
35772  * Fork - LGPL
35773  * <script type="text/javascript">
35774  */
35775  
35776
35777 /**
35778  * @class Roo.tree.TreePanel
35779  * @extends Roo.data.Tree
35780  * @cfg {Roo.tree.TreeNode} root The root node
35781  * @cfg {Boolean} rootVisible false to hide the root node (defaults to true)
35782  * @cfg {Boolean} lines false to disable tree lines (defaults to true)
35783  * @cfg {Boolean} enableDD true to enable drag and drop
35784  * @cfg {Boolean} enableDrag true to enable just drag
35785  * @cfg {Boolean} enableDrop true to enable just drop
35786  * @cfg {Object} dragConfig Custom config to pass to the {@link Roo.tree.TreeDragZone} instance
35787  * @cfg {Object} dropConfig Custom config to pass to the {@link Roo.tree.TreeDropZone} instance
35788  * @cfg {String} ddGroup The DD group this TreePanel belongs to
35789  * @cfg {String} ddAppendOnly True if the tree should only allow append drops (use for trees which are sorted)
35790  * @cfg {Boolean} ddScroll true to enable YUI body scrolling
35791  * @cfg {Boolean} containerScroll true to register this container with ScrollManager
35792  * @cfg {Boolean} hlDrop false to disable node highlight on drop (defaults to the value of Roo.enableFx)
35793  * @cfg {String} hlColor The color of the node highlight (defaults to C3DAF9)
35794  * @cfg {Boolean} animate true to enable animated expand/collapse (defaults to the value of Roo.enableFx)
35795  * @cfg {Boolean} singleExpand true if only 1 node per branch may be expanded
35796  * @cfg {Boolean} selModel A tree selection model to use with this TreePanel (defaults to a {@link Roo.tree.DefaultSelectionModel})
35797  * @cfg {Roo.tree.TreeLoader} loader A TreeLoader for use with this TreePanel
35798  * @cfg {Roo.tree.TreeEditor} editor The TreeEditor to display when clicked.
35799  * @cfg {String} pathSeparator The token used to separate sub-paths in path strings (defaults to '/')
35800  * @cfg {Function} renderer DEPRECATED - use TreeLoader:create event / Sets the rendering (formatting) function for the nodes. to return HTML markup for the tree view. The render function is called with  the following parameters:<ul><li>The {Object} The data for the node.</li></ul>
35801  * @cfg {Function} rendererTip DEPRECATED - use TreeLoader:create event / Sets the rendering (formatting) function for the nodes hovertip to return HTML markup for the tree view. The render function is called with  the following parameters:<ul><li>The {Object} The data for the node.</li></ul>
35802  * 
35803  * @constructor
35804  * @param {String/HTMLElement/Element} el The container element
35805  * @param {Object} config
35806  */
35807 Roo.tree.TreePanel = function(el, config){
35808     var root = false;
35809     var loader = false;
35810     if (config.root) {
35811         root = config.root;
35812         delete config.root;
35813     }
35814     if (config.loader) {
35815         loader = config.loader;
35816         delete config.loader;
35817     }
35818     
35819     Roo.apply(this, config);
35820     Roo.tree.TreePanel.superclass.constructor.call(this);
35821     this.el = Roo.get(el);
35822     this.el.addClass('x-tree');
35823     //console.log(root);
35824     if (root) {
35825         this.setRootNode( Roo.factory(root, Roo.tree));
35826     }
35827     if (loader) {
35828         this.loader = Roo.factory(loader, Roo.tree);
35829     }
35830    /**
35831     * Read-only. The id of the container element becomes this TreePanel's id.
35832     */
35833     this.id = this.el.id;
35834     this.addEvents({
35835         /**
35836         * @event beforeload
35837         * Fires before a node is loaded, return false to cancel
35838         * @param {Node} node The node being loaded
35839         */
35840         "beforeload" : true,
35841         /**
35842         * @event load
35843         * Fires when a node is loaded
35844         * @param {Node} node The node that was loaded
35845         */
35846         "load" : true,
35847         /**
35848         * @event textchange
35849         * Fires when the text for a node is changed
35850         * @param {Node} node The node
35851         * @param {String} text The new text
35852         * @param {String} oldText The old text
35853         */
35854         "textchange" : true,
35855         /**
35856         * @event beforeexpand
35857         * Fires before a node is expanded, return false to cancel.
35858         * @param {Node} node The node
35859         * @param {Boolean} deep
35860         * @param {Boolean} anim
35861         */
35862         "beforeexpand" : true,
35863         /**
35864         * @event beforecollapse
35865         * Fires before a node is collapsed, return false to cancel.
35866         * @param {Node} node The node
35867         * @param {Boolean} deep
35868         * @param {Boolean} anim
35869         */
35870         "beforecollapse" : true,
35871         /**
35872         * @event expand
35873         * Fires when a node is expanded
35874         * @param {Node} node The node
35875         */
35876         "expand" : true,
35877         /**
35878         * @event disabledchange
35879         * Fires when the disabled status of a node changes
35880         * @param {Node} node The node
35881         * @param {Boolean} disabled
35882         */
35883         "disabledchange" : true,
35884         /**
35885         * @event collapse
35886         * Fires when a node is collapsed
35887         * @param {Node} node The node
35888         */
35889         "collapse" : true,
35890         /**
35891         * @event beforeclick
35892         * Fires before click processing on a node. Return false to cancel the default action.
35893         * @param {Node} node The node
35894         * @param {Roo.EventObject} e The event object
35895         */
35896         "beforeclick":true,
35897         /**
35898         * @event checkchange
35899         * Fires when a node with a checkbox's checked property changes
35900         * @param {Node} this This node
35901         * @param {Boolean} checked
35902         */
35903         "checkchange":true,
35904         /**
35905         * @event click
35906         * Fires when a node is clicked
35907         * @param {Node} node The node
35908         * @param {Roo.EventObject} e The event object
35909         */
35910         "click":true,
35911         /**
35912         * @event dblclick
35913         * Fires when a node is double clicked
35914         * @param {Node} node The node
35915         * @param {Roo.EventObject} e The event object
35916         */
35917         "dblclick":true,
35918         /**
35919         * @event contextmenu
35920         * Fires when a node is right clicked
35921         * @param {Node} node The node
35922         * @param {Roo.EventObject} e The event object
35923         */
35924         "contextmenu":true,
35925         /**
35926         * @event beforechildrenrendered
35927         * Fires right before the child nodes for a node are rendered
35928         * @param {Node} node The node
35929         */
35930         "beforechildrenrendered":true,
35931         /**
35932         * @event startdrag
35933         * Fires when a node starts being dragged
35934         * @param {Roo.tree.TreePanel} this
35935         * @param {Roo.tree.TreeNode} node
35936         * @param {event} e The raw browser event
35937         */ 
35938        "startdrag" : true,
35939        /**
35940         * @event enddrag
35941         * Fires when a drag operation is complete
35942         * @param {Roo.tree.TreePanel} this
35943         * @param {Roo.tree.TreeNode} node
35944         * @param {event} e The raw browser event
35945         */
35946        "enddrag" : true,
35947        /**
35948         * @event dragdrop
35949         * Fires when a dragged node is dropped on a valid DD target
35950         * @param {Roo.tree.TreePanel} this
35951         * @param {Roo.tree.TreeNode} node
35952         * @param {DD} dd The dd it was dropped on
35953         * @param {event} e The raw browser event
35954         */
35955        "dragdrop" : true,
35956        /**
35957         * @event beforenodedrop
35958         * Fires when a DD object is dropped on a node in this tree for preprocessing. Return false to cancel the drop. The dropEvent
35959         * passed to handlers has the following properties:<br />
35960         * <ul style="padding:5px;padding-left:16px;">
35961         * <li>tree - The TreePanel</li>
35962         * <li>target - The node being targeted for the drop</li>
35963         * <li>data - The drag data from the drag source</li>
35964         * <li>point - The point of the drop - append, above or below</li>
35965         * <li>source - The drag source</li>
35966         * <li>rawEvent - Raw mouse event</li>
35967         * <li>dropNode - Drop node(s) provided by the source <b>OR</b> you can supply node(s)
35968         * to be inserted by setting them on this object.</li>
35969         * <li>cancel - Set this to true to cancel the drop.</li>
35970         * </ul>
35971         * @param {Object} dropEvent
35972         */
35973        "beforenodedrop" : true,
35974        /**
35975         * @event nodedrop
35976         * Fires after a DD object is dropped on a node in this tree. The dropEvent
35977         * passed to handlers has the following properties:<br />
35978         * <ul style="padding:5px;padding-left:16px;">
35979         * <li>tree - The TreePanel</li>
35980         * <li>target - The node being targeted for the drop</li>
35981         * <li>data - The drag data from the drag source</li>
35982         * <li>point - The point of the drop - append, above or below</li>
35983         * <li>source - The drag source</li>
35984         * <li>rawEvent - Raw mouse event</li>
35985         * <li>dropNode - Dropped node(s).</li>
35986         * </ul>
35987         * @param {Object} dropEvent
35988         */
35989        "nodedrop" : true,
35990         /**
35991         * @event nodedragover
35992         * Fires when a tree node is being targeted for a drag drop, return false to signal drop not allowed. The dragOverEvent
35993         * passed to handlers has the following properties:<br />
35994         * <ul style="padding:5px;padding-left:16px;">
35995         * <li>tree - The TreePanel</li>
35996         * <li>target - The node being targeted for the drop</li>
35997         * <li>data - The drag data from the drag source</li>
35998         * <li>point - The point of the drop - append, above or below</li>
35999         * <li>source - The drag source</li>
36000         * <li>rawEvent - Raw mouse event</li>
36001         * <li>dropNode - Drop node(s) provided by the source.</li>
36002         * <li>cancel - Set this to true to signal drop not allowed.</li>
36003         * </ul>
36004         * @param {Object} dragOverEvent
36005         */
36006        "nodedragover" : true,
36007        /**
36008         * @event appendnode
36009         * Fires when append node to the tree
36010         * @param {Roo.tree.TreePanel} this
36011         * @param {Roo.tree.TreeNode} node
36012         * @param {Number} index The index of the newly appended node
36013         */
36014        "appendnode" : true
36015         
36016     });
36017     if(this.singleExpand){
36018        this.on("beforeexpand", this.restrictExpand, this);
36019     }
36020     if (this.editor) {
36021         this.editor.tree = this;
36022         this.editor = Roo.factory(this.editor, Roo.tree);
36023     }
36024     
36025     if (this.selModel) {
36026         this.selModel = Roo.factory(this.selModel, Roo.tree);
36027     }
36028    
36029 };
36030 Roo.extend(Roo.tree.TreePanel, Roo.data.Tree, {
36031     rootVisible : true,
36032     animate: Roo.enableFx,
36033     lines : true,
36034     enableDD : false,
36035     hlDrop : Roo.enableFx,
36036   
36037     renderer: false,
36038     
36039     rendererTip: false,
36040     // private
36041     restrictExpand : function(node){
36042         var p = node.parentNode;
36043         if(p){
36044             if(p.expandedChild && p.expandedChild.parentNode == p){
36045                 p.expandedChild.collapse();
36046             }
36047             p.expandedChild = node;
36048         }
36049     },
36050
36051     // private override
36052     setRootNode : function(node){
36053         Roo.tree.TreePanel.superclass.setRootNode.call(this, node);
36054         if(!this.rootVisible){
36055             node.ui = new Roo.tree.RootTreeNodeUI(node);
36056         }
36057         return node;
36058     },
36059
36060     /**
36061      * Returns the container element for this TreePanel
36062      */
36063     getEl : function(){
36064         return this.el;
36065     },
36066
36067     /**
36068      * Returns the default TreeLoader for this TreePanel
36069      */
36070     getLoader : function(){
36071         return this.loader;
36072     },
36073
36074     /**
36075      * Expand all nodes
36076      */
36077     expandAll : function(){
36078         this.root.expand(true);
36079     },
36080
36081     /**
36082      * Collapse all nodes
36083      */
36084     collapseAll : function(){
36085         this.root.collapse(true);
36086     },
36087
36088     /**
36089      * Returns the selection model used by this TreePanel
36090      */
36091     getSelectionModel : function(){
36092         if(!this.selModel){
36093             this.selModel = new Roo.tree.DefaultSelectionModel();
36094         }
36095         return this.selModel;
36096     },
36097
36098     /**
36099      * Retrieve an array of checked nodes, or an array of a specific attribute of checked nodes (e.g. "id")
36100      * @param {String} attribute (optional) Defaults to null (return the actual nodes)
36101      * @param {TreeNode} startNode (optional) The node to start from, defaults to the root
36102      * @return {Array}
36103      */
36104     getChecked : function(a, startNode){
36105         startNode = startNode || this.root;
36106         var r = [];
36107         var f = function(){
36108             if(this.attributes.checked){
36109                 r.push(!a ? this : (a == 'id' ? this.id : this.attributes[a]));
36110             }
36111         }
36112         startNode.cascade(f);
36113         return r;
36114     },
36115
36116     /**
36117      * Expands a specified path in this TreePanel. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
36118      * @param {String} path
36119      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
36120      * @param {Function} callback (optional) The callback to call when the expand is complete. The callback will be called with
36121      * (bSuccess, oLastNode) where bSuccess is if the expand was successful and oLastNode is the last node that was expanded.
36122      */
36123     expandPath : function(path, attr, callback){
36124         attr = attr || "id";
36125         var keys = path.split(this.pathSeparator);
36126         var curNode = this.root;
36127         if(curNode.attributes[attr] != keys[1]){ // invalid root
36128             if(callback){
36129                 callback(false, null);
36130             }
36131             return;
36132         }
36133         var index = 1;
36134         var f = function(){
36135             if(++index == keys.length){
36136                 if(callback){
36137                     callback(true, curNode);
36138                 }
36139                 return;
36140             }
36141             var c = curNode.findChild(attr, keys[index]);
36142             if(!c){
36143                 if(callback){
36144                     callback(false, curNode);
36145                 }
36146                 return;
36147             }
36148             curNode = c;
36149             c.expand(false, false, f);
36150         };
36151         curNode.expand(false, false, f);
36152     },
36153
36154     /**
36155      * Selects the node in this tree at the specified path. A path can be retrieved from a node with {@link Roo.data.Node#getPath}
36156      * @param {String} path
36157      * @param {String} attr (optional) The attribute used in the path (see {@link Roo.data.Node#getPath} for more info)
36158      * @param {Function} callback (optional) The callback to call when the selection is complete. The callback will be called with
36159      * (bSuccess, oSelNode) where bSuccess is if the selection was successful and oSelNode is the selected node.
36160      */
36161     selectPath : function(path, attr, callback){
36162         attr = attr || "id";
36163         var keys = path.split(this.pathSeparator);
36164         var v = keys.pop();
36165         if(keys.length > 0){
36166             var f = function(success, node){
36167                 if(success && node){
36168                     var n = node.findChild(attr, v);
36169                     if(n){
36170                         n.select();
36171                         if(callback){
36172                             callback(true, n);
36173                         }
36174                     }else if(callback){
36175                         callback(false, n);
36176                     }
36177                 }else{
36178                     if(callback){
36179                         callback(false, n);
36180                     }
36181                 }
36182             };
36183             this.expandPath(keys.join(this.pathSeparator), attr, f);
36184         }else{
36185             this.root.select();
36186             if(callback){
36187                 callback(true, this.root);
36188             }
36189         }
36190     },
36191
36192     getTreeEl : function(){
36193         return this.el;
36194     },
36195
36196     /**
36197      * Trigger rendering of this TreePanel
36198      */
36199     render : function(){
36200         if (this.innerCt) {
36201             return this; // stop it rendering more than once!!
36202         }
36203         
36204         this.innerCt = this.el.createChild({tag:"ul",
36205                cls:"x-tree-root-ct " +
36206                (this.lines ? "x-tree-lines" : "x-tree-no-lines")});
36207
36208         if(this.containerScroll){
36209             Roo.dd.ScrollManager.register(this.el);
36210         }
36211         if((this.enableDD || this.enableDrop) && !this.dropZone){
36212            /**
36213             * The dropZone used by this tree if drop is enabled
36214             * @type Roo.tree.TreeDropZone
36215             */
36216              this.dropZone = new Roo.tree.TreeDropZone(this, this.dropConfig || {
36217                ddGroup: this.ddGroup || "TreeDD", appendOnly: this.ddAppendOnly === true
36218            });
36219         }
36220         if((this.enableDD || this.enableDrag) && !this.dragZone){
36221            /**
36222             * The dragZone used by this tree if drag is enabled
36223             * @type Roo.tree.TreeDragZone
36224             */
36225             this.dragZone = new Roo.tree.TreeDragZone(this, this.dragConfig || {
36226                ddGroup: this.ddGroup || "TreeDD",
36227                scroll: this.ddScroll
36228            });
36229         }
36230         this.getSelectionModel().init(this);
36231         if (!this.root) {
36232             Roo.log("ROOT not set in tree");
36233             return this;
36234         }
36235         this.root.render();
36236         if(!this.rootVisible){
36237             this.root.renderChildren();
36238         }
36239         return this;
36240     }
36241 });/*
36242  * Based on:
36243  * Ext JS Library 1.1.1
36244  * Copyright(c) 2006-2007, Ext JS, LLC.
36245  *
36246  * Originally Released Under LGPL - original licence link has changed is not relivant.
36247  *
36248  * Fork - LGPL
36249  * <script type="text/javascript">
36250  */
36251  
36252
36253 /**
36254  * @class Roo.tree.DefaultSelectionModel
36255  * @extends Roo.util.Observable
36256  * The default single selection for a TreePanel.
36257  * @param {Object} cfg Configuration
36258  */
36259 Roo.tree.DefaultSelectionModel = function(cfg){
36260    this.selNode = null;
36261    
36262    
36263    
36264    this.addEvents({
36265        /**
36266         * @event selectionchange
36267         * Fires when the selected node changes
36268         * @param {DefaultSelectionModel} this
36269         * @param {TreeNode} node the new selection
36270         */
36271        "selectionchange" : true,
36272
36273        /**
36274         * @event beforeselect
36275         * Fires before the selected node changes, return false to cancel the change
36276         * @param {DefaultSelectionModel} this
36277         * @param {TreeNode} node the new selection
36278         * @param {TreeNode} node the old selection
36279         */
36280        "beforeselect" : true
36281    });
36282    
36283     Roo.tree.DefaultSelectionModel.superclass.constructor.call(this,cfg);
36284 };
36285
36286 Roo.extend(Roo.tree.DefaultSelectionModel, Roo.util.Observable, {
36287     init : function(tree){
36288         this.tree = tree;
36289         tree.getTreeEl().on("keydown", this.onKeyDown, this);
36290         tree.on("click", this.onNodeClick, this);
36291     },
36292     
36293     onNodeClick : function(node, e){
36294         if (e.ctrlKey && this.selNode == node)  {
36295             this.unselect(node);
36296             return;
36297         }
36298         this.select(node);
36299     },
36300     
36301     /**
36302      * Select a node.
36303      * @param {TreeNode} node The node to select
36304      * @return {TreeNode} The selected node
36305      */
36306     select : function(node){
36307         var last = this.selNode;
36308         if(last != node && this.fireEvent('beforeselect', this, node, last) !== false){
36309             if(last){
36310                 last.ui.onSelectedChange(false);
36311             }
36312             this.selNode = node;
36313             node.ui.onSelectedChange(true);
36314             this.fireEvent("selectionchange", this, node, last);
36315         }
36316         return node;
36317     },
36318     
36319     /**
36320      * Deselect a node.
36321      * @param {TreeNode} node The node to unselect
36322      */
36323     unselect : function(node){
36324         if(this.selNode == node){
36325             this.clearSelections();
36326         }    
36327     },
36328     
36329     /**
36330      * Clear all selections
36331      */
36332     clearSelections : function(){
36333         var n = this.selNode;
36334         if(n){
36335             n.ui.onSelectedChange(false);
36336             this.selNode = null;
36337             this.fireEvent("selectionchange", this, null);
36338         }
36339         return n;
36340     },
36341     
36342     /**
36343      * Get the selected node
36344      * @return {TreeNode} The selected node
36345      */
36346     getSelectedNode : function(){
36347         return this.selNode;    
36348     },
36349     
36350     /**
36351      * Returns true if the node is selected
36352      * @param {TreeNode} node The node to check
36353      * @return {Boolean}
36354      */
36355     isSelected : function(node){
36356         return this.selNode == node;  
36357     },
36358
36359     /**
36360      * Selects the node above the selected node in the tree, intelligently walking the nodes
36361      * @return TreeNode The new selection
36362      */
36363     selectPrevious : function(){
36364         var s = this.selNode || this.lastSelNode;
36365         if(!s){
36366             return null;
36367         }
36368         var ps = s.previousSibling;
36369         if(ps){
36370             if(!ps.isExpanded() || ps.childNodes.length < 1){
36371                 return this.select(ps);
36372             } else{
36373                 var lc = ps.lastChild;
36374                 while(lc && lc.isExpanded() && lc.childNodes.length > 0){
36375                     lc = lc.lastChild;
36376                 }
36377                 return this.select(lc);
36378             }
36379         } else if(s.parentNode && (this.tree.rootVisible || !s.parentNode.isRoot)){
36380             return this.select(s.parentNode);
36381         }
36382         return null;
36383     },
36384
36385     /**
36386      * Selects the node above the selected node in the tree, intelligently walking the nodes
36387      * @return TreeNode The new selection
36388      */
36389     selectNext : function(){
36390         var s = this.selNode || this.lastSelNode;
36391         if(!s){
36392             return null;
36393         }
36394         if(s.firstChild && s.isExpanded()){
36395              return this.select(s.firstChild);
36396          }else if(s.nextSibling){
36397              return this.select(s.nextSibling);
36398          }else if(s.parentNode){
36399             var newS = null;
36400             s.parentNode.bubble(function(){
36401                 if(this.nextSibling){
36402                     newS = this.getOwnerTree().selModel.select(this.nextSibling);
36403                     return false;
36404                 }
36405             });
36406             return newS;
36407          }
36408         return null;
36409     },
36410
36411     onKeyDown : function(e){
36412         var s = this.selNode || this.lastSelNode;
36413         // undesirable, but required
36414         var sm = this;
36415         if(!s){
36416             return;
36417         }
36418         var k = e.getKey();
36419         switch(k){
36420              case e.DOWN:
36421                  e.stopEvent();
36422                  this.selectNext();
36423              break;
36424              case e.UP:
36425                  e.stopEvent();
36426                  this.selectPrevious();
36427              break;
36428              case e.RIGHT:
36429                  e.preventDefault();
36430                  if(s.hasChildNodes()){
36431                      if(!s.isExpanded()){
36432                          s.expand();
36433                      }else if(s.firstChild){
36434                          this.select(s.firstChild, e);
36435                      }
36436                  }
36437              break;
36438              case e.LEFT:
36439                  e.preventDefault();
36440                  if(s.hasChildNodes() && s.isExpanded()){
36441                      s.collapse();
36442                  }else if(s.parentNode && (this.tree.rootVisible || s.parentNode != this.tree.getRootNode())){
36443                      this.select(s.parentNode, e);
36444                  }
36445              break;
36446         };
36447     }
36448 });
36449
36450 /**
36451  * @class Roo.tree.MultiSelectionModel
36452  * @extends Roo.util.Observable
36453  * Multi selection for a TreePanel.
36454  * @param {Object} cfg Configuration
36455  */
36456 Roo.tree.MultiSelectionModel = function(){
36457    this.selNodes = [];
36458    this.selMap = {};
36459    this.addEvents({
36460        /**
36461         * @event selectionchange
36462         * Fires when the selected nodes change
36463         * @param {MultiSelectionModel} this
36464         * @param {Array} nodes Array of the selected nodes
36465         */
36466        "selectionchange" : true
36467    });
36468    Roo.tree.MultiSelectionModel.superclass.constructor.call(this,cfg);
36469    
36470 };
36471
36472 Roo.extend(Roo.tree.MultiSelectionModel, Roo.util.Observable, {
36473     init : function(tree){
36474         this.tree = tree;
36475         tree.getTreeEl().on("keydown", this.onKeyDown, this);
36476         tree.on("click", this.onNodeClick, this);
36477     },
36478     
36479     onNodeClick : function(node, e){
36480         this.select(node, e, e.ctrlKey);
36481     },
36482     
36483     /**
36484      * Select a node.
36485      * @param {TreeNode} node The node to select
36486      * @param {EventObject} e (optional) An event associated with the selection
36487      * @param {Boolean} keepExisting True to retain existing selections
36488      * @return {TreeNode} The selected node
36489      */
36490     select : function(node, e, keepExisting){
36491         if(keepExisting !== true){
36492             this.clearSelections(true);
36493         }
36494         if(this.isSelected(node)){
36495             this.lastSelNode = node;
36496             return node;
36497         }
36498         this.selNodes.push(node);
36499         this.selMap[node.id] = node;
36500         this.lastSelNode = node;
36501         node.ui.onSelectedChange(true);
36502         this.fireEvent("selectionchange", this, this.selNodes);
36503         return node;
36504     },
36505     
36506     /**
36507      * Deselect a node.
36508      * @param {TreeNode} node The node to unselect
36509      */
36510     unselect : function(node){
36511         if(this.selMap[node.id]){
36512             node.ui.onSelectedChange(false);
36513             var sn = this.selNodes;
36514             var index = -1;
36515             if(sn.indexOf){
36516                 index = sn.indexOf(node);
36517             }else{
36518                 for(var i = 0, len = sn.length; i < len; i++){
36519                     if(sn[i] == node){
36520                         index = i;
36521                         break;
36522                     }
36523                 }
36524             }
36525             if(index != -1){
36526                 this.selNodes.splice(index, 1);
36527             }
36528             delete this.selMap[node.id];
36529             this.fireEvent("selectionchange", this, this.selNodes);
36530         }
36531     },
36532     
36533     /**
36534      * Clear all selections
36535      */
36536     clearSelections : function(suppressEvent){
36537         var sn = this.selNodes;
36538         if(sn.length > 0){
36539             for(var i = 0, len = sn.length; i < len; i++){
36540                 sn[i].ui.onSelectedChange(false);
36541             }
36542             this.selNodes = [];
36543             this.selMap = {};
36544             if(suppressEvent !== true){
36545                 this.fireEvent("selectionchange", this, this.selNodes);
36546             }
36547         }
36548     },
36549     
36550     /**
36551      * Returns true if the node is selected
36552      * @param {TreeNode} node The node to check
36553      * @return {Boolean}
36554      */
36555     isSelected : function(node){
36556         return this.selMap[node.id] ? true : false;  
36557     },
36558     
36559     /**
36560      * Returns an array of the selected nodes
36561      * @return {Array}
36562      */
36563     getSelectedNodes : function(){
36564         return this.selNodes;    
36565     },
36566
36567     onKeyDown : Roo.tree.DefaultSelectionModel.prototype.onKeyDown,
36568
36569     selectNext : Roo.tree.DefaultSelectionModel.prototype.selectNext,
36570
36571     selectPrevious : Roo.tree.DefaultSelectionModel.prototype.selectPrevious
36572 });/*
36573  * Based on:
36574  * Ext JS Library 1.1.1
36575  * Copyright(c) 2006-2007, Ext JS, LLC.
36576  *
36577  * Originally Released Under LGPL - original licence link has changed is not relivant.
36578  *
36579  * Fork - LGPL
36580  * <script type="text/javascript">
36581  */
36582  
36583 /**
36584  * @class Roo.tree.TreeNode
36585  * @extends Roo.data.Node
36586  * @cfg {String} text The text for this node
36587  * @cfg {Boolean} expanded true to start the node expanded
36588  * @cfg {Boolean} allowDrag false to make this node undraggable if DD is on (defaults to true)
36589  * @cfg {Boolean} allowDrop false if this node cannot be drop on
36590  * @cfg {Boolean} disabled true to start the node disabled
36591  * @cfg {String} icon The path to an icon for the node. The preferred way to do this
36592  *    is to use the cls or iconCls attributes and add the icon via a CSS background image.
36593  * @cfg {String} cls A css class to be added to the node
36594  * @cfg {String} iconCls A css class to be added to the nodes icon element for applying css background images
36595  * @cfg {String} href URL of the link used for the node (defaults to #)
36596  * @cfg {String} hrefTarget target frame for the link
36597  * @cfg {String} qtip An Ext QuickTip for the node
36598  * @cfg {String} qtipCfg An Ext QuickTip config for the node (used instead of qtip)
36599  * @cfg {Boolean} singleClickExpand True for single click expand on this node
36600  * @cfg {Function} uiProvider A UI <b>class</b> to use for this node (defaults to Roo.tree.TreeNodeUI)
36601  * @cfg {Boolean} checked True to render a checked checkbox for this node, false to render an unchecked checkbox
36602  * (defaults to undefined with no checkbox rendered)
36603  * @constructor
36604  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node
36605  */
36606 Roo.tree.TreeNode = function(attributes){
36607     attributes = attributes || {};
36608     if(typeof attributes == "string"){
36609         attributes = {text: attributes};
36610     }
36611     this.childrenRendered = false;
36612     this.rendered = false;
36613     Roo.tree.TreeNode.superclass.constructor.call(this, attributes);
36614     this.expanded = attributes.expanded === true;
36615     this.isTarget = attributes.isTarget !== false;
36616     this.draggable = attributes.draggable !== false && attributes.allowDrag !== false;
36617     this.allowChildren = attributes.allowChildren !== false && attributes.allowDrop !== false;
36618
36619     /**
36620      * Read-only. The text for this node. To change it use setText().
36621      * @type String
36622      */
36623     this.text = attributes.text;
36624     /**
36625      * True if this node is disabled.
36626      * @type Boolean
36627      */
36628     this.disabled = attributes.disabled === true;
36629
36630     this.addEvents({
36631         /**
36632         * @event textchange
36633         * Fires when the text for this node is changed
36634         * @param {Node} this This node
36635         * @param {String} text The new text
36636         * @param {String} oldText The old text
36637         */
36638         "textchange" : true,
36639         /**
36640         * @event beforeexpand
36641         * Fires before this node is expanded, return false to cancel.
36642         * @param {Node} this This node
36643         * @param {Boolean} deep
36644         * @param {Boolean} anim
36645         */
36646         "beforeexpand" : true,
36647         /**
36648         * @event beforecollapse
36649         * Fires before this node is collapsed, return false to cancel.
36650         * @param {Node} this This node
36651         * @param {Boolean} deep
36652         * @param {Boolean} anim
36653         */
36654         "beforecollapse" : true,
36655         /**
36656         * @event expand
36657         * Fires when this node is expanded
36658         * @param {Node} this This node
36659         */
36660         "expand" : true,
36661         /**
36662         * @event disabledchange
36663         * Fires when the disabled status of this node changes
36664         * @param {Node} this This node
36665         * @param {Boolean} disabled
36666         */
36667         "disabledchange" : true,
36668         /**
36669         * @event collapse
36670         * Fires when this node is collapsed
36671         * @param {Node} this This node
36672         */
36673         "collapse" : true,
36674         /**
36675         * @event beforeclick
36676         * Fires before click processing. Return false to cancel the default action.
36677         * @param {Node} this This node
36678         * @param {Roo.EventObject} e The event object
36679         */
36680         "beforeclick":true,
36681         /**
36682         * @event checkchange
36683         * Fires when a node with a checkbox's checked property changes
36684         * @param {Node} this This node
36685         * @param {Boolean} checked
36686         */
36687         "checkchange":true,
36688         /**
36689         * @event click
36690         * Fires when this node is clicked
36691         * @param {Node} this This node
36692         * @param {Roo.EventObject} e The event object
36693         */
36694         "click":true,
36695         /**
36696         * @event dblclick
36697         * Fires when this node is double clicked
36698         * @param {Node} this This node
36699         * @param {Roo.EventObject} e The event object
36700         */
36701         "dblclick":true,
36702         /**
36703         * @event contextmenu
36704         * Fires when this node is right clicked
36705         * @param {Node} this This node
36706         * @param {Roo.EventObject} e The event object
36707         */
36708         "contextmenu":true,
36709         /**
36710         * @event beforechildrenrendered
36711         * Fires right before the child nodes for this node are rendered
36712         * @param {Node} this This node
36713         */
36714         "beforechildrenrendered":true
36715     });
36716
36717     var uiClass = this.attributes.uiProvider || Roo.tree.TreeNodeUI;
36718
36719     /**
36720      * Read-only. The UI for this node
36721      * @type TreeNodeUI
36722      */
36723     this.ui = new uiClass(this);
36724     
36725     // finally support items[]
36726     if (typeof(this.attributes.items) == 'undefined' || !this.attributes.items) {
36727         return;
36728     }
36729     
36730     
36731     Roo.each(this.attributes.items, function(c) {
36732         this.appendChild(Roo.factory(c,Roo.Tree));
36733     }, this);
36734     delete this.attributes.items;
36735     
36736     
36737     
36738 };
36739 Roo.extend(Roo.tree.TreeNode, Roo.data.Node, {
36740     preventHScroll: true,
36741     /**
36742      * Returns true if this node is expanded
36743      * @return {Boolean}
36744      */
36745     isExpanded : function(){
36746         return this.expanded;
36747     },
36748
36749     /**
36750      * Returns the UI object for this node
36751      * @return {TreeNodeUI}
36752      */
36753     getUI : function(){
36754         return this.ui;
36755     },
36756
36757     // private override
36758     setFirstChild : function(node){
36759         var of = this.firstChild;
36760         Roo.tree.TreeNode.superclass.setFirstChild.call(this, node);
36761         if(this.childrenRendered && of && node != of){
36762             of.renderIndent(true, true);
36763         }
36764         if(this.rendered){
36765             this.renderIndent(true, true);
36766         }
36767     },
36768
36769     // private override
36770     setLastChild : function(node){
36771         var ol = this.lastChild;
36772         Roo.tree.TreeNode.superclass.setLastChild.call(this, node);
36773         if(this.childrenRendered && ol && node != ol){
36774             ol.renderIndent(true, true);
36775         }
36776         if(this.rendered){
36777             this.renderIndent(true, true);
36778         }
36779     },
36780
36781     // these methods are overridden to provide lazy rendering support
36782     // private override
36783     appendChild : function()
36784     {
36785         var node = Roo.tree.TreeNode.superclass.appendChild.apply(this, arguments);
36786         if(node && this.childrenRendered){
36787             node.render();
36788         }
36789         this.ui.updateExpandIcon();
36790         return node;
36791     },
36792
36793     // private override
36794     removeChild : function(node){
36795         this.ownerTree.getSelectionModel().unselect(node);
36796         Roo.tree.TreeNode.superclass.removeChild.apply(this, arguments);
36797         // if it's been rendered remove dom node
36798         if(this.childrenRendered){
36799             node.ui.remove();
36800         }
36801         if(this.childNodes.length < 1){
36802             this.collapse(false, false);
36803         }else{
36804             this.ui.updateExpandIcon();
36805         }
36806         if(!this.firstChild) {
36807             this.childrenRendered = false;
36808         }
36809         return node;
36810     },
36811
36812     // private override
36813     insertBefore : function(node, refNode){
36814         var newNode = Roo.tree.TreeNode.superclass.insertBefore.apply(this, arguments);
36815         if(newNode && refNode && this.childrenRendered){
36816             node.render();
36817         }
36818         this.ui.updateExpandIcon();
36819         return newNode;
36820     },
36821
36822     /**
36823      * Sets the text for this node
36824      * @param {String} text
36825      */
36826     setText : function(text){
36827         var oldText = this.text;
36828         this.text = text;
36829         this.attributes.text = text;
36830         if(this.rendered){ // event without subscribing
36831             this.ui.onTextChange(this, text, oldText);
36832         }
36833         this.fireEvent("textchange", this, text, oldText);
36834     },
36835
36836     /**
36837      * Triggers selection of this node
36838      */
36839     select : function(){
36840         this.getOwnerTree().getSelectionModel().select(this);
36841     },
36842
36843     /**
36844      * Triggers deselection of this node
36845      */
36846     unselect : function(){
36847         this.getOwnerTree().getSelectionModel().unselect(this);
36848     },
36849
36850     /**
36851      * Returns true if this node is selected
36852      * @return {Boolean}
36853      */
36854     isSelected : function(){
36855         return this.getOwnerTree().getSelectionModel().isSelected(this);
36856     },
36857
36858     /**
36859      * Expand this node.
36860      * @param {Boolean} deep (optional) True to expand all children as well
36861      * @param {Boolean} anim (optional) false to cancel the default animation
36862      * @param {Function} callback (optional) A callback to be called when
36863      * expanding this node completes (does not wait for deep expand to complete).
36864      * Called with 1 parameter, this node.
36865      */
36866     expand : function(deep, anim, callback){
36867         if(!this.expanded){
36868             if(this.fireEvent("beforeexpand", this, deep, anim) === false){
36869                 return;
36870             }
36871             if(!this.childrenRendered){
36872                 this.renderChildren();
36873             }
36874             this.expanded = true;
36875             
36876             if(!this.isHiddenRoot() && (this.getOwnerTree() && this.getOwnerTree().animate && anim !== false) || anim){
36877                 this.ui.animExpand(function(){
36878                     this.fireEvent("expand", this);
36879                     if(typeof callback == "function"){
36880                         callback(this);
36881                     }
36882                     if(deep === true){
36883                         this.expandChildNodes(true);
36884                     }
36885                 }.createDelegate(this));
36886                 return;
36887             }else{
36888                 this.ui.expand();
36889                 this.fireEvent("expand", this);
36890                 if(typeof callback == "function"){
36891                     callback(this);
36892                 }
36893             }
36894         }else{
36895            if(typeof callback == "function"){
36896                callback(this);
36897            }
36898         }
36899         if(deep === true){
36900             this.expandChildNodes(true);
36901         }
36902     },
36903
36904     isHiddenRoot : function(){
36905         return this.isRoot && !this.getOwnerTree().rootVisible;
36906     },
36907
36908     /**
36909      * Collapse this node.
36910      * @param {Boolean} deep (optional) True to collapse all children as well
36911      * @param {Boolean} anim (optional) false to cancel the default animation
36912      */
36913     collapse : function(deep, anim){
36914         if(this.expanded && !this.isHiddenRoot()){
36915             if(this.fireEvent("beforecollapse", this, deep, anim) === false){
36916                 return;
36917             }
36918             this.expanded = false;
36919             if((this.getOwnerTree().animate && anim !== false) || anim){
36920                 this.ui.animCollapse(function(){
36921                     this.fireEvent("collapse", this);
36922                     if(deep === true){
36923                         this.collapseChildNodes(true);
36924                     }
36925                 }.createDelegate(this));
36926                 return;
36927             }else{
36928                 this.ui.collapse();
36929                 this.fireEvent("collapse", this);
36930             }
36931         }
36932         if(deep === true){
36933             var cs = this.childNodes;
36934             for(var i = 0, len = cs.length; i < len; i++) {
36935                 cs[i].collapse(true, false);
36936             }
36937         }
36938     },
36939
36940     // private
36941     delayedExpand : function(delay){
36942         if(!this.expandProcId){
36943             this.expandProcId = this.expand.defer(delay, this);
36944         }
36945     },
36946
36947     // private
36948     cancelExpand : function(){
36949         if(this.expandProcId){
36950             clearTimeout(this.expandProcId);
36951         }
36952         this.expandProcId = false;
36953     },
36954
36955     /**
36956      * Toggles expanded/collapsed state of the node
36957      */
36958     toggle : function(){
36959         if(this.expanded){
36960             this.collapse();
36961         }else{
36962             this.expand();
36963         }
36964     },
36965
36966     /**
36967      * Ensures all parent nodes are expanded
36968      */
36969     ensureVisible : function(callback){
36970         var tree = this.getOwnerTree();
36971         tree.expandPath(this.parentNode.getPath(), false, function(){
36972             tree.getTreeEl().scrollChildIntoView(this.ui.anchor);
36973             Roo.callback(callback);
36974         }.createDelegate(this));
36975     },
36976
36977     /**
36978      * Expand all child nodes
36979      * @param {Boolean} deep (optional) true if the child nodes should also expand their child nodes
36980      */
36981     expandChildNodes : function(deep){
36982         var cs = this.childNodes;
36983         for(var i = 0, len = cs.length; i < len; i++) {
36984                 cs[i].expand(deep);
36985         }
36986     },
36987
36988     /**
36989      * Collapse all child nodes
36990      * @param {Boolean} deep (optional) true if the child nodes should also collapse their child nodes
36991      */
36992     collapseChildNodes : function(deep){
36993         var cs = this.childNodes;
36994         for(var i = 0, len = cs.length; i < len; i++) {
36995                 cs[i].collapse(deep);
36996         }
36997     },
36998
36999     /**
37000      * Disables this node
37001      */
37002     disable : function(){
37003         this.disabled = true;
37004         this.unselect();
37005         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
37006             this.ui.onDisableChange(this, true);
37007         }
37008         this.fireEvent("disabledchange", this, true);
37009     },
37010
37011     /**
37012      * Enables this node
37013      */
37014     enable : function(){
37015         this.disabled = false;
37016         if(this.rendered && this.ui.onDisableChange){ // event without subscribing
37017             this.ui.onDisableChange(this, false);
37018         }
37019         this.fireEvent("disabledchange", this, false);
37020     },
37021
37022     // private
37023     renderChildren : function(suppressEvent){
37024         if(suppressEvent !== false){
37025             this.fireEvent("beforechildrenrendered", this);
37026         }
37027         var cs = this.childNodes;
37028         for(var i = 0, len = cs.length; i < len; i++){
37029             cs[i].render(true);
37030         }
37031         this.childrenRendered = true;
37032     },
37033
37034     // private
37035     sort : function(fn, scope){
37036         Roo.tree.TreeNode.superclass.sort.apply(this, arguments);
37037         if(this.childrenRendered){
37038             var cs = this.childNodes;
37039             for(var i = 0, len = cs.length; i < len; i++){
37040                 cs[i].render(true);
37041             }
37042         }
37043     },
37044
37045     // private
37046     render : function(bulkRender){
37047         this.ui.render(bulkRender);
37048         if(!this.rendered){
37049             this.rendered = true;
37050             if(this.expanded){
37051                 this.expanded = false;
37052                 this.expand(false, false);
37053             }
37054         }
37055     },
37056
37057     // private
37058     renderIndent : function(deep, refresh){
37059         if(refresh){
37060             this.ui.childIndent = null;
37061         }
37062         this.ui.renderIndent();
37063         if(deep === true && this.childrenRendered){
37064             var cs = this.childNodes;
37065             for(var i = 0, len = cs.length; i < len; i++){
37066                 cs[i].renderIndent(true, refresh);
37067             }
37068         }
37069     }
37070 });/*
37071  * Based on:
37072  * Ext JS Library 1.1.1
37073  * Copyright(c) 2006-2007, Ext JS, LLC.
37074  *
37075  * Originally Released Under LGPL - original licence link has changed is not relivant.
37076  *
37077  * Fork - LGPL
37078  * <script type="text/javascript">
37079  */
37080  
37081 /**
37082  * @class Roo.tree.AsyncTreeNode
37083  * @extends Roo.tree.TreeNode
37084  * @cfg {TreeLoader} loader A TreeLoader to be used by this node (defaults to the loader defined on the tree)
37085  * @constructor
37086  * @param {Object/String} attributes The attributes/config for the node or just a string with the text for the node 
37087  */
37088  Roo.tree.AsyncTreeNode = function(config){
37089     this.loaded = false;
37090     this.loading = false;
37091     Roo.tree.AsyncTreeNode.superclass.constructor.apply(this, arguments);
37092     /**
37093     * @event beforeload
37094     * Fires before this node is loaded, return false to cancel
37095     * @param {Node} this This node
37096     */
37097     this.addEvents({'beforeload':true, 'load': true});
37098     /**
37099     * @event load
37100     * Fires when this node is loaded
37101     * @param {Node} this This node
37102     */
37103     /**
37104      * The loader used by this node (defaults to using the tree's defined loader)
37105      * @type TreeLoader
37106      * @property loader
37107      */
37108 };
37109 Roo.extend(Roo.tree.AsyncTreeNode, Roo.tree.TreeNode, {
37110     expand : function(deep, anim, callback){
37111         if(this.loading){ // if an async load is already running, waiting til it's done
37112             var timer;
37113             var f = function(){
37114                 if(!this.loading){ // done loading
37115                     clearInterval(timer);
37116                     this.expand(deep, anim, callback);
37117                 }
37118             }.createDelegate(this);
37119             timer = setInterval(f, 200);
37120             return;
37121         }
37122         if(!this.loaded){
37123             if(this.fireEvent("beforeload", this) === false){
37124                 return;
37125             }
37126             this.loading = true;
37127             this.ui.beforeLoad(this);
37128             var loader = this.loader || this.attributes.loader || this.getOwnerTree().getLoader();
37129             if(loader){
37130                 loader.load(this, this.loadComplete.createDelegate(this, [deep, anim, callback]));
37131                 return;
37132             }
37133         }
37134         Roo.tree.AsyncTreeNode.superclass.expand.call(this, deep, anim, callback);
37135     },
37136     
37137     /**
37138      * Returns true if this node is currently loading
37139      * @return {Boolean}
37140      */
37141     isLoading : function(){
37142         return this.loading;  
37143     },
37144     
37145     loadComplete : function(deep, anim, callback){
37146         this.loading = false;
37147         this.loaded = true;
37148         this.ui.afterLoad(this);
37149         this.fireEvent("load", this);
37150         this.expand(deep, anim, callback);
37151     },
37152     
37153     /**
37154      * Returns true if this node has been loaded
37155      * @return {Boolean}
37156      */
37157     isLoaded : function(){
37158         return this.loaded;
37159     },
37160     
37161     hasChildNodes : function(){
37162         if(!this.isLeaf() && !this.loaded){
37163             return true;
37164         }else{
37165             return Roo.tree.AsyncTreeNode.superclass.hasChildNodes.call(this);
37166         }
37167     },
37168
37169     /**
37170      * Trigger a reload for this node
37171      * @param {Function} callback
37172      */
37173     reload : function(callback){
37174         this.collapse(false, false);
37175         while(this.firstChild){
37176             this.removeChild(this.firstChild);
37177         }
37178         this.childrenRendered = false;
37179         this.loaded = false;
37180         if(this.isHiddenRoot()){
37181             this.expanded = false;
37182         }
37183         this.expand(false, false, callback);
37184     }
37185 });/*
37186  * Based on:
37187  * Ext JS Library 1.1.1
37188  * Copyright(c) 2006-2007, Ext JS, LLC.
37189  *
37190  * Originally Released Under LGPL - original licence link has changed is not relivant.
37191  *
37192  * Fork - LGPL
37193  * <script type="text/javascript">
37194  */
37195  
37196 /**
37197  * @class Roo.tree.TreeNodeUI
37198  * @constructor
37199  * @param {Object} node The node to render
37200  * The TreeNode UI implementation is separate from the
37201  * tree implementation. Unless you are customizing the tree UI,
37202  * you should never have to use this directly.
37203  */
37204 Roo.tree.TreeNodeUI = function(node){
37205     this.node = node;
37206     this.rendered = false;
37207     this.animating = false;
37208     this.emptyIcon = Roo.BLANK_IMAGE_URL;
37209 };
37210
37211 Roo.tree.TreeNodeUI.prototype = {
37212     removeChild : function(node){
37213         if(this.rendered){
37214             this.ctNode.removeChild(node.ui.getEl());
37215         }
37216     },
37217
37218     beforeLoad : function(){
37219          this.addClass("x-tree-node-loading");
37220     },
37221
37222     afterLoad : function(){
37223          this.removeClass("x-tree-node-loading");
37224     },
37225
37226     onTextChange : function(node, text, oldText){
37227         if(this.rendered){
37228             this.textNode.innerHTML = text;
37229         }
37230     },
37231
37232     onDisableChange : function(node, state){
37233         this.disabled = state;
37234         if(state){
37235             this.addClass("x-tree-node-disabled");
37236         }else{
37237             this.removeClass("x-tree-node-disabled");
37238         }
37239     },
37240
37241     onSelectedChange : function(state){
37242         if(state){
37243             this.focus();
37244             this.addClass("x-tree-selected");
37245         }else{
37246             //this.blur();
37247             this.removeClass("x-tree-selected");
37248         }
37249     },
37250
37251     onMove : function(tree, node, oldParent, newParent, index, refNode){
37252         this.childIndent = null;
37253         if(this.rendered){
37254             var targetNode = newParent.ui.getContainer();
37255             if(!targetNode){//target not rendered
37256                 this.holder = document.createElement("div");
37257                 this.holder.appendChild(this.wrap);
37258                 return;
37259             }
37260             var insertBefore = refNode ? refNode.ui.getEl() : null;
37261             if(insertBefore){
37262                 targetNode.insertBefore(this.wrap, insertBefore);
37263             }else{
37264                 targetNode.appendChild(this.wrap);
37265             }
37266             this.node.renderIndent(true);
37267         }
37268     },
37269
37270     addClass : function(cls){
37271         if(this.elNode){
37272             Roo.fly(this.elNode).addClass(cls);
37273         }
37274     },
37275
37276     removeClass : function(cls){
37277         if(this.elNode){
37278             Roo.fly(this.elNode).removeClass(cls);
37279         }
37280     },
37281
37282     remove : function(){
37283         if(this.rendered){
37284             this.holder = document.createElement("div");
37285             this.holder.appendChild(this.wrap);
37286         }
37287     },
37288
37289     fireEvent : function(){
37290         return this.node.fireEvent.apply(this.node, arguments);
37291     },
37292
37293     initEvents : function(){
37294         this.node.on("move", this.onMove, this);
37295         var E = Roo.EventManager;
37296         var a = this.anchor;
37297
37298         var el = Roo.fly(a, '_treeui');
37299
37300         if(Roo.isOpera){ // opera render bug ignores the CSS
37301             el.setStyle("text-decoration", "none");
37302         }
37303
37304         el.on("click", this.onClick, this);
37305         el.on("dblclick", this.onDblClick, this);
37306
37307         if(this.checkbox){
37308             Roo.EventManager.on(this.checkbox,
37309                     Roo.isIE ? 'click' : 'change', this.onCheckChange, this);
37310         }
37311
37312         el.on("contextmenu", this.onContextMenu, this);
37313
37314         var icon = Roo.fly(this.iconNode);
37315         icon.on("click", this.onClick, this);
37316         icon.on("dblclick", this.onDblClick, this);
37317         icon.on("contextmenu", this.onContextMenu, this);
37318         E.on(this.ecNode, "click", this.ecClick, this, true);
37319
37320         if(this.node.disabled){
37321             this.addClass("x-tree-node-disabled");
37322         }
37323         if(this.node.hidden){
37324             this.addClass("x-tree-node-disabled");
37325         }
37326         var ot = this.node.getOwnerTree();
37327         var dd = ot ? (ot.enableDD || ot.enableDrag || ot.enableDrop) : false;
37328         if(dd && (!this.node.isRoot || ot.rootVisible)){
37329             Roo.dd.Registry.register(this.elNode, {
37330                 node: this.node,
37331                 handles: this.getDDHandles(),
37332                 isHandle: false
37333             });
37334         }
37335     },
37336
37337     getDDHandles : function(){
37338         return [this.iconNode, this.textNode];
37339     },
37340
37341     hide : function(){
37342         if(this.rendered){
37343             this.wrap.style.display = "none";
37344         }
37345     },
37346
37347     show : function(){
37348         if(this.rendered){
37349             this.wrap.style.display = "";
37350         }
37351     },
37352
37353     onContextMenu : function(e){
37354         if (this.node.hasListener("contextmenu") || this.node.getOwnerTree().hasListener("contextmenu")) {
37355             e.preventDefault();
37356             this.focus();
37357             this.fireEvent("contextmenu", this.node, e);
37358         }
37359     },
37360
37361     onClick : function(e){
37362         if(this.dropping){
37363             e.stopEvent();
37364             return;
37365         }
37366         if(this.fireEvent("beforeclick", this.node, e) !== false){
37367             if(!this.disabled && this.node.attributes.href){
37368                 this.fireEvent("click", this.node, e);
37369                 return;
37370             }
37371             e.preventDefault();
37372             if(this.disabled){
37373                 return;
37374             }
37375
37376             if(this.node.attributes.singleClickExpand && !this.animating && this.node.hasChildNodes()){
37377                 this.node.toggle();
37378             }
37379
37380             this.fireEvent("click", this.node, e);
37381         }else{
37382             e.stopEvent();
37383         }
37384     },
37385
37386     onDblClick : function(e){
37387         e.preventDefault();
37388         if(this.disabled){
37389             return;
37390         }
37391         if(this.checkbox){
37392             this.toggleCheck();
37393         }
37394         if(!this.animating && this.node.hasChildNodes()){
37395             this.node.toggle();
37396         }
37397         this.fireEvent("dblclick", this.node, e);
37398     },
37399
37400     onCheckChange : function(){
37401         var checked = this.checkbox.checked;
37402         this.node.attributes.checked = checked;
37403         this.fireEvent('checkchange', this.node, checked);
37404     },
37405
37406     ecClick : function(e){
37407         if(!this.animating && this.node.hasChildNodes()){
37408             this.node.toggle();
37409         }
37410     },
37411
37412     startDrop : function(){
37413         this.dropping = true;
37414     },
37415
37416     // delayed drop so the click event doesn't get fired on a drop
37417     endDrop : function(){
37418        setTimeout(function(){
37419            this.dropping = false;
37420        }.createDelegate(this), 50);
37421     },
37422
37423     expand : function(){
37424         this.updateExpandIcon();
37425         this.ctNode.style.display = "";
37426     },
37427
37428     focus : function(){
37429         if(!this.node.preventHScroll){
37430             try{this.anchor.focus();
37431             }catch(e){}
37432         }else if(!Roo.isIE){
37433             try{
37434                 var noscroll = this.node.getOwnerTree().getTreeEl().dom;
37435                 var l = noscroll.scrollLeft;
37436                 this.anchor.focus();
37437                 noscroll.scrollLeft = l;
37438             }catch(e){}
37439         }
37440     },
37441
37442     toggleCheck : function(value){
37443         var cb = this.checkbox;
37444         if(cb){
37445             cb.checked = (value === undefined ? !cb.checked : value);
37446         }
37447     },
37448
37449     blur : function(){
37450         try{
37451             this.anchor.blur();
37452         }catch(e){}
37453     },
37454
37455     animExpand : function(callback){
37456         var ct = Roo.get(this.ctNode);
37457         ct.stopFx();
37458         if(!this.node.hasChildNodes()){
37459             this.updateExpandIcon();
37460             this.ctNode.style.display = "";
37461             Roo.callback(callback);
37462             return;
37463         }
37464         this.animating = true;
37465         this.updateExpandIcon();
37466
37467         ct.slideIn('t', {
37468            callback : function(){
37469                this.animating = false;
37470                Roo.callback(callback);
37471             },
37472             scope: this,
37473             duration: this.node.ownerTree.duration || .25
37474         });
37475     },
37476
37477     highlight : function(){
37478         var tree = this.node.getOwnerTree();
37479         Roo.fly(this.wrap).highlight(
37480             tree.hlColor || "C3DAF9",
37481             {endColor: tree.hlBaseColor}
37482         );
37483     },
37484
37485     collapse : function(){
37486         this.updateExpandIcon();
37487         this.ctNode.style.display = "none";
37488     },
37489
37490     animCollapse : function(callback){
37491         var ct = Roo.get(this.ctNode);
37492         ct.enableDisplayMode('block');
37493         ct.stopFx();
37494
37495         this.animating = true;
37496         this.updateExpandIcon();
37497
37498         ct.slideOut('t', {
37499             callback : function(){
37500                this.animating = false;
37501                Roo.callback(callback);
37502             },
37503             scope: this,
37504             duration: this.node.ownerTree.duration || .25
37505         });
37506     },
37507
37508     getContainer : function(){
37509         return this.ctNode;
37510     },
37511
37512     getEl : function(){
37513         return this.wrap;
37514     },
37515
37516     appendDDGhost : function(ghostNode){
37517         ghostNode.appendChild(this.elNode.cloneNode(true));
37518     },
37519
37520     getDDRepairXY : function(){
37521         return Roo.lib.Dom.getXY(this.iconNode);
37522     },
37523
37524     onRender : function(){
37525         this.render();
37526     },
37527
37528     render : function(bulkRender){
37529         var n = this.node, a = n.attributes;
37530         var targetNode = n.parentNode ?
37531               n.parentNode.ui.getContainer() : n.ownerTree.innerCt.dom;
37532
37533         if(!this.rendered){
37534             this.rendered = true;
37535
37536             this.renderElements(n, a, targetNode, bulkRender);
37537
37538             if(a.qtip){
37539                if(this.textNode.setAttributeNS){
37540                    this.textNode.setAttributeNS("ext", "qtip", a.qtip);
37541                    if(a.qtipTitle){
37542                        this.textNode.setAttributeNS("ext", "qtitle", a.qtipTitle);
37543                    }
37544                }else{
37545                    this.textNode.setAttribute("ext:qtip", a.qtip);
37546                    if(a.qtipTitle){
37547                        this.textNode.setAttribute("ext:qtitle", a.qtipTitle);
37548                    }
37549                }
37550             }else if(a.qtipCfg){
37551                 a.qtipCfg.target = Roo.id(this.textNode);
37552                 Roo.QuickTips.register(a.qtipCfg);
37553             }
37554             this.initEvents();
37555             if(!this.node.expanded){
37556                 this.updateExpandIcon();
37557             }
37558         }else{
37559             if(bulkRender === true) {
37560                 targetNode.appendChild(this.wrap);
37561             }
37562         }
37563     },
37564
37565     renderElements : function(n, a, targetNode, bulkRender)
37566     {
37567         // add some indent caching, this helps performance when rendering a large tree
37568         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
37569         var t = n.getOwnerTree();
37570         var txt = t && t.renderer ? t.renderer(n.attributes) : Roo.util.Format.htmlEncode(n.text);
37571         if (typeof(n.attributes.html) != 'undefined') {
37572             txt = n.attributes.html;
37573         }
37574         var tip = t && t.rendererTip ? t.rendererTip(n.attributes) : txt;
37575         var cb = typeof a.checked == 'boolean';
37576         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
37577         var buf = ['<li class="x-tree-node"><div class="x-tree-node-el ', a.cls,'">',
37578             '<span class="x-tree-node-indent">',this.indentMarkup,"</span>",
37579             '<img src="', this.emptyIcon, '" class="x-tree-ec-icon" />',
37580             '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',(a.icon ? " x-tree-node-inline-icon" : ""),(a.iconCls ? " "+a.iconCls : ""),'" unselectable="on" />',
37581             cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + (a.checked ? 'checked="checked" />' : ' />')) : '',
37582             '<a hidefocus="on" href="',href,'" tabIndex="1" ',
37583              a.hrefTarget ? ' target="'+a.hrefTarget+'"' : "", 
37584                 '><span unselectable="on" qtip="' , tip ,'">',txt,"</span></a></div>",
37585             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
37586             "</li>"];
37587
37588         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
37589             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
37590                                 n.nextSibling.ui.getEl(), buf.join(""));
37591         }else{
37592             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
37593         }
37594
37595         this.elNode = this.wrap.childNodes[0];
37596         this.ctNode = this.wrap.childNodes[1];
37597         var cs = this.elNode.childNodes;
37598         this.indentNode = cs[0];
37599         this.ecNode = cs[1];
37600         this.iconNode = cs[2];
37601         var index = 3;
37602         if(cb){
37603             this.checkbox = cs[3];
37604             index++;
37605         }
37606         this.anchor = cs[index];
37607         this.textNode = cs[index].firstChild;
37608     },
37609
37610     getAnchor : function(){
37611         return this.anchor;
37612     },
37613
37614     getTextEl : function(){
37615         return this.textNode;
37616     },
37617
37618     getIconEl : function(){
37619         return this.iconNode;
37620     },
37621
37622     isChecked : function(){
37623         return this.checkbox ? this.checkbox.checked : false;
37624     },
37625
37626     updateExpandIcon : function(){
37627         if(this.rendered){
37628             var n = this.node, c1, c2;
37629             var cls = n.isLast() ? "x-tree-elbow-end" : "x-tree-elbow";
37630             var hasChild = n.hasChildNodes();
37631             if(hasChild){
37632                 if(n.expanded){
37633                     cls += "-minus";
37634                     c1 = "x-tree-node-collapsed";
37635                     c2 = "x-tree-node-expanded";
37636                 }else{
37637                     cls += "-plus";
37638                     c1 = "x-tree-node-expanded";
37639                     c2 = "x-tree-node-collapsed";
37640                 }
37641                 if(this.wasLeaf){
37642                     this.removeClass("x-tree-node-leaf");
37643                     this.wasLeaf = false;
37644                 }
37645                 if(this.c1 != c1 || this.c2 != c2){
37646                     Roo.fly(this.elNode).replaceClass(c1, c2);
37647                     this.c1 = c1; this.c2 = c2;
37648                 }
37649             }else{
37650                 // this changes non-leafs into leafs if they have no children.
37651                 // it's not very rational behaviour..
37652                 
37653                 if(!this.wasLeaf && this.node.leaf){
37654                     Roo.fly(this.elNode).replaceClass("x-tree-node-expanded", "x-tree-node-leaf");
37655                     delete this.c1;
37656                     delete this.c2;
37657                     this.wasLeaf = true;
37658                 }
37659             }
37660             var ecc = "x-tree-ec-icon "+cls;
37661             if(this.ecc != ecc){
37662                 this.ecNode.className = ecc;
37663                 this.ecc = ecc;
37664             }
37665         }
37666     },
37667
37668     getChildIndent : function(){
37669         if(!this.childIndent){
37670             var buf = [];
37671             var p = this.node;
37672             while(p){
37673                 if(!p.isRoot || (p.isRoot && p.ownerTree.rootVisible)){
37674                     if(!p.isLast()) {
37675                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-elbow-line" />');
37676                     } else {
37677                         buf.unshift('<img src="'+this.emptyIcon+'" class="x-tree-icon" />');
37678                     }
37679                 }
37680                 p = p.parentNode;
37681             }
37682             this.childIndent = buf.join("");
37683         }
37684         return this.childIndent;
37685     },
37686
37687     renderIndent : function(){
37688         if(this.rendered){
37689             var indent = "";
37690             var p = this.node.parentNode;
37691             if(p){
37692                 indent = p.ui.getChildIndent();
37693             }
37694             if(this.indentMarkup != indent){ // don't rerender if not required
37695                 this.indentNode.innerHTML = indent;
37696                 this.indentMarkup = indent;
37697             }
37698             this.updateExpandIcon();
37699         }
37700     }
37701 };
37702
37703 Roo.tree.RootTreeNodeUI = function(){
37704     Roo.tree.RootTreeNodeUI.superclass.constructor.apply(this, arguments);
37705 };
37706 Roo.extend(Roo.tree.RootTreeNodeUI, Roo.tree.TreeNodeUI, {
37707     render : function(){
37708         if(!this.rendered){
37709             var targetNode = this.node.ownerTree.innerCt.dom;
37710             this.node.expanded = true;
37711             targetNode.innerHTML = '<div class="x-tree-root-node"></div>';
37712             this.wrap = this.ctNode = targetNode.firstChild;
37713         }
37714     },
37715     collapse : function(){
37716     },
37717     expand : function(){
37718     }
37719 });/*
37720  * Based on:
37721  * Ext JS Library 1.1.1
37722  * Copyright(c) 2006-2007, Ext JS, LLC.
37723  *
37724  * Originally Released Under LGPL - original licence link has changed is not relivant.
37725  *
37726  * Fork - LGPL
37727  * <script type="text/javascript">
37728  */
37729 /**
37730  * @class Roo.tree.TreeLoader
37731  * @extends Roo.util.Observable
37732  * A TreeLoader provides for lazy loading of an {@link Roo.tree.TreeNode}'s child
37733  * nodes from a specified URL. The response must be a javascript Array definition
37734  * who's elements are node definition objects. eg:
37735  * <pre><code>
37736 {  success : true,
37737    data :      [
37738    
37739     { 'id': 1, 'text': 'A folder Node', 'leaf': false },
37740     { 'id': 2, 'text': 'A leaf Node', 'leaf': true }
37741     ]
37742 }
37743
37744
37745 </code></pre>
37746  * <br><br>
37747  * The old style respose with just an array is still supported, but not recommended.
37748  * <br><br>
37749  *
37750  * A server request is sent, and child nodes are loaded only when a node is expanded.
37751  * The loading node's id is passed to the server under the parameter name "node" to
37752  * enable the server to produce the correct child nodes.
37753  * <br><br>
37754  * To pass extra parameters, an event handler may be attached to the "beforeload"
37755  * event, and the parameters specified in the TreeLoader's baseParams property:
37756  * <pre><code>
37757     myTreeLoader.on("beforeload", function(treeLoader, node) {
37758         this.baseParams.category = node.attributes.category;
37759     }, this);
37760     
37761 </code></pre>
37762  *
37763  * This would pass an HTTP parameter called "category" to the server containing
37764  * the value of the Node's "category" attribute.
37765  * @constructor
37766  * Creates a new Treeloader.
37767  * @param {Object} config A config object containing config properties.
37768  */
37769 Roo.tree.TreeLoader = function(config){
37770     this.baseParams = {};
37771     this.requestMethod = "POST";
37772     Roo.apply(this, config);
37773
37774     this.addEvents({
37775     
37776         /**
37777          * @event beforeload
37778          * Fires before a network request is made to retrieve the Json text which specifies a node's children.
37779          * @param {Object} This TreeLoader object.
37780          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
37781          * @param {Object} callback The callback function specified in the {@link #load} call.
37782          */
37783         beforeload : true,
37784         /**
37785          * @event load
37786          * Fires when the node has been successfuly loaded.
37787          * @param {Object} This TreeLoader object.
37788          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
37789          * @param {Object} response The response object containing the data from the server.
37790          */
37791         load : true,
37792         /**
37793          * @event loadexception
37794          * Fires if the network request failed.
37795          * @param {Object} This TreeLoader object.
37796          * @param {Object} node The {@link Roo.tree.TreeNode} object being loaded.
37797          * @param {Object} response The response object containing the data from the server.
37798          */
37799         loadexception : true,
37800         /**
37801          * @event create
37802          * Fires before a node is created, enabling you to return custom Node types 
37803          * @param {Object} This TreeLoader object.
37804          * @param {Object} attr - the data returned from the AJAX call (modify it to suit)
37805          */
37806         create : true
37807     });
37808
37809     Roo.tree.TreeLoader.superclass.constructor.call(this);
37810 };
37811
37812 Roo.extend(Roo.tree.TreeLoader, Roo.util.Observable, {
37813     /**
37814     * @cfg {String} dataUrl The URL from which to request a Json string which
37815     * specifies an array of node definition object representing the child nodes
37816     * to be loaded.
37817     */
37818     /**
37819     * @cfg {String} requestMethod either GET or POST
37820     * defaults to POST (due to BC)
37821     * to be loaded.
37822     */
37823     /**
37824     * @cfg {Object} baseParams (optional) An object containing properties which
37825     * specify HTTP parameters to be passed to each request for child nodes.
37826     */
37827     /**
37828     * @cfg {Object} baseAttrs (optional) An object containing attributes to be added to all nodes
37829     * created by this loader. If the attributes sent by the server have an attribute in this object,
37830     * they take priority.
37831     */
37832     /**
37833     * @cfg {Object} uiProviders (optional) An object containing properties which
37834     * 
37835     * DEPRECATED - use 'create' event handler to modify attributes - which affect creation.
37836     * specify custom {@link Roo.tree.TreeNodeUI} implementations. If the optional
37837     * <i>uiProvider</i> attribute of a returned child node is a string rather
37838     * than a reference to a TreeNodeUI implementation, this that string value
37839     * is used as a property name in the uiProviders object. You can define the provider named
37840     * 'default' , and this will be used for all nodes (if no uiProvider is delivered by the node data)
37841     */
37842     uiProviders : {},
37843
37844     /**
37845     * @cfg {Boolean} clearOnLoad (optional) Default to true. Remove previously existing
37846     * child nodes before loading.
37847     */
37848     clearOnLoad : true,
37849
37850     /**
37851     * @cfg {String} root (optional) Default to false. Use this to read data from an object 
37852     * property on loading, rather than expecting an array. (eg. more compatible to a standard
37853     * Grid query { data : [ .....] }
37854     */
37855     
37856     root : false,
37857      /**
37858     * @cfg {String} queryParam (optional) 
37859     * Name of the query as it will be passed on the querystring (defaults to 'node')
37860     * eg. the request will be ?node=[id]
37861     */
37862     
37863     
37864     queryParam: false,
37865     
37866     /**
37867      * Load an {@link Roo.tree.TreeNode} from the URL specified in the constructor.
37868      * This is called automatically when a node is expanded, but may be used to reload
37869      * a node (or append new children if the {@link #clearOnLoad} option is false.)
37870      * @param {Roo.tree.TreeNode} node
37871      * @param {Function} callback
37872      */
37873     load : function(node, callback){
37874         if(this.clearOnLoad){
37875             while(node.firstChild){
37876                 node.removeChild(node.firstChild);
37877             }
37878         }
37879         if(node.attributes.children){ // preloaded json children
37880             var cs = node.attributes.children;
37881             for(var i = 0, len = cs.length; i < len; i++){
37882                 node.appendChild(this.createNode(cs[i]));
37883             }
37884             if(typeof callback == "function"){
37885                 callback();
37886             }
37887         }else if(this.dataUrl){
37888             this.requestData(node, callback);
37889         }
37890     },
37891
37892     getParams: function(node){
37893         var buf = [], bp = this.baseParams;
37894         for(var key in bp){
37895             if(typeof bp[key] != "function"){
37896                 buf.push(encodeURIComponent(key), "=", encodeURIComponent(bp[key]), "&");
37897             }
37898         }
37899         var n = this.queryParam === false ? 'node' : this.queryParam;
37900         buf.push(n + "=", encodeURIComponent(node.id));
37901         return buf.join("");
37902     },
37903
37904     requestData : function(node, callback){
37905         if(this.fireEvent("beforeload", this, node, callback) !== false){
37906             this.transId = Roo.Ajax.request({
37907                 method:this.requestMethod,
37908                 url: this.dataUrl||this.url,
37909                 success: this.handleResponse,
37910                 failure: this.handleFailure,
37911                 scope: this,
37912                 argument: {callback: callback, node: node},
37913                 params: this.getParams(node)
37914             });
37915         }else{
37916             // if the load is cancelled, make sure we notify
37917             // the node that we are done
37918             if(typeof callback == "function"){
37919                 callback();
37920             }
37921         }
37922     },
37923
37924     isLoading : function(){
37925         return this.transId ? true : false;
37926     },
37927
37928     abort : function(){
37929         if(this.isLoading()){
37930             Roo.Ajax.abort(this.transId);
37931         }
37932     },
37933
37934     // private
37935     createNode : function(attr)
37936     {
37937         // apply baseAttrs, nice idea Corey!
37938         if(this.baseAttrs){
37939             Roo.applyIf(attr, this.baseAttrs);
37940         }
37941         if(this.applyLoader !== false){
37942             attr.loader = this;
37943         }
37944         // uiProvider = depreciated..
37945         
37946         if(typeof(attr.uiProvider) == 'string'){
37947            attr.uiProvider = this.uiProviders[attr.uiProvider] || 
37948                 /**  eval:var:attr */ eval(attr.uiProvider);
37949         }
37950         if(typeof(this.uiProviders['default']) != 'undefined') {
37951             attr.uiProvider = this.uiProviders['default'];
37952         }
37953         
37954         this.fireEvent('create', this, attr);
37955         
37956         attr.leaf  = typeof(attr.leaf) == 'string' ? attr.leaf * 1 : attr.leaf;
37957         return(attr.leaf ?
37958                         new Roo.tree.TreeNode(attr) :
37959                         new Roo.tree.AsyncTreeNode(attr));
37960     },
37961
37962     processResponse : function(response, node, callback)
37963     {
37964         var json = response.responseText;
37965         try {
37966             
37967             var o = Roo.decode(json);
37968             
37969             if (this.root === false && typeof(o.success) != undefined) {
37970                 this.root = 'data'; // the default behaviour for list like data..
37971                 }
37972                 
37973             if (this.root !== false &&  !o.success) {
37974                 // it's a failure condition.
37975                 var a = response.argument;
37976                 this.fireEvent("loadexception", this, a.node, response);
37977                 Roo.log("Load failed - should have a handler really");
37978                 return;
37979             }
37980             
37981             
37982             
37983             if (this.root !== false) {
37984                  o = o[this.root];
37985             }
37986             
37987             for(var i = 0, len = o.length; i < len; i++){
37988                 var n = this.createNode(o[i]);
37989                 if(n){
37990                     node.appendChild(n);
37991                 }
37992             }
37993             if(typeof callback == "function"){
37994                 callback(this, node);
37995             }
37996         }catch(e){
37997             this.handleFailure(response);
37998         }
37999     },
38000
38001     handleResponse : function(response){
38002         this.transId = false;
38003         var a = response.argument;
38004         this.processResponse(response, a.node, a.callback);
38005         this.fireEvent("load", this, a.node, response);
38006     },
38007
38008     handleFailure : function(response)
38009     {
38010         // should handle failure better..
38011         this.transId = false;
38012         var a = response.argument;
38013         this.fireEvent("loadexception", this, a.node, response);
38014         if(typeof a.callback == "function"){
38015             a.callback(this, a.node);
38016         }
38017     }
38018 });/*
38019  * Based on:
38020  * Ext JS Library 1.1.1
38021  * Copyright(c) 2006-2007, Ext JS, LLC.
38022  *
38023  * Originally Released Under LGPL - original licence link has changed is not relivant.
38024  *
38025  * Fork - LGPL
38026  * <script type="text/javascript">
38027  */
38028
38029 /**
38030 * @class Roo.tree.TreeFilter
38031 * Note this class is experimental and doesn't update the indent (lines) or expand collapse icons of the nodes
38032 * @param {TreePanel} tree
38033 * @param {Object} config (optional)
38034  */
38035 Roo.tree.TreeFilter = function(tree, config){
38036     this.tree = tree;
38037     this.filtered = {};
38038     Roo.apply(this, config);
38039 };
38040
38041 Roo.tree.TreeFilter.prototype = {
38042     clearBlank:false,
38043     reverse:false,
38044     autoClear:false,
38045     remove:false,
38046
38047      /**
38048      * Filter the data by a specific attribute.
38049      * @param {String/RegExp} value Either string that the attribute value
38050      * should start with or a RegExp to test against the attribute
38051      * @param {String} attr (optional) The attribute passed in your node's attributes collection. Defaults to "text".
38052      * @param {TreeNode} startNode (optional) The node to start the filter at.
38053      */
38054     filter : function(value, attr, startNode){
38055         attr = attr || "text";
38056         var f;
38057         if(typeof value == "string"){
38058             var vlen = value.length;
38059             // auto clear empty filter
38060             if(vlen == 0 && this.clearBlank){
38061                 this.clear();
38062                 return;
38063             }
38064             value = value.toLowerCase();
38065             f = function(n){
38066                 return n.attributes[attr].substr(0, vlen).toLowerCase() == value;
38067             };
38068         }else if(value.exec){ // regex?
38069             f = function(n){
38070                 return value.test(n.attributes[attr]);
38071             };
38072         }else{
38073             throw 'Illegal filter type, must be string or regex';
38074         }
38075         this.filterBy(f, null, startNode);
38076         },
38077
38078     /**
38079      * Filter by a function. The passed function will be called with each
38080      * node in the tree (or from the startNode). If the function returns true, the node is kept
38081      * otherwise it is filtered. If a node is filtered, its children are also filtered.
38082      * @param {Function} fn The filter function
38083      * @param {Object} scope (optional) The scope of the function (defaults to the current node)
38084      */
38085     filterBy : function(fn, scope, startNode){
38086         startNode = startNode || this.tree.root;
38087         if(this.autoClear){
38088             this.clear();
38089         }
38090         var af = this.filtered, rv = this.reverse;
38091         var f = function(n){
38092             if(n == startNode){
38093                 return true;
38094             }
38095             if(af[n.id]){
38096                 return false;
38097             }
38098             var m = fn.call(scope || n, n);
38099             if(!m || rv){
38100                 af[n.id] = n;
38101                 n.ui.hide();
38102                 return false;
38103             }
38104             return true;
38105         };
38106         startNode.cascade(f);
38107         if(this.remove){
38108            for(var id in af){
38109                if(typeof id != "function"){
38110                    var n = af[id];
38111                    if(n && n.parentNode){
38112                        n.parentNode.removeChild(n);
38113                    }
38114                }
38115            }
38116         }
38117     },
38118
38119     /**
38120      * Clears the current filter. Note: with the "remove" option
38121      * set a filter cannot be cleared.
38122      */
38123     clear : function(){
38124         var t = this.tree;
38125         var af = this.filtered;
38126         for(var id in af){
38127             if(typeof id != "function"){
38128                 var n = af[id];
38129                 if(n){
38130                     n.ui.show();
38131                 }
38132             }
38133         }
38134         this.filtered = {};
38135     }
38136 };
38137 /*
38138  * Based on:
38139  * Ext JS Library 1.1.1
38140  * Copyright(c) 2006-2007, Ext JS, LLC.
38141  *
38142  * Originally Released Under LGPL - original licence link has changed is not relivant.
38143  *
38144  * Fork - LGPL
38145  * <script type="text/javascript">
38146  */
38147  
38148
38149 /**
38150  * @class Roo.tree.TreeSorter
38151  * Provides sorting of nodes in a TreePanel
38152  * 
38153  * @cfg {Boolean} folderSort True to sort leaf nodes under non leaf nodes
38154  * @cfg {String} property The named attribute on the node to sort by (defaults to text)
38155  * @cfg {String} dir The direction to sort (asc or desc) (defaults to asc)
38156  * @cfg {String} leafAttr The attribute used to determine leaf nodes in folder sort (defaults to "leaf")
38157  * @cfg {Boolean} caseSensitive true for case sensitive sort (defaults to false)
38158  * @cfg {Function} sortType A custom "casting" function used to convert node values before sorting
38159  * @constructor
38160  * @param {TreePanel} tree
38161  * @param {Object} config
38162  */
38163 Roo.tree.TreeSorter = function(tree, config){
38164     Roo.apply(this, config);
38165     tree.on("beforechildrenrendered", this.doSort, this);
38166     tree.on("append", this.updateSort, this);
38167     tree.on("insert", this.updateSort, this);
38168     
38169     var dsc = this.dir && this.dir.toLowerCase() == "desc";
38170     var p = this.property || "text";
38171     var sortType = this.sortType;
38172     var fs = this.folderSort;
38173     var cs = this.caseSensitive === true;
38174     var leafAttr = this.leafAttr || 'leaf';
38175
38176     this.sortFn = function(n1, n2){
38177         if(fs){
38178             if(n1.attributes[leafAttr] && !n2.attributes[leafAttr]){
38179                 return 1;
38180             }
38181             if(!n1.attributes[leafAttr] && n2.attributes[leafAttr]){
38182                 return -1;
38183             }
38184         }
38185         var v1 = sortType ? sortType(n1) : (cs ? n1.attributes[p] : n1.attributes[p].toUpperCase());
38186         var v2 = sortType ? sortType(n2) : (cs ? n2.attributes[p] : n2.attributes[p].toUpperCase());
38187         if(v1 < v2){
38188                         return dsc ? +1 : -1;
38189                 }else if(v1 > v2){
38190                         return dsc ? -1 : +1;
38191         }else{
38192                 return 0;
38193         }
38194     };
38195 };
38196
38197 Roo.tree.TreeSorter.prototype = {
38198     doSort : function(node){
38199         node.sort(this.sortFn);
38200     },
38201     
38202     compareNodes : function(n1, n2){
38203         return (n1.text.toUpperCase() > n2.text.toUpperCase() ? 1 : -1);
38204     },
38205     
38206     updateSort : function(tree, node){
38207         if(node.childrenRendered){
38208             this.doSort.defer(1, this, [node]);
38209         }
38210     }
38211 };/*
38212  * Based on:
38213  * Ext JS Library 1.1.1
38214  * Copyright(c) 2006-2007, Ext JS, LLC.
38215  *
38216  * Originally Released Under LGPL - original licence link has changed is not relivant.
38217  *
38218  * Fork - LGPL
38219  * <script type="text/javascript">
38220  */
38221
38222 if(Roo.dd.DropZone){
38223     
38224 Roo.tree.TreeDropZone = function(tree, config){
38225     this.allowParentInsert = false;
38226     this.allowContainerDrop = false;
38227     this.appendOnly = false;
38228     Roo.tree.TreeDropZone.superclass.constructor.call(this, tree.innerCt, config);
38229     this.tree = tree;
38230     this.lastInsertClass = "x-tree-no-status";
38231     this.dragOverData = {};
38232 };
38233
38234 Roo.extend(Roo.tree.TreeDropZone, Roo.dd.DropZone, {
38235     ddGroup : "TreeDD",
38236     scroll:  true,
38237     
38238     expandDelay : 1000,
38239     
38240     expandNode : function(node){
38241         if(node.hasChildNodes() && !node.isExpanded()){
38242             node.expand(false, null, this.triggerCacheRefresh.createDelegate(this));
38243         }
38244     },
38245     
38246     queueExpand : function(node){
38247         this.expandProcId = this.expandNode.defer(this.expandDelay, this, [node]);
38248     },
38249     
38250     cancelExpand : function(){
38251         if(this.expandProcId){
38252             clearTimeout(this.expandProcId);
38253             this.expandProcId = false;
38254         }
38255     },
38256     
38257     isValidDropPoint : function(n, pt, dd, e, data){
38258         if(!n || !data){ return false; }
38259         var targetNode = n.node;
38260         var dropNode = data.node;
38261         // default drop rules
38262         if(!(targetNode && targetNode.isTarget && pt)){
38263             return false;
38264         }
38265         if(pt == "append" && targetNode.allowChildren === false){
38266             return false;
38267         }
38268         if((pt == "above" || pt == "below") && (targetNode.parentNode && targetNode.parentNode.allowChildren === false)){
38269             return false;
38270         }
38271         if(dropNode && (targetNode == dropNode || dropNode.contains(targetNode))){
38272             return false;
38273         }
38274         // reuse the object
38275         var overEvent = this.dragOverData;
38276         overEvent.tree = this.tree;
38277         overEvent.target = targetNode;
38278         overEvent.data = data;
38279         overEvent.point = pt;
38280         overEvent.source = dd;
38281         overEvent.rawEvent = e;
38282         overEvent.dropNode = dropNode;
38283         overEvent.cancel = false;  
38284         var result = this.tree.fireEvent("nodedragover", overEvent);
38285         return overEvent.cancel === false && result !== false;
38286     },
38287     
38288     getDropPoint : function(e, n, dd)
38289     {
38290         var tn = n.node;
38291         if(tn.isRoot){
38292             return tn.allowChildren !== false ? "append" : false; // always append for root
38293         }
38294         var dragEl = n.ddel;
38295         var t = Roo.lib.Dom.getY(dragEl), b = t + dragEl.offsetHeight;
38296         var y = Roo.lib.Event.getPageY(e);
38297         //var noAppend = tn.allowChildren === false || tn.isLeaf();
38298         
38299         // we may drop nodes anywhere, as long as allowChildren has not been set to false..
38300         var noAppend = tn.allowChildren === false;
38301         if(this.appendOnly || tn.parentNode.allowChildren === false){
38302             return noAppend ? false : "append";
38303         }
38304         var noBelow = false;
38305         if(!this.allowParentInsert){
38306             noBelow = tn.hasChildNodes() && tn.isExpanded();
38307         }
38308         var q = (b - t) / (noAppend ? 2 : 3);
38309         if(y >= t && y < (t + q)){
38310             return "above";
38311         }else if(!noBelow && (noAppend || y >= b-q && y <= b)){
38312             return "below";
38313         }else{
38314             return "append";
38315         }
38316     },
38317     
38318     onNodeEnter : function(n, dd, e, data)
38319     {
38320         this.cancelExpand();
38321     },
38322     
38323     onNodeOver : function(n, dd, e, data)
38324     {
38325        
38326         var pt = this.getDropPoint(e, n, dd);
38327         var node = n.node;
38328         
38329         // auto node expand check
38330         if(!this.expandProcId && pt == "append" && node.hasChildNodes() && !n.node.isExpanded()){
38331             this.queueExpand(node);
38332         }else if(pt != "append"){
38333             this.cancelExpand();
38334         }
38335         
38336         // set the insert point style on the target node
38337         var returnCls = this.dropNotAllowed;
38338         if(this.isValidDropPoint(n, pt, dd, e, data)){
38339            if(pt){
38340                var el = n.ddel;
38341                var cls;
38342                if(pt == "above"){
38343                    returnCls = n.node.isFirst() ? "x-tree-drop-ok-above" : "x-tree-drop-ok-between";
38344                    cls = "x-tree-drag-insert-above";
38345                }else if(pt == "below"){
38346                    returnCls = n.node.isLast() ? "x-tree-drop-ok-below" : "x-tree-drop-ok-between";
38347                    cls = "x-tree-drag-insert-below";
38348                }else{
38349                    returnCls = "x-tree-drop-ok-append";
38350                    cls = "x-tree-drag-append";
38351                }
38352                if(this.lastInsertClass != cls){
38353                    Roo.fly(el).replaceClass(this.lastInsertClass, cls);
38354                    this.lastInsertClass = cls;
38355                }
38356            }
38357        }
38358        return returnCls;
38359     },
38360     
38361     onNodeOut : function(n, dd, e, data){
38362         
38363         this.cancelExpand();
38364         this.removeDropIndicators(n);
38365     },
38366     
38367     onNodeDrop : function(n, dd, e, data){
38368         var point = this.getDropPoint(e, n, dd);
38369         var targetNode = n.node;
38370         targetNode.ui.startDrop();
38371         if(!this.isValidDropPoint(n, point, dd, e, data)){
38372             targetNode.ui.endDrop();
38373             return false;
38374         }
38375         // first try to find the drop node
38376         var dropNode = data.node || (dd.getTreeNode ? dd.getTreeNode(data, targetNode, point, e) : null);
38377         var dropEvent = {
38378             tree : this.tree,
38379             target: targetNode,
38380             data: data,
38381             point: point,
38382             source: dd,
38383             rawEvent: e,
38384             dropNode: dropNode,
38385             cancel: !dropNode   
38386         };
38387         var retval = this.tree.fireEvent("beforenodedrop", dropEvent);
38388         if(retval === false || dropEvent.cancel === true || !dropEvent.dropNode){
38389             targetNode.ui.endDrop();
38390             return false;
38391         }
38392         // allow target changing
38393         targetNode = dropEvent.target;
38394         if(point == "append" && !targetNode.isExpanded()){
38395             targetNode.expand(false, null, function(){
38396                 this.completeDrop(dropEvent);
38397             }.createDelegate(this));
38398         }else{
38399             this.completeDrop(dropEvent);
38400         }
38401         return true;
38402     },
38403     
38404     completeDrop : function(de){
38405         var ns = de.dropNode, p = de.point, t = de.target;
38406         if(!(ns instanceof Array)){
38407             ns = [ns];
38408         }
38409         var n;
38410         for(var i = 0, len = ns.length; i < len; i++){
38411             n = ns[i];
38412             if(p == "above"){
38413                 t.parentNode.insertBefore(n, t);
38414             }else if(p == "below"){
38415                 t.parentNode.insertBefore(n, t.nextSibling);
38416             }else{
38417                 t.appendChild(n);
38418             }
38419         }
38420         n.ui.focus();
38421         if(this.tree.hlDrop){
38422             n.ui.highlight();
38423         }
38424         t.ui.endDrop();
38425         this.tree.fireEvent("nodedrop", de);
38426     },
38427     
38428     afterNodeMoved : function(dd, data, e, targetNode, dropNode){
38429         if(this.tree.hlDrop){
38430             dropNode.ui.focus();
38431             dropNode.ui.highlight();
38432         }
38433         this.tree.fireEvent("nodedrop", this.tree, targetNode, data, dd, e);
38434     },
38435     
38436     getTree : function(){
38437         return this.tree;
38438     },
38439     
38440     removeDropIndicators : function(n){
38441         if(n && n.ddel){
38442             var el = n.ddel;
38443             Roo.fly(el).removeClass([
38444                     "x-tree-drag-insert-above",
38445                     "x-tree-drag-insert-below",
38446                     "x-tree-drag-append"]);
38447             this.lastInsertClass = "_noclass";
38448         }
38449     },
38450     
38451     beforeDragDrop : function(target, e, id){
38452         this.cancelExpand();
38453         return true;
38454     },
38455     
38456     afterRepair : function(data){
38457         if(data && Roo.enableFx){
38458             data.node.ui.highlight();
38459         }
38460         this.hideProxy();
38461     } 
38462     
38463 });
38464
38465 }
38466 /*
38467  * Based on:
38468  * Ext JS Library 1.1.1
38469  * Copyright(c) 2006-2007, Ext JS, LLC.
38470  *
38471  * Originally Released Under LGPL - original licence link has changed is not relivant.
38472  *
38473  * Fork - LGPL
38474  * <script type="text/javascript">
38475  */
38476  
38477
38478 if(Roo.dd.DragZone){
38479 Roo.tree.TreeDragZone = function(tree, config){
38480     Roo.tree.TreeDragZone.superclass.constructor.call(this, tree.getTreeEl(), config);
38481     this.tree = tree;
38482 };
38483
38484 Roo.extend(Roo.tree.TreeDragZone, Roo.dd.DragZone, {
38485     ddGroup : "TreeDD",
38486    
38487     onBeforeDrag : function(data, e){
38488         var n = data.node;
38489         return n && n.draggable && !n.disabled;
38490     },
38491      
38492     
38493     onInitDrag : function(e){
38494         var data = this.dragData;
38495         this.tree.getSelectionModel().select(data.node);
38496         this.proxy.update("");
38497         data.node.ui.appendDDGhost(this.proxy.ghost.dom);
38498         this.tree.fireEvent("startdrag", this.tree, data.node, e);
38499     },
38500     
38501     getRepairXY : function(e, data){
38502         return data.node.ui.getDDRepairXY();
38503     },
38504     
38505     onEndDrag : function(data, e){
38506         this.tree.fireEvent("enddrag", this.tree, data.node, e);
38507         
38508         
38509     },
38510     
38511     onValidDrop : function(dd, e, id){
38512         this.tree.fireEvent("dragdrop", this.tree, this.dragData.node, dd, e);
38513         this.hideProxy();
38514     },
38515     
38516     beforeInvalidDrop : function(e, id){
38517         // this scrolls the original position back into view
38518         var sm = this.tree.getSelectionModel();
38519         sm.clearSelections();
38520         sm.select(this.dragData.node);
38521     }
38522 });
38523 }/*
38524  * Based on:
38525  * Ext JS Library 1.1.1
38526  * Copyright(c) 2006-2007, Ext JS, LLC.
38527  *
38528  * Originally Released Under LGPL - original licence link has changed is not relivant.
38529  *
38530  * Fork - LGPL
38531  * <script type="text/javascript">
38532  */
38533 /**
38534  * @class Roo.tree.TreeEditor
38535  * @extends Roo.Editor
38536  * Provides editor functionality for inline tree node editing.  Any valid {@link Roo.form.Field} can be used
38537  * as the editor field.
38538  * @constructor
38539  * @param {Object} config (used to be the tree panel.)
38540  * @param {Object} oldconfig DEPRECIATED Either a prebuilt {@link Roo.form.Field} instance or a Field config object
38541  * 
38542  * @cfg {Roo.tree.TreePanel} tree The tree to bind to.
38543  * @cfg {Roo.form.TextField} field [required] The field configuration
38544  *
38545  * 
38546  */
38547 Roo.tree.TreeEditor = function(config, oldconfig) { // was -- (tree, config){
38548     var tree = config;
38549     var field;
38550     if (oldconfig) { // old style..
38551         field = oldconfig.events ? oldconfig : new Roo.form.TextField(oldconfig);
38552     } else {
38553         // new style..
38554         tree = config.tree;
38555         config.field = config.field  || {};
38556         config.field.xtype = 'TextField';
38557         field = Roo.factory(config.field, Roo.form);
38558     }
38559     config = config || {};
38560     
38561     
38562     this.addEvents({
38563         /**
38564          * @event beforenodeedit
38565          * Fires when editing is initiated, but before the value changes.  Editing can be canceled by returning
38566          * false from the handler of this event.
38567          * @param {Editor} this
38568          * @param {Roo.tree.Node} node 
38569          */
38570         "beforenodeedit" : true
38571     });
38572     
38573     //Roo.log(config);
38574     Roo.tree.TreeEditor.superclass.constructor.call(this, field, config);
38575
38576     this.tree = tree;
38577
38578     tree.on('beforeclick', this.beforeNodeClick, this);
38579     tree.getTreeEl().on('mousedown', this.hide, this);
38580     this.on('complete', this.updateNode, this);
38581     this.on('beforestartedit', this.fitToTree, this);
38582     this.on('startedit', this.bindScroll, this, {delay:10});
38583     this.on('specialkey', this.onSpecialKey, this);
38584 };
38585
38586 Roo.extend(Roo.tree.TreeEditor, Roo.Editor, {
38587     /**
38588      * @cfg {String} alignment
38589      * The position to align to (see {@link Roo.Element#alignTo} for more details, defaults to "l-l").
38590      */
38591     alignment: "l-l",
38592     // inherit
38593     autoSize: false,
38594     /**
38595      * @cfg {Boolean} hideEl
38596      * True to hide the bound element while the editor is displayed (defaults to false)
38597      */
38598     hideEl : false,
38599     /**
38600      * @cfg {String} cls
38601      * CSS class to apply to the editor (defaults to "x-small-editor x-tree-editor")
38602      */
38603     cls: "x-small-editor x-tree-editor",
38604     /**
38605      * @cfg {Boolean} shim
38606      * True to shim the editor if selects/iframes could be displayed beneath it (defaults to false)
38607      */
38608     shim:false,
38609     // inherit
38610     shadow:"frame",
38611     /**
38612      * @cfg {Number} maxWidth
38613      * The maximum width in pixels of the editor field (defaults to 250).  Note that if the maxWidth would exceed
38614      * the containing tree element's size, it will be automatically limited for you to the container width, taking
38615      * scroll and client offsets into account prior to each edit.
38616      */
38617     maxWidth: 250,
38618
38619     editDelay : 350,
38620
38621     // private
38622     fitToTree : function(ed, el){
38623         var td = this.tree.getTreeEl().dom, nd = el.dom;
38624         if(td.scrollLeft >  nd.offsetLeft){ // ensure the node left point is visible
38625             td.scrollLeft = nd.offsetLeft;
38626         }
38627         var w = Math.min(
38628                 this.maxWidth,
38629                 (td.clientWidth > 20 ? td.clientWidth : td.offsetWidth) - Math.max(0, nd.offsetLeft-td.scrollLeft) - /*cushion*/5);
38630         this.setSize(w, '');
38631         
38632         return this.fireEvent('beforenodeedit', this, this.editNode);
38633         
38634     },
38635
38636     // private
38637     triggerEdit : function(node){
38638         this.completeEdit();
38639         this.editNode = node;
38640         this.startEdit(node.ui.textNode, node.text);
38641     },
38642
38643     // private
38644     bindScroll : function(){
38645         this.tree.getTreeEl().on('scroll', this.cancelEdit, this);
38646     },
38647
38648     // private
38649     beforeNodeClick : function(node, e){
38650         var sinceLast = (this.lastClick ? this.lastClick.getElapsed() : 0);
38651         this.lastClick = new Date();
38652         if(sinceLast > this.editDelay && this.tree.getSelectionModel().isSelected(node)){
38653             e.stopEvent();
38654             this.triggerEdit(node);
38655             return false;
38656         }
38657         return true;
38658     },
38659
38660     // private
38661     updateNode : function(ed, value){
38662         this.tree.getTreeEl().un('scroll', this.cancelEdit, this);
38663         this.editNode.setText(value);
38664     },
38665
38666     // private
38667     onHide : function(){
38668         Roo.tree.TreeEditor.superclass.onHide.call(this);
38669         if(this.editNode){
38670             this.editNode.ui.focus();
38671         }
38672     },
38673
38674     // private
38675     onSpecialKey : function(field, e){
38676         var k = e.getKey();
38677         if(k == e.ESC){
38678             e.stopEvent();
38679             this.cancelEdit();
38680         }else if(k == e.ENTER && !e.hasModifier()){
38681             e.stopEvent();
38682             this.completeEdit();
38683         }
38684     }
38685 });//<Script type="text/javascript">
38686 /*
38687  * Based on:
38688  * Ext JS Library 1.1.1
38689  * Copyright(c) 2006-2007, Ext JS, LLC.
38690  *
38691  * Originally Released Under LGPL - original licence link has changed is not relivant.
38692  *
38693  * Fork - LGPL
38694  * <script type="text/javascript">
38695  */
38696  
38697 /**
38698  * Not documented??? - probably should be...
38699  */
38700
38701 Roo.tree.ColumnNodeUI = Roo.extend(Roo.tree.TreeNodeUI, {
38702     //focus: Roo.emptyFn, // prevent odd scrolling behavior
38703     
38704     renderElements : function(n, a, targetNode, bulkRender){
38705         //consel.log("renderElements?");
38706         this.indentMarkup = n.parentNode ? n.parentNode.ui.getChildIndent() : '';
38707
38708         var t = n.getOwnerTree();
38709         var tid = Pman.Tab.Document_TypesTree.tree.el.id;
38710         
38711         var cols = t.columns;
38712         var bw = t.borderWidth;
38713         var c = cols[0];
38714         var href = a.href ? a.href : Roo.isGecko ? "" : "#";
38715          var cb = typeof a.checked == "boolean";
38716         var tx = String.format('{0}',n.text || (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
38717         var colcls = 'x-t-' + tid + '-c0';
38718         var buf = [
38719             '<li class="x-tree-node">',
38720             
38721                 
38722                 '<div class="x-tree-node-el ', a.cls,'">',
38723                     // extran...
38724                     '<div class="x-tree-col ', colcls, '" style="width:', c.width-bw, 'px;">',
38725                 
38726                 
38727                         '<span class="x-tree-node-indent">',this.indentMarkup,'</span>',
38728                         '<img src="', this.emptyIcon, '" class="x-tree-ec-icon  " />',
38729                         '<img src="', a.icon || this.emptyIcon, '" class="x-tree-node-icon',
38730                            (a.icon ? ' x-tree-node-inline-icon' : ''),
38731                            (a.iconCls ? ' '+a.iconCls : ''),
38732                            '" unselectable="on" />',
38733                         (cb ? ('<input class="x-tree-node-cb" type="checkbox" ' + 
38734                              (a.checked ? 'checked="checked" />' : ' />')) : ''),
38735                              
38736                         '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
38737                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>',
38738                             '<span unselectable="on" qtip="' + tx + '">',
38739                              tx,
38740                              '</span></a>' ,
38741                     '</div>',
38742                      '<a class="x-tree-node-anchor" hidefocus="on" href="',href,'" tabIndex="1" ',
38743                             (a.hrefTarget ? ' target="' +a.hrefTarget + '"' : ''), '>'
38744                  ];
38745         for(var i = 1, len = cols.length; i < len; i++){
38746             c = cols[i];
38747             colcls = 'x-t-' + tid + '-c' +i;
38748             tx = String.format('{0}', (c.renderer ? c.renderer(a[c.dataIndex], n, a) : a[c.dataIndex]));
38749             buf.push('<div class="x-tree-col ', colcls, ' ' ,(c.cls?c.cls:''),'" style="width:',c.width-bw,'px;">',
38750                         '<div class="x-tree-col-text" qtip="' + tx +'">',tx,"</div>",
38751                       "</div>");
38752          }
38753          
38754          buf.push(
38755             '</a>',
38756             '<div class="x-clear"></div></div>',
38757             '<ul class="x-tree-node-ct" style="display:none;"></ul>',
38758             "</li>");
38759         
38760         if(bulkRender !== true && n.nextSibling && n.nextSibling.ui.getEl()){
38761             this.wrap = Roo.DomHelper.insertHtml("beforeBegin",
38762                                 n.nextSibling.ui.getEl(), buf.join(""));
38763         }else{
38764             this.wrap = Roo.DomHelper.insertHtml("beforeEnd", targetNode, buf.join(""));
38765         }
38766         var el = this.wrap.firstChild;
38767         this.elRow = el;
38768         this.elNode = el.firstChild;
38769         this.ranchor = el.childNodes[1];
38770         this.ctNode = this.wrap.childNodes[1];
38771         var cs = el.firstChild.childNodes;
38772         this.indentNode = cs[0];
38773         this.ecNode = cs[1];
38774         this.iconNode = cs[2];
38775         var index = 3;
38776         if(cb){
38777             this.checkbox = cs[3];
38778             index++;
38779         }
38780         this.anchor = cs[index];
38781         
38782         this.textNode = cs[index].firstChild;
38783         
38784         //el.on("click", this.onClick, this);
38785         //el.on("dblclick", this.onDblClick, this);
38786         
38787         
38788        // console.log(this);
38789     },
38790     initEvents : function(){
38791         Roo.tree.ColumnNodeUI.superclass.initEvents.call(this);
38792         
38793             
38794         var a = this.ranchor;
38795
38796         var el = Roo.get(a);
38797
38798         if(Roo.isOpera){ // opera render bug ignores the CSS
38799             el.setStyle("text-decoration", "none");
38800         }
38801
38802         el.on("click", this.onClick, this);
38803         el.on("dblclick", this.onDblClick, this);
38804         el.on("contextmenu", this.onContextMenu, this);
38805         
38806     },
38807     
38808     /*onSelectedChange : function(state){
38809         if(state){
38810             this.focus();
38811             this.addClass("x-tree-selected");
38812         }else{
38813             //this.blur();
38814             this.removeClass("x-tree-selected");
38815         }
38816     },*/
38817     addClass : function(cls){
38818         if(this.elRow){
38819             Roo.fly(this.elRow).addClass(cls);
38820         }
38821         
38822     },
38823     
38824     
38825     removeClass : function(cls){
38826         if(this.elRow){
38827             Roo.fly(this.elRow).removeClass(cls);
38828         }
38829     }
38830
38831     
38832     
38833 });//<Script type="text/javascript">
38834
38835 /*
38836  * Based on:
38837  * Ext JS Library 1.1.1
38838  * Copyright(c) 2006-2007, Ext JS, LLC.
38839  *
38840  * Originally Released Under LGPL - original licence link has changed is not relivant.
38841  *
38842  * Fork - LGPL
38843  * <script type="text/javascript">
38844  */
38845  
38846
38847 /**
38848  * @class Roo.tree.ColumnTree
38849  * @extends Roo.tree.TreePanel
38850  * @cfg {Object} columns  Including width, header, renderer, cls, dataIndex 
38851  * @cfg {int} borderWidth  compined right/left border allowance
38852  * @constructor
38853  * @param {String/HTMLElement/Element} el The container element
38854  * @param {Object} config
38855  */
38856 Roo.tree.ColumnTree =  function(el, config)
38857 {
38858    Roo.tree.ColumnTree.superclass.constructor.call(this, el , config);
38859    this.addEvents({
38860         /**
38861         * @event resize
38862         * Fire this event on a container when it resizes
38863         * @param {int} w Width
38864         * @param {int} h Height
38865         */
38866        "resize" : true
38867     });
38868     this.on('resize', this.onResize, this);
38869 };
38870
38871 Roo.extend(Roo.tree.ColumnTree, Roo.tree.TreePanel, {
38872     //lines:false,
38873     
38874     
38875     borderWidth: Roo.isBorderBox ? 0 : 2, 
38876     headEls : false,
38877     
38878     render : function(){
38879         // add the header.....
38880        
38881         Roo.tree.ColumnTree.superclass.render.apply(this);
38882         
38883         this.el.addClass('x-column-tree');
38884         
38885         this.headers = this.el.createChild(
38886             {cls:'x-tree-headers'},this.innerCt.dom);
38887    
38888         var cols = this.columns, c;
38889         var totalWidth = 0;
38890         this.headEls = [];
38891         var  len = cols.length;
38892         for(var i = 0; i < len; i++){
38893              c = cols[i];
38894              totalWidth += c.width;
38895             this.headEls.push(this.headers.createChild({
38896                  cls:'x-tree-hd ' + (c.cls?c.cls+'-hd':''),
38897                  cn: {
38898                      cls:'x-tree-hd-text',
38899                      html: c.header
38900                  },
38901                  style:'width:'+(c.width-this.borderWidth)+'px;'
38902              }));
38903         }
38904         this.headers.createChild({cls:'x-clear'});
38905         // prevent floats from wrapping when clipped
38906         this.headers.setWidth(totalWidth);
38907         //this.innerCt.setWidth(totalWidth);
38908         this.innerCt.setStyle({ overflow: 'auto' });
38909         this.onResize(this.width, this.height);
38910              
38911         
38912     },
38913     onResize : function(w,h)
38914     {
38915         this.height = h;
38916         this.width = w;
38917         // resize cols..
38918         this.innerCt.setWidth(this.width);
38919         this.innerCt.setHeight(this.height-20);
38920         
38921         // headers...
38922         var cols = this.columns, c;
38923         var totalWidth = 0;
38924         var expEl = false;
38925         var len = cols.length;
38926         for(var i = 0; i < len; i++){
38927             c = cols[i];
38928             if (this.autoExpandColumn !== false && c.dataIndex == this.autoExpandColumn) {
38929                 // it's the expander..
38930                 expEl  = this.headEls[i];
38931                 continue;
38932             }
38933             totalWidth += c.width;
38934             
38935         }
38936         if (expEl) {
38937             expEl.setWidth(  ((w - totalWidth)-this.borderWidth - 20));
38938         }
38939         this.headers.setWidth(w-20);
38940
38941         
38942         
38943         
38944     }
38945 });
38946 /*
38947  * Based on:
38948  * Ext JS Library 1.1.1
38949  * Copyright(c) 2006-2007, Ext JS, LLC.
38950  *
38951  * Originally Released Under LGPL - original licence link has changed is not relivant.
38952  *
38953  * Fork - LGPL
38954  * <script type="text/javascript">
38955  */
38956  
38957 /**
38958  * @class Roo.menu.Menu
38959  * @extends Roo.util.Observable
38960  * @children Roo.menu.Item Roo.menu.Separator Roo.menu.TextItem
38961  * A menu object.  This is the container to which you add all other menu items.  Menu can also serve a as a base class
38962  * when you want a specialzed menu based off of another component (like {@link Roo.menu.DateMenu} for example).
38963  * @constructor
38964  * Creates a new Menu
38965  * @param {Object} config Configuration options
38966  */
38967 Roo.menu.Menu = function(config){
38968     
38969     Roo.menu.Menu.superclass.constructor.call(this, config);
38970     
38971     this.id = this.id || Roo.id();
38972     this.addEvents({
38973         /**
38974          * @event beforeshow
38975          * Fires before this menu is displayed
38976          * @param {Roo.menu.Menu} this
38977          */
38978         beforeshow : true,
38979         /**
38980          * @event beforehide
38981          * Fires before this menu is hidden
38982          * @param {Roo.menu.Menu} this
38983          */
38984         beforehide : true,
38985         /**
38986          * @event show
38987          * Fires after this menu is displayed
38988          * @param {Roo.menu.Menu} this
38989          */
38990         show : true,
38991         /**
38992          * @event hide
38993          * Fires after this menu is hidden
38994          * @param {Roo.menu.Menu} this
38995          */
38996         hide : true,
38997         /**
38998          * @event click
38999          * Fires when this menu is clicked (or when the enter key is pressed while it is active)
39000          * @param {Roo.menu.Menu} this
39001          * @param {Roo.menu.Item} menuItem The menu item that was clicked
39002          * @param {Roo.EventObject} e
39003          */
39004         click : true,
39005         /**
39006          * @event mouseover
39007          * Fires when the mouse is hovering over this menu
39008          * @param {Roo.menu.Menu} this
39009          * @param {Roo.EventObject} e
39010          * @param {Roo.menu.Item} menuItem The menu item that was clicked
39011          */
39012         mouseover : true,
39013         /**
39014          * @event mouseout
39015          * Fires when the mouse exits this menu
39016          * @param {Roo.menu.Menu} this
39017          * @param {Roo.EventObject} e
39018          * @param {Roo.menu.Item} menuItem The menu item that was clicked
39019          */
39020         mouseout : true,
39021         /**
39022          * @event itemclick
39023          * Fires when a menu item contained in this menu is clicked
39024          * @param {Roo.menu.BaseItem} baseItem The BaseItem that was clicked
39025          * @param {Roo.EventObject} e
39026          */
39027         itemclick: true
39028     });
39029     if (this.registerMenu) {
39030         Roo.menu.MenuMgr.register(this);
39031     }
39032     
39033     var mis = this.items;
39034     this.items = new Roo.util.MixedCollection();
39035     if(mis){
39036         this.add.apply(this, mis);
39037     }
39038 };
39039
39040 Roo.extend(Roo.menu.Menu, Roo.util.Observable, {
39041     /**
39042      * @cfg {Number} minWidth The minimum width of the menu in pixels (defaults to 120)
39043      */
39044     minWidth : 120,
39045     /**
39046      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop"
39047      * for bottom-right shadow (defaults to "sides")
39048      */
39049     shadow : "sides",
39050     /**
39051      * @cfg {String} subMenuAlign The {@link Roo.Element#alignTo} anchor position value to use for submenus of
39052      * this menu (defaults to "tl-tr?")
39053      */
39054     subMenuAlign : "tl-tr?",
39055     /**
39056      * @cfg {String} defaultAlign The default {@link Roo.Element#alignTo) anchor position value for this menu
39057      * relative to its element of origin (defaults to "tl-bl?")
39058      */
39059     defaultAlign : "tl-bl?",
39060     /**
39061      * @cfg {Boolean} allowOtherMenus True to allow multiple menus to be displayed at the same time (defaults to false)
39062      */
39063     allowOtherMenus : false,
39064     /**
39065      * @cfg {Boolean} registerMenu True (default) - means that clicking on screen etc. hides it.
39066      */
39067     registerMenu : true,
39068
39069     hidden:true,
39070
39071     // private
39072     render : function(){
39073         if(this.el){
39074             return;
39075         }
39076         var el = this.el = new Roo.Layer({
39077             cls: "x-menu",
39078             shadow:this.shadow,
39079             constrain: false,
39080             parentEl: this.parentEl || document.body,
39081             zindex:15000
39082         });
39083
39084         this.keyNav = new Roo.menu.MenuNav(this);
39085
39086         if(this.plain){
39087             el.addClass("x-menu-plain");
39088         }
39089         if(this.cls){
39090             el.addClass(this.cls);
39091         }
39092         // generic focus element
39093         this.focusEl = el.createChild({
39094             tag: "a", cls: "x-menu-focus", href: "#", onclick: "return false;", tabIndex:"-1"
39095         });
39096         var ul = el.createChild({tag: "ul", cls: "x-menu-list"});
39097         //disabling touch- as it's causing issues ..
39098         //ul.on(Roo.isTouch ? 'touchstart' : 'click'   , this.onClick, this);
39099         ul.on('click'   , this.onClick, this);
39100         
39101         
39102         ul.on("mouseover", this.onMouseOver, this);
39103         ul.on("mouseout", this.onMouseOut, this);
39104         this.items.each(function(item){
39105             if (item.hidden) {
39106                 return;
39107             }
39108             
39109             var li = document.createElement("li");
39110             li.className = "x-menu-list-item";
39111             ul.dom.appendChild(li);
39112             item.render(li, this);
39113         }, this);
39114         this.ul = ul;
39115         this.autoWidth();
39116     },
39117
39118     // private
39119     autoWidth : function(){
39120         var el = this.el, ul = this.ul;
39121         if(!el){
39122             return;
39123         }
39124         var w = this.width;
39125         if(w){
39126             el.setWidth(w);
39127         }else if(Roo.isIE){
39128             el.setWidth(this.minWidth);
39129             var t = el.dom.offsetWidth; // force recalc
39130             el.setWidth(ul.getWidth()+el.getFrameWidth("lr"));
39131         }
39132     },
39133
39134     // private
39135     delayAutoWidth : function(){
39136         if(this.rendered){
39137             if(!this.awTask){
39138                 this.awTask = new Roo.util.DelayedTask(this.autoWidth, this);
39139             }
39140             this.awTask.delay(20);
39141         }
39142     },
39143
39144     // private
39145     findTargetItem : function(e){
39146         var t = e.getTarget(".x-menu-list-item", this.ul,  true);
39147         if(t && t.menuItemId){
39148             return this.items.get(t.menuItemId);
39149         }
39150     },
39151
39152     // private
39153     onClick : function(e){
39154         Roo.log("menu.onClick");
39155         var t = this.findTargetItem(e);
39156         if(!t){
39157             return;
39158         }
39159         Roo.log(e);
39160         if (Roo.isTouch && e.type == 'touchstart' && t.menu  && !t.disabled) {
39161             if(t == this.activeItem && t.shouldDeactivate(e)){
39162                 this.activeItem.deactivate();
39163                 delete this.activeItem;
39164                 return;
39165             }
39166             if(t.canActivate){
39167                 this.setActiveItem(t, true);
39168             }
39169             return;
39170             
39171             
39172         }
39173         
39174         t.onClick(e);
39175         this.fireEvent("click", this, t, e);
39176     },
39177
39178     // private
39179     setActiveItem : function(item, autoExpand){
39180         if(item != this.activeItem){
39181             if(this.activeItem){
39182                 this.activeItem.deactivate();
39183             }
39184             this.activeItem = item;
39185             item.activate(autoExpand);
39186         }else if(autoExpand){
39187             item.expandMenu();
39188         }
39189     },
39190
39191     // private
39192     tryActivate : function(start, step){
39193         var items = this.items;
39194         for(var i = start, len = items.length; i >= 0 && i < len; i+= step){
39195             var item = items.get(i);
39196             if(!item.disabled && item.canActivate){
39197                 this.setActiveItem(item, false);
39198                 return item;
39199             }
39200         }
39201         return false;
39202     },
39203
39204     // private
39205     onMouseOver : function(e){
39206         var t;
39207         if(t = this.findTargetItem(e)){
39208             if(t.canActivate && !t.disabled){
39209                 this.setActiveItem(t, true);
39210             }
39211         }
39212         this.fireEvent("mouseover", this, e, t);
39213     },
39214
39215     // private
39216     onMouseOut : function(e){
39217         var t;
39218         if(t = this.findTargetItem(e)){
39219             if(t == this.activeItem && t.shouldDeactivate(e)){
39220                 this.activeItem.deactivate();
39221                 delete this.activeItem;
39222             }
39223         }
39224         this.fireEvent("mouseout", this, e, t);
39225     },
39226
39227     /**
39228      * Read-only.  Returns true if the menu is currently displayed, else false.
39229      * @type Boolean
39230      */
39231     isVisible : function(){
39232         return this.el && !this.hidden;
39233     },
39234
39235     /**
39236      * Displays this menu relative to another element
39237      * @param {String/HTMLElement/Roo.Element} element The element to align to
39238      * @param {String} position (optional) The {@link Roo.Element#alignTo} anchor position to use in aligning to
39239      * the element (defaults to this.defaultAlign)
39240      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
39241      */
39242     show : function(el, pos, parentMenu){
39243         this.parentMenu = parentMenu;
39244         if(!this.el){
39245             this.render();
39246         }
39247         this.fireEvent("beforeshow", this);
39248         this.showAt(this.el.getAlignToXY(el, pos || this.defaultAlign), parentMenu, false);
39249     },
39250
39251     /**
39252      * Displays this menu at a specific xy position
39253      * @param {Array} xyPosition Contains X & Y [x, y] values for the position at which to show the menu (coordinates are page-based)
39254      * @param {Roo.menu.Menu} parentMenu (optional) This menu's parent menu, if applicable (defaults to undefined)
39255      */
39256     showAt : function(xy, parentMenu, /* private: */_e){
39257         this.parentMenu = parentMenu;
39258         if(!this.el){
39259             this.render();
39260         }
39261         if(_e !== false){
39262             this.fireEvent("beforeshow", this);
39263             xy = this.el.adjustForConstraints(xy);
39264         }
39265         this.el.setXY(xy);
39266         this.el.show();
39267         this.hidden = false;
39268         this.focus();
39269         this.fireEvent("show", this);
39270     },
39271
39272     focus : function(){
39273         if(!this.hidden){
39274             this.doFocus.defer(50, this);
39275         }
39276     },
39277
39278     doFocus : function(){
39279         if(!this.hidden){
39280             this.focusEl.focus();
39281         }
39282     },
39283
39284     /**
39285      * Hides this menu and optionally all parent menus
39286      * @param {Boolean} deep (optional) True to hide all parent menus recursively, if any (defaults to false)
39287      */
39288     hide : function(deep){
39289         if(this.el && this.isVisible()){
39290             this.fireEvent("beforehide", this);
39291             if(this.activeItem){
39292                 this.activeItem.deactivate();
39293                 this.activeItem = null;
39294             }
39295             this.el.hide();
39296             this.hidden = true;
39297             this.fireEvent("hide", this);
39298         }
39299         if(deep === true && this.parentMenu){
39300             this.parentMenu.hide(true);
39301         }
39302     },
39303
39304     /**
39305      * Addds one or more items of any type supported by the Menu class, or that can be converted into menu items.
39306      * Any of the following are valid:
39307      * <ul>
39308      * <li>Any menu item object based on {@link Roo.menu.Item}</li>
39309      * <li>An HTMLElement object which will be converted to a menu item</li>
39310      * <li>A menu item config object that will be created as a new menu item</li>
39311      * <li>A string, which can either be '-' or 'separator' to add a menu separator, otherwise
39312      * it will be converted into a {@link Roo.menu.TextItem} and added</li>
39313      * </ul>
39314      * Usage:
39315      * <pre><code>
39316 // Create the menu
39317 var menu = new Roo.menu.Menu();
39318
39319 // Create a menu item to add by reference
39320 var menuItem = new Roo.menu.Item({ text: 'New Item!' });
39321
39322 // Add a bunch of items at once using different methods.
39323 // Only the last item added will be returned.
39324 var item = menu.add(
39325     menuItem,                // add existing item by ref
39326     'Dynamic Item',          // new TextItem
39327     '-',                     // new separator
39328     { text: 'Config Item' }  // new item by config
39329 );
39330 </code></pre>
39331      * @param {Mixed} args One or more menu items, menu item configs or other objects that can be converted to menu items
39332      * @return {Roo.menu.Item} The menu item that was added, or the last one if multiple items were added
39333      */
39334     add : function(){
39335         var a = arguments, l = a.length, item;
39336         for(var i = 0; i < l; i++){
39337             var el = a[i];
39338             if ((typeof(el) == "object") && el.xtype && el.xns) {
39339                 el = Roo.factory(el, Roo.menu);
39340             }
39341             
39342             if(el.render){ // some kind of Item
39343                 item = this.addItem(el);
39344             }else if(typeof el == "string"){ // string
39345                 if(el == "separator" || el == "-"){
39346                     item = this.addSeparator();
39347                 }else{
39348                     item = this.addText(el);
39349                 }
39350             }else if(el.tagName || el.el){ // element
39351                 item = this.addElement(el);
39352             }else if(typeof el == "object"){ // must be menu item config?
39353                 item = this.addMenuItem(el);
39354             }
39355         }
39356         return item;
39357     },
39358
39359     /**
39360      * Returns this menu's underlying {@link Roo.Element} object
39361      * @return {Roo.Element} The element
39362      */
39363     getEl : function(){
39364         if(!this.el){
39365             this.render();
39366         }
39367         return this.el;
39368     },
39369
39370     /**
39371      * Adds a separator bar to the menu
39372      * @return {Roo.menu.Item} The menu item that was added
39373      */
39374     addSeparator : function(){
39375         return this.addItem(new Roo.menu.Separator());
39376     },
39377
39378     /**
39379      * Adds an {@link Roo.Element} object to the menu
39380      * @param {String/HTMLElement/Roo.Element} el The element or DOM node to add, or its id
39381      * @return {Roo.menu.Item} The menu item that was added
39382      */
39383     addElement : function(el){
39384         return this.addItem(new Roo.menu.BaseItem(el));
39385     },
39386
39387     /**
39388      * Adds an existing object based on {@link Roo.menu.Item} to the menu
39389      * @param {Roo.menu.Item} item The menu item to add
39390      * @return {Roo.menu.Item} The menu item that was added
39391      */
39392     addItem : function(item){
39393         this.items.add(item);
39394         if(this.ul){
39395             var li = document.createElement("li");
39396             li.className = "x-menu-list-item";
39397             this.ul.dom.appendChild(li);
39398             item.render(li, this);
39399             this.delayAutoWidth();
39400         }
39401         return item;
39402     },
39403
39404     /**
39405      * Creates a new {@link Roo.menu.Item} based an the supplied config object and adds it to the menu
39406      * @param {Object} config A MenuItem config object
39407      * @return {Roo.menu.Item} The menu item that was added
39408      */
39409     addMenuItem : function(config){
39410         if(!(config instanceof Roo.menu.Item)){
39411             if(typeof config.checked == "boolean"){ // must be check menu item config?
39412                 config = new Roo.menu.CheckItem(config);
39413             }else{
39414                 config = new Roo.menu.Item(config);
39415             }
39416         }
39417         return this.addItem(config);
39418     },
39419
39420     /**
39421      * Creates a new {@link Roo.menu.TextItem} with the supplied text and adds it to the menu
39422      * @param {String} text The text to display in the menu item
39423      * @return {Roo.menu.Item} The menu item that was added
39424      */
39425     addText : function(text){
39426         return this.addItem(new Roo.menu.TextItem({ text : text }));
39427     },
39428
39429     /**
39430      * Inserts an existing object based on {@link Roo.menu.Item} to the menu at a specified index
39431      * @param {Number} index The index in the menu's list of current items where the new item should be inserted
39432      * @param {Roo.menu.Item} item The menu item to add
39433      * @return {Roo.menu.Item} The menu item that was added
39434      */
39435     insert : function(index, item){
39436         this.items.insert(index, item);
39437         if(this.ul){
39438             var li = document.createElement("li");
39439             li.className = "x-menu-list-item";
39440             this.ul.dom.insertBefore(li, this.ul.dom.childNodes[index]);
39441             item.render(li, this);
39442             this.delayAutoWidth();
39443         }
39444         return item;
39445     },
39446
39447     /**
39448      * Removes an {@link Roo.menu.Item} from the menu and destroys the object
39449      * @param {Roo.menu.Item} item The menu item to remove
39450      */
39451     remove : function(item){
39452         this.items.removeKey(item.id);
39453         item.destroy();
39454     },
39455
39456     /**
39457      * Removes and destroys all items in the menu
39458      */
39459     removeAll : function(){
39460         var f;
39461         while(f = this.items.first()){
39462             this.remove(f);
39463         }
39464     }
39465 });
39466
39467 // MenuNav is a private utility class used internally by the Menu
39468 Roo.menu.MenuNav = function(menu){
39469     Roo.menu.MenuNav.superclass.constructor.call(this, menu.el);
39470     this.scope = this.menu = menu;
39471 };
39472
39473 Roo.extend(Roo.menu.MenuNav, Roo.KeyNav, {
39474     doRelay : function(e, h){
39475         var k = e.getKey();
39476         if(!this.menu.activeItem && e.isNavKeyPress() && k != e.SPACE && k != e.RETURN){
39477             this.menu.tryActivate(0, 1);
39478             return false;
39479         }
39480         return h.call(this.scope || this, e, this.menu);
39481     },
39482
39483     up : function(e, m){
39484         if(!m.tryActivate(m.items.indexOf(m.activeItem)-1, -1)){
39485             m.tryActivate(m.items.length-1, -1);
39486         }
39487     },
39488
39489     down : function(e, m){
39490         if(!m.tryActivate(m.items.indexOf(m.activeItem)+1, 1)){
39491             m.tryActivate(0, 1);
39492         }
39493     },
39494
39495     right : function(e, m){
39496         if(m.activeItem){
39497             m.activeItem.expandMenu(true);
39498         }
39499     },
39500
39501     left : function(e, m){
39502         m.hide();
39503         if(m.parentMenu && m.parentMenu.activeItem){
39504             m.parentMenu.activeItem.activate();
39505         }
39506     },
39507
39508     enter : function(e, m){
39509         if(m.activeItem){
39510             e.stopPropagation();
39511             m.activeItem.onClick(e);
39512             m.fireEvent("click", this, m.activeItem);
39513             return true;
39514         }
39515     }
39516 });/*
39517  * Based on:
39518  * Ext JS Library 1.1.1
39519  * Copyright(c) 2006-2007, Ext JS, LLC.
39520  *
39521  * Originally Released Under LGPL - original licence link has changed is not relivant.
39522  *
39523  * Fork - LGPL
39524  * <script type="text/javascript">
39525  */
39526  
39527 /**
39528  * @class Roo.menu.MenuMgr
39529  * Provides a common registry of all menu items on a page so that they can be easily accessed by id.
39530  * @static
39531  */
39532 Roo.menu.MenuMgr = function(){
39533    var menus, active, groups = {}, attached = false, lastShow = new Date();
39534
39535    // private - called when first menu is created
39536    function init(){
39537        menus = {};
39538        active = new Roo.util.MixedCollection();
39539        Roo.get(document).addKeyListener(27, function(){
39540            if(active.length > 0){
39541                hideAll();
39542            }
39543        });
39544    }
39545
39546    // private
39547    function hideAll(){
39548        if(active && active.length > 0){
39549            var c = active.clone();
39550            c.each(function(m){
39551                m.hide();
39552            });
39553        }
39554    }
39555
39556    // private
39557    function onHide(m){
39558        active.remove(m);
39559        if(active.length < 1){
39560            Roo.get(document).un("mousedown", onMouseDown);
39561            attached = false;
39562        }
39563    }
39564
39565    // private
39566    function onShow(m){
39567        var last = active.last();
39568        lastShow = new Date();
39569        active.add(m);
39570        if(!attached){
39571            Roo.get(document).on("mousedown", onMouseDown);
39572            attached = true;
39573        }
39574        if(m.parentMenu){
39575           m.getEl().setZIndex(parseInt(m.parentMenu.getEl().getStyle("z-index"), 10) + 3);
39576           m.parentMenu.activeChild = m;
39577        }else if(last && last.isVisible()){
39578           m.getEl().setZIndex(parseInt(last.getEl().getStyle("z-index"), 10) + 3);
39579        }
39580    }
39581
39582    // private
39583    function onBeforeHide(m){
39584        if(m.activeChild){
39585            m.activeChild.hide();
39586        }
39587        if(m.autoHideTimer){
39588            clearTimeout(m.autoHideTimer);
39589            delete m.autoHideTimer;
39590        }
39591    }
39592
39593    // private
39594    function onBeforeShow(m){
39595        var pm = m.parentMenu;
39596        if(!pm && !m.allowOtherMenus){
39597            hideAll();
39598        }else if(pm && pm.activeChild && active != m){
39599            pm.activeChild.hide();
39600        }
39601    }
39602
39603    // private
39604    function onMouseDown(e){
39605        if(lastShow.getElapsed() > 50 && active.length > 0 && !e.getTarget(".x-menu")){
39606            hideAll();
39607        }
39608    }
39609
39610    // private
39611    function onBeforeCheck(mi, state){
39612        if(state){
39613            var g = groups[mi.group];
39614            for(var i = 0, l = g.length; i < l; i++){
39615                if(g[i] != mi){
39616                    g[i].setChecked(false);
39617                }
39618            }
39619        }
39620    }
39621
39622    return {
39623
39624        /**
39625         * Hides all menus that are currently visible
39626         */
39627        hideAll : function(){
39628             hideAll();  
39629        },
39630
39631        // private
39632        register : function(menu){
39633            if(!menus){
39634                init();
39635            }
39636            menus[menu.id] = menu;
39637            menu.on("beforehide", onBeforeHide);
39638            menu.on("hide", onHide);
39639            menu.on("beforeshow", onBeforeShow);
39640            menu.on("show", onShow);
39641            var g = menu.group;
39642            if(g && menu.events["checkchange"]){
39643                if(!groups[g]){
39644                    groups[g] = [];
39645                }
39646                groups[g].push(menu);
39647                menu.on("checkchange", onCheck);
39648            }
39649        },
39650
39651         /**
39652          * Returns a {@link Roo.menu.Menu} object
39653          * @param {String/Object} menu The string menu id, an existing menu object reference, or a Menu config that will
39654          * be used to generate and return a new Menu instance.
39655          */
39656        get : function(menu){
39657            if(typeof menu == "string"){ // menu id
39658                return menus[menu];
39659            }else if(menu.events){  // menu instance
39660                return menu;
39661            }else if(typeof menu.length == 'number'){ // array of menu items?
39662                return new Roo.menu.Menu({items:menu});
39663            }else{ // otherwise, must be a config
39664                return new Roo.menu.Menu(menu);
39665            }
39666        },
39667
39668        // private
39669        unregister : function(menu){
39670            delete menus[menu.id];
39671            menu.un("beforehide", onBeforeHide);
39672            menu.un("hide", onHide);
39673            menu.un("beforeshow", onBeforeShow);
39674            menu.un("show", onShow);
39675            var g = menu.group;
39676            if(g && menu.events["checkchange"]){
39677                groups[g].remove(menu);
39678                menu.un("checkchange", onCheck);
39679            }
39680        },
39681
39682        // private
39683        registerCheckable : function(menuItem){
39684            var g = menuItem.group;
39685            if(g){
39686                if(!groups[g]){
39687                    groups[g] = [];
39688                }
39689                groups[g].push(menuItem);
39690                menuItem.on("beforecheckchange", onBeforeCheck);
39691            }
39692        },
39693
39694        // private
39695        unregisterCheckable : function(menuItem){
39696            var g = menuItem.group;
39697            if(g){
39698                groups[g].remove(menuItem);
39699                menuItem.un("beforecheckchange", onBeforeCheck);
39700            }
39701        }
39702    };
39703 }();/*
39704  * Based on:
39705  * Ext JS Library 1.1.1
39706  * Copyright(c) 2006-2007, Ext JS, LLC.
39707  *
39708  * Originally Released Under LGPL - original licence link has changed is not relivant.
39709  *
39710  * Fork - LGPL
39711  * <script type="text/javascript">
39712  */
39713  
39714
39715 /**
39716  * @class Roo.menu.BaseItem
39717  * @extends Roo.Component
39718  * @abstract
39719  * The base class for all items that render into menus.  BaseItem provides default rendering, activated state
39720  * management and base configuration options shared by all menu components.
39721  * @constructor
39722  * Creates a new BaseItem
39723  * @param {Object} config Configuration options
39724  */
39725 Roo.menu.BaseItem = function(config){
39726     Roo.menu.BaseItem.superclass.constructor.call(this, config);
39727
39728     this.addEvents({
39729         /**
39730          * @event click
39731          * Fires when this item is clicked
39732          * @param {Roo.menu.BaseItem} this
39733          * @param {Roo.EventObject} e
39734          */
39735         click: true,
39736         /**
39737          * @event activate
39738          * Fires when this item is activated
39739          * @param {Roo.menu.BaseItem} this
39740          */
39741         activate : true,
39742         /**
39743          * @event deactivate
39744          * Fires when this item is deactivated
39745          * @param {Roo.menu.BaseItem} this
39746          */
39747         deactivate : true
39748     });
39749
39750     if(this.handler){
39751         this.on("click", this.handler, this.scope, true);
39752     }
39753 };
39754
39755 Roo.extend(Roo.menu.BaseItem, Roo.Component, {
39756     /**
39757      * @cfg {Function} handler
39758      * A function that will handle the click event of this menu item (defaults to undefined)
39759      */
39760     /**
39761      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to false)
39762      */
39763     canActivate : false,
39764     
39765      /**
39766      * @cfg {Boolean} hidden True to prevent creation of this menu item (defaults to false)
39767      */
39768     hidden: false,
39769     
39770     /**
39771      * @cfg {String} activeClass The CSS class to use when the item becomes activated (defaults to "x-menu-item-active")
39772      */
39773     activeClass : "x-menu-item-active",
39774     /**
39775      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to true)
39776      */
39777     hideOnClick : true,
39778     /**
39779      * @cfg {Number} hideDelay Length of time in milliseconds to wait before hiding after a click (defaults to 100)
39780      */
39781     hideDelay : 100,
39782
39783     // private
39784     ctype: "Roo.menu.BaseItem",
39785
39786     // private
39787     actionMode : "container",
39788
39789     // private
39790     render : function(container, parentMenu){
39791         this.parentMenu = parentMenu;
39792         Roo.menu.BaseItem.superclass.render.call(this, container);
39793         this.container.menuItemId = this.id;
39794     },
39795
39796     // private
39797     onRender : function(container, position){
39798         this.el = Roo.get(this.el);
39799         container.dom.appendChild(this.el.dom);
39800     },
39801
39802     // private
39803     onClick : function(e){
39804         if(!this.disabled && this.fireEvent("click", this, e) !== false
39805                 && this.parentMenu.fireEvent("itemclick", this, e) !== false){
39806             this.handleClick(e);
39807         }else{
39808             e.stopEvent();
39809         }
39810     },
39811
39812     // private
39813     activate : function(){
39814         if(this.disabled){
39815             return false;
39816         }
39817         var li = this.container;
39818         li.addClass(this.activeClass);
39819         this.region = li.getRegion().adjust(2, 2, -2, -2);
39820         this.fireEvent("activate", this);
39821         return true;
39822     },
39823
39824     // private
39825     deactivate : function(){
39826         this.container.removeClass(this.activeClass);
39827         this.fireEvent("deactivate", this);
39828     },
39829
39830     // private
39831     shouldDeactivate : function(e){
39832         return !this.region || !this.region.contains(e.getPoint());
39833     },
39834
39835     // private
39836     handleClick : function(e){
39837         if(this.hideOnClick){
39838             this.parentMenu.hide.defer(this.hideDelay, this.parentMenu, [true]);
39839         }
39840     },
39841
39842     // private
39843     expandMenu : function(autoActivate){
39844         // do nothing
39845     },
39846
39847     // private
39848     hideMenu : function(){
39849         // do nothing
39850     }
39851 });/*
39852  * Based on:
39853  * Ext JS Library 1.1.1
39854  * Copyright(c) 2006-2007, Ext JS, LLC.
39855  *
39856  * Originally Released Under LGPL - original licence link has changed is not relivant.
39857  *
39858  * Fork - LGPL
39859  * <script type="text/javascript">
39860  */
39861  
39862 /**
39863  * @class Roo.menu.Adapter
39864  * @extends Roo.menu.BaseItem
39865  * @abstract
39866  * A base utility class that adapts a non-menu component so that it can be wrapped by a menu item and added to a menu.
39867  * It provides basic rendering, activation management and enable/disable logic required to work in menus.
39868  * @constructor
39869  * Creates a new Adapter
39870  * @param {Object} config Configuration options
39871  */
39872 Roo.menu.Adapter = function(component, config){
39873     Roo.menu.Adapter.superclass.constructor.call(this, config);
39874     this.component = component;
39875 };
39876 Roo.extend(Roo.menu.Adapter, Roo.menu.BaseItem, {
39877     // private
39878     canActivate : true,
39879
39880     // private
39881     onRender : function(container, position){
39882         this.component.render(container);
39883         this.el = this.component.getEl();
39884     },
39885
39886     // private
39887     activate : function(){
39888         if(this.disabled){
39889             return false;
39890         }
39891         this.component.focus();
39892         this.fireEvent("activate", this);
39893         return true;
39894     },
39895
39896     // private
39897     deactivate : function(){
39898         this.fireEvent("deactivate", this);
39899     },
39900
39901     // private
39902     disable : function(){
39903         this.component.disable();
39904         Roo.menu.Adapter.superclass.disable.call(this);
39905     },
39906
39907     // private
39908     enable : function(){
39909         this.component.enable();
39910         Roo.menu.Adapter.superclass.enable.call(this);
39911     }
39912 });/*
39913  * Based on:
39914  * Ext JS Library 1.1.1
39915  * Copyright(c) 2006-2007, Ext JS, LLC.
39916  *
39917  * Originally Released Under LGPL - original licence link has changed is not relivant.
39918  *
39919  * Fork - LGPL
39920  * <script type="text/javascript">
39921  */
39922
39923 /**
39924  * @class Roo.menu.TextItem
39925  * @extends Roo.menu.BaseItem
39926  * Adds a static text string to a menu, usually used as either a heading or group separator.
39927  * Note: old style constructor with text is still supported.
39928  * 
39929  * @constructor
39930  * Creates a new TextItem
39931  * @param {Object} cfg Configuration
39932  */
39933 Roo.menu.TextItem = function(cfg){
39934     if (typeof(cfg) == 'string') {
39935         this.text = cfg;
39936     } else {
39937         Roo.apply(this,cfg);
39938     }
39939     
39940     Roo.menu.TextItem.superclass.constructor.call(this);
39941 };
39942
39943 Roo.extend(Roo.menu.TextItem, Roo.menu.BaseItem, {
39944     /**
39945      * @cfg {String} text Text to show on item.
39946      */
39947     text : '',
39948     
39949     /**
39950      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
39951      */
39952     hideOnClick : false,
39953     /**
39954      * @cfg {String} itemCls The default CSS class to use for text items (defaults to "x-menu-text")
39955      */
39956     itemCls : "x-menu-text",
39957
39958     // private
39959     onRender : function(){
39960         var s = document.createElement("span");
39961         s.className = this.itemCls;
39962         s.innerHTML = this.text;
39963         this.el = s;
39964         Roo.menu.TextItem.superclass.onRender.apply(this, arguments);
39965     }
39966 });/*
39967  * Based on:
39968  * Ext JS Library 1.1.1
39969  * Copyright(c) 2006-2007, Ext JS, LLC.
39970  *
39971  * Originally Released Under LGPL - original licence link has changed is not relivant.
39972  *
39973  * Fork - LGPL
39974  * <script type="text/javascript">
39975  */
39976
39977 /**
39978  * @class Roo.menu.Separator
39979  * @extends Roo.menu.BaseItem
39980  * Adds a separator bar to a menu, used to divide logical groups of menu items. Generally you will
39981  * add one of these by using "-" in you call to add() or in your items config rather than creating one directly.
39982  * @constructor
39983  * @param {Object} config Configuration options
39984  */
39985 Roo.menu.Separator = function(config){
39986     Roo.menu.Separator.superclass.constructor.call(this, config);
39987 };
39988
39989 Roo.extend(Roo.menu.Separator, Roo.menu.BaseItem, {
39990     /**
39991      * @cfg {String} itemCls The default CSS class to use for separators (defaults to "x-menu-sep")
39992      */
39993     itemCls : "x-menu-sep",
39994     /**
39995      * @cfg {Boolean} hideOnClick True to hide the containing menu after this item is clicked (defaults to false)
39996      */
39997     hideOnClick : false,
39998
39999     // private
40000     onRender : function(li){
40001         var s = document.createElement("span");
40002         s.className = this.itemCls;
40003         s.innerHTML = "&#160;";
40004         this.el = s;
40005         li.addClass("x-menu-sep-li");
40006         Roo.menu.Separator.superclass.onRender.apply(this, arguments);
40007     }
40008 });/*
40009  * Based on:
40010  * Ext JS Library 1.1.1
40011  * Copyright(c) 2006-2007, Ext JS, LLC.
40012  *
40013  * Originally Released Under LGPL - original licence link has changed is not relivant.
40014  *
40015  * Fork - LGPL
40016  * <script type="text/javascript">
40017  */
40018 /**
40019  * @class Roo.menu.Item
40020  * @extends Roo.menu.BaseItem
40021  * A base class for all menu items that require menu-related functionality (like sub-menus) and are not static
40022  * display items.  Item extends the base functionality of {@link Roo.menu.BaseItem} by adding menu-specific
40023  * activation and click handling.
40024  * @constructor
40025  * Creates a new Item
40026  * @param {Object} config Configuration options
40027  */
40028 Roo.menu.Item = function(config){
40029     Roo.menu.Item.superclass.constructor.call(this, config);
40030     if(this.menu){
40031         this.menu = Roo.menu.MenuMgr.get(this.menu);
40032     }
40033 };
40034 Roo.extend(Roo.menu.Item, Roo.menu.BaseItem, {
40035     /**
40036      * @cfg {Roo.menu.Menu} menu
40037      * A Sub menu
40038      */
40039     /**
40040      * @cfg {String} text
40041      * The text to show on the menu item.
40042      */
40043     text: '',
40044      /**
40045      * @cfg {String} html to render in menu
40046      * The text to show on the menu item (HTML version).
40047      */
40048     html: '',
40049     /**
40050      * @cfg {String} icon
40051      * The path to an icon to display in this menu item (defaults to Roo.BLANK_IMAGE_URL)
40052      */
40053     icon: undefined,
40054     /**
40055      * @cfg {String} itemCls The default CSS class to use for menu items (defaults to "x-menu-item")
40056      */
40057     itemCls : "x-menu-item",
40058     /**
40059      * @cfg {Boolean} canActivate True if this item can be visually activated (defaults to true)
40060      */
40061     canActivate : true,
40062     /**
40063      * @cfg {Number} showDelay Length of time in milliseconds to wait before showing this item (defaults to 200)
40064      */
40065     showDelay: 200,
40066     // doc'd in BaseItem
40067     hideDelay: 200,
40068
40069     // private
40070     ctype: "Roo.menu.Item",
40071     
40072     // private
40073     onRender : function(container, position){
40074         var el = document.createElement("a");
40075         el.hideFocus = true;
40076         el.unselectable = "on";
40077         el.href = this.href || "#";
40078         if(this.hrefTarget){
40079             el.target = this.hrefTarget;
40080         }
40081         el.className = this.itemCls + (this.menu ?  " x-menu-item-arrow" : "") + (this.cls ?  " " + this.cls : "");
40082         
40083         var html = this.html.length ? this.html  : String.format('{0}',this.text);
40084         
40085         el.innerHTML = String.format(
40086                 '<img src="{0}" class="x-menu-item-icon {1}" />' + html,
40087                 this.icon || Roo.BLANK_IMAGE_URL, this.iconCls || '');
40088         this.el = el;
40089         Roo.menu.Item.superclass.onRender.call(this, container, position);
40090     },
40091
40092     /**
40093      * Sets the text to display in this menu item
40094      * @param {String} text The text to display
40095      * @param {Boolean} isHTML true to indicate text is pure html.
40096      */
40097     setText : function(text, isHTML){
40098         if (isHTML) {
40099             this.html = text;
40100         } else {
40101             this.text = text;
40102             this.html = '';
40103         }
40104         if(this.rendered){
40105             var html = this.html.length ? this.html  : String.format('{0}',this.text);
40106      
40107             this.el.update(String.format(
40108                 '<img src="{0}" class="x-menu-item-icon {2}">' + html,
40109                 this.icon || Roo.BLANK_IMAGE_URL, this.text, this.iconCls || ''));
40110             this.parentMenu.autoWidth();
40111         }
40112     },
40113
40114     // private
40115     handleClick : function(e){
40116         if(!this.href){ // if no link defined, stop the event automatically
40117             e.stopEvent();
40118         }
40119         Roo.menu.Item.superclass.handleClick.apply(this, arguments);
40120     },
40121
40122     // private
40123     activate : function(autoExpand){
40124         if(Roo.menu.Item.superclass.activate.apply(this, arguments)){
40125             this.focus();
40126             if(autoExpand){
40127                 this.expandMenu();
40128             }
40129         }
40130         return true;
40131     },
40132
40133     // private
40134     shouldDeactivate : function(e){
40135         if(Roo.menu.Item.superclass.shouldDeactivate.call(this, e)){
40136             if(this.menu && this.menu.isVisible()){
40137                 return !this.menu.getEl().getRegion().contains(e.getPoint());
40138             }
40139             return true;
40140         }
40141         return false;
40142     },
40143
40144     // private
40145     deactivate : function(){
40146         Roo.menu.Item.superclass.deactivate.apply(this, arguments);
40147         this.hideMenu();
40148     },
40149
40150     // private
40151     expandMenu : function(autoActivate){
40152         if(!this.disabled && this.menu){
40153             clearTimeout(this.hideTimer);
40154             delete this.hideTimer;
40155             if(!this.menu.isVisible() && !this.showTimer){
40156                 this.showTimer = this.deferExpand.defer(this.showDelay, this, [autoActivate]);
40157             }else if (this.menu.isVisible() && autoActivate){
40158                 this.menu.tryActivate(0, 1);
40159             }
40160         }
40161     },
40162
40163     // private
40164     deferExpand : function(autoActivate){
40165         delete this.showTimer;
40166         this.menu.show(this.container, this.parentMenu.subMenuAlign || "tl-tr?", this.parentMenu);
40167         if(autoActivate){
40168             this.menu.tryActivate(0, 1);
40169         }
40170     },
40171
40172     // private
40173     hideMenu : function(){
40174         clearTimeout(this.showTimer);
40175         delete this.showTimer;
40176         if(!this.hideTimer && this.menu && this.menu.isVisible()){
40177             this.hideTimer = this.deferHide.defer(this.hideDelay, this);
40178         }
40179     },
40180
40181     // private
40182     deferHide : function(){
40183         delete this.hideTimer;
40184         this.menu.hide();
40185     }
40186 });/*
40187  * Based on:
40188  * Ext JS Library 1.1.1
40189  * Copyright(c) 2006-2007, Ext JS, LLC.
40190  *
40191  * Originally Released Under LGPL - original licence link has changed is not relivant.
40192  *
40193  * Fork - LGPL
40194  * <script type="text/javascript">
40195  */
40196  
40197 /**
40198  * @class Roo.menu.CheckItem
40199  * @extends Roo.menu.Item
40200  * Adds a menu item that contains a checkbox by default, but can also be part of a radio group.
40201  * @constructor
40202  * Creates a new CheckItem
40203  * @param {Object} config Configuration options
40204  */
40205 Roo.menu.CheckItem = function(config){
40206     Roo.menu.CheckItem.superclass.constructor.call(this, config);
40207     this.addEvents({
40208         /**
40209          * @event beforecheckchange
40210          * Fires before the checked value is set, providing an opportunity to cancel if needed
40211          * @param {Roo.menu.CheckItem} this
40212          * @param {Boolean} checked The new checked value that will be set
40213          */
40214         "beforecheckchange" : true,
40215         /**
40216          * @event checkchange
40217          * Fires after the checked value has been set
40218          * @param {Roo.menu.CheckItem} this
40219          * @param {Boolean} checked The checked value that was set
40220          */
40221         "checkchange" : true
40222     });
40223     if(this.checkHandler){
40224         this.on('checkchange', this.checkHandler, this.scope);
40225     }
40226 };
40227 Roo.extend(Roo.menu.CheckItem, Roo.menu.Item, {
40228     /**
40229      * @cfg {String} group
40230      * All check items with the same group name will automatically be grouped into a single-select
40231      * radio button group (defaults to '')
40232      */
40233     /**
40234      * @cfg {String} itemCls The default CSS class to use for check items (defaults to "x-menu-item x-menu-check-item")
40235      */
40236     itemCls : "x-menu-item x-menu-check-item",
40237     /**
40238      * @cfg {String} groupClass The default CSS class to use for radio group check items (defaults to "x-menu-group-item")
40239      */
40240     groupClass : "x-menu-group-item",
40241
40242     /**
40243      * @cfg {Boolean} checked True to initialize this checkbox as checked (defaults to false).  Note that
40244      * if this checkbox is part of a radio group (group = true) only the last item in the group that is
40245      * initialized with checked = true will be rendered as checked.
40246      */
40247     checked: false,
40248
40249     // private
40250     ctype: "Roo.menu.CheckItem",
40251
40252     // private
40253     onRender : function(c){
40254         Roo.menu.CheckItem.superclass.onRender.apply(this, arguments);
40255         if(this.group){
40256             this.el.addClass(this.groupClass);
40257         }
40258         Roo.menu.MenuMgr.registerCheckable(this);
40259         if(this.checked){
40260             this.checked = false;
40261             this.setChecked(true, true);
40262         }
40263     },
40264
40265     // private
40266     destroy : function(){
40267         if(this.rendered){
40268             Roo.menu.MenuMgr.unregisterCheckable(this);
40269         }
40270         Roo.menu.CheckItem.superclass.destroy.apply(this, arguments);
40271     },
40272
40273     /**
40274      * Set the checked state of this item
40275      * @param {Boolean} checked The new checked value
40276      * @param {Boolean} suppressEvent (optional) True to prevent the checkchange event from firing (defaults to false)
40277      */
40278     setChecked : function(state, suppressEvent){
40279         if(this.checked != state && this.fireEvent("beforecheckchange", this, state) !== false){
40280             if(this.container){
40281                 this.container[state ? "addClass" : "removeClass"]("x-menu-item-checked");
40282             }
40283             this.checked = state;
40284             if(suppressEvent !== true){
40285                 this.fireEvent("checkchange", this, state);
40286             }
40287         }
40288     },
40289
40290     // private
40291     handleClick : function(e){
40292        if(!this.disabled && !(this.checked && this.group)){// disable unselect on radio item
40293            this.setChecked(!this.checked);
40294        }
40295        Roo.menu.CheckItem.superclass.handleClick.apply(this, arguments);
40296     }
40297 });/*
40298  * Based on:
40299  * Ext JS Library 1.1.1
40300  * Copyright(c) 2006-2007, Ext JS, LLC.
40301  *
40302  * Originally Released Under LGPL - original licence link has changed is not relivant.
40303  *
40304  * Fork - LGPL
40305  * <script type="text/javascript">
40306  */
40307  
40308 /**
40309  * @class Roo.menu.DateItem
40310  * @extends Roo.menu.Adapter
40311  * A menu item that wraps the {@link Roo.DatPicker} component.
40312  * @constructor
40313  * Creates a new DateItem
40314  * @param {Object} config Configuration options
40315  */
40316 Roo.menu.DateItem = function(config){
40317     Roo.menu.DateItem.superclass.constructor.call(this, new Roo.DatePicker(config), config);
40318     /** The Roo.DatePicker object @type Roo.DatePicker */
40319     this.picker = this.component;
40320     this.addEvents({select: true});
40321     
40322     this.picker.on("render", function(picker){
40323         picker.getEl().swallowEvent("click");
40324         picker.container.addClass("x-menu-date-item");
40325     });
40326
40327     this.picker.on("select", this.onSelect, this);
40328 };
40329
40330 Roo.extend(Roo.menu.DateItem, Roo.menu.Adapter, {
40331     // private
40332     onSelect : function(picker, date){
40333         this.fireEvent("select", this, date, picker);
40334         Roo.menu.DateItem.superclass.handleClick.call(this);
40335     }
40336 });/*
40337  * Based on:
40338  * Ext JS Library 1.1.1
40339  * Copyright(c) 2006-2007, Ext JS, LLC.
40340  *
40341  * Originally Released Under LGPL - original licence link has changed is not relivant.
40342  *
40343  * Fork - LGPL
40344  * <script type="text/javascript">
40345  */
40346  
40347 /**
40348  * @class Roo.menu.ColorItem
40349  * @extends Roo.menu.Adapter
40350  * A menu item that wraps the {@link Roo.ColorPalette} component.
40351  * @constructor
40352  * Creates a new ColorItem
40353  * @param {Object} config Configuration options
40354  */
40355 Roo.menu.ColorItem = function(config){
40356     Roo.menu.ColorItem.superclass.constructor.call(this, new Roo.ColorPalette(config), config);
40357     /** The Roo.ColorPalette object @type Roo.ColorPalette */
40358     this.palette = this.component;
40359     this.relayEvents(this.palette, ["select"]);
40360     if(this.selectHandler){
40361         this.on('select', this.selectHandler, this.scope);
40362     }
40363 };
40364 Roo.extend(Roo.menu.ColorItem, Roo.menu.Adapter);/*
40365  * Based on:
40366  * Ext JS Library 1.1.1
40367  * Copyright(c) 2006-2007, Ext JS, LLC.
40368  *
40369  * Originally Released Under LGPL - original licence link has changed is not relivant.
40370  *
40371  * Fork - LGPL
40372  * <script type="text/javascript">
40373  */
40374  
40375
40376 /**
40377  * @class Roo.menu.DateMenu
40378  * @extends Roo.menu.Menu
40379  * A menu containing a {@link Roo.menu.DateItem} component (which provides a date picker).
40380  * @constructor
40381  * Creates a new DateMenu
40382  * @param {Object} config Configuration options
40383  */
40384 Roo.menu.DateMenu = function(config){
40385     Roo.menu.DateMenu.superclass.constructor.call(this, config);
40386     this.plain = true;
40387     var di = new Roo.menu.DateItem(config);
40388     this.add(di);
40389     /**
40390      * The {@link Roo.DatePicker} instance for this DateMenu
40391      * @type DatePicker
40392      */
40393     this.picker = di.picker;
40394     /**
40395      * @event select
40396      * @param {DatePicker} picker
40397      * @param {Date} date
40398      */
40399     this.relayEvents(di, ["select"]);
40400     this.on('beforeshow', function(){
40401         if(this.picker){
40402             this.picker.hideMonthPicker(false);
40403         }
40404     }, this);
40405 };
40406 Roo.extend(Roo.menu.DateMenu, Roo.menu.Menu, {
40407     cls:'x-date-menu'
40408 });/*
40409  * Based on:
40410  * Ext JS Library 1.1.1
40411  * Copyright(c) 2006-2007, Ext JS, LLC.
40412  *
40413  * Originally Released Under LGPL - original licence link has changed is not relivant.
40414  *
40415  * Fork - LGPL
40416  * <script type="text/javascript">
40417  */
40418  
40419
40420 /**
40421  * @class Roo.menu.ColorMenu
40422  * @extends Roo.menu.Menu
40423  * A menu containing a {@link Roo.menu.ColorItem} component (which provides a basic color picker).
40424  * @constructor
40425  * Creates a new ColorMenu
40426  * @param {Object} config Configuration options
40427  */
40428 Roo.menu.ColorMenu = function(config){
40429     Roo.menu.ColorMenu.superclass.constructor.call(this, config);
40430     this.plain = true;
40431     var ci = new Roo.menu.ColorItem(config);
40432     this.add(ci);
40433     /**
40434      * The {@link Roo.ColorPalette} instance for this ColorMenu
40435      * @type ColorPalette
40436      */
40437     this.palette = ci.palette;
40438     /**
40439      * @event select
40440      * @param {ColorPalette} palette
40441      * @param {String} color
40442      */
40443     this.relayEvents(ci, ["select"]);
40444 };
40445 Roo.extend(Roo.menu.ColorMenu, Roo.menu.Menu);/*
40446  * Based on:
40447  * Ext JS Library 1.1.1
40448  * Copyright(c) 2006-2007, Ext JS, LLC.
40449  *
40450  * Originally Released Under LGPL - original licence link has changed is not relivant.
40451  *
40452  * Fork - LGPL
40453  * <script type="text/javascript">
40454  */
40455  
40456 /**
40457  * @class Roo.form.TextItem
40458  * @extends Roo.BoxComponent
40459  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
40460  * @constructor
40461  * Creates a new TextItem
40462  * @param {Object} config Configuration options
40463  */
40464 Roo.form.TextItem = function(config){
40465     Roo.form.TextItem.superclass.constructor.call(this, config);
40466 };
40467
40468 Roo.extend(Roo.form.TextItem, Roo.BoxComponent,  {
40469     
40470     /**
40471      * @cfg {String} tag the tag for this item (default div)
40472      */
40473     tag : 'div',
40474     /**
40475      * @cfg {String} html the content for this item
40476      */
40477     html : '',
40478     
40479     getAutoCreate : function()
40480     {
40481         var cfg = {
40482             id: this.id,
40483             tag: this.tag,
40484             html: this.html,
40485             cls: 'x-form-item'
40486         };
40487         
40488         return cfg;
40489         
40490     },
40491     
40492     onRender : function(ct, position)
40493     {
40494         Roo.form.TextItem.superclass.onRender.call(this, ct, position);
40495         
40496         if(!this.el){
40497             var cfg = this.getAutoCreate();
40498             if(!cfg.name){
40499                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
40500             }
40501             if (!cfg.name.length) {
40502                 delete cfg.name;
40503             }
40504             this.el = ct.createChild(cfg, position);
40505         }
40506     },
40507     /*
40508      * setHTML
40509      * @param {String} html update the Contents of the element.
40510      */
40511     setHTML : function(html)
40512     {
40513         this.fieldEl.dom.innerHTML = html;
40514     }
40515     
40516 });/*
40517  * Based on:
40518  * Ext JS Library 1.1.1
40519  * Copyright(c) 2006-2007, Ext JS, LLC.
40520  *
40521  * Originally Released Under LGPL - original licence link has changed is not relivant.
40522  *
40523  * Fork - LGPL
40524  * <script type="text/javascript">
40525  */
40526  
40527 /**
40528  * @class Roo.form.Field
40529  * @extends Roo.BoxComponent
40530  * Base class for form fields that provides default event handling, sizing, value handling and other functionality.
40531  * @constructor
40532  * Creates a new Field
40533  * @param {Object} config Configuration options
40534  */
40535 Roo.form.Field = function(config){
40536     Roo.form.Field.superclass.constructor.call(this, config);
40537 };
40538
40539 Roo.extend(Roo.form.Field, Roo.BoxComponent,  {
40540     /**
40541      * @cfg {String} fieldLabel Label to use when rendering a form.
40542      */
40543        /**
40544      * @cfg {String} qtip Mouse over tip
40545      */
40546      
40547     /**
40548      * @cfg {String} invalidClass The CSS class to use when marking a field invalid (defaults to "x-form-invalid")
40549      */
40550     invalidClass : "x-form-invalid",
40551     /**
40552      * @cfg {String} invalidText The error text to use when marking a field invalid and no message is provided (defaults to "The value in this field is invalid")
40553      */
40554     invalidText : "The value in this field is invalid",
40555     /**
40556      * @cfg {String} focusClass The CSS class to use when the field receives focus (defaults to "x-form-focus")
40557      */
40558     focusClass : "x-form-focus",
40559     /**
40560      * @cfg {String/Boolean} validationEvent The event that should initiate field validation. Set to false to disable
40561       automatic validation (defaults to "keyup").
40562      */
40563     validationEvent : "keyup",
40564     /**
40565      * @cfg {Boolean} validateOnBlur Whether the field should validate when it loses focus (defaults to true).
40566      */
40567     validateOnBlur : true,
40568     /**
40569      * @cfg {Number} validationDelay The length of time in milliseconds after user input begins until validation is initiated (defaults to 250)
40570      */
40571     validationDelay : 250,
40572     /**
40573      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
40574      * {tag: "input", type: "text", size: "20", autocomplete: "off"})
40575      */
40576     defaultAutoCreate : {tag: "input", type: "text", size: "20", autocomplete: "new-password"},
40577     /**
40578      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field")
40579      */
40580     fieldClass : "x-form-field",
40581     /**
40582      * @cfg {String} msgTarget The location where error text should display.  Should be one of the following values (defaults to 'qtip'):
40583      *<pre>
40584 Value         Description
40585 -----------   ----------------------------------------------------------------------
40586 qtip          Display a quick tip when the user hovers over the field
40587 title         Display a default browser title attribute popup
40588 under         Add a block div beneath the field containing the error text
40589 side          Add an error icon to the right of the field with a popup on hover
40590 [element id]  Add the error text directly to the innerHTML of the specified element
40591 </pre>
40592      */
40593     msgTarget : 'qtip',
40594     /**
40595      * @cfg {String} msgFx <b>Experimental</b> The effect used when displaying a validation message under the field (defaults to 'normal').
40596      */
40597     msgFx : 'normal',
40598
40599     /**
40600      * @cfg {Boolean} readOnly True to mark the field as readOnly in HTML (defaults to false) -- Note: this only sets the element's readOnly DOM attribute.
40601      */
40602     readOnly : false,
40603
40604     /**
40605      * @cfg {Boolean} disabled True to disable the field (defaults to false).
40606      */
40607     disabled : false,
40608
40609     /**
40610      * @cfg {String} inputType The type attribute for input fields -- e.g. radio, text, password (defaults to "text").
40611      */
40612     inputType : undefined,
40613     
40614     /**
40615      * @cfg {Number} tabIndex The tabIndex for this field. Note this only applies to fields that are rendered, not those which are built via applyTo (defaults to undefined).
40616          */
40617         tabIndex : undefined,
40618         
40619     // private
40620     isFormField : true,
40621
40622     // private
40623     hasFocus : false,
40624     /**
40625      * @property {Roo.Element} fieldEl
40626      * Element Containing the rendered Field (with label etc.)
40627      */
40628     /**
40629      * @cfg {Mixed} value A value to initialize this field with.
40630      */
40631     value : undefined,
40632
40633     /**
40634      * @cfg {String} name The field's HTML name attribute.
40635      */
40636     /**
40637      * @cfg {String} cls A CSS class to apply to the field's underlying element.
40638      */
40639     // private
40640     loadedValue : false,
40641      
40642      
40643         // private ??
40644         initComponent : function(){
40645         Roo.form.Field.superclass.initComponent.call(this);
40646         this.addEvents({
40647             /**
40648              * @event focus
40649              * Fires when this field receives input focus.
40650              * @param {Roo.form.Field} this
40651              */
40652             focus : true,
40653             /**
40654              * @event blur
40655              * Fires when this field loses input focus.
40656              * @param {Roo.form.Field} this
40657              */
40658             blur : true,
40659             /**
40660              * @event specialkey
40661              * Fires when any key related to navigation (arrows, tab, enter, esc, etc.) is pressed.  You can check
40662              * {@link Roo.EventObject#getKey} to determine which key was pressed.
40663              * @param {Roo.form.Field} this
40664              * @param {Roo.EventObject} e The event object
40665              */
40666             specialkey : true,
40667             /**
40668              * @event change
40669              * Fires just before the field blurs if the field value has changed.
40670              * @param {Roo.form.Field} this
40671              * @param {Mixed} newValue The new value
40672              * @param {Mixed} oldValue The original value
40673              */
40674             change : true,
40675             /**
40676              * @event invalid
40677              * Fires after the field has been marked as invalid.
40678              * @param {Roo.form.Field} this
40679              * @param {String} msg The validation message
40680              */
40681             invalid : true,
40682             /**
40683              * @event valid
40684              * Fires after the field has been validated with no errors.
40685              * @param {Roo.form.Field} this
40686              */
40687             valid : true,
40688              /**
40689              * @event keyup
40690              * Fires after the key up
40691              * @param {Roo.form.Field} this
40692              * @param {Roo.EventObject}  e The event Object
40693              */
40694             keyup : true
40695         });
40696     },
40697
40698     /**
40699      * Returns the name attribute of the field if available
40700      * @return {String} name The field name
40701      */
40702     getName: function(){
40703          return this.rendered && this.el.dom.name ? this.el.dom.name : (this.hiddenName || '');
40704     },
40705
40706     // private
40707     onRender : function(ct, position){
40708         Roo.form.Field.superclass.onRender.call(this, ct, position);
40709         if(!this.el){
40710             var cfg = this.getAutoCreate();
40711             if(!cfg.name){
40712                 cfg.name = typeof(this.name) == 'undefined' ? this.id : this.name;
40713             }
40714             if (!cfg.name.length) {
40715                 delete cfg.name;
40716             }
40717             if(this.inputType){
40718                 cfg.type = this.inputType;
40719             }
40720             this.el = ct.createChild(cfg, position);
40721         }
40722         var type = this.el.dom.type;
40723         if(type){
40724             if(type == 'password'){
40725                 type = 'text';
40726             }
40727             this.el.addClass('x-form-'+type);
40728         }
40729         if(this.readOnly){
40730             this.el.dom.readOnly = true;
40731         }
40732         if(this.tabIndex !== undefined){
40733             this.el.dom.setAttribute('tabIndex', this.tabIndex);
40734         }
40735
40736         this.el.addClass([this.fieldClass, this.cls]);
40737         this.initValue();
40738     },
40739
40740     /**
40741      * Apply the behaviors of this component to an existing element. <b>This is used instead of render().</b>
40742      * @param {String/HTMLElement/Element} el The id of the node, a DOM node or an existing Element
40743      * @return {Roo.form.Field} this
40744      */
40745     applyTo : function(target){
40746         this.allowDomMove = false;
40747         this.el = Roo.get(target);
40748         this.render(this.el.dom.parentNode);
40749         return this;
40750     },
40751
40752     // private
40753     initValue : function(){
40754         if(this.value !== undefined){
40755             this.setValue(this.value);
40756         }else if(this.el.dom.value.length > 0){
40757             this.setValue(this.el.dom.value);
40758         }
40759     },
40760
40761     /**
40762      * Returns true if this field has been changed since it was originally loaded and is not disabled.
40763      * DEPRICATED  - it never worked well - use hasChanged/resetHasChanged.
40764      */
40765     isDirty : function() {
40766         if(this.disabled) {
40767             return false;
40768         }
40769         return String(this.getValue()) !== String(this.originalValue);
40770     },
40771
40772     /**
40773      * stores the current value in loadedValue
40774      */
40775     resetHasChanged : function()
40776     {
40777         this.loadedValue = String(this.getValue());
40778     },
40779     /**
40780      * checks the current value against the 'loaded' value.
40781      * Note - will return false if 'resetHasChanged' has not been called first.
40782      */
40783     hasChanged : function()
40784     {
40785         if(this.disabled || this.readOnly) {
40786             return false;
40787         }
40788         return this.loadedValue !== false && String(this.getValue()) !== this.loadedValue;
40789     },
40790     
40791     
40792     
40793     // private
40794     afterRender : function(){
40795         Roo.form.Field.superclass.afterRender.call(this);
40796         this.initEvents();
40797     },
40798
40799     // private
40800     fireKey : function(e){
40801         //Roo.log('field ' + e.getKey());
40802         if(e.isNavKeyPress()){
40803             this.fireEvent("specialkey", this, e);
40804         }
40805     },
40806
40807     /**
40808      * Resets the current field value to the originally loaded value and clears any validation messages
40809      */
40810     reset : function(){
40811         this.setValue(this.resetValue);
40812         this.originalValue = this.getValue();
40813         this.clearInvalid();
40814     },
40815
40816     // private
40817     initEvents : function(){
40818         // safari killled keypress - so keydown is now used..
40819         this.el.on("keydown" , this.fireKey,  this);
40820         this.el.on("focus", this.onFocus,  this);
40821         this.el.on("blur", this.onBlur,  this);
40822         this.el.relayEvent('keyup', this);
40823
40824         // reference to original value for reset
40825         this.originalValue = this.getValue();
40826         this.resetValue =  this.getValue();
40827     },
40828
40829     // private
40830     onFocus : function(){
40831         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
40832             this.el.addClass(this.focusClass);
40833         }
40834         if(!this.hasFocus){
40835             this.hasFocus = true;
40836             this.startValue = this.getValue();
40837             this.fireEvent("focus", this);
40838         }
40839     },
40840
40841     beforeBlur : Roo.emptyFn,
40842
40843     // private
40844     onBlur : function(){
40845         this.beforeBlur();
40846         if(!Roo.isOpera && this.focusClass){ // don't touch in Opera
40847             this.el.removeClass(this.focusClass);
40848         }
40849         this.hasFocus = false;
40850         if(this.validationEvent !== false && this.validateOnBlur && this.validationEvent != "blur"){
40851             this.validate();
40852         }
40853         var v = this.getValue();
40854         if(String(v) !== String(this.startValue)){
40855             this.fireEvent('change', this, v, this.startValue);
40856         }
40857         this.fireEvent("blur", this);
40858     },
40859
40860     /**
40861      * Returns whether or not the field value is currently valid
40862      * @param {Boolean} preventMark True to disable marking the field invalid
40863      * @return {Boolean} True if the value is valid, else false
40864      */
40865     isValid : function(preventMark){
40866         if(this.disabled){
40867             return true;
40868         }
40869         var restore = this.preventMark;
40870         this.preventMark = preventMark === true;
40871         var v = this.validateValue(this.processValue(this.getRawValue()));
40872         this.preventMark = restore;
40873         return v;
40874     },
40875
40876     /**
40877      * Validates the field value
40878      * @return {Boolean} True if the value is valid, else false
40879      */
40880     validate : function(){
40881         if(this.disabled || this.validateValue(this.processValue(this.getRawValue()))){
40882             this.clearInvalid();
40883             return true;
40884         }
40885         return false;
40886     },
40887
40888     processValue : function(value){
40889         return value;
40890     },
40891
40892     // private
40893     // Subclasses should provide the validation implementation by overriding this
40894     validateValue : function(value){
40895         return true;
40896     },
40897
40898     /**
40899      * Mark this field as invalid
40900      * @param {String} msg The validation message
40901      */
40902     markInvalid : function(msg){
40903         if(!this.rendered || this.preventMark){ // not rendered
40904             return;
40905         }
40906         
40907         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
40908         
40909         obj.el.addClass(this.invalidClass);
40910         msg = msg || this.invalidText;
40911         switch(this.msgTarget){
40912             case 'qtip':
40913                 obj.el.dom.qtip = msg;
40914                 obj.el.dom.qclass = 'x-form-invalid-tip';
40915                 if(Roo.QuickTips){ // fix for floating editors interacting with DND
40916                     Roo.QuickTips.enable();
40917                 }
40918                 break;
40919             case 'title':
40920                 this.el.dom.title = msg;
40921                 break;
40922             case 'under':
40923                 if(!this.errorEl){
40924                     var elp = this.el.findParent('.x-form-element', 5, true);
40925                     this.errorEl = elp.createChild({cls:'x-form-invalid-msg'});
40926                     this.errorEl.setWidth(elp.getWidth(true)-20);
40927                 }
40928                 this.errorEl.update(msg);
40929                 Roo.form.Field.msgFx[this.msgFx].show(this.errorEl, this);
40930                 break;
40931             case 'side':
40932                 if(!this.errorIcon){
40933                     var elp = this.el.findParent('.x-form-element', 5, true);
40934                     this.errorIcon = elp.createChild({cls:'x-form-invalid-icon'});
40935                 }
40936                 this.alignErrorIcon();
40937                 this.errorIcon.dom.qtip = msg;
40938                 this.errorIcon.dom.qclass = 'x-form-invalid-tip';
40939                 this.errorIcon.show();
40940                 this.on('resize', this.alignErrorIcon, this);
40941                 break;
40942             default:
40943                 var t = Roo.getDom(this.msgTarget);
40944                 t.innerHTML = msg;
40945                 t.style.display = this.msgDisplay;
40946                 break;
40947         }
40948         this.fireEvent('invalid', this, msg);
40949     },
40950
40951     // private
40952     alignErrorIcon : function(){
40953         this.errorIcon.alignTo(this.el, 'tl-tr', [2, 0]);
40954     },
40955
40956     /**
40957      * Clear any invalid styles/messages for this field
40958      */
40959     clearInvalid : function(){
40960         if(!this.rendered || this.preventMark){ // not rendered
40961             return;
40962         }
40963         var obj = (typeof(this.combo) != 'undefined') ? this.combo : this; // fix the combox array!!
40964         
40965         obj.el.removeClass(this.invalidClass);
40966         switch(this.msgTarget){
40967             case 'qtip':
40968                 obj.el.dom.qtip = '';
40969                 break;
40970             case 'title':
40971                 this.el.dom.title = '';
40972                 break;
40973             case 'under':
40974                 if(this.errorEl){
40975                     Roo.form.Field.msgFx[this.msgFx].hide(this.errorEl, this);
40976                 }
40977                 break;
40978             case 'side':
40979                 if(this.errorIcon){
40980                     this.errorIcon.dom.qtip = '';
40981                     this.errorIcon.hide();
40982                     this.un('resize', this.alignErrorIcon, this);
40983                 }
40984                 break;
40985             default:
40986                 var t = Roo.getDom(this.msgTarget);
40987                 t.innerHTML = '';
40988                 t.style.display = 'none';
40989                 break;
40990         }
40991         this.fireEvent('valid', this);
40992     },
40993
40994     /**
40995      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
40996      * @return {Mixed} value The field value
40997      */
40998     getRawValue : function(){
40999         var v = this.el.getValue();
41000         
41001         return v;
41002     },
41003
41004     /**
41005      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
41006      * @return {Mixed} value The field value
41007      */
41008     getValue : function(){
41009         var v = this.el.getValue();
41010          
41011         return v;
41012     },
41013
41014     /**
41015      * Sets the underlying DOM field's value directly, bypassing validation.  To set the value with validation see {@link #setValue}.
41016      * @param {Mixed} value The value to set
41017      */
41018     setRawValue : function(v){
41019         return this.el.dom.value = (v === null || v === undefined ? '' : v);
41020     },
41021
41022     /**
41023      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
41024      * @param {Mixed} value The value to set
41025      */
41026     setValue : function(v){
41027         this.value = v;
41028         if(this.rendered){
41029             this.el.dom.value = (v === null || v === undefined ? '' : v);
41030              this.validate();
41031         }
41032     },
41033
41034     adjustSize : function(w, h){
41035         var s = Roo.form.Field.superclass.adjustSize.call(this, w, h);
41036         s.width = this.adjustWidth(this.el.dom.tagName, s.width);
41037         return s;
41038     },
41039
41040     adjustWidth : function(tag, w){
41041         tag = tag.toLowerCase();
41042         if(typeof w == 'number' && Roo.isStrict && !Roo.isSafari){
41043             if(Roo.isIE && (tag == 'input' || tag == 'textarea')){
41044                 if(tag == 'input'){
41045                     return w + 2;
41046                 }
41047                 if(tag == 'textarea'){
41048                     return w-2;
41049                 }
41050             }else if(Roo.isOpera){
41051                 if(tag == 'input'){
41052                     return w + 2;
41053                 }
41054                 if(tag == 'textarea'){
41055                     return w-2;
41056                 }
41057             }
41058         }
41059         return w;
41060     }
41061 });
41062
41063
41064 // anything other than normal should be considered experimental
41065 Roo.form.Field.msgFx = {
41066     normal : {
41067         show: function(msgEl, f){
41068             msgEl.setDisplayed('block');
41069         },
41070
41071         hide : function(msgEl, f){
41072             msgEl.setDisplayed(false).update('');
41073         }
41074     },
41075
41076     slide : {
41077         show: function(msgEl, f){
41078             msgEl.slideIn('t', {stopFx:true});
41079         },
41080
41081         hide : function(msgEl, f){
41082             msgEl.slideOut('t', {stopFx:true,useDisplay:true});
41083         }
41084     },
41085
41086     slideRight : {
41087         show: function(msgEl, f){
41088             msgEl.fixDisplay();
41089             msgEl.alignTo(f.el, 'tl-tr');
41090             msgEl.slideIn('l', {stopFx:true});
41091         },
41092
41093         hide : function(msgEl, f){
41094             msgEl.slideOut('l', {stopFx:true,useDisplay:true});
41095         }
41096     }
41097 };/*
41098  * Based on:
41099  * Ext JS Library 1.1.1
41100  * Copyright(c) 2006-2007, Ext JS, LLC.
41101  *
41102  * Originally Released Under LGPL - original licence link has changed is not relivant.
41103  *
41104  * Fork - LGPL
41105  * <script type="text/javascript">
41106  */
41107  
41108
41109 /**
41110  * @class Roo.form.TextField
41111  * @extends Roo.form.Field
41112  * Basic text field.  Can be used as a direct replacement for traditional text inputs, or as the base
41113  * class for more sophisticated input controls (like {@link Roo.form.TextArea} and {@link Roo.form.ComboBox}).
41114  * @constructor
41115  * Creates a new TextField
41116  * @param {Object} config Configuration options
41117  */
41118 Roo.form.TextField = function(config){
41119     Roo.form.TextField.superclass.constructor.call(this, config);
41120     this.addEvents({
41121         /**
41122          * @event autosize
41123          * Fires when the autosize function is triggered.  The field may or may not have actually changed size
41124          * according to the default logic, but this event provides a hook for the developer to apply additional
41125          * logic at runtime to resize the field if needed.
41126              * @param {Roo.form.Field} this This text field
41127              * @param {Number} width The new field width
41128              */
41129         autosize : true
41130     });
41131 };
41132
41133 Roo.extend(Roo.form.TextField, Roo.form.Field,  {
41134     /**
41135      * @cfg {Boolean} grow True if this field should automatically grow and shrink to its content
41136      */
41137     grow : false,
41138     /**
41139      * @cfg {Number} growMin The minimum width to allow when grow = true (defaults to 30)
41140      */
41141     growMin : 30,
41142     /**
41143      * @cfg {Number} growMax The maximum width to allow when grow = true (defaults to 800)
41144      */
41145     growMax : 800,
41146     /**
41147      * @cfg {String} vtype A validation type name as defined in {@link Roo.form.VTypes} (defaults to null)
41148      */
41149     vtype : null,
41150     /**
41151      * @cfg {String} maskRe An input mask regular expression that will be used to filter keystrokes that don't match (defaults to null)
41152      */
41153     maskRe : null,
41154     /**
41155      * @cfg {Boolean} disableKeyFilter True to disable input keystroke filtering (defaults to false)
41156      */
41157     disableKeyFilter : false,
41158     /**
41159      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to true)
41160      */
41161     allowBlank : true,
41162     /**
41163      * @cfg {Number} minLength Minimum input field length required (defaults to 0)
41164      */
41165     minLength : 0,
41166     /**
41167      * @cfg {Number} maxLength Maximum input field length allowed (defaults to Number.MAX_VALUE)
41168      */
41169     maxLength : Number.MAX_VALUE,
41170     /**
41171      * @cfg {String} minLengthText Error text to display if the minimum length validation fails (defaults to "The minimum length for this field is {minLength}")
41172      */
41173     minLengthText : "The minimum length for this field is {0}",
41174     /**
41175      * @cfg {String} maxLengthText Error text to display if the maximum length validation fails (defaults to "The maximum length for this field is {maxLength}")
41176      */
41177     maxLengthText : "The maximum length for this field is {0}",
41178     /**
41179      * @cfg {Boolean} selectOnFocus True to automatically select any existing field text when the field receives input focus (defaults to false)
41180      */
41181     selectOnFocus : false,
41182     /**
41183      * @cfg {Boolean} allowLeadingSpace True to prevent the stripping of leading white space 
41184      */    
41185     allowLeadingSpace : false,
41186     /**
41187      * @cfg {String} blankText Error text to display if the allow blank validation fails (defaults to "This field is required")
41188      */
41189     blankText : "This field is required",
41190     /**
41191      * @cfg {Function} validator A custom validation function to be called during field validation (defaults to null).
41192      * If available, this function will be called only after the basic validators all return true, and will be passed the
41193      * current field value and expected to return boolean true if the value is valid or a string error message if invalid.
41194      */
41195     validator : null,
41196     /**
41197      * @cfg {RegExp} regex A JavaScript RegExp object to be tested against the field value during validation (defaults to null).
41198      * If available, this regex will be evaluated only after the basic validators all return true, and will be passed the
41199      * current field value.  If the test fails, the field will be marked invalid using {@link #regexText}.
41200      */
41201     regex : null,
41202     /**
41203      * @cfg {String} regexText The error text to display if {@link #regex} is used and the test fails during validation (defaults to "")
41204      */
41205     regexText : "",
41206     /**
41207      * @cfg {String} emptyText The default text to display in an empty field - placeholder... (defaults to null).
41208      */
41209     emptyText : null,
41210    
41211
41212     // private
41213     initEvents : function()
41214     {
41215         if (this.emptyText) {
41216             this.el.attr('placeholder', this.emptyText);
41217         }
41218         
41219         Roo.form.TextField.superclass.initEvents.call(this);
41220         if(this.validationEvent == 'keyup'){
41221             this.validationTask = new Roo.util.DelayedTask(this.validate, this);
41222             this.el.on('keyup', this.filterValidation, this);
41223         }
41224         else if(this.validationEvent !== false){
41225             this.el.on(this.validationEvent, this.validate, this, {buffer: this.validationDelay});
41226         }
41227         
41228         if(this.selectOnFocus){
41229             this.on("focus", this.preFocus, this);
41230         }
41231         if (!this.allowLeadingSpace) {
41232             this.on('blur', this.cleanLeadingSpace, this);
41233         }
41234         
41235         if(this.maskRe || (this.vtype && this.disableKeyFilter !== true && (this.maskRe = Roo.form.VTypes[this.vtype+'Mask']))){
41236             this.el.on("keypress", this.filterKeys, this);
41237         }
41238         if(this.grow){
41239             this.el.on("keyup", this.onKeyUp,  this, {buffer:50});
41240             this.el.on("click", this.autoSize,  this);
41241         }
41242         if(this.el.is('input[type=password]') && Roo.isSafari){
41243             this.el.on('keydown', this.SafariOnKeyDown, this);
41244         }
41245     },
41246
41247     processValue : function(value){
41248         if(this.stripCharsRe){
41249             var newValue = value.replace(this.stripCharsRe, '');
41250             if(newValue !== value){
41251                 this.setRawValue(newValue);
41252                 return newValue;
41253             }
41254         }
41255         return value;
41256     },
41257
41258     filterValidation : function(e){
41259         if(!e.isNavKeyPress()){
41260             this.validationTask.delay(this.validationDelay);
41261         }
41262     },
41263
41264     // private
41265     onKeyUp : function(e){
41266         if(!e.isNavKeyPress()){
41267             this.autoSize();
41268         }
41269     },
41270     // private - clean the leading white space
41271     cleanLeadingSpace : function(e)
41272     {
41273         if ( this.inputType == 'file') {
41274             return;
41275         }
41276         
41277         this.setValue((this.getValue() + '').replace(/^\s+/,''));
41278     },
41279     /**
41280      * Resets the current field value to the originally-loaded value and clears any validation messages.
41281      *  
41282      */
41283     reset : function(){
41284         Roo.form.TextField.superclass.reset.call(this);
41285        
41286     }, 
41287     // private
41288     preFocus : function(){
41289         
41290         if(this.selectOnFocus){
41291             this.el.dom.select();
41292         }
41293     },
41294
41295     
41296     // private
41297     filterKeys : function(e){
41298         var k = e.getKey();
41299         if(!Roo.isIE && (e.isNavKeyPress() || k == e.BACKSPACE || (k == e.DELETE && e.button == -1))){
41300             return;
41301         }
41302         var c = e.getCharCode(), cc = String.fromCharCode(c);
41303         if(Roo.isIE && (e.isSpecialKey() || !cc)){
41304             return;
41305         }
41306         if(!this.maskRe.test(cc)){
41307             e.stopEvent();
41308         }
41309     },
41310
41311     setValue : function(v){
41312         
41313         Roo.form.TextField.superclass.setValue.apply(this, arguments);
41314         
41315         this.autoSize();
41316     },
41317
41318     /**
41319      * Validates a value according to the field's validation rules and marks the field as invalid
41320      * if the validation fails
41321      * @param {Mixed} value The value to validate
41322      * @return {Boolean} True if the value is valid, else false
41323      */
41324     validateValue : function(value){
41325         if(value.length < 1)  { // if it's blank
41326              if(this.allowBlank){
41327                 this.clearInvalid();
41328                 return true;
41329              }else{
41330                 this.markInvalid(this.blankText);
41331                 return false;
41332              }
41333         }
41334         if(value.length < this.minLength){
41335             this.markInvalid(String.format(this.minLengthText, this.minLength));
41336             return false;
41337         }
41338         if(value.length > this.maxLength){
41339             this.markInvalid(String.format(this.maxLengthText, this.maxLength));
41340             return false;
41341         }
41342         if(this.vtype){
41343             var vt = Roo.form.VTypes;
41344             if(!vt[this.vtype](value, this)){
41345                 this.markInvalid(this.vtypeText || vt[this.vtype +'Text']);
41346                 return false;
41347             }
41348         }
41349         if(typeof this.validator == "function"){
41350             var msg = this.validator(value);
41351             if(msg !== true){
41352                 this.markInvalid(msg);
41353                 return false;
41354             }
41355         }
41356         if(this.regex && !this.regex.test(value)){
41357             this.markInvalid(this.regexText);
41358             return false;
41359         }
41360         return true;
41361     },
41362
41363     /**
41364      * Selects text in this field
41365      * @param {Number} start (optional) The index where the selection should start (defaults to 0)
41366      * @param {Number} end (optional) The index where the selection should end (defaults to the text length)
41367      */
41368     selectText : function(start, end){
41369         var v = this.getRawValue();
41370         if(v.length > 0){
41371             start = start === undefined ? 0 : start;
41372             end = end === undefined ? v.length : end;
41373             var d = this.el.dom;
41374             if(d.setSelectionRange){
41375                 d.setSelectionRange(start, end);
41376             }else if(d.createTextRange){
41377                 var range = d.createTextRange();
41378                 range.moveStart("character", start);
41379                 range.moveEnd("character", v.length-end);
41380                 range.select();
41381             }
41382         }
41383     },
41384
41385     /**
41386      * Automatically grows the field to accomodate the width of the text up to the maximum field width allowed.
41387      * This only takes effect if grow = true, and fires the autosize event.
41388      */
41389     autoSize : function(){
41390         if(!this.grow || !this.rendered){
41391             return;
41392         }
41393         if(!this.metrics){
41394             this.metrics = Roo.util.TextMetrics.createInstance(this.el);
41395         }
41396         var el = this.el;
41397         var v = el.dom.value;
41398         var d = document.createElement('div');
41399         d.appendChild(document.createTextNode(v));
41400         v = d.innerHTML;
41401         d = null;
41402         v += "&#160;";
41403         var w = Math.min(this.growMax, Math.max(this.metrics.getWidth(v) + /* add extra padding */ 10, this.growMin));
41404         this.el.setWidth(w);
41405         this.fireEvent("autosize", this, w);
41406     },
41407     
41408     // private
41409     SafariOnKeyDown : function(event)
41410     {
41411         // this is a workaround for a password hang bug on chrome/ webkit.
41412         
41413         var isSelectAll = false;
41414         
41415         if(this.el.dom.selectionEnd > 0){
41416             isSelectAll = (this.el.dom.selectionEnd - this.el.dom.selectionStart - this.getValue().length == 0) ? true : false;
41417         }
41418         if(((event.getKey() == 8 || event.getKey() == 46) && this.getValue().length ==1)){ // backspace and delete key
41419             event.preventDefault();
41420             this.setValue('');
41421             return;
41422         }
41423         
41424         if(isSelectAll && event.getCharCode() > 31){ // backspace and delete key
41425             
41426             event.preventDefault();
41427             // this is very hacky as keydown always get's upper case.
41428             
41429             var cc = String.fromCharCode(event.getCharCode());
41430             
41431             
41432             this.setValue( event.shiftKey ?  cc : cc.toLowerCase());
41433             
41434         }
41435         
41436         
41437     }
41438 });/*
41439  * Based on:
41440  * Ext JS Library 1.1.1
41441  * Copyright(c) 2006-2007, Ext JS, LLC.
41442  *
41443  * Originally Released Under LGPL - original licence link has changed is not relivant.
41444  *
41445  * Fork - LGPL
41446  * <script type="text/javascript">
41447  */
41448  
41449 /**
41450  * @class Roo.form.Hidden
41451  * @extends Roo.form.TextField
41452  * Simple Hidden element used on forms 
41453  * 
41454  * usage: form.add(new Roo.form.HiddenField({ 'name' : 'test1' }));
41455  * 
41456  * @constructor
41457  * Creates a new Hidden form element.
41458  * @param {Object} config Configuration options
41459  */
41460
41461
41462
41463 // easy hidden field...
41464 Roo.form.Hidden = function(config){
41465     Roo.form.Hidden.superclass.constructor.call(this, config);
41466 };
41467   
41468 Roo.extend(Roo.form.Hidden, Roo.form.TextField, {
41469     fieldLabel:      '',
41470     inputType:      'hidden',
41471     width:          50,
41472     allowBlank:     true,
41473     labelSeparator: '',
41474     hidden:         true,
41475     itemCls :       'x-form-item-display-none'
41476
41477
41478 });
41479
41480
41481 /*
41482  * Based on:
41483  * Ext JS Library 1.1.1
41484  * Copyright(c) 2006-2007, Ext JS, LLC.
41485  *
41486  * Originally Released Under LGPL - original licence link has changed is not relivant.
41487  *
41488  * Fork - LGPL
41489  * <script type="text/javascript">
41490  */
41491  
41492 /**
41493  * @class Roo.form.TriggerField
41494  * @extends Roo.form.TextField
41495  * Provides a convenient wrapper for TextFields that adds a clickable trigger button (looks like a combobox by default).
41496  * The trigger has no default action, so you must assign a function to implement the trigger click handler by
41497  * overriding {@link #onTriggerClick}. You can create a TriggerField directly, as it renders exactly like a combobox
41498  * for which you can provide a custom implementation.  For example:
41499  * <pre><code>
41500 var trigger = new Roo.form.TriggerField();
41501 trigger.onTriggerClick = myTriggerFn;
41502 trigger.applyTo('my-field');
41503 </code></pre>
41504  *
41505  * However, in general you will most likely want to use TriggerField as the base class for a reusable component.
41506  * {@link Roo.form.DateField} and {@link Roo.form.ComboBox} are perfect examples of this.
41507  * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
41508  * class 'x-form-trigger' by default and triggerClass will be <b>appended</b> if specified.
41509  * @constructor
41510  * Create a new TriggerField.
41511  * @param {Object} config Configuration options (valid {@Roo.form.TextField} config options will also be applied
41512  * to the base TextField)
41513  */
41514 Roo.form.TriggerField = function(config){
41515     this.mimicing = false;
41516     Roo.form.TriggerField.superclass.constructor.call(this, config);
41517 };
41518
41519 Roo.extend(Roo.form.TriggerField, Roo.form.TextField,  {
41520     /**
41521      * @cfg {String} triggerClass A CSS class to apply to the trigger
41522      */
41523     /**
41524      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
41525      * {tag: "input", type: "text", size: "16", autocomplete: "off"})
41526      */
41527     defaultAutoCreate : {tag: "input", type: "text", size: "16", autocomplete: "new-password"},
41528     /**
41529      * @cfg {Boolean} hideTrigger True to hide the trigger element and display only the base text field (defaults to false)
41530      */
41531     hideTrigger:false,
41532
41533     /** @cfg {Boolean} grow @hide */
41534     /** @cfg {Number} growMin @hide */
41535     /** @cfg {Number} growMax @hide */
41536
41537     /**
41538      * @hide 
41539      * @method
41540      */
41541     autoSize: Roo.emptyFn,
41542     // private
41543     monitorTab : true,
41544     // private
41545     deferHeight : true,
41546
41547     
41548     actionMode : 'wrap',
41549     // private
41550     onResize : function(w, h){
41551         Roo.form.TriggerField.superclass.onResize.apply(this, arguments);
41552         if(typeof w == 'number'){
41553             var x = w - this.trigger.getWidth();
41554             this.el.setWidth(this.adjustWidth('input', x));
41555             this.trigger.setStyle('left', x+'px');
41556         }
41557     },
41558
41559     // private
41560     adjustSize : Roo.BoxComponent.prototype.adjustSize,
41561
41562     // private
41563     getResizeEl : function(){
41564         return this.wrap;
41565     },
41566
41567     // private
41568     getPositionEl : function(){
41569         return this.wrap;
41570     },
41571
41572     // private
41573     alignErrorIcon : function(){
41574         this.errorIcon.alignTo(this.wrap, 'tl-tr', [2, 0]);
41575     },
41576
41577     // private
41578     onRender : function(ct, position){
41579         Roo.form.TriggerField.superclass.onRender.call(this, ct, position);
41580         this.wrap = this.el.wrap({cls: "x-form-field-wrap"});
41581         this.trigger = this.wrap.createChild(this.triggerConfig ||
41582                 {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.triggerClass});
41583         if(this.hideTrigger){
41584             this.trigger.setDisplayed(false);
41585         }
41586         this.initTrigger();
41587         if(!this.width){
41588             this.wrap.setWidth(this.el.getWidth()+this.trigger.getWidth());
41589         }
41590     },
41591
41592     // private
41593     initTrigger : function(){
41594         this.trigger.on("click", this.onTriggerClick, this, {preventDefault:true});
41595         this.trigger.addClassOnOver('x-form-trigger-over');
41596         this.trigger.addClassOnClick('x-form-trigger-click');
41597     },
41598
41599     // private
41600     onDestroy : function(){
41601         if(this.trigger){
41602             this.trigger.removeAllListeners();
41603             this.trigger.remove();
41604         }
41605         if(this.wrap){
41606             this.wrap.remove();
41607         }
41608         Roo.form.TriggerField.superclass.onDestroy.call(this);
41609     },
41610
41611     // private
41612     onFocus : function(){
41613         Roo.form.TriggerField.superclass.onFocus.call(this);
41614         if(!this.mimicing){
41615             this.wrap.addClass('x-trigger-wrap-focus');
41616             this.mimicing = true;
41617             Roo.get(Roo.isIE ? document.body : document).on("mousedown", this.mimicBlur, this);
41618             if(this.monitorTab){
41619                 this.el.on("keydown", this.checkTab, this);
41620             }
41621         }
41622     },
41623
41624     // private
41625     checkTab : function(e){
41626         if(e.getKey() == e.TAB){
41627             this.triggerBlur();
41628         }
41629     },
41630
41631     // private
41632     onBlur : function(){
41633         // do nothing
41634     },
41635
41636     // private
41637     mimicBlur : function(e, t){
41638         if(!this.wrap.contains(t) && this.validateBlur()){
41639             this.triggerBlur();
41640         }
41641     },
41642
41643     // private
41644     triggerBlur : function(){
41645         this.mimicing = false;
41646         Roo.get(Roo.isIE ? document.body : document).un("mousedown", this.mimicBlur);
41647         if(this.monitorTab){
41648             this.el.un("keydown", this.checkTab, this);
41649         }
41650         this.wrap.removeClass('x-trigger-wrap-focus');
41651         Roo.form.TriggerField.superclass.onBlur.call(this);
41652     },
41653
41654     // private
41655     // This should be overriden by any subclass that needs to check whether or not the field can be blurred.
41656     validateBlur : function(e, t){
41657         return true;
41658     },
41659
41660     // private
41661     onDisable : function(){
41662         Roo.form.TriggerField.superclass.onDisable.call(this);
41663         if(this.wrap){
41664             this.wrap.addClass('x-item-disabled');
41665         }
41666     },
41667
41668     // private
41669     onEnable : function(){
41670         Roo.form.TriggerField.superclass.onEnable.call(this);
41671         if(this.wrap){
41672             this.wrap.removeClass('x-item-disabled');
41673         }
41674     },
41675
41676     // private
41677     onShow : function(){
41678         var ae = this.getActionEl();
41679         
41680         if(ae){
41681             ae.dom.style.display = '';
41682             ae.dom.style.visibility = 'visible';
41683         }
41684     },
41685
41686     // private
41687     
41688     onHide : function(){
41689         var ae = this.getActionEl();
41690         ae.dom.style.display = 'none';
41691     },
41692
41693     /**
41694      * The function that should handle the trigger's click event.  This method does nothing by default until overridden
41695      * by an implementing function.
41696      * @method
41697      * @param {EventObject} e
41698      */
41699     onTriggerClick : Roo.emptyFn
41700 });
41701
41702 // TwinTriggerField is not a public class to be used directly.  It is meant as an abstract base class
41703 // to be extended by an implementing class.  For an example of implementing this class, see the custom
41704 // SearchField implementation here: http://extjs.com/deploy/ext/examples/form/custom.html
41705 Roo.form.TwinTriggerField = Roo.extend(Roo.form.TriggerField, {
41706     initComponent : function(){
41707         Roo.form.TwinTriggerField.superclass.initComponent.call(this);
41708
41709         this.triggerConfig = {
41710             tag:'span', cls:'x-form-twin-triggers', cn:[
41711             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger1Class},
41712             {tag: "img", src: Roo.BLANK_IMAGE_URL, cls: "x-form-trigger " + this.trigger2Class}
41713         ]};
41714     },
41715
41716     getTrigger : function(index){
41717         return this.triggers[index];
41718     },
41719
41720     initTrigger : function(){
41721         var ts = this.trigger.select('.x-form-trigger', true);
41722         this.wrap.setStyle('overflow', 'hidden');
41723         var triggerField = this;
41724         ts.each(function(t, all, index){
41725             t.hide = function(){
41726                 var w = triggerField.wrap.getWidth();
41727                 this.dom.style.display = 'none';
41728                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
41729             };
41730             t.show = function(){
41731                 var w = triggerField.wrap.getWidth();
41732                 this.dom.style.display = '';
41733                 triggerField.el.setWidth(w-triggerField.trigger.getWidth());
41734             };
41735             var triggerIndex = 'Trigger'+(index+1);
41736
41737             if(this['hide'+triggerIndex]){
41738                 t.dom.style.display = 'none';
41739             }
41740             t.on("click", this['on'+triggerIndex+'Click'], this, {preventDefault:true});
41741             t.addClassOnOver('x-form-trigger-over');
41742             t.addClassOnClick('x-form-trigger-click');
41743         }, this);
41744         this.triggers = ts.elements;
41745     },
41746
41747     onTrigger1Click : Roo.emptyFn,
41748     onTrigger2Click : Roo.emptyFn
41749 });/*
41750  * Based on:
41751  * Ext JS Library 1.1.1
41752  * Copyright(c) 2006-2007, Ext JS, LLC.
41753  *
41754  * Originally Released Under LGPL - original licence link has changed is not relivant.
41755  *
41756  * Fork - LGPL
41757  * <script type="text/javascript">
41758  */
41759  
41760 /**
41761  * @class Roo.form.TextArea
41762  * @extends Roo.form.TextField
41763  * Multiline text field.  Can be used as a direct replacement for traditional textarea fields, plus adds
41764  * support for auto-sizing.
41765  * @constructor
41766  * Creates a new TextArea
41767  * @param {Object} config Configuration options
41768  */
41769 Roo.form.TextArea = function(config){
41770     Roo.form.TextArea.superclass.constructor.call(this, config);
41771     // these are provided exchanges for backwards compat
41772     // minHeight/maxHeight were replaced by growMin/growMax to be
41773     // compatible with TextField growing config values
41774     if(this.minHeight !== undefined){
41775         this.growMin = this.minHeight;
41776     }
41777     if(this.maxHeight !== undefined){
41778         this.growMax = this.maxHeight;
41779     }
41780 };
41781
41782 Roo.extend(Roo.form.TextArea, Roo.form.TextField,  {
41783     /**
41784      * @cfg {Number} growMin The minimum height to allow when grow = true (defaults to 60)
41785      */
41786     growMin : 60,
41787     /**
41788      * @cfg {Number} growMax The maximum height to allow when grow = true (defaults to 1000)
41789      */
41790     growMax: 1000,
41791     /**
41792      * @cfg {Boolean} preventScrollbars True to prevent scrollbars from appearing regardless of how much text is
41793      * in the field (equivalent to setting overflow: hidden, defaults to false)
41794      */
41795     preventScrollbars: false,
41796     /**
41797      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
41798      * {tag: "textarea", style: "width:300px;height:60px;", autocomplete: "off"})
41799      */
41800
41801     // private
41802     onRender : function(ct, position){
41803         if(!this.el){
41804             this.defaultAutoCreate = {
41805                 tag: "textarea",
41806                 style:"width:300px;height:60px;",
41807                 autocomplete: "new-password"
41808             };
41809         }
41810         Roo.form.TextArea.superclass.onRender.call(this, ct, position);
41811         if(this.grow){
41812             this.textSizeEl = Roo.DomHelper.append(document.body, {
41813                 tag: "pre", cls: "x-form-grow-sizer"
41814             });
41815             if(this.preventScrollbars){
41816                 this.el.setStyle("overflow", "hidden");
41817             }
41818             this.el.setHeight(this.growMin);
41819         }
41820     },
41821
41822     onDestroy : function(){
41823         if(this.textSizeEl){
41824             this.textSizeEl.parentNode.removeChild(this.textSizeEl);
41825         }
41826         Roo.form.TextArea.superclass.onDestroy.call(this);
41827     },
41828
41829     // private
41830     onKeyUp : function(e){
41831         if(!e.isNavKeyPress() || e.getKey() == e.ENTER){
41832             this.autoSize();
41833         }
41834     },
41835
41836     /**
41837      * Automatically grows the field to accomodate the height of the text up to the maximum field height allowed.
41838      * This only takes effect if grow = true, and fires the autosize event if the height changes.
41839      */
41840     autoSize : function(){
41841         if(!this.grow || !this.textSizeEl){
41842             return;
41843         }
41844         var el = this.el;
41845         var v = el.dom.value;
41846         var ts = this.textSizeEl;
41847
41848         ts.innerHTML = '';
41849         ts.appendChild(document.createTextNode(v));
41850         v = ts.innerHTML;
41851
41852         Roo.fly(ts).setWidth(this.el.getWidth());
41853         if(v.length < 1){
41854             v = "&#160;&#160;";
41855         }else{
41856             if(Roo.isIE){
41857                 v = v.replace(/\n/g, '<p>&#160;</p>');
41858             }
41859             v += "&#160;\n&#160;";
41860         }
41861         ts.innerHTML = v;
41862         var h = Math.min(this.growMax, Math.max(ts.offsetHeight, this.growMin));
41863         if(h != this.lastHeight){
41864             this.lastHeight = h;
41865             this.el.setHeight(h);
41866             this.fireEvent("autosize", this, h);
41867         }
41868     }
41869 });/*
41870  * Based on:
41871  * Ext JS Library 1.1.1
41872  * Copyright(c) 2006-2007, Ext JS, LLC.
41873  *
41874  * Originally Released Under LGPL - original licence link has changed is not relivant.
41875  *
41876  * Fork - LGPL
41877  * <script type="text/javascript">
41878  */
41879  
41880
41881 /**
41882  * @class Roo.form.NumberField
41883  * @extends Roo.form.TextField
41884  * Numeric text field that provides automatic keystroke filtering and numeric validation.
41885  * @constructor
41886  * Creates a new NumberField
41887  * @param {Object} config Configuration options
41888  */
41889 Roo.form.NumberField = function(config){
41890     Roo.form.NumberField.superclass.constructor.call(this, config);
41891 };
41892
41893 Roo.extend(Roo.form.NumberField, Roo.form.TextField,  {
41894     /**
41895      * @cfg {String} fieldClass The default CSS class for the field (defaults to "x-form-field x-form-num-field")
41896      */
41897     fieldClass: "x-form-field x-form-num-field",
41898     /**
41899      * @cfg {Boolean} allowDecimals False to disallow decimal values (defaults to true)
41900      */
41901     allowDecimals : true,
41902     /**
41903      * @cfg {String} decimalSeparator Character(s) to allow as the decimal separator (defaults to '.')
41904      */
41905     decimalSeparator : ".",
41906     /**
41907      * @cfg {Number} decimalPrecision The maximum precision to display after the decimal separator (defaults to 2)
41908      */
41909     decimalPrecision : 2,
41910     /**
41911      * @cfg {Boolean} allowNegative False to prevent entering a negative sign (defaults to true)
41912      */
41913     allowNegative : true,
41914     /**
41915      * @cfg {Number} minValue The minimum allowed value (defaults to Number.NEGATIVE_INFINITY)
41916      */
41917     minValue : Number.NEGATIVE_INFINITY,
41918     /**
41919      * @cfg {Number} maxValue The maximum allowed value (defaults to Number.MAX_VALUE)
41920      */
41921     maxValue : Number.MAX_VALUE,
41922     /**
41923      * @cfg {String} minText Error text to display if the minimum value validation fails (defaults to "The minimum value for this field is {minValue}")
41924      */
41925     minText : "The minimum value for this field is {0}",
41926     /**
41927      * @cfg {String} maxText Error text to display if the maximum value validation fails (defaults to "The maximum value for this field is {maxValue}")
41928      */
41929     maxText : "The maximum value for this field is {0}",
41930     /**
41931      * @cfg {String} nanText Error text to display if the value is not a valid number.  For example, this can happen
41932      * if a valid character like '.' or '-' is left in the field with no number (defaults to "{value} is not a valid number")
41933      */
41934     nanText : "{0} is not a valid number",
41935
41936     // private
41937     initEvents : function(){
41938         Roo.form.NumberField.superclass.initEvents.call(this);
41939         var allowed = "0123456789";
41940         if(this.allowDecimals){
41941             allowed += this.decimalSeparator;
41942         }
41943         if(this.allowNegative){
41944             allowed += "-";
41945         }
41946         this.stripCharsRe = new RegExp('[^'+allowed+']', 'gi');
41947         var keyPress = function(e){
41948             var k = e.getKey();
41949             if(!Roo.isIE && (e.isSpecialKey() || k == e.BACKSPACE || k == e.DELETE)){
41950                 return;
41951             }
41952             var c = e.getCharCode();
41953             if(allowed.indexOf(String.fromCharCode(c)) === -1){
41954                 e.stopEvent();
41955             }
41956         };
41957         this.el.on("keypress", keyPress, this);
41958     },
41959
41960     // private
41961     validateValue : function(value){
41962         if(!Roo.form.NumberField.superclass.validateValue.call(this, value)){
41963             return false;
41964         }
41965         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
41966              return true;
41967         }
41968         var num = this.parseValue(value);
41969         if(isNaN(num)){
41970             this.markInvalid(String.format(this.nanText, value));
41971             return false;
41972         }
41973         if(num < this.minValue){
41974             this.markInvalid(String.format(this.minText, this.minValue));
41975             return false;
41976         }
41977         if(num > this.maxValue){
41978             this.markInvalid(String.format(this.maxText, this.maxValue));
41979             return false;
41980         }
41981         return true;
41982     },
41983
41984     getValue : function(){
41985         return this.fixPrecision(this.parseValue(Roo.form.NumberField.superclass.getValue.call(this)));
41986     },
41987
41988     // private
41989     parseValue : function(value){
41990         value = parseFloat(String(value).replace(this.decimalSeparator, "."));
41991         return isNaN(value) ? '' : value;
41992     },
41993
41994     // private
41995     fixPrecision : function(value){
41996         var nan = isNaN(value);
41997         if(!this.allowDecimals || this.decimalPrecision == -1 || nan || !value){
41998             return nan ? '' : value;
41999         }
42000         return parseFloat(value).toFixed(this.decimalPrecision);
42001     },
42002
42003     setValue : function(v){
42004         v = this.fixPrecision(v);
42005         Roo.form.NumberField.superclass.setValue.call(this, String(v).replace(".", this.decimalSeparator));
42006     },
42007
42008     // private
42009     decimalPrecisionFcn : function(v){
42010         return Math.floor(v);
42011     },
42012
42013     beforeBlur : function(){
42014         var v = this.parseValue(this.getRawValue());
42015         if(v){
42016             this.setValue(v);
42017         }
42018     }
42019 });/*
42020  * Based on:
42021  * Ext JS Library 1.1.1
42022  * Copyright(c) 2006-2007, Ext JS, LLC.
42023  *
42024  * Originally Released Under LGPL - original licence link has changed is not relivant.
42025  *
42026  * Fork - LGPL
42027  * <script type="text/javascript">
42028  */
42029  
42030 /**
42031  * @class Roo.form.DateField
42032  * @extends Roo.form.TriggerField
42033  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
42034 * @constructor
42035 * Create a new DateField
42036 * @param {Object} config
42037  */
42038 Roo.form.DateField = function(config)
42039 {
42040     Roo.form.DateField.superclass.constructor.call(this, config);
42041     
42042       this.addEvents({
42043          
42044         /**
42045          * @event select
42046          * Fires when a date is selected
42047              * @param {Roo.form.DateField} combo This combo box
42048              * @param {Date} date The date selected
42049              */
42050         'select' : true
42051          
42052     });
42053     
42054     
42055     if(typeof this.minValue == "string") {
42056         this.minValue = this.parseDate(this.minValue);
42057     }
42058     if(typeof this.maxValue == "string") {
42059         this.maxValue = this.parseDate(this.maxValue);
42060     }
42061     this.ddMatch = null;
42062     if(this.disabledDates){
42063         var dd = this.disabledDates;
42064         var re = "(?:";
42065         for(var i = 0; i < dd.length; i++){
42066             re += dd[i];
42067             if(i != dd.length-1) {
42068                 re += "|";
42069             }
42070         }
42071         this.ddMatch = new RegExp(re + ")");
42072     }
42073 };
42074
42075 Roo.extend(Roo.form.DateField, Roo.form.TriggerField,  {
42076     /**
42077      * @cfg {String} format
42078      * The default date format string which can be overriden for localization support.  The format must be
42079      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
42080      */
42081     format : "m/d/y",
42082     /**
42083      * @cfg {String} altFormats
42084      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
42085      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
42086      */
42087     altFormats : "m/d/Y|m-d-y|m-d-Y|m/d|m-d|md|mdy|mdY|d",
42088     /**
42089      * @cfg {Array} disabledDays
42090      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
42091      */
42092     disabledDays : null,
42093     /**
42094      * @cfg {String} disabledDaysText
42095      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
42096      */
42097     disabledDaysText : "Disabled",
42098     /**
42099      * @cfg {Array} disabledDates
42100      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
42101      * expression so they are very powerful. Some examples:
42102      * <ul>
42103      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
42104      * <li>["03/08", "09/16"] would disable those days for every year</li>
42105      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
42106      * <li>["03/../2006"] would disable every day in March 2006</li>
42107      * <li>["^03"] would disable every day in every March</li>
42108      * </ul>
42109      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
42110      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
42111      */
42112     disabledDates : null,
42113     /**
42114      * @cfg {String} disabledDatesText
42115      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
42116      */
42117     disabledDatesText : "Disabled",
42118         
42119         
42120         /**
42121      * @cfg {Date/String} zeroValue
42122      * if the date is less that this number, then the field is rendered as empty
42123      * default is 1800
42124      */
42125         zeroValue : '1800-01-01',
42126         
42127         
42128     /**
42129      * @cfg {Date/String} minValue
42130      * The minimum allowed date. Can be either a Javascript date object or a string date in a
42131      * valid format (defaults to null).
42132      */
42133     minValue : null,
42134     /**
42135      * @cfg {Date/String} maxValue
42136      * The maximum allowed date. Can be either a Javascript date object or a string date in a
42137      * valid format (defaults to null).
42138      */
42139     maxValue : null,
42140     /**
42141      * @cfg {String} minText
42142      * The error text to display when the date in the cell is before minValue (defaults to
42143      * 'The date in this field must be after {minValue}').
42144      */
42145     minText : "The date in this field must be equal to or after {0}",
42146     /**
42147      * @cfg {String} maxText
42148      * The error text to display when the date in the cell is after maxValue (defaults to
42149      * 'The date in this field must be before {maxValue}').
42150      */
42151     maxText : "The date in this field must be equal to or before {0}",
42152     /**
42153      * @cfg {String} invalidText
42154      * The error text to display when the date in the field is invalid (defaults to
42155      * '{value} is not a valid date - it must be in the format {format}').
42156      */
42157     invalidText : "{0} is not a valid date - it must be in the format {1}",
42158     /**
42159      * @cfg {String} triggerClass
42160      * An additional CSS class used to style the trigger button.  The trigger will always get the
42161      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
42162      * which displays a calendar icon).
42163      */
42164     triggerClass : 'x-form-date-trigger',
42165     
42166
42167     /**
42168      * @cfg {Boolean} useIso
42169      * if enabled, then the date field will use a hidden field to store the 
42170      * real value as iso formated date. default (false)
42171      */ 
42172     useIso : false,
42173     /**
42174      * @cfg {String/Object} autoCreate
42175      * A DomHelper element spec, or true for a default element spec (defaults to
42176      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
42177      */ 
42178     // private
42179     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "off"},
42180     
42181     // private
42182     hiddenField: false,
42183     
42184     onRender : function(ct, position)
42185     {
42186         Roo.form.DateField.superclass.onRender.call(this, ct, position);
42187         if (this.useIso) {
42188             //this.el.dom.removeAttribute('name'); 
42189             Roo.log("Changing name?");
42190             this.el.dom.setAttribute('name', this.name + '____hidden___' ); 
42191             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
42192                     'before', true);
42193             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
42194             // prevent input submission
42195             this.hiddenName = this.name;
42196         }
42197             
42198             
42199     },
42200     
42201     // private
42202     validateValue : function(value)
42203     {
42204         value = this.formatDate(value);
42205         if(!Roo.form.DateField.superclass.validateValue.call(this, value)){
42206             Roo.log('super failed');
42207             return false;
42208         }
42209         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
42210              return true;
42211         }
42212         var svalue = value;
42213         value = this.parseDate(value);
42214         if(!value){
42215             Roo.log('parse date failed' + svalue);
42216             this.markInvalid(String.format(this.invalidText, svalue, this.format));
42217             return false;
42218         }
42219         var time = value.getTime();
42220         if(this.minValue && time < this.minValue.getTime()){
42221             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
42222             return false;
42223         }
42224         if(this.maxValue && time > this.maxValue.getTime()){
42225             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
42226             return false;
42227         }
42228         if(this.disabledDays){
42229             var day = value.getDay();
42230             for(var i = 0; i < this.disabledDays.length; i++) {
42231                 if(day === this.disabledDays[i]){
42232                     this.markInvalid(this.disabledDaysText);
42233                     return false;
42234                 }
42235             }
42236         }
42237         var fvalue = this.formatDate(value);
42238         if(this.ddMatch && this.ddMatch.test(fvalue)){
42239             this.markInvalid(String.format(this.disabledDatesText, fvalue));
42240             return false;
42241         }
42242         return true;
42243     },
42244
42245     // private
42246     // Provides logic to override the default TriggerField.validateBlur which just returns true
42247     validateBlur : function(){
42248         return !this.menu || !this.menu.isVisible();
42249     },
42250     
42251     getName: function()
42252     {
42253         // returns hidden if it's set..
42254         if (!this.rendered) {return ''};
42255         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
42256         
42257     },
42258
42259     /**
42260      * Returns the current date value of the date field.
42261      * @return {Date} The date value
42262      */
42263     getValue : function(){
42264         
42265         return  this.hiddenField ?
42266                 this.hiddenField.value :
42267                 this.parseDate(Roo.form.DateField.superclass.getValue.call(this)) || "";
42268     },
42269
42270     /**
42271      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
42272      * date, using DateField.format as the date format, according to the same rules as {@link Date#parseDate}
42273      * (the default format used is "m/d/y").
42274      * <br />Usage:
42275      * <pre><code>
42276 //All of these calls set the same date value (May 4, 2006)
42277
42278 //Pass a date object:
42279 var dt = new Date('5/4/06');
42280 dateField.setValue(dt);
42281
42282 //Pass a date string (default format):
42283 dateField.setValue('5/4/06');
42284
42285 //Pass a date string (custom format):
42286 dateField.format = 'Y-m-d';
42287 dateField.setValue('2006-5-4');
42288 </code></pre>
42289      * @param {String/Date} date The date or valid date string
42290      */
42291     setValue : function(date){
42292         if (this.hiddenField) {
42293             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
42294         }
42295         Roo.form.DateField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
42296         // make sure the value field is always stored as a date..
42297         this.value = this.parseDate(date);
42298         
42299         
42300     },
42301
42302     // private
42303     parseDate : function(value){
42304                 
42305                 if (value instanceof Date) {
42306                         if (value < Date.parseDate(this.zeroValue, 'Y-m-d') ) {
42307                                 return  '';
42308                         }
42309                         return value;
42310                 }
42311                 
42312                 
42313         if(!value || value instanceof Date){
42314             return value;
42315         }
42316         var v = Date.parseDate(value, this.format);
42317          if (!v && this.useIso) {
42318             v = Date.parseDate(value, 'Y-m-d');
42319         }
42320         if(!v && this.altFormats){
42321             if(!this.altFormatsArray){
42322                 this.altFormatsArray = this.altFormats.split("|");
42323             }
42324             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
42325                 v = Date.parseDate(value, this.altFormatsArray[i]);
42326             }
42327         }
42328                 if (v < Date.parseDate(this.zeroValue, 'Y-m-d') ) {
42329                         v = '';
42330                 }
42331         return v;
42332     },
42333
42334     // private
42335     formatDate : function(date, fmt){
42336         return (!date || !(date instanceof Date)) ?
42337                date : date.dateFormat(fmt || this.format);
42338     },
42339
42340     // private
42341     menuListeners : {
42342         select: function(m, d){
42343             
42344             this.setValue(d);
42345             this.fireEvent('select', this, d);
42346         },
42347         show : function(){ // retain focus styling
42348             this.onFocus();
42349         },
42350         hide : function(){
42351             this.focus.defer(10, this);
42352             var ml = this.menuListeners;
42353             this.menu.un("select", ml.select,  this);
42354             this.menu.un("show", ml.show,  this);
42355             this.menu.un("hide", ml.hide,  this);
42356         }
42357     },
42358
42359     // private
42360     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
42361     onTriggerClick : function(){
42362         if(this.disabled){
42363             return;
42364         }
42365         if(this.menu == null){
42366             this.menu = new Roo.menu.DateMenu();
42367         }
42368         Roo.apply(this.menu.picker,  {
42369             showClear: this.allowBlank,
42370             minDate : this.minValue,
42371             maxDate : this.maxValue,
42372             disabledDatesRE : this.ddMatch,
42373             disabledDatesText : this.disabledDatesText,
42374             disabledDays : this.disabledDays,
42375             disabledDaysText : this.disabledDaysText,
42376             format : this.useIso ? 'Y-m-d' : this.format,
42377             minText : String.format(this.minText, this.formatDate(this.minValue)),
42378             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
42379         });
42380         this.menu.on(Roo.apply({}, this.menuListeners, {
42381             scope:this
42382         }));
42383         this.menu.picker.setValue(this.getValue() || new Date());
42384         this.menu.show(this.el, "tl-bl?");
42385     },
42386
42387     beforeBlur : function(){
42388         var v = this.parseDate(this.getRawValue());
42389         if(v){
42390             this.setValue(v);
42391         }
42392     },
42393
42394     /*@
42395      * overide
42396      * 
42397      */
42398     isDirty : function() {
42399         if(this.disabled) {
42400             return false;
42401         }
42402         
42403         if(typeof(this.startValue) === 'undefined'){
42404             return false;
42405         }
42406         
42407         return String(this.getValue()) !== String(this.startValue);
42408         
42409     },
42410     // @overide
42411     cleanLeadingSpace : function(e)
42412     {
42413        return;
42414     }
42415     
42416 });/*
42417  * Based on:
42418  * Ext JS Library 1.1.1
42419  * Copyright(c) 2006-2007, Ext JS, LLC.
42420  *
42421  * Originally Released Under LGPL - original licence link has changed is not relivant.
42422  *
42423  * Fork - LGPL
42424  * <script type="text/javascript">
42425  */
42426  
42427 /**
42428  * @class Roo.form.MonthField
42429  * @extends Roo.form.TriggerField
42430  * Provides a date input field with a {@link Roo.DatePicker} dropdown and automatic date validation.
42431 * @constructor
42432 * Create a new MonthField
42433 * @param {Object} config
42434  */
42435 Roo.form.MonthField = function(config){
42436     
42437     Roo.form.MonthField.superclass.constructor.call(this, config);
42438     
42439       this.addEvents({
42440          
42441         /**
42442          * @event select
42443          * Fires when a date is selected
42444              * @param {Roo.form.MonthFieeld} combo This combo box
42445              * @param {Date} date The date selected
42446              */
42447         'select' : true
42448          
42449     });
42450     
42451     
42452     if(typeof this.minValue == "string") {
42453         this.minValue = this.parseDate(this.minValue);
42454     }
42455     if(typeof this.maxValue == "string") {
42456         this.maxValue = this.parseDate(this.maxValue);
42457     }
42458     this.ddMatch = null;
42459     if(this.disabledDates){
42460         var dd = this.disabledDates;
42461         var re = "(?:";
42462         for(var i = 0; i < dd.length; i++){
42463             re += dd[i];
42464             if(i != dd.length-1) {
42465                 re += "|";
42466             }
42467         }
42468         this.ddMatch = new RegExp(re + ")");
42469     }
42470 };
42471
42472 Roo.extend(Roo.form.MonthField, Roo.form.TriggerField,  {
42473     /**
42474      * @cfg {String} format
42475      * The default date format string which can be overriden for localization support.  The format must be
42476      * valid according to {@link Date#parseDate} (defaults to 'm/d/y').
42477      */
42478     format : "M Y",
42479     /**
42480      * @cfg {String} altFormats
42481      * Multiple date formats separated by "|" to try when parsing a user input value and it doesn't match the defined
42482      * format (defaults to 'm/d/Y|m-d-y|m-d-Y|m/d|m-d|d').
42483      */
42484     altFormats : "M Y|m/Y|m-y|m-Y|my|mY",
42485     /**
42486      * @cfg {Array} disabledDays
42487      * An array of days to disable, 0 based. For example, [0, 6] disables Sunday and Saturday (defaults to null).
42488      */
42489     disabledDays : [0,1,2,3,4,5,6],
42490     /**
42491      * @cfg {String} disabledDaysText
42492      * The tooltip to display when the date falls on a disabled day (defaults to 'Disabled')
42493      */
42494     disabledDaysText : "Disabled",
42495     /**
42496      * @cfg {Array} disabledDates
42497      * An array of "dates" to disable, as strings. These strings will be used to build a dynamic regular
42498      * expression so they are very powerful. Some examples:
42499      * <ul>
42500      * <li>["03/08/2003", "09/16/2003"] would disable those exact dates</li>
42501      * <li>["03/08", "09/16"] would disable those days for every year</li>
42502      * <li>["^03/08"] would only match the beginning (useful if you are using short years)</li>
42503      * <li>["03/../2006"] would disable every day in March 2006</li>
42504      * <li>["^03"] would disable every day in every March</li>
42505      * </ul>
42506      * In order to support regular expressions, if you are using a date format that has "." in it, you will have to
42507      * escape the dot when restricting dates. For example: ["03\\.08\\.03"].
42508      */
42509     disabledDates : null,
42510     /**
42511      * @cfg {String} disabledDatesText
42512      * The tooltip text to display when the date falls on a disabled date (defaults to 'Disabled')
42513      */
42514     disabledDatesText : "Disabled",
42515     /**
42516      * @cfg {Date/String} minValue
42517      * The minimum allowed date. Can be either a Javascript date object or a string date in a
42518      * valid format (defaults to null).
42519      */
42520     minValue : null,
42521     /**
42522      * @cfg {Date/String} maxValue
42523      * The maximum allowed date. Can be either a Javascript date object or a string date in a
42524      * valid format (defaults to null).
42525      */
42526     maxValue : null,
42527     /**
42528      * @cfg {String} minText
42529      * The error text to display when the date in the cell is before minValue (defaults to
42530      * 'The date in this field must be after {minValue}').
42531      */
42532     minText : "The date in this field must be equal to or after {0}",
42533     /**
42534      * @cfg {String} maxTextf
42535      * The error text to display when the date in the cell is after maxValue (defaults to
42536      * 'The date in this field must be before {maxValue}').
42537      */
42538     maxText : "The date in this field must be equal to or before {0}",
42539     /**
42540      * @cfg {String} invalidText
42541      * The error text to display when the date in the field is invalid (defaults to
42542      * '{value} is not a valid date - it must be in the format {format}').
42543      */
42544     invalidText : "{0} is not a valid date - it must be in the format {1}",
42545     /**
42546      * @cfg {String} triggerClass
42547      * An additional CSS class used to style the trigger button.  The trigger will always get the
42548      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-date-trigger'
42549      * which displays a calendar icon).
42550      */
42551     triggerClass : 'x-form-date-trigger',
42552     
42553
42554     /**
42555      * @cfg {Boolean} useIso
42556      * if enabled, then the date field will use a hidden field to store the 
42557      * real value as iso formated date. default (true)
42558      */ 
42559     useIso : true,
42560     /**
42561      * @cfg {String/Object} autoCreate
42562      * A DomHelper element spec, or true for a default element spec (defaults to
42563      * {tag: "input", type: "text", size: "10", autocomplete: "off"})
42564      */ 
42565     // private
42566     defaultAutoCreate : {tag: "input", type: "text", size: "10", autocomplete: "new-password"},
42567     
42568     // private
42569     hiddenField: false,
42570     
42571     hideMonthPicker : false,
42572     
42573     onRender : function(ct, position)
42574     {
42575         Roo.form.MonthField.superclass.onRender.call(this, ct, position);
42576         if (this.useIso) {
42577             this.el.dom.removeAttribute('name'); 
42578             this.hiddenField = this.el.insertSibling({ tag:'input', type:'hidden', name: this.name },
42579                     'before', true);
42580             this.hiddenField.value = this.value ? this.formatDate(this.value, 'Y-m-d') : '';
42581             // prevent input submission
42582             this.hiddenName = this.name;
42583         }
42584             
42585             
42586     },
42587     
42588     // private
42589     validateValue : function(value)
42590     {
42591         value = this.formatDate(value);
42592         if(!Roo.form.MonthField.superclass.validateValue.call(this, value)){
42593             return false;
42594         }
42595         if(value.length < 1){ // if it's blank and textfield didn't flag it then it's valid
42596              return true;
42597         }
42598         var svalue = value;
42599         value = this.parseDate(value);
42600         if(!value){
42601             this.markInvalid(String.format(this.invalidText, svalue, this.format));
42602             return false;
42603         }
42604         var time = value.getTime();
42605         if(this.minValue && time < this.minValue.getTime()){
42606             this.markInvalid(String.format(this.minText, this.formatDate(this.minValue)));
42607             return false;
42608         }
42609         if(this.maxValue && time > this.maxValue.getTime()){
42610             this.markInvalid(String.format(this.maxText, this.formatDate(this.maxValue)));
42611             return false;
42612         }
42613         /*if(this.disabledDays){
42614             var day = value.getDay();
42615             for(var i = 0; i < this.disabledDays.length; i++) {
42616                 if(day === this.disabledDays[i]){
42617                     this.markInvalid(this.disabledDaysText);
42618                     return false;
42619                 }
42620             }
42621         }
42622         */
42623         var fvalue = this.formatDate(value);
42624         /*if(this.ddMatch && this.ddMatch.test(fvalue)){
42625             this.markInvalid(String.format(this.disabledDatesText, fvalue));
42626             return false;
42627         }
42628         */
42629         return true;
42630     },
42631
42632     // private
42633     // Provides logic to override the default TriggerField.validateBlur which just returns true
42634     validateBlur : function(){
42635         return !this.menu || !this.menu.isVisible();
42636     },
42637
42638     /**
42639      * Returns the current date value of the date field.
42640      * @return {Date} The date value
42641      */
42642     getValue : function(){
42643         
42644         
42645         
42646         return  this.hiddenField ?
42647                 this.hiddenField.value :
42648                 this.parseDate(Roo.form.MonthField.superclass.getValue.call(this)) || "";
42649     },
42650
42651     /**
42652      * Sets the value of the date field.  You can pass a date object or any string that can be parsed into a valid
42653      * date, using MonthField.format as the date format, according to the same rules as {@link Date#parseDate}
42654      * (the default format used is "m/d/y").
42655      * <br />Usage:
42656      * <pre><code>
42657 //All of these calls set the same date value (May 4, 2006)
42658
42659 //Pass a date object:
42660 var dt = new Date('5/4/06');
42661 monthField.setValue(dt);
42662
42663 //Pass a date string (default format):
42664 monthField.setValue('5/4/06');
42665
42666 //Pass a date string (custom format):
42667 monthField.format = 'Y-m-d';
42668 monthField.setValue('2006-5-4');
42669 </code></pre>
42670      * @param {String/Date} date The date or valid date string
42671      */
42672     setValue : function(date){
42673         Roo.log('month setValue' + date);
42674         // can only be first of month..
42675         
42676         var val = this.parseDate(date);
42677         
42678         if (this.hiddenField) {
42679             this.hiddenField.value = this.formatDate(this.parseDate(date), 'Y-m-d');
42680         }
42681         Roo.form.MonthField.superclass.setValue.call(this, this.formatDate(this.parseDate(date)));
42682         this.value = this.parseDate(date);
42683     },
42684
42685     // private
42686     parseDate : function(value){
42687         if(!value || value instanceof Date){
42688             value = value ? Date.parseDate(value.format('Y-m') + '-01', 'Y-m-d') : null;
42689             return value;
42690         }
42691         var v = Date.parseDate(value, this.format);
42692         if (!v && this.useIso) {
42693             v = Date.parseDate(value, 'Y-m-d');
42694         }
42695         if (v) {
42696             // 
42697             v = Date.parseDate(v.format('Y-m') +'-01', 'Y-m-d');
42698         }
42699         
42700         
42701         if(!v && this.altFormats){
42702             if(!this.altFormatsArray){
42703                 this.altFormatsArray = this.altFormats.split("|");
42704             }
42705             for(var i = 0, len = this.altFormatsArray.length; i < len && !v; i++){
42706                 v = Date.parseDate(value, this.altFormatsArray[i]);
42707             }
42708         }
42709         return v;
42710     },
42711
42712     // private
42713     formatDate : function(date, fmt){
42714         return (!date || !(date instanceof Date)) ?
42715                date : date.dateFormat(fmt || this.format);
42716     },
42717
42718     // private
42719     menuListeners : {
42720         select: function(m, d){
42721             this.setValue(d);
42722             this.fireEvent('select', this, d);
42723         },
42724         show : function(){ // retain focus styling
42725             this.onFocus();
42726         },
42727         hide : function(){
42728             this.focus.defer(10, this);
42729             var ml = this.menuListeners;
42730             this.menu.un("select", ml.select,  this);
42731             this.menu.un("show", ml.show,  this);
42732             this.menu.un("hide", ml.hide,  this);
42733         }
42734     },
42735     // private
42736     // Implements the default empty TriggerField.onTriggerClick function to display the DatePicker
42737     onTriggerClick : function(){
42738         if(this.disabled){
42739             return;
42740         }
42741         if(this.menu == null){
42742             this.menu = new Roo.menu.DateMenu();
42743            
42744         }
42745         
42746         Roo.apply(this.menu.picker,  {
42747             
42748             showClear: this.allowBlank,
42749             minDate : this.minValue,
42750             maxDate : this.maxValue,
42751             disabledDatesRE : this.ddMatch,
42752             disabledDatesText : this.disabledDatesText,
42753             
42754             format : this.useIso ? 'Y-m-d' : this.format,
42755             minText : String.format(this.minText, this.formatDate(this.minValue)),
42756             maxText : String.format(this.maxText, this.formatDate(this.maxValue))
42757             
42758         });
42759          this.menu.on(Roo.apply({}, this.menuListeners, {
42760             scope:this
42761         }));
42762        
42763         
42764         var m = this.menu;
42765         var p = m.picker;
42766         
42767         // hide month picker get's called when we called by 'before hide';
42768         
42769         var ignorehide = true;
42770         p.hideMonthPicker  = function(disableAnim){
42771             if (ignorehide) {
42772                 return;
42773             }
42774              if(this.monthPicker){
42775                 Roo.log("hideMonthPicker called");
42776                 if(disableAnim === true){
42777                     this.monthPicker.hide();
42778                 }else{
42779                     this.monthPicker.slideOut('t', {duration:.2});
42780                     p.setValue(new Date(m.picker.mpSelYear, m.picker.mpSelMonth, 1));
42781                     p.fireEvent("select", this, this.value);
42782                     m.hide();
42783                 }
42784             }
42785         }
42786         
42787         Roo.log('picker set value');
42788         Roo.log(this.getValue());
42789         p.setValue(this.getValue() ? this.parseDate(this.getValue()) : new Date());
42790         m.show(this.el, 'tl-bl?');
42791         ignorehide  = false;
42792         // this will trigger hideMonthPicker..
42793         
42794         
42795         // hidden the day picker
42796         Roo.select('.x-date-picker table', true).first().dom.style.visibility = "hidden";
42797         
42798         
42799         
42800       
42801         
42802         p.showMonthPicker.defer(100, p);
42803     
42804         
42805        
42806     },
42807
42808     beforeBlur : function(){
42809         var v = this.parseDate(this.getRawValue());
42810         if(v){
42811             this.setValue(v);
42812         }
42813     }
42814
42815     /** @cfg {Boolean} grow @hide */
42816     /** @cfg {Number} growMin @hide */
42817     /** @cfg {Number} growMax @hide */
42818     /**
42819      * @hide
42820      * @method autoSize
42821      */
42822 });/*
42823  * Based on:
42824  * Ext JS Library 1.1.1
42825  * Copyright(c) 2006-2007, Ext JS, LLC.
42826  *
42827  * Originally Released Under LGPL - original licence link has changed is not relivant.
42828  *
42829  * Fork - LGPL
42830  * <script type="text/javascript">
42831  */
42832  
42833
42834 /**
42835  * @class Roo.form.ComboBox
42836  * @extends Roo.form.TriggerField
42837  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
42838  * @constructor
42839  * Create a new ComboBox.
42840  * @param {Object} config Configuration options
42841  */
42842 Roo.form.ComboBox = function(config){
42843     Roo.form.ComboBox.superclass.constructor.call(this, config);
42844     this.addEvents({
42845         /**
42846          * @event expand
42847          * Fires when the dropdown list is expanded
42848              * @param {Roo.form.ComboBox} combo This combo box
42849              */
42850         'expand' : true,
42851         /**
42852          * @event collapse
42853          * Fires when the dropdown list is collapsed
42854              * @param {Roo.form.ComboBox} combo This combo box
42855              */
42856         'collapse' : true,
42857         /**
42858          * @event beforeselect
42859          * Fires before a list item is selected. Return false to cancel the selection.
42860              * @param {Roo.form.ComboBox} combo This combo box
42861              * @param {Roo.data.Record} record The data record returned from the underlying store
42862              * @param {Number} index The index of the selected item in the dropdown list
42863              */
42864         'beforeselect' : true,
42865         /**
42866          * @event select
42867          * Fires when a list item is selected
42868              * @param {Roo.form.ComboBox} combo This combo box
42869              * @param {Roo.data.Record} record The data record returned from the underlying store (or false on clear)
42870              * @param {Number} index The index of the selected item in the dropdown list
42871              */
42872         'select' : true,
42873         /**
42874          * @event beforequery
42875          * Fires before all queries are processed. Return false to cancel the query or set cancel to true.
42876          * The event object passed has these properties:
42877              * @param {Roo.form.ComboBox} combo This combo box
42878              * @param {String} query The query
42879              * @param {Boolean} forceAll true to force "all" query
42880              * @param {Boolean} cancel true to cancel the query
42881              * @param {Object} e The query event object
42882              */
42883         'beforequery': true,
42884          /**
42885          * @event add
42886          * Fires when the 'add' icon is pressed (add a listener to enable add button)
42887              * @param {Roo.form.ComboBox} combo This combo box
42888              */
42889         'add' : true,
42890         /**
42891          * @event edit
42892          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
42893              * @param {Roo.form.ComboBox} combo This combo box
42894              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
42895              */
42896         'edit' : true
42897         
42898         
42899     });
42900     if(this.transform){
42901         this.allowDomMove = false;
42902         var s = Roo.getDom(this.transform);
42903         if(!this.hiddenName){
42904             this.hiddenName = s.name;
42905         }
42906         if(!this.store){
42907             this.mode = 'local';
42908             var d = [], opts = s.options;
42909             for(var i = 0, len = opts.length;i < len; i++){
42910                 var o = opts[i];
42911                 var value = (Roo.isIE ? o.getAttributeNode('value').specified : o.hasAttribute('value')) ? o.value : o.text;
42912                 if(o.selected) {
42913                     this.value = value;
42914                 }
42915                 d.push([value, o.text]);
42916             }
42917             this.store = new Roo.data.SimpleStore({
42918                 'id': 0,
42919                 fields: ['value', 'text'],
42920                 data : d
42921             });
42922             this.valueField = 'value';
42923             this.displayField = 'text';
42924         }
42925         s.name = Roo.id(); // wipe out the name in case somewhere else they have a reference
42926         if(!this.lazyRender){
42927             this.target = true;
42928             this.el = Roo.DomHelper.insertBefore(s, this.autoCreate || this.defaultAutoCreate);
42929             s.parentNode.removeChild(s); // remove it
42930             this.render(this.el.parentNode);
42931         }else{
42932             s.parentNode.removeChild(s); // remove it
42933         }
42934
42935     }
42936     if (this.store) {
42937         this.store = Roo.factory(this.store, Roo.data);
42938     }
42939     
42940     this.selectedIndex = -1;
42941     if(this.mode == 'local'){
42942         if(config.queryDelay === undefined){
42943             this.queryDelay = 10;
42944         }
42945         if(config.minChars === undefined){
42946             this.minChars = 0;
42947         }
42948     }
42949 };
42950
42951 Roo.extend(Roo.form.ComboBox, Roo.form.TriggerField, {
42952     /**
42953      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
42954      */
42955     /**
42956      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
42957      * rendering into an Roo.Editor, defaults to false)
42958      */
42959     /**
42960      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
42961      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
42962      */
42963     /**
42964      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
42965      */
42966     /**
42967      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
42968      * the dropdown list (defaults to undefined, with no header element)
42969      */
42970
42971      /**
42972      * @cfg {String/Roo.Template} tpl The template to use to render the output
42973      */
42974      
42975     // private
42976     defaultAutoCreate : {tag: "input", type: "text", size: "24", autocomplete: "off"},
42977     /**
42978      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
42979      */
42980     listWidth: undefined,
42981     /**
42982      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
42983      * mode = 'remote' or 'text' if mode = 'local')
42984      */
42985     displayField: undefined,
42986     /**
42987      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
42988      * mode = 'remote' or 'value' if mode = 'local'). 
42989      * Note: use of a valueField requires the user make a selection
42990      * in order for a value to be mapped.
42991      */
42992     valueField: undefined,
42993     
42994     
42995     /**
42996      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
42997      * field's data value (defaults to the underlying DOM element's name)
42998      */
42999     hiddenName: undefined,
43000     /**
43001      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
43002      */
43003     listClass: '',
43004     /**
43005      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
43006      */
43007     selectedClass: 'x-combo-selected',
43008     /**
43009      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
43010      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
43011      * which displays a downward arrow icon).
43012      */
43013     triggerClass : 'x-form-arrow-trigger',
43014     /**
43015      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
43016      */
43017     shadow:'sides',
43018     /**
43019      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
43020      * anchor positions (defaults to 'tl-bl')
43021      */
43022     listAlign: 'tl-bl?',
43023     /**
43024      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
43025      */
43026     maxHeight: 300,
43027     /**
43028      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
43029      * query specified by the allQuery config option (defaults to 'query')
43030      */
43031     triggerAction: 'query',
43032     /**
43033      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
43034      * (defaults to 4, does not apply if editable = false)
43035      */
43036     minChars : 4,
43037     /**
43038      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
43039      * delay (typeAheadDelay) if it matches a known value (defaults to false)
43040      */
43041     typeAhead: false,
43042     /**
43043      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
43044      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
43045      */
43046     queryDelay: 500,
43047     /**
43048      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
43049      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
43050      */
43051     pageSize: 0,
43052     /**
43053      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
43054      * when editable = true (defaults to false)
43055      */
43056     selectOnFocus:false,
43057     /**
43058      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
43059      */
43060     queryParam: 'query',
43061     /**
43062      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
43063      * when mode = 'remote' (defaults to 'Loading...')
43064      */
43065     loadingText: 'Loading...',
43066     /**
43067      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
43068      */
43069     resizable: false,
43070     /**
43071      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
43072      */
43073     handleHeight : 8,
43074     /**
43075      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
43076      * traditional select (defaults to true)
43077      */
43078     editable: true,
43079     /**
43080      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
43081      */
43082     allQuery: '',
43083     /**
43084      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
43085      */
43086     mode: 'remote',
43087     /**
43088      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
43089      * listWidth has a higher value)
43090      */
43091     minListWidth : 70,
43092     /**
43093      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
43094      * allow the user to set arbitrary text into the field (defaults to false)
43095      */
43096     forceSelection:false,
43097     /**
43098      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
43099      * if typeAhead = true (defaults to 250)
43100      */
43101     typeAheadDelay : 250,
43102     /**
43103      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
43104      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
43105      */
43106     valueNotFoundText : undefined,
43107     /**
43108      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
43109      */
43110     blockFocus : false,
43111     
43112     /**
43113      * @cfg {Boolean} disableClear Disable showing of clear button.
43114      */
43115     disableClear : false,
43116     /**
43117      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
43118      */
43119     alwaysQuery : false,
43120     
43121     //private
43122     addicon : false,
43123     editicon: false,
43124     
43125     // element that contains real text value.. (when hidden is used..)
43126      
43127     // private
43128     onRender : function(ct, position)
43129     {
43130         Roo.form.ComboBox.superclass.onRender.call(this, ct, position);
43131         
43132         if(this.hiddenName){
43133             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
43134                     'before', true);
43135             this.hiddenField.value =
43136                 this.hiddenValue !== undefined ? this.hiddenValue :
43137                 this.value !== undefined ? this.value : '';
43138
43139             // prevent input submission
43140             this.el.dom.removeAttribute('name');
43141              
43142              
43143         }
43144         
43145         if(Roo.isGecko){
43146             this.el.dom.setAttribute('autocomplete', 'off');
43147         }
43148
43149         var cls = 'x-combo-list';
43150
43151         this.list = new Roo.Layer({
43152             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
43153         });
43154
43155         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
43156         this.list.setWidth(lw);
43157         this.list.swallowEvent('mousewheel');
43158         this.assetHeight = 0;
43159
43160         if(this.title){
43161             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
43162             this.assetHeight += this.header.getHeight();
43163         }
43164
43165         this.innerList = this.list.createChild({cls:cls+'-inner'});
43166         this.innerList.on('mouseover', this.onViewOver, this);
43167         this.innerList.on('mousemove', this.onViewMove, this);
43168         this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
43169         
43170         if(this.allowBlank && !this.pageSize && !this.disableClear){
43171             this.footer = this.list.createChild({cls:cls+'-ft'});
43172             this.pageTb = new Roo.Toolbar(this.footer);
43173            
43174         }
43175         if(this.pageSize){
43176             this.footer = this.list.createChild({cls:cls+'-ft'});
43177             this.pageTb = new Roo.PagingToolbar(this.footer, this.store,
43178                     {pageSize: this.pageSize});
43179             
43180         }
43181         
43182         if (this.pageTb && this.allowBlank && !this.disableClear) {
43183             var _this = this;
43184             this.pageTb.add(new Roo.Toolbar.Fill(), {
43185                 cls: 'x-btn-icon x-btn-clear',
43186                 text: '&#160;',
43187                 handler: function()
43188                 {
43189                     _this.collapse();
43190                     _this.clearValue();
43191                     _this.onSelect(false, -1);
43192                 }
43193             });
43194         }
43195         if (this.footer) {
43196             this.assetHeight += this.footer.getHeight();
43197         }
43198         
43199
43200         if(!this.tpl){
43201             this.tpl = '<div class="'+cls+'-item">{' + this.displayField + '}</div>';
43202         }
43203
43204         this.view = new Roo.View(this.innerList, this.tpl, {
43205             singleSelect:true,
43206             store: this.store,
43207             selectedClass: this.selectedClass
43208         });
43209
43210         this.view.on('click', this.onViewClick, this);
43211
43212         this.store.on('beforeload', this.onBeforeLoad, this);
43213         this.store.on('load', this.onLoad, this);
43214         this.store.on('loadexception', this.onLoadException, this);
43215
43216         if(this.resizable){
43217             this.resizer = new Roo.Resizable(this.list,  {
43218                pinned:true, handles:'se'
43219             });
43220             this.resizer.on('resize', function(r, w, h){
43221                 this.maxHeight = h-this.handleHeight-this.list.getFrameWidth('tb')-this.assetHeight;
43222                 this.listWidth = w;
43223                 this.innerList.setWidth(w - this.list.getFrameWidth('lr'));
43224                 this.restrictHeight();
43225             }, this);
43226             this[this.pageSize?'footer':'innerList'].setStyle('margin-bottom', this.handleHeight+'px');
43227         }
43228         if(!this.editable){
43229             this.editable = true;
43230             this.setEditable(false);
43231         }  
43232         
43233         
43234         if (typeof(this.events.add.listeners) != 'undefined') {
43235             
43236             this.addicon = this.wrap.createChild(
43237                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-add' });  
43238        
43239             this.addicon.on('click', function(e) {
43240                 this.fireEvent('add', this);
43241             }, this);
43242         }
43243         if (typeof(this.events.edit.listeners) != 'undefined') {
43244             
43245             this.editicon = this.wrap.createChild(
43246                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-combo-edit' });  
43247             if (this.addicon) {
43248                 this.editicon.setStyle('margin-left', '40px');
43249             }
43250             this.editicon.on('click', function(e) {
43251                 
43252                 // we fire even  if inothing is selected..
43253                 this.fireEvent('edit', this, this.lastData );
43254                 
43255             }, this);
43256         }
43257         
43258         
43259         
43260     },
43261
43262     // private
43263     initEvents : function(){
43264         Roo.form.ComboBox.superclass.initEvents.call(this);
43265
43266         this.keyNav = new Roo.KeyNav(this.el, {
43267             "up" : function(e){
43268                 this.inKeyMode = true;
43269                 this.selectPrev();
43270             },
43271
43272             "down" : function(e){
43273                 if(!this.isExpanded()){
43274                     this.onTriggerClick();
43275                 }else{
43276                     this.inKeyMode = true;
43277                     this.selectNext();
43278                 }
43279             },
43280
43281             "enter" : function(e){
43282                 this.onViewClick();
43283                 //return true;
43284             },
43285
43286             "esc" : function(e){
43287                 this.collapse();
43288             },
43289
43290             "tab" : function(e){
43291                 this.onViewClick(false);
43292                 this.fireEvent("specialkey", this, e);
43293                 return true;
43294             },
43295
43296             scope : this,
43297
43298             doRelay : function(foo, bar, hname){
43299                 if(hname == 'down' || this.scope.isExpanded()){
43300                    return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
43301                 }
43302                 return true;
43303             },
43304
43305             forceKeyDown: true
43306         });
43307         this.queryDelay = Math.max(this.queryDelay || 10,
43308                 this.mode == 'local' ? 10 : 250);
43309         this.dqTask = new Roo.util.DelayedTask(this.initQuery, this);
43310         if(this.typeAhead){
43311             this.taTask = new Roo.util.DelayedTask(this.onTypeAhead, this);
43312         }
43313         if(this.editable !== false){
43314             this.el.on("keyup", this.onKeyUp, this);
43315         }
43316         if(this.forceSelection){
43317             this.on('blur', this.doForce, this);
43318         }
43319     },
43320
43321     onDestroy : function(){
43322         if(this.view){
43323             this.view.setStore(null);
43324             this.view.el.removeAllListeners();
43325             this.view.el.remove();
43326             this.view.purgeListeners();
43327         }
43328         if(this.list){
43329             this.list.destroy();
43330         }
43331         if(this.store){
43332             this.store.un('beforeload', this.onBeforeLoad, this);
43333             this.store.un('load', this.onLoad, this);
43334             this.store.un('loadexception', this.onLoadException, this);
43335         }
43336         Roo.form.ComboBox.superclass.onDestroy.call(this);
43337     },
43338
43339     // private
43340     fireKey : function(e){
43341         if(e.isNavKeyPress() && !this.list.isVisible()){
43342             this.fireEvent("specialkey", this, e);
43343         }
43344     },
43345
43346     // private
43347     onResize: function(w, h){
43348         Roo.form.ComboBox.superclass.onResize.apply(this, arguments);
43349         
43350         if(typeof w != 'number'){
43351             // we do not handle it!?!?
43352             return;
43353         }
43354         var tw = this.trigger.getWidth();
43355         tw += this.addicon ? this.addicon.getWidth() : 0;
43356         tw += this.editicon ? this.editicon.getWidth() : 0;
43357         var x = w - tw;
43358         this.el.setWidth( this.adjustWidth('input', x));
43359             
43360         this.trigger.setStyle('left', x+'px');
43361         
43362         if(this.list && this.listWidth === undefined){
43363             var lw = Math.max(x + this.trigger.getWidth(), this.minListWidth);
43364             this.list.setWidth(lw);
43365             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
43366         }
43367         
43368     
43369         
43370     },
43371
43372     /**
43373      * Allow or prevent the user from directly editing the field text.  If false is passed,
43374      * the user will only be able to select from the items defined in the dropdown list.  This method
43375      * is the runtime equivalent of setting the 'editable' config option at config time.
43376      * @param {Boolean} value True to allow the user to directly edit the field text
43377      */
43378     setEditable : function(value){
43379         if(value == this.editable){
43380             return;
43381         }
43382         this.editable = value;
43383         if(!value){
43384             this.el.dom.setAttribute('readOnly', true);
43385             this.el.on('mousedown', this.onTriggerClick,  this);
43386             this.el.addClass('x-combo-noedit');
43387         }else{
43388             this.el.dom.setAttribute('readOnly', false);
43389             this.el.un('mousedown', this.onTriggerClick,  this);
43390             this.el.removeClass('x-combo-noedit');
43391         }
43392     },
43393
43394     // private
43395     onBeforeLoad : function(){
43396         if(!this.hasFocus){
43397             return;
43398         }
43399         this.innerList.update(this.loadingText ?
43400                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
43401         this.restrictHeight();
43402         this.selectedIndex = -1;
43403     },
43404
43405     // private
43406     onLoad : function(){
43407         if(!this.hasFocus){
43408             return;
43409         }
43410         if(this.store.getCount() > 0){
43411             this.expand();
43412             this.restrictHeight();
43413             if(this.lastQuery == this.allQuery){
43414                 if(this.editable){
43415                     this.el.dom.select();
43416                 }
43417                 if(!this.selectByValue(this.value, true)){
43418                     this.select(0, true);
43419                 }
43420             }else{
43421                 this.selectNext();
43422                 if(this.typeAhead && this.lastKey != Roo.EventObject.BACKSPACE && this.lastKey != Roo.EventObject.DELETE){
43423                     this.taTask.delay(this.typeAheadDelay);
43424                 }
43425             }
43426         }else{
43427             this.onEmptyResults();
43428         }
43429         //this.el.focus();
43430     },
43431     // private
43432     onLoadException : function()
43433     {
43434         this.collapse();
43435         Roo.log(this.store.reader.jsonData);
43436         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
43437             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
43438         }
43439         
43440         
43441     },
43442     // private
43443     onTypeAhead : function(){
43444         if(this.store.getCount() > 0){
43445             var r = this.store.getAt(0);
43446             var newValue = r.data[this.displayField];
43447             var len = newValue.length;
43448             var selStart = this.getRawValue().length;
43449             if(selStart != len){
43450                 this.setRawValue(newValue);
43451                 this.selectText(selStart, newValue.length);
43452             }
43453         }
43454     },
43455
43456     // private
43457     onSelect : function(record, index){
43458         if(this.fireEvent('beforeselect', this, record, index) !== false){
43459             this.setFromData(index > -1 ? record.data : false);
43460             this.collapse();
43461             this.fireEvent('select', this, record, index);
43462         }
43463     },
43464
43465     /**
43466      * Returns the currently selected field value or empty string if no value is set.
43467      * @return {String} value The selected value
43468      */
43469     getValue : function(){
43470         if(this.valueField){
43471             return typeof this.value != 'undefined' ? this.value : '';
43472         }
43473         return Roo.form.ComboBox.superclass.getValue.call(this);
43474     },
43475
43476     /**
43477      * Clears any text/value currently set in the field
43478      */
43479     clearValue : function(){
43480         if(this.hiddenField){
43481             this.hiddenField.value = '';
43482         }
43483         this.value = '';
43484         this.setRawValue('');
43485         this.lastSelectionText = '';
43486         
43487     },
43488
43489     /**
43490      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
43491      * will be displayed in the field.  If the value does not match the data value of an existing item,
43492      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
43493      * Otherwise the field will be blank (although the value will still be set).
43494      * @param {String} value The value to match
43495      */
43496     setValue : function(v){
43497         var text = v;
43498         if(this.valueField){
43499             var r = this.findRecord(this.valueField, v);
43500             if(r){
43501                 text = r.data[this.displayField];
43502             }else if(this.valueNotFoundText !== undefined){
43503                 text = this.valueNotFoundText;
43504             }
43505         }
43506         this.lastSelectionText = text;
43507         if(this.hiddenField){
43508             this.hiddenField.value = v;
43509         }
43510         Roo.form.ComboBox.superclass.setValue.call(this, text);
43511         this.value = v;
43512     },
43513     /**
43514      * @property {Object} the last set data for the element
43515      */
43516     
43517     lastData : false,
43518     /**
43519      * Sets the value of the field based on a object which is related to the record format for the store.
43520      * @param {Object} value the value to set as. or false on reset?
43521      */
43522     setFromData : function(o){
43523         var dv = ''; // display value
43524         var vv = ''; // value value..
43525         this.lastData = o;
43526         if (this.displayField) {
43527             dv = !o || typeof(o[this.displayField]) == 'undefined' ? '' : o[this.displayField];
43528         } else {
43529             // this is an error condition!!!
43530             Roo.log('no  displayField value set for '+ (this.name ? this.name : this.id));
43531         }
43532         
43533         if(this.valueField){
43534             vv = !o || typeof(o[this.valueField]) == 'undefined' ? dv : o[this.valueField];
43535         }
43536         if(this.hiddenField){
43537             this.hiddenField.value = vv;
43538             
43539             this.lastSelectionText = dv;
43540             Roo.form.ComboBox.superclass.setValue.call(this, dv);
43541             this.value = vv;
43542             return;
43543         }
43544         // no hidden field.. - we store the value in 'value', but still display
43545         // display field!!!!
43546         this.lastSelectionText = dv;
43547         Roo.form.ComboBox.superclass.setValue.call(this, dv);
43548         this.value = vv;
43549         
43550         
43551     },
43552     // private
43553     reset : function(){
43554         // overridden so that last data is reset..
43555         this.setValue(this.resetValue);
43556         this.originalValue = this.getValue();
43557         this.clearInvalid();
43558         this.lastData = false;
43559         if (this.view) {
43560             this.view.clearSelections();
43561         }
43562     },
43563     // private
43564     findRecord : function(prop, value){
43565         var record;
43566         if(this.store.getCount() > 0){
43567             this.store.each(function(r){
43568                 if(r.data[prop] == value){
43569                     record = r;
43570                     return false;
43571                 }
43572                 return true;
43573             });
43574         }
43575         return record;
43576     },
43577     
43578     getName: function()
43579     {
43580         // returns hidden if it's set..
43581         if (!this.rendered) {return ''};
43582         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
43583         
43584     },
43585     // private
43586     onViewMove : function(e, t){
43587         this.inKeyMode = false;
43588     },
43589
43590     // private
43591     onViewOver : function(e, t){
43592         if(this.inKeyMode){ // prevent key nav and mouse over conflicts
43593             return;
43594         }
43595         var item = this.view.findItemFromChild(t);
43596         if(item){
43597             var index = this.view.indexOf(item);
43598             this.select(index, false);
43599         }
43600     },
43601
43602     // private
43603     onViewClick : function(doFocus)
43604     {
43605         var index = this.view.getSelectedIndexes()[0];
43606         var r = this.store.getAt(index);
43607         if(r){
43608             this.onSelect(r, index);
43609         }
43610         if(doFocus !== false && !this.blockFocus){
43611             this.el.focus();
43612         }
43613     },
43614
43615     // private
43616     restrictHeight : function(){
43617         this.innerList.dom.style.height = '';
43618         var inner = this.innerList.dom;
43619         var h = Math.max(inner.clientHeight, inner.offsetHeight, inner.scrollHeight);
43620         this.innerList.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
43621         this.list.beginUpdate();
43622         this.list.setHeight(this.innerList.getHeight()+this.list.getFrameWidth('tb')+(this.resizable?this.handleHeight:0)+this.assetHeight);
43623         this.list.alignTo(this.el, this.listAlign);
43624         this.list.endUpdate();
43625     },
43626
43627     // private
43628     onEmptyResults : function(){
43629         this.collapse();
43630     },
43631
43632     /**
43633      * Returns true if the dropdown list is expanded, else false.
43634      */
43635     isExpanded : function(){
43636         return this.list.isVisible();
43637     },
43638
43639     /**
43640      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
43641      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
43642      * @param {String} value The data value of the item to select
43643      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
43644      * selected item if it is not currently in view (defaults to true)
43645      * @return {Boolean} True if the value matched an item in the list, else false
43646      */
43647     selectByValue : function(v, scrollIntoView){
43648         if(v !== undefined && v !== null){
43649             var r = this.findRecord(this.valueField || this.displayField, v);
43650             if(r){
43651                 this.select(this.store.indexOf(r), scrollIntoView);
43652                 return true;
43653             }
43654         }
43655         return false;
43656     },
43657
43658     /**
43659      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
43660      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
43661      * @param {Number} index The zero-based index of the list item to select
43662      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
43663      * selected item if it is not currently in view (defaults to true)
43664      */
43665     select : function(index, scrollIntoView){
43666         this.selectedIndex = index;
43667         this.view.select(index);
43668         if(scrollIntoView !== false){
43669             var el = this.view.getNode(index);
43670             if(el){
43671                 this.innerList.scrollChildIntoView(el, false);
43672             }
43673         }
43674     },
43675
43676     // private
43677     selectNext : function(){
43678         var ct = this.store.getCount();
43679         if(ct > 0){
43680             if(this.selectedIndex == -1){
43681                 this.select(0);
43682             }else if(this.selectedIndex < ct-1){
43683                 this.select(this.selectedIndex+1);
43684             }
43685         }
43686     },
43687
43688     // private
43689     selectPrev : function(){
43690         var ct = this.store.getCount();
43691         if(ct > 0){
43692             if(this.selectedIndex == -1){
43693                 this.select(0);
43694             }else if(this.selectedIndex != 0){
43695                 this.select(this.selectedIndex-1);
43696             }
43697         }
43698     },
43699
43700     // private
43701     onKeyUp : function(e){
43702         if(this.editable !== false && !e.isSpecialKey()){
43703             this.lastKey = e.getKey();
43704             this.dqTask.delay(this.queryDelay);
43705         }
43706     },
43707
43708     // private
43709     validateBlur : function(){
43710         return !this.list || !this.list.isVisible();   
43711     },
43712
43713     // private
43714     initQuery : function(){
43715         this.doQuery(this.getRawValue());
43716     },
43717
43718     // private
43719     doForce : function(){
43720         if(this.el.dom.value.length > 0){
43721             this.el.dom.value =
43722                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
43723              
43724         }
43725     },
43726
43727     /**
43728      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
43729      * query allowing the query action to be canceled if needed.
43730      * @param {String} query The SQL query to execute
43731      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
43732      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
43733      * saved in the current store (defaults to false)
43734      */
43735     doQuery : function(q, forceAll){
43736         if(q === undefined || q === null){
43737             q = '';
43738         }
43739         var qe = {
43740             query: q,
43741             forceAll: forceAll,
43742             combo: this,
43743             cancel:false
43744         };
43745         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
43746             return false;
43747         }
43748         q = qe.query;
43749         forceAll = qe.forceAll;
43750         if(forceAll === true || (q.length >= this.minChars)){
43751             if(this.lastQuery != q || this.alwaysQuery){
43752                 this.lastQuery = q;
43753                 if(this.mode == 'local'){
43754                     this.selectedIndex = -1;
43755                     if(forceAll){
43756                         this.store.clearFilter();
43757                     }else{
43758                         this.store.filter(this.displayField, q);
43759                     }
43760                     this.onLoad();
43761                 }else{
43762                     this.store.baseParams[this.queryParam] = q;
43763                     this.store.load({
43764                         params: this.getParams(q)
43765                     });
43766                     this.expand();
43767                 }
43768             }else{
43769                 this.selectedIndex = -1;
43770                 this.onLoad();   
43771             }
43772         }
43773     },
43774
43775     // private
43776     getParams : function(q){
43777         var p = {};
43778         //p[this.queryParam] = q;
43779         if(this.pageSize){
43780             p.start = 0;
43781             p.limit = this.pageSize;
43782         }
43783         return p;
43784     },
43785
43786     /**
43787      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
43788      */
43789     collapse : function(){
43790         if(!this.isExpanded()){
43791             return;
43792         }
43793         this.list.hide();
43794         Roo.get(document).un('mousedown', this.collapseIf, this);
43795         Roo.get(document).un('mousewheel', this.collapseIf, this);
43796         if (!this.editable) {
43797             Roo.get(document).un('keydown', this.listKeyPress, this);
43798         }
43799         this.fireEvent('collapse', this);
43800     },
43801
43802     // private
43803     collapseIf : function(e){
43804         if(!e.within(this.wrap) && !e.within(this.list)){
43805             this.collapse();
43806         }
43807     },
43808
43809     /**
43810      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
43811      */
43812     expand : function(){
43813         if(this.isExpanded() || !this.hasFocus){
43814             return;
43815         }
43816         this.list.alignTo(this.el, this.listAlign);
43817         this.list.show();
43818         Roo.get(document).on('mousedown', this.collapseIf, this);
43819         Roo.get(document).on('mousewheel', this.collapseIf, this);
43820         if (!this.editable) {
43821             Roo.get(document).on('keydown', this.listKeyPress, this);
43822         }
43823         
43824         this.fireEvent('expand', this);
43825     },
43826
43827     // private
43828     // Implements the default empty TriggerField.onTriggerClick function
43829     onTriggerClick : function(){
43830         if(this.disabled){
43831             return;
43832         }
43833         if(this.isExpanded()){
43834             this.collapse();
43835             if (!this.blockFocus) {
43836                 this.el.focus();
43837             }
43838             
43839         }else {
43840             this.hasFocus = true;
43841             if(this.triggerAction == 'all') {
43842                 this.doQuery(this.allQuery, true);
43843             } else {
43844                 this.doQuery(this.getRawValue());
43845             }
43846             if (!this.blockFocus) {
43847                 this.el.focus();
43848             }
43849         }
43850     },
43851     listKeyPress : function(e)
43852     {
43853         //Roo.log('listkeypress');
43854         // scroll to first matching element based on key pres..
43855         if (e.isSpecialKey()) {
43856             return false;
43857         }
43858         var k = String.fromCharCode(e.getKey()).toUpperCase();
43859         //Roo.log(k);
43860         var match  = false;
43861         var csel = this.view.getSelectedNodes();
43862         var cselitem = false;
43863         if (csel.length) {
43864             var ix = this.view.indexOf(csel[0]);
43865             cselitem  = this.store.getAt(ix);
43866             if (!cselitem.get(this.displayField) || cselitem.get(this.displayField).substring(0,1).toUpperCase() != k) {
43867                 cselitem = false;
43868             }
43869             
43870         }
43871         
43872         this.store.each(function(v) { 
43873             if (cselitem) {
43874                 // start at existing selection.
43875                 if (cselitem.id == v.id) {
43876                     cselitem = false;
43877                 }
43878                 return;
43879             }
43880                 
43881             if (v.get(this.displayField) && v.get(this.displayField).substring(0,1).toUpperCase() == k) {
43882                 match = this.store.indexOf(v);
43883                 return false;
43884             }
43885         }, this);
43886         
43887         if (match === false) {
43888             return true; // no more action?
43889         }
43890         // scroll to?
43891         this.view.select(match);
43892         var sn = Roo.get(this.view.getSelectedNodes()[0]);
43893         sn.scrollIntoView(sn.dom.parentNode, false);
43894     } 
43895
43896     /** 
43897     * @cfg {Boolean} grow 
43898     * @hide 
43899     */
43900     /** 
43901     * @cfg {Number} growMin 
43902     * @hide 
43903     */
43904     /** 
43905     * @cfg {Number} growMax 
43906     * @hide 
43907     */
43908     /**
43909      * @hide
43910      * @method autoSize
43911      */
43912 });/*
43913  * Copyright(c) 2010-2012, Roo J Solutions Limited
43914  *
43915  * Licence LGPL
43916  *
43917  */
43918
43919 /**
43920  * @class Roo.form.ComboBoxArray
43921  * @extends Roo.form.TextField
43922  * A facebook style adder... for lists of email / people / countries  etc...
43923  * pick multiple items from a combo box, and shows each one.
43924  *
43925  *  Fred [x]  Brian [x]  [Pick another |v]
43926  *
43927  *
43928  *  For this to work: it needs various extra information
43929  *    - normal combo problay has
43930  *      name, hiddenName
43931  *    + displayField, valueField
43932  *
43933  *    For our purpose...
43934  *
43935  *
43936  *   If we change from 'extends' to wrapping...
43937  *   
43938  *  
43939  *
43940  
43941  
43942  * @constructor
43943  * Create a new ComboBoxArray.
43944  * @param {Object} config Configuration options
43945  */
43946  
43947
43948 Roo.form.ComboBoxArray = function(config)
43949 {
43950     this.addEvents({
43951         /**
43952          * @event beforeremove
43953          * Fires before remove the value from the list
43954              * @param {Roo.form.ComboBoxArray} _self This combo box array
43955              * @param {Roo.form.ComboBoxArray.Item} item removed item
43956              */
43957         'beforeremove' : true,
43958         /**
43959          * @event remove
43960          * Fires when remove the value from the list
43961              * @param {Roo.form.ComboBoxArray} _self This combo box array
43962              * @param {Roo.form.ComboBoxArray.Item} item removed item
43963              */
43964         'remove' : true
43965         
43966         
43967     });
43968     
43969     Roo.form.ComboBoxArray.superclass.constructor.call(this, config);
43970     
43971     this.items = new Roo.util.MixedCollection(false);
43972     
43973     // construct the child combo...
43974     
43975     
43976     
43977     
43978    
43979     
43980 }
43981
43982  
43983 Roo.extend(Roo.form.ComboBoxArray, Roo.form.TextField,
43984
43985     /**
43986      * @cfg {Roo.form.ComboBox} combo [required] The combo box that is wrapped
43987      */
43988     
43989     lastData : false,
43990     
43991     // behavies liek a hiddne field
43992     inputType:      'hidden',
43993     /**
43994      * @cfg {Number} width The width of the box that displays the selected element
43995      */ 
43996     width:          300,
43997
43998     
43999     
44000     /**
44001      * @cfg {String} name    The name of the visable items on this form (eg. titles not ids)
44002      */
44003     name : false,
44004     /**
44005      * @cfg {String} hiddenName    The hidden name of the field, often contains an comma seperated list of names
44006      */
44007     hiddenName : false,
44008       /**
44009      * @cfg {String} seperator    The value seperator normally ',' 
44010      */
44011     seperator : ',',
44012     
44013     // private the array of items that are displayed..
44014     items  : false,
44015     // private - the hidden field el.
44016     hiddenEl : false,
44017     // private - the filed el..
44018     el : false,
44019     
44020     //validateValue : function() { return true; }, // all values are ok!
44021     //onAddClick: function() { },
44022     
44023     onRender : function(ct, position) 
44024     {
44025         
44026         // create the standard hidden element
44027         //Roo.form.ComboBoxArray.superclass.onRender.call(this, ct, position);
44028         
44029         
44030         // give fake names to child combo;
44031         this.combo.hiddenName = this.hiddenName ? (this.hiddenName+'-subcombo') : this.hiddenName;
44032         this.combo.name = this.name ? (this.name+'-subcombo') : this.name;
44033         
44034         this.combo = Roo.factory(this.combo, Roo.form);
44035         this.combo.onRender(ct, position);
44036         if (typeof(this.combo.width) != 'undefined') {
44037             this.combo.onResize(this.combo.width,0);
44038         }
44039         
44040         this.combo.initEvents();
44041         
44042         // assigned so form know we need to do this..
44043         this.store          = this.combo.store;
44044         this.valueField     = this.combo.valueField;
44045         this.displayField   = this.combo.displayField ;
44046         
44047         
44048         this.combo.wrap.addClass('x-cbarray-grp');
44049         
44050         var cbwrap = this.combo.wrap.createChild(
44051             {tag: 'div', cls: 'x-cbarray-cb'},
44052             this.combo.el.dom
44053         );
44054         
44055              
44056         this.hiddenEl = this.combo.wrap.createChild({
44057             tag: 'input',  type:'hidden' , name: this.hiddenName, value : ''
44058         });
44059         this.el = this.combo.wrap.createChild({
44060             tag: 'input',  type:'hidden' , name: this.name, value : ''
44061         });
44062          //   this.el.dom.removeAttribute("name");
44063         
44064         
44065         this.outerWrap = this.combo.wrap;
44066         this.wrap = cbwrap;
44067         
44068         this.outerWrap.setWidth(this.width);
44069         this.outerWrap.dom.removeChild(this.el.dom);
44070         
44071         this.wrap.dom.appendChild(this.el.dom);
44072         this.outerWrap.dom.removeChild(this.combo.trigger.dom);
44073         this.combo.wrap.dom.appendChild(this.combo.trigger.dom);
44074         
44075         this.combo.trigger.setStyle('position','relative');
44076         this.combo.trigger.setStyle('left', '0px');
44077         this.combo.trigger.setStyle('top', '2px');
44078         
44079         this.combo.el.setStyle('vertical-align', 'text-bottom');
44080         
44081         //this.trigger.setStyle('vertical-align', 'top');
44082         
44083         // this should use the code from combo really... on('add' ....)
44084         if (this.adder) {
44085             
44086         
44087             this.adder = this.outerWrap.createChild(
44088                 {tag: 'img', src: Roo.BLANK_IMAGE_URL, cls: 'x-form-adder', style: 'margin-left:2px'});  
44089             var _t = this;
44090             this.adder.on('click', function(e) {
44091                 _t.fireEvent('adderclick', this, e);
44092             }, _t);
44093         }
44094         //var _t = this;
44095         //this.adder.on('click', this.onAddClick, _t);
44096         
44097         
44098         this.combo.on('select', function(cb, rec, ix) {
44099             this.addItem(rec.data);
44100             
44101             cb.setValue('');
44102             cb.el.dom.value = '';
44103             //cb.lastData = rec.data;
44104             // add to list
44105             
44106         }, this);
44107         
44108         
44109     },
44110     
44111     
44112     getName: function()
44113     {
44114         // returns hidden if it's set..
44115         if (!this.rendered) {return ''};
44116         return  this.hiddenName ? this.hiddenName : this.name;
44117         
44118     },
44119     
44120     
44121     onResize: function(w, h){
44122         
44123         return;
44124         // not sure if this is needed..
44125         //this.combo.onResize(w,h);
44126         
44127         if(typeof w != 'number'){
44128             // we do not handle it!?!?
44129             return;
44130         }
44131         var tw = this.combo.trigger.getWidth();
44132         tw += this.addicon ? this.addicon.getWidth() : 0;
44133         tw += this.editicon ? this.editicon.getWidth() : 0;
44134         var x = w - tw;
44135         this.combo.el.setWidth( this.combo.adjustWidth('input', x));
44136             
44137         this.combo.trigger.setStyle('left', '0px');
44138         
44139         if(this.list && this.listWidth === undefined){
44140             var lw = Math.max(x + this.combo.trigger.getWidth(), this.combo.minListWidth);
44141             this.list.setWidth(lw);
44142             this.innerList.setWidth(lw - this.list.getFrameWidth('lr'));
44143         }
44144         
44145     
44146         
44147     },
44148     
44149     addItem: function(rec)
44150     {
44151         var valueField = this.combo.valueField;
44152         var displayField = this.combo.displayField;
44153         
44154         if (this.items.indexOfKey(rec[valueField]) > -1) {
44155             //console.log("GOT " + rec.data.id);
44156             return;
44157         }
44158         
44159         var x = new Roo.form.ComboBoxArray.Item({
44160             //id : rec[this.idField],
44161             data : rec,
44162             displayField : displayField ,
44163             tipField : displayField ,
44164             cb : this
44165         });
44166         // use the 
44167         this.items.add(rec[valueField],x);
44168         // add it before the element..
44169         this.updateHiddenEl();
44170         x.render(this.outerWrap, this.wrap.dom);
44171         // add the image handler..
44172     },
44173     
44174     updateHiddenEl : function()
44175     {
44176         this.validate();
44177         if (!this.hiddenEl) {
44178             return;
44179         }
44180         var ar = [];
44181         var idField = this.combo.valueField;
44182         
44183         this.items.each(function(f) {
44184             ar.push(f.data[idField]);
44185         });
44186         this.hiddenEl.dom.value = ar.join(this.seperator);
44187         this.validate();
44188     },
44189     
44190     reset : function()
44191     {
44192         this.items.clear();
44193         
44194         Roo.each(this.outerWrap.select('.x-cbarray-item', true).elements, function(el){
44195            el.remove();
44196         });
44197         
44198         this.el.dom.value = '';
44199         if (this.hiddenEl) {
44200             this.hiddenEl.dom.value = '';
44201         }
44202         
44203     },
44204     getValue: function()
44205     {
44206         return this.hiddenEl ? this.hiddenEl.dom.value : '';
44207     },
44208     setValue: function(v) // not a valid action - must use addItems..
44209     {
44210         
44211         this.reset();
44212          
44213         if (this.store.isLocal && (typeof(v) == 'string')) {
44214             // then we can use the store to find the values..
44215             // comma seperated at present.. this needs to allow JSON based encoding..
44216             this.hiddenEl.value  = v;
44217             var v_ar = [];
44218             Roo.each(v.split(this.seperator), function(k) {
44219                 Roo.log("CHECK " + this.valueField + ',' + k);
44220                 var li = this.store.query(this.valueField, k);
44221                 if (!li.length) {
44222                     return;
44223                 }
44224                 var add = {};
44225                 add[this.valueField] = k;
44226                 add[this.displayField] = li.item(0).data[this.displayField];
44227                 
44228                 this.addItem(add);
44229             }, this) 
44230              
44231         }
44232         if (typeof(v) == 'object' ) {
44233             // then let's assume it's an array of objects..
44234             Roo.each(v, function(l) {
44235                 var add = l;
44236                 if (typeof(l) == 'string') {
44237                     add = {};
44238                     add[this.valueField] = l;
44239                     add[this.displayField] = l
44240                 }
44241                 this.addItem(add);
44242             }, this);
44243              
44244         }
44245         
44246         
44247     },
44248     setFromData: function(v)
44249     {
44250         // this recieves an object, if setValues is called.
44251         this.reset();
44252         this.el.dom.value = v[this.displayField];
44253         this.hiddenEl.dom.value = v[this.valueField];
44254         if (typeof(v[this.valueField]) != 'string' || !v[this.valueField].length) {
44255             return;
44256         }
44257         var kv = v[this.valueField];
44258         var dv = v[this.displayField];
44259         kv = typeof(kv) != 'string' ? '' : kv;
44260         dv = typeof(dv) != 'string' ? '' : dv;
44261         
44262         
44263         var keys = kv.split(this.seperator);
44264         var display = dv.split(this.seperator);
44265         for (var i = 0 ; i < keys.length; i++) {
44266             add = {};
44267             add[this.valueField] = keys[i];
44268             add[this.displayField] = display[i];
44269             this.addItem(add);
44270         }
44271       
44272         
44273     },
44274     
44275     /**
44276      * Validates the combox array value
44277      * @return {Boolean} True if the value is valid, else false
44278      */
44279     validate : function(){
44280         if(this.disabled || this.validateValue(this.processValue(this.getValue()))){
44281             this.clearInvalid();
44282             return true;
44283         }
44284         return false;
44285     },
44286     
44287     validateValue : function(value){
44288         return Roo.form.ComboBoxArray.superclass.validateValue.call(this, this.getValue());
44289         
44290     },
44291     
44292     /*@
44293      * overide
44294      * 
44295      */
44296     isDirty : function() {
44297         if(this.disabled) {
44298             return false;
44299         }
44300         
44301         try {
44302             var d = Roo.decode(String(this.originalValue));
44303         } catch (e) {
44304             return String(this.getValue()) !== String(this.originalValue);
44305         }
44306         
44307         var originalValue = [];
44308         
44309         for (var i = 0; i < d.length; i++){
44310             originalValue.push(d[i][this.valueField]);
44311         }
44312         
44313         return String(this.getValue()) !== String(originalValue.join(this.seperator));
44314         
44315     }
44316     
44317 });
44318
44319
44320
44321 /**
44322  * @class Roo.form.ComboBoxArray.Item
44323  * @extends Roo.BoxComponent
44324  * A selected item in the list
44325  *  Fred [x]  Brian [x]  [Pick another |v]
44326  * 
44327  * @constructor
44328  * Create a new item.
44329  * @param {Object} config Configuration options
44330  */
44331  
44332 Roo.form.ComboBoxArray.Item = function(config) {
44333     config.id = Roo.id();
44334     Roo.form.ComboBoxArray.Item.superclass.constructor.call(this, config);
44335 }
44336
44337 Roo.extend(Roo.form.ComboBoxArray.Item, Roo.BoxComponent, {
44338     data : {},
44339     cb: false,
44340     displayField : false,
44341     tipField : false,
44342     
44343     
44344     defaultAutoCreate : {
44345         tag: 'div',
44346         cls: 'x-cbarray-item',
44347         cn : [ 
44348             { tag: 'div' },
44349             {
44350                 tag: 'img',
44351                 width:16,
44352                 height : 16,
44353                 src : Roo.BLANK_IMAGE_URL ,
44354                 align: 'center'
44355             }
44356         ]
44357         
44358     },
44359     
44360  
44361     onRender : function(ct, position)
44362     {
44363         Roo.form.Field.superclass.onRender.call(this, ct, position);
44364         
44365         if(!this.el){
44366             var cfg = this.getAutoCreate();
44367             this.el = ct.createChild(cfg, position);
44368         }
44369         
44370         this.el.child('img').dom.setAttribute('src', Roo.BLANK_IMAGE_URL);
44371         
44372         this.el.child('div').dom.innerHTML = this.cb.renderer ? 
44373             this.cb.renderer(this.data) :
44374             String.format('{0}',this.data[this.displayField]);
44375         
44376             
44377         this.el.child('div').dom.setAttribute('qtip',
44378                         String.format('{0}',this.data[this.tipField])
44379         );
44380         
44381         this.el.child('img').on('click', this.remove, this);
44382         
44383     },
44384    
44385     remove : function()
44386     {
44387         if(this.cb.disabled){
44388             return;
44389         }
44390         
44391         if(false !== this.cb.fireEvent('beforeremove', this.cb, this)){
44392             this.cb.items.remove(this);
44393             this.el.child('img').un('click', this.remove, this);
44394             this.el.remove();
44395             this.cb.updateHiddenEl();
44396
44397             this.cb.fireEvent('remove', this.cb, this);
44398         }
44399         
44400     }
44401 });/*
44402  * RooJS Library 1.1.1
44403  * Copyright(c) 2008-2011  Alan Knowles
44404  *
44405  * License - LGPL
44406  */
44407  
44408
44409 /**
44410  * @class Roo.form.ComboNested
44411  * @extends Roo.form.ComboBox
44412  * A combobox for that allows selection of nested items in a list,
44413  * eg.
44414  *
44415  *  Book
44416  *    -> red
44417  *    -> green
44418  *  Table
44419  *    -> square
44420  *      ->red
44421  *      ->green
44422  *    -> rectangle
44423  *      ->green
44424  *      
44425  * 
44426  * @constructor
44427  * Create a new ComboNested
44428  * @param {Object} config Configuration options
44429  */
44430 Roo.form.ComboNested = function(config){
44431     Roo.form.ComboCheck.superclass.constructor.call(this, config);
44432     // should verify some data...
44433     // like
44434     // hiddenName = required..
44435     // displayField = required
44436     // valudField == required
44437     var req= [ 'hiddenName', 'displayField', 'valueField' ];
44438     var _t = this;
44439     Roo.each(req, function(e) {
44440         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
44441             throw "Roo.form.ComboNested : missing value for: " + e;
44442         }
44443     });
44444      
44445     
44446 };
44447
44448 Roo.extend(Roo.form.ComboNested, Roo.form.ComboBox, {
44449    
44450     /*
44451      * @config {Number} max Number of columns to show
44452      */
44453     
44454     maxColumns : 3,
44455    
44456     list : null, // the outermost div..
44457     innerLists : null, // the
44458     views : null,
44459     stores : null,
44460     // private
44461     loadingChildren : false,
44462     
44463     onRender : function(ct, position)
44464     {
44465         Roo.form.ComboBox.superclass.onRender.call(this, ct, position); // skip parent call - got to above..
44466         
44467         if(this.hiddenName){
44468             this.hiddenField = this.el.insertSibling({tag:'input', type:'hidden', name: this.hiddenName, id:  (this.hiddenId||this.hiddenName)},
44469                     'before', true);
44470             this.hiddenField.value =
44471                 this.hiddenValue !== undefined ? this.hiddenValue :
44472                 this.value !== undefined ? this.value : '';
44473
44474             // prevent input submission
44475             this.el.dom.removeAttribute('name');
44476              
44477              
44478         }
44479         
44480         if(Roo.isGecko){
44481             this.el.dom.setAttribute('autocomplete', 'off');
44482         }
44483
44484         var cls = 'x-combo-list';
44485
44486         this.list = new Roo.Layer({
44487             shadow: this.shadow, cls: [cls, this.listClass].join(' '), constrain:false
44488         });
44489
44490         var lw = this.listWidth || Math.max(this.wrap.getWidth(), this.minListWidth);
44491         this.list.setWidth(lw);
44492         this.list.swallowEvent('mousewheel');
44493         this.assetHeight = 0;
44494
44495         if(this.title){
44496             this.header = this.list.createChild({cls:cls+'-hd', html: this.title});
44497             this.assetHeight += this.header.getHeight();
44498         }
44499         this.innerLists = [];
44500         this.views = [];
44501         this.stores = [];
44502         for (var i =0 ; i < this.maxColumns; i++) {
44503             this.onRenderList( cls, i);
44504         }
44505         
44506         // always needs footer, as we are going to have an 'OK' button.
44507         this.footer = this.list.createChild({cls:cls+'-ft'});
44508         this.pageTb = new Roo.Toolbar(this.footer);  
44509         var _this = this;
44510         this.pageTb.add(  {
44511             
44512             text: 'Done',
44513             handler: function()
44514             {
44515                 _this.collapse();
44516             }
44517         });
44518         
44519         if ( this.allowBlank && !this.disableClear) {
44520             
44521             this.pageTb.add(new Roo.Toolbar.Fill(), {
44522                 cls: 'x-btn-icon x-btn-clear',
44523                 text: '&#160;',
44524                 handler: function()
44525                 {
44526                     _this.collapse();
44527                     _this.clearValue();
44528                     _this.onSelect(false, -1);
44529                 }
44530             });
44531         }
44532         if (this.footer) {
44533             this.assetHeight += this.footer.getHeight();
44534         }
44535         
44536     },
44537     onRenderList : function (  cls, i)
44538     {
44539         
44540         var lw = Math.floor(
44541                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
44542         );
44543         
44544         this.list.setWidth(lw); // default to '1'
44545
44546         var il = this.innerLists[i] = this.list.createChild({cls:cls+'-inner'});
44547         //il.on('mouseover', this.onViewOver, this, { list:  i });
44548         //il.on('mousemove', this.onViewMove, this, { list:  i });
44549         il.setWidth(lw);
44550         il.setStyle({ 'overflow-x' : 'hidden'});
44551
44552         if(!this.tpl){
44553             this.tpl = new Roo.Template({
44554                 html :  '<div class="'+cls+'-item '+cls+'-item-{cn:this.isEmpty}">{' + this.displayField + '}</div>',
44555                 isEmpty: function (value, allValues) {
44556                     //Roo.log(value);
44557                     var dl = typeof(value.data) != 'undefined' ? value.data.length : value.length; ///json is a nested response..
44558                     return dl ? 'has-children' : 'no-children'
44559                 }
44560             });
44561         }
44562         
44563         var store  = this.store;
44564         if (i > 0) {
44565             store  = new Roo.data.SimpleStore({
44566                 //fields : this.store.reader.meta.fields,
44567                 reader : this.store.reader,
44568                 data : [ ]
44569             });
44570         }
44571         this.stores[i]  = store;
44572                   
44573         var view = this.views[i] = new Roo.View(
44574             il,
44575             this.tpl,
44576             {
44577                 singleSelect:true,
44578                 store: store,
44579                 selectedClass: this.selectedClass
44580             }
44581         );
44582         view.getEl().setWidth(lw);
44583         view.getEl().setStyle({
44584             position: i < 1 ? 'relative' : 'absolute',
44585             top: 0,
44586             left: (i * lw ) + 'px',
44587             display : i > 0 ? 'none' : 'block'
44588         });
44589         view.on('selectionchange', this.onSelectChange.createDelegate(this, {list : i }, true));
44590         view.on('dblclick', this.onDoubleClick.createDelegate(this, {list : i }, true));
44591         //view.on('click', this.onViewClick, this, { list : i });
44592
44593         store.on('beforeload', this.onBeforeLoad, this);
44594         store.on('load',  this.onLoad, this, { list  : i});
44595         store.on('loadexception', this.onLoadException, this);
44596
44597         // hide the other vies..
44598         
44599         
44600         
44601     },
44602       
44603     restrictHeight : function()
44604     {
44605         var mh = 0;
44606         Roo.each(this.innerLists, function(il,i) {
44607             var el = this.views[i].getEl();
44608             el.dom.style.height = '';
44609             var inner = el.dom;
44610             var h = Math.max(il.clientHeight, il.offsetHeight, il.scrollHeight);
44611             // only adjust heights on other ones..
44612             mh = Math.max(h, mh);
44613             if (i < 1) {
44614                 
44615                 el.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
44616                 il.setHeight(h < this.maxHeight ? 'auto' : this.maxHeight);
44617                
44618             }
44619             
44620             
44621         }, this);
44622         
44623         this.list.beginUpdate();
44624         this.list.setHeight(mh+this.list.getFrameWidth('tb')+this.assetHeight);
44625         this.list.alignTo(this.el, this.listAlign);
44626         this.list.endUpdate();
44627         
44628     },
44629      
44630     
44631     // -- store handlers..
44632     // private
44633     onBeforeLoad : function()
44634     {
44635         if(!this.hasFocus){
44636             return;
44637         }
44638         this.innerLists[0].update(this.loadingText ?
44639                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
44640         this.restrictHeight();
44641         this.selectedIndex = -1;
44642     },
44643     // private
44644     onLoad : function(a,b,c,d)
44645     {
44646         if (!this.loadingChildren) {
44647             // then we are loading the top level. - hide the children
44648             for (var i = 1;i < this.views.length; i++) {
44649                 this.views[i].getEl().setStyle({ display : 'none' });
44650             }
44651             var lw = Math.floor(
44652                 ((this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')) / this.maxColumns
44653             );
44654         
44655              this.list.setWidth(lw); // default to '1'
44656
44657             
44658         }
44659         if(!this.hasFocus){
44660             return;
44661         }
44662         
44663         if(this.store.getCount() > 0) {
44664             this.expand();
44665             this.restrictHeight();   
44666         } else {
44667             this.onEmptyResults();
44668         }
44669         
44670         if (!this.loadingChildren) {
44671             this.selectActive();
44672         }
44673         /*
44674         this.stores[1].loadData([]);
44675         this.stores[2].loadData([]);
44676         this.views
44677         */    
44678     
44679         //this.el.focus();
44680     },
44681     
44682     
44683     // private
44684     onLoadException : function()
44685     {
44686         this.collapse();
44687         Roo.log(this.store.reader.jsonData);
44688         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
44689             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
44690         }
44691         
44692         
44693     },
44694     // no cleaning of leading spaces on blur here.
44695     cleanLeadingSpace : function(e) { },
44696     
44697
44698     onSelectChange : function (view, sels, opts )
44699     {
44700         var ix = view.getSelectedIndexes();
44701          
44702         if (opts.list > this.maxColumns - 2) {
44703             if (view.store.getCount()<  1) {
44704                 this.views[opts.list ].getEl().setStyle({ display :   'none' });
44705
44706             } else  {
44707                 if (ix.length) {
44708                     // used to clear ?? but if we are loading unselected 
44709                     this.setFromData(view.store.getAt(ix[0]).data);
44710                 }
44711                 
44712             }
44713             
44714             return;
44715         }
44716         
44717         if (!ix.length) {
44718             // this get's fired when trigger opens..
44719            // this.setFromData({});
44720             var str = this.stores[opts.list+1];
44721             str.data.clear(); // removeall wihtout the fire events..
44722             return;
44723         }
44724         
44725         var rec = view.store.getAt(ix[0]);
44726          
44727         this.setFromData(rec.data);
44728         this.fireEvent('select', this, rec, ix[0]);
44729         
44730         var lw = Math.floor(
44731              (
44732                 (this.listWidth * this.maxColumns || Math.max(this.wrap.getWidth(), this.minListWidth)) - this.list.getFrameWidth('lr')
44733              ) / this.maxColumns
44734         );
44735         this.loadingChildren = true;
44736         this.stores[opts.list+1].loadDataFromChildren( rec );
44737         this.loadingChildren = false;
44738         var dl = this.stores[opts.list+1]. getTotalCount();
44739         
44740         this.views[opts.list+1].getEl().setHeight( this.innerLists[0].getHeight());
44741         
44742         this.views[opts.list+1].getEl().setStyle({ display : dl ? 'block' : 'none' });
44743         for (var i = opts.list+2; i < this.views.length;i++) {
44744             this.views[i].getEl().setStyle({ display : 'none' });
44745         }
44746         
44747         this.innerLists[opts.list+1].setHeight( this.innerLists[0].getHeight());
44748         this.list.setWidth(lw * (opts.list + (dl ? 2 : 1)));
44749         
44750         if (this.isLoading) {
44751            // this.selectActive(opts.list);
44752         }
44753          
44754     },
44755     
44756     
44757     
44758     
44759     onDoubleClick : function()
44760     {
44761         this.collapse(); //??
44762     },
44763     
44764      
44765     
44766     
44767     
44768     // private
44769     recordToStack : function(store, prop, value, stack)
44770     {
44771         var cstore = new Roo.data.SimpleStore({
44772             //fields : this.store.reader.meta.fields, // we need array reader.. for
44773             reader : this.store.reader,
44774             data : [ ]
44775         });
44776         var _this = this;
44777         var record  = false;
44778         var srec = false;
44779         if(store.getCount() < 1){
44780             return false;
44781         }
44782         store.each(function(r){
44783             if(r.data[prop] == value){
44784                 record = r;
44785             srec = r;
44786                 return false;
44787             }
44788             if (r.data.cn && r.data.cn.length) {
44789                 cstore.loadDataFromChildren( r);
44790                 var cret = _this.recordToStack(cstore, prop, value, stack);
44791                 if (cret !== false) {
44792                     record = cret;
44793                     srec = r;
44794                     return false;
44795                 }
44796             }
44797              
44798             return true;
44799         });
44800         if (record == false) {
44801             return false
44802         }
44803         stack.unshift(srec);
44804         return record;
44805     },
44806     
44807     /*
44808      * find the stack of stores that match our value.
44809      *
44810      * 
44811      */
44812     
44813     selectActive : function ()
44814     {
44815         // if store is not loaded, then we will need to wait for that to happen first.
44816         var stack = [];
44817         this.recordToStack(this.store, this.valueField, this.getValue(), stack);
44818         for (var i = 0; i < stack.length; i++ ) {
44819             this.views[i].select(stack[i].store.indexOf(stack[i]), false, false );
44820         }
44821         
44822     }
44823         
44824          
44825     
44826     
44827     
44828     
44829 });/*
44830  * Based on:
44831  * Ext JS Library 1.1.1
44832  * Copyright(c) 2006-2007, Ext JS, LLC.
44833  *
44834  * Originally Released Under LGPL - original licence link has changed is not relivant.
44835  *
44836  * Fork - LGPL
44837  * <script type="text/javascript">
44838  */
44839 /**
44840  * @class Roo.form.Checkbox
44841  * @extends Roo.form.Field
44842  * Single checkbox field.  Can be used as a direct replacement for traditional checkbox fields.
44843  * @constructor
44844  * Creates a new Checkbox
44845  * @param {Object} config Configuration options
44846  */
44847 Roo.form.Checkbox = function(config){
44848     Roo.form.Checkbox.superclass.constructor.call(this, config);
44849     this.addEvents({
44850         /**
44851          * @event check
44852          * Fires when the checkbox is checked or unchecked.
44853              * @param {Roo.form.Checkbox} this This checkbox
44854              * @param {Boolean} checked The new checked value
44855              */
44856         check : true
44857     });
44858 };
44859
44860 Roo.extend(Roo.form.Checkbox, Roo.form.Field,  {
44861     /**
44862      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
44863      */
44864     focusClass : undefined,
44865     /**
44866      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
44867      */
44868     fieldClass: "x-form-field",
44869     /**
44870      * @cfg {Boolean} checked True if the the checkbox should render already checked (defaults to false)
44871      */
44872     checked: false,
44873     /**
44874      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
44875      * {tag: "input", type: "checkbox", autocomplete: "off"})
44876      */
44877     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "off"},
44878     /**
44879      * @cfg {String} boxLabel The text that appears beside the checkbox
44880      */
44881     boxLabel : "",
44882     /**
44883      * @cfg {String} inputValue The value that should go into the generated input element's value attribute
44884      */  
44885     inputValue : '1',
44886     /**
44887      * @cfg {String} valueOff The value that should go into the generated input element's value when unchecked.
44888      */
44889      valueOff: '0', // value when not checked..
44890
44891     actionMode : 'viewEl', 
44892     //
44893     // private
44894     itemCls : 'x-menu-check-item x-form-item',
44895     groupClass : 'x-menu-group-item',
44896     inputType : 'hidden',
44897     
44898     
44899     inSetChecked: false, // check that we are not calling self...
44900     
44901     inputElement: false, // real input element?
44902     basedOn: false, // ????
44903     
44904     isFormField: true, // not sure where this is needed!!!!
44905
44906     onResize : function(){
44907         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
44908         if(!this.boxLabel){
44909             this.el.alignTo(this.wrap, 'c-c');
44910         }
44911     },
44912
44913     initEvents : function(){
44914         Roo.form.Checkbox.superclass.initEvents.call(this);
44915         this.el.on("click", this.onClick,  this);
44916         this.el.on("change", this.onClick,  this);
44917     },
44918
44919
44920     getResizeEl : function(){
44921         return this.wrap;
44922     },
44923
44924     getPositionEl : function(){
44925         return this.wrap;
44926     },
44927
44928     // private
44929     onRender : function(ct, position){
44930         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
44931         /*
44932         if(this.inputValue !== undefined){
44933             this.el.dom.value = this.inputValue;
44934         }
44935         */
44936         //this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
44937         this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
44938         var viewEl = this.wrap.createChild({ 
44939             tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
44940         this.viewEl = viewEl;   
44941         this.wrap.on('click', this.onClick,  this); 
44942         
44943         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
44944         this.el.on('propertychange', this.setFromHidden,  this);  //ie
44945         
44946         
44947         
44948         if(this.boxLabel){
44949             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
44950         //    viewEl.on('click', this.onClick,  this); 
44951         }
44952         //if(this.checked){
44953             this.setChecked(this.checked);
44954         //}else{
44955             //this.checked = this.el.dom;
44956         //}
44957
44958     },
44959
44960     // private
44961     initValue : Roo.emptyFn,
44962
44963     /**
44964      * Returns the checked state of the checkbox.
44965      * @return {Boolean} True if checked, else false
44966      */
44967     getValue : function(){
44968         if(this.el){
44969             return String(this.el.dom.value) == String(this.inputValue ) ? this.inputValue : this.valueOff;
44970         }
44971         return this.valueOff;
44972         
44973     },
44974
44975         // private
44976     onClick : function(){ 
44977         if (this.disabled) {
44978             return;
44979         }
44980         this.setChecked(!this.checked);
44981
44982         //if(this.el.dom.checked != this.checked){
44983         //    this.setValue(this.el.dom.checked);
44984        // }
44985     },
44986
44987     /**
44988      * Sets the checked state of the checkbox.
44989      * On is always based on a string comparison between inputValue and the param.
44990      * @param {Boolean/String} value - the value to set 
44991      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
44992      */
44993     setValue : function(v,suppressEvent){
44994         
44995         
44996         //this.checked = (v === true || v === 'true' || v == '1' || String(v).toLowerCase() == 'on');
44997         //if(this.el && this.el.dom){
44998         //    this.el.dom.checked = this.checked;
44999         //    this.el.dom.defaultChecked = this.checked;
45000         //}
45001         this.setChecked(String(v) === String(this.inputValue), suppressEvent);
45002         //this.fireEvent("check", this, this.checked);
45003     },
45004     // private..
45005     setChecked : function(state,suppressEvent)
45006     {
45007         if (this.inSetChecked) {
45008             this.checked = state;
45009             return;
45010         }
45011         
45012     
45013         if(this.wrap){
45014             this.wrap[state ? 'addClass' : 'removeClass']('x-menu-item-checked');
45015         }
45016         this.checked = state;
45017         if(suppressEvent !== true){
45018             this.fireEvent('check', this, state);
45019         }
45020         this.inSetChecked = true;
45021         this.el.dom.value = state ? this.inputValue : this.valueOff;
45022         this.inSetChecked = false;
45023         
45024     },
45025     // handle setting of hidden value by some other method!!?!?
45026     setFromHidden: function()
45027     {
45028         if(!this.el){
45029             return;
45030         }
45031         //console.log("SET FROM HIDDEN");
45032         //alert('setFrom hidden');
45033         this.setValue(this.el.dom.value);
45034     },
45035     
45036     onDestroy : function()
45037     {
45038         if(this.viewEl){
45039             Roo.get(this.viewEl).remove();
45040         }
45041          
45042         Roo.form.Checkbox.superclass.onDestroy.call(this);
45043     },
45044     
45045     setBoxLabel : function(str)
45046     {
45047         this.wrap.select('.x-form-cb-label', true).first().dom.innerHTML = str;
45048     }
45049
45050 });/*
45051  * Based on:
45052  * Ext JS Library 1.1.1
45053  * Copyright(c) 2006-2007, Ext JS, LLC.
45054  *
45055  * Originally Released Under LGPL - original licence link has changed is not relivant.
45056  *
45057  * Fork - LGPL
45058  * <script type="text/javascript">
45059  */
45060  
45061 /**
45062  * @class Roo.form.Radio
45063  * @extends Roo.form.Checkbox
45064  * Single radio field.  Same as Checkbox, but provided as a convenience for automatically setting the input type.
45065  * Radio grouping is handled automatically by the browser if you give each radio in a group the same name.
45066  * @constructor
45067  * Creates a new Radio
45068  * @param {Object} config Configuration options
45069  */
45070 Roo.form.Radio = function(){
45071     Roo.form.Radio.superclass.constructor.apply(this, arguments);
45072 };
45073 Roo.extend(Roo.form.Radio, Roo.form.Checkbox, {
45074     inputType: 'radio',
45075
45076     /**
45077      * If this radio is part of a group, it will return the selected value
45078      * @return {String}
45079      */
45080     getGroupValue : function(){
45081         return this.el.up('form').child('input[name='+this.el.dom.name+']:checked', true).value;
45082     },
45083     
45084     
45085     onRender : function(ct, position){
45086         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
45087         
45088         if(this.inputValue !== undefined){
45089             this.el.dom.value = this.inputValue;
45090         }
45091          
45092         this.wrap = this.el.wrap({cls: "x-form-check-wrap"});
45093         //this.wrap = this.el.wrap({cls: 'x-menu-check-item '});
45094         //var viewEl = this.wrap.createChild({ 
45095         //    tag: 'img', cls: 'x-menu-item-icon', style: 'margin: 0px;' ,src : Roo.BLANK_IMAGE_URL });
45096         //this.viewEl = viewEl;   
45097         //this.wrap.on('click', this.onClick,  this); 
45098         
45099         //this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
45100         //this.el.on('propertychange', this.setFromHidden,  this);  //ie
45101         
45102         
45103         
45104         if(this.boxLabel){
45105             this.wrap.createChild({tag: 'label', htmlFor: this.el.id, cls: 'x-form-cb-label', html: this.boxLabel});
45106         //    viewEl.on('click', this.onClick,  this); 
45107         }
45108          if(this.checked){
45109             this.el.dom.checked =   'checked' ;
45110         }
45111          
45112     } 
45113     
45114     
45115 });Roo.rtf = {}; // namespace
45116 Roo.rtf.Hex = function(hex)
45117 {
45118     this.hexstr = hex;
45119 };
45120 Roo.rtf.Paragraph = function(opts)
45121 {
45122     this.content = []; ///??? is that used?
45123 };Roo.rtf.Span = function(opts)
45124 {
45125     this.value = opts.value;
45126 };
45127
45128 Roo.rtf.Group = function(parent)
45129 {
45130     // we dont want to acutally store parent - it will make debug a nightmare..
45131     this.content = [];
45132     this.cn  = [];
45133      
45134        
45135     
45136 };
45137
45138 Roo.rtf.Group.prototype = {
45139     ignorable : false,
45140     content: false,
45141     cn: false,
45142     addContent : function(node) {
45143         // could set styles...
45144         this.content.push(node);
45145     },
45146     addChild : function(cn)
45147     {
45148         this.cn.push(cn);
45149     },
45150     // only for images really...
45151     toDataURL : function()
45152     {
45153         var mimetype = false;
45154         switch(true) {
45155             case this.content.filter(function(a) { return a.value == 'pngblip' } ).length > 0: 
45156                 mimetype = "image/png";
45157                 break;
45158              case this.content.filter(function(a) { return a.value == 'jpegblip' } ).length > 0:
45159                 mimetype = "image/jpeg";
45160                 break;
45161             default :
45162                 return 'about:blank'; // ?? error?
45163         }
45164         
45165         
45166         var hexstring = this.content[this.content.length-1].value;
45167         
45168         return 'data:' + mimetype + ';base64,' + btoa(hexstring.match(/\w{2}/g).map(function(a) {
45169             return String.fromCharCode(parseInt(a, 16));
45170         }).join(""));
45171     }
45172     
45173 };
45174 // this looks like it's normally the {rtf{ .... }}
45175 Roo.rtf.Document = function()
45176 {
45177     // we dont want to acutally store parent - it will make debug a nightmare..
45178     this.rtlch  = [];
45179     this.content = [];
45180     this.cn = [];
45181     
45182 };
45183 Roo.extend(Roo.rtf.Document, Roo.rtf.Group, { 
45184     addChild : function(cn)
45185     {
45186         this.cn.push(cn);
45187         switch(cn.type) {
45188             case 'rtlch': // most content seems to be inside this??
45189             case 'listtext':
45190             case 'shpinst':
45191                 this.rtlch.push(cn);
45192                 return;
45193             default:
45194                 this[cn.type] = cn;
45195         }
45196         
45197     },
45198     
45199     getElementsByType : function(type)
45200     {
45201         var ret =  [];
45202         this._getElementsByType(type, ret, this.cn, 'rtf');
45203         return ret;
45204     },
45205     _getElementsByType : function (type, ret, search_array, path)
45206     {
45207         search_array.forEach(function(n,i) {
45208             if (n.type == type) {
45209                 n.path = path + '/' + n.type + ':' + i;
45210                 ret.push(n);
45211             }
45212             if (n.cn.length > 0) {
45213                 this._getElementsByType(type, ret, n.cn, path + '/' + n.type+':'+i);
45214             }
45215         },this);
45216     }
45217     
45218 });
45219  
45220 Roo.rtf.Ctrl = function(opts)
45221 {
45222     this.value = opts.value;
45223     this.param = opts.param;
45224 };
45225 /**
45226  *
45227  *
45228  * based on this https://github.com/iarna/rtf-parser
45229  * it's really only designed to extract pict from pasted RTF 
45230  *
45231  * usage:
45232  *
45233  *  var images = new Roo.rtf.Parser().parse(a_string).filter(function(g) { return g.type == 'pict'; });
45234  *  
45235  *
45236  */
45237
45238  
45239
45240
45241
45242 Roo.rtf.Parser = function(text) {
45243     //super({objectMode: true})
45244     this.text = '';
45245     this.parserState = this.parseText;
45246     
45247     // these are for interpeter...
45248     this.doc = {};
45249     ///this.parserState = this.parseTop
45250     this.groupStack = [];
45251     this.hexStore = [];
45252     this.doc = false;
45253     
45254     this.groups = []; // where we put the return.
45255     
45256     for (var ii = 0; ii < text.length; ++ii) {
45257         ++this.cpos;
45258         
45259         if (text[ii] === '\n') {
45260             ++this.row;
45261             this.col = 1;
45262         } else {
45263             ++this.col;
45264         }
45265         this.parserState(text[ii]);
45266     }
45267     
45268     
45269     
45270 };
45271 Roo.rtf.Parser.prototype = {
45272     text : '', // string being parsed..
45273     controlWord : '',
45274     controlWordParam :  '',
45275     hexChar : '',
45276     doc : false,
45277     group: false,
45278     groupStack : false,
45279     hexStore : false,
45280     
45281     
45282     cpos : 0, 
45283     row : 1, // reportin?
45284     col : 1, //
45285
45286      
45287     push : function (el)
45288     {
45289         var m = 'cmd'+ el.type;
45290         if (typeof(this[m]) == 'undefined') {
45291             Roo.log('invalid cmd:' + el.type);
45292             return;
45293         }
45294         this[m](el);
45295         //Roo.log(el);
45296     },
45297     flushHexStore : function()
45298     {
45299         if (this.hexStore.length < 1) {
45300             return;
45301         }
45302         var hexstr = this.hexStore.map(
45303             function(cmd) {
45304                 return cmd.value;
45305         }).join('');
45306         
45307         this.group.addContent( new Roo.rtf.Hex( hexstr ));
45308               
45309             
45310         this.hexStore.splice(0)
45311         
45312     },
45313     
45314     cmdgroupstart : function()
45315     {
45316         this.flushHexStore();
45317         if (this.group) {
45318             this.groupStack.push(this.group);
45319         }
45320          // parent..
45321         if (this.doc === false) {
45322             this.group = this.doc = new Roo.rtf.Document();
45323             return;
45324             
45325         }
45326         this.group = new Roo.rtf.Group(this.group);
45327     },
45328     cmdignorable : function()
45329     {
45330         this.flushHexStore();
45331         this.group.ignorable = true;
45332     },
45333     cmdendparagraph : function()
45334     {
45335         this.flushHexStore();
45336         this.group.addContent(new Roo.rtf.Paragraph());
45337     },
45338     cmdgroupend : function ()
45339     {
45340         this.flushHexStore();
45341         var endingGroup = this.group;
45342         
45343         
45344         this.group = this.groupStack.pop();
45345         if (this.group) {
45346             this.group.addChild(endingGroup);
45347         }
45348         
45349         
45350         
45351         var doc = this.group || this.doc;
45352         //if (endingGroup instanceof FontTable) {
45353         //  doc.fonts = endingGroup.table
45354         //} else if (endingGroup instanceof ColorTable) {
45355         //  doc.colors = endingGroup.table
45356         //} else if (endingGroup !== this.doc && !endingGroup.get('ignorable')) {
45357         if (endingGroup.ignorable === false) {
45358             //code
45359             this.groups.push(endingGroup);
45360            // Roo.log( endingGroup );
45361         }
45362             //Roo.each(endingGroup.content, function(item)) {
45363             //    doc.addContent(item);
45364             //}
45365             //process.emit('debug', 'GROUP END', endingGroup.type, endingGroup.get('ignorable'))
45366         //}
45367     },
45368     cmdtext : function (cmd)
45369     {
45370         this.flushHexStore();
45371         if (!this.group) { // an RTF fragment, missing the {\rtf1 header
45372             //this.group = this.doc
45373             return;  // we really don't care about stray text...
45374         }
45375         this.group.addContent(new Roo.rtf.Span(cmd));
45376     },
45377     cmdcontrolword : function (cmd)
45378     {
45379         this.flushHexStore();
45380         if (!this.group.type) {
45381             this.group.type = cmd.value;
45382             return;
45383         }
45384         this.group.addContent(new Roo.rtf.Ctrl(cmd));
45385         // we actually don't care about ctrl words...
45386         return ;
45387         /*
45388         var method = 'ctrl$' + cmd.value.replace(/-(.)/g, (_, char) => char.toUpperCase())
45389         if (this[method]) {
45390             this[method](cmd.param)
45391         } else {
45392             if (!this.group.get('ignorable')) process.emit('debug', method, cmd.param)
45393         }
45394         */
45395     },
45396     cmdhexchar : function(cmd) {
45397         this.hexStore.push(cmd);
45398     },
45399     cmderror : function(cmd) {
45400         throw cmd.value;
45401     },
45402     
45403     /*
45404       _flush (done) {
45405         if (this.text !== '\u0000') this.emitText()
45406         done()
45407       }
45408       */
45409       
45410       
45411     parseText : function(c)
45412     {
45413         if (c === '\\') {
45414             this.parserState = this.parseEscapes;
45415         } else if (c === '{') {
45416             this.emitStartGroup();
45417         } else if (c === '}') {
45418             this.emitEndGroup();
45419         } else if (c === '\x0A' || c === '\x0D') {
45420             // cr/lf are noise chars
45421         } else {
45422             this.text += c;
45423         }
45424     },
45425     
45426     parseEscapes: function (c)
45427     {
45428         if (c === '\\' || c === '{' || c === '}') {
45429             this.text += c;
45430             this.parserState = this.parseText;
45431         } else {
45432             this.parserState = this.parseControlSymbol;
45433             this.parseControlSymbol(c);
45434         }
45435     },
45436     parseControlSymbol: function(c)
45437     {
45438         if (c === '~') {
45439             this.text += '\u00a0'; // nbsp
45440             this.parserState = this.parseText
45441         } else if (c === '-') {
45442              this.text += '\u00ad'; // soft hyphen
45443         } else if (c === '_') {
45444             this.text += '\u2011'; // non-breaking hyphen
45445         } else if (c === '*') {
45446             this.emitIgnorable();
45447             this.parserState = this.parseText;
45448         } else if (c === "'") {
45449             this.parserState = this.parseHexChar;
45450         } else if (c === '|') { // formula cacter
45451             this.emitFormula();
45452             this.parserState = this.parseText;
45453         } else if (c === ':') { // subentry in an index entry
45454             this.emitIndexSubEntry();
45455             this.parserState = this.parseText;
45456         } else if (c === '\x0a') {
45457             this.emitEndParagraph();
45458             this.parserState = this.parseText;
45459         } else if (c === '\x0d') {
45460             this.emitEndParagraph();
45461             this.parserState = this.parseText;
45462         } else {
45463             this.parserState = this.parseControlWord;
45464             this.parseControlWord(c);
45465         }
45466     },
45467     parseHexChar: function (c)
45468     {
45469         if (/^[A-Fa-f0-9]$/.test(c)) {
45470             this.hexChar += c;
45471             if (this.hexChar.length >= 2) {
45472               this.emitHexChar();
45473               this.parserState = this.parseText;
45474             }
45475             return;
45476         }
45477         this.emitError("Invalid character \"" + c + "\" in hex literal.");
45478         this.parserState = this.parseText;
45479         
45480     },
45481     parseControlWord : function(c)
45482     {
45483         if (c === ' ') {
45484             this.emitControlWord();
45485             this.parserState = this.parseText;
45486         } else if (/^[-\d]$/.test(c)) {
45487             this.parserState = this.parseControlWordParam;
45488             this.controlWordParam += c;
45489         } else if (/^[A-Za-z]$/.test(c)) {
45490           this.controlWord += c;
45491         } else {
45492           this.emitControlWord();
45493           this.parserState = this.parseText;
45494           this.parseText(c);
45495         }
45496     },
45497     parseControlWordParam : function (c) {
45498         if (/^\d$/.test(c)) {
45499           this.controlWordParam += c;
45500         } else if (c === ' ') {
45501           this.emitControlWord();
45502           this.parserState = this.parseText;
45503         } else {
45504           this.emitControlWord();
45505           this.parserState = this.parseText;
45506           this.parseText(c);
45507         }
45508     },
45509     
45510     
45511     
45512     
45513     emitText : function () {
45514         if (this.text === '') {
45515             return;
45516         }
45517         this.push({
45518             type: 'text',
45519             value: this.text,
45520             pos: this.cpos,
45521             row: this.row,
45522             col: this.col
45523         });
45524         this.text = ''
45525     },
45526     emitControlWord : function ()
45527     {
45528         this.emitText();
45529         if (this.controlWord === '') {
45530             // do we want to track this - it seems just to cause problems.
45531             //this.emitError('empty control word');
45532         } else {
45533             this.push({
45534                   type: 'controlword',
45535                   value: this.controlWord,
45536                   param: this.controlWordParam !== '' && Number(this.controlWordParam),
45537                   pos: this.cpos,
45538                   row: this.row,
45539                   col: this.col
45540             });
45541         }
45542         this.controlWord = '';
45543         this.controlWordParam = '';
45544     },
45545     emitStartGroup : function ()
45546     {
45547         this.emitText();
45548         this.push({
45549             type: 'groupstart',
45550             pos: this.cpos,
45551             row: this.row,
45552             col: this.col
45553         });
45554     },
45555     emitEndGroup : function ()
45556     {
45557         this.emitText();
45558         this.push({
45559             type: 'groupend',
45560             pos: this.cpos,
45561             row: this.row,
45562             col: this.col
45563         });
45564     },
45565     emitIgnorable : function ()
45566     {
45567         this.emitText();
45568         this.push({
45569             type: 'ignorable',
45570             pos: this.cpos,
45571             row: this.row,
45572             col: this.col
45573         });
45574     },
45575     emitHexChar : function ()
45576     {
45577         this.emitText();
45578         this.push({
45579             type: 'hexchar',
45580             value: this.hexChar,
45581             pos: this.cpos,
45582             row: this.row,
45583             col: this.col
45584         });
45585         this.hexChar = ''
45586     },
45587     emitError : function (message)
45588     {
45589       this.emitText();
45590       this.push({
45591             type: 'error',
45592             value: message,
45593             row: this.row,
45594             col: this.col,
45595             char: this.cpos //,
45596             //stack: new Error().stack
45597         });
45598     },
45599     emitEndParagraph : function () {
45600         this.emitText();
45601         this.push({
45602             type: 'endparagraph',
45603             pos: this.cpos,
45604             row: this.row,
45605             col: this.col
45606         });
45607     }
45608      
45609 } ;
45610 Roo.htmleditor = {};
45611  
45612 /**
45613  * @class Roo.htmleditor.Filter
45614  * Base Class for filtering htmleditor stuff. - do not use this directly - extend it.
45615  * @cfg {DomElement} node The node to iterate and filter
45616  * @cfg {boolean|String|Array} tag Tags to replace 
45617  * @constructor
45618  * Create a new Filter.
45619  * @param {Object} config Configuration options
45620  */
45621
45622
45623
45624 Roo.htmleditor.Filter = function(cfg) {
45625     Roo.apply(this.cfg);
45626     // this does not actually call walk as it's really just a abstract class
45627 }
45628
45629
45630 Roo.htmleditor.Filter.prototype = {
45631     
45632     node: false,
45633     
45634     tag: false,
45635
45636     // overrride to do replace comments.
45637     replaceComment : false,
45638     
45639     // overrride to do replace or do stuff with tags..
45640     replaceTag : false,
45641     
45642     walk : function(dom)
45643     {
45644         Roo.each( Array.from(dom.childNodes), function( e ) {
45645             switch(true) {
45646                 
45647                 case e.nodeType == 8 &&  this.replaceComment  !== false: // comment
45648                     this.replaceComment(e);
45649                     return;
45650                 
45651                 case e.nodeType != 1: //not a node.
45652                     return;
45653                 
45654                 case this.tag === true: // everything
45655                 case e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1:
45656                 case e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'string' && this.tag == ":":
45657                 case typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1: // array and it matches.
45658                 case typeof(this.tag) == 'string' && this.tag == e.tagName: // array and it matches.
45659                     if (this.replaceTag && false === this.replaceTag(e)) {
45660                         return;
45661                     }
45662                     if (e.hasChildNodes()) {
45663                         this.walk(e);
45664                     }
45665                     return;
45666                 
45667                 default:    // tags .. that do not match.
45668                     if (e.hasChildNodes()) {
45669                         this.walk(e);
45670                     }
45671             }
45672             
45673         }, this);
45674         
45675     },
45676     
45677     
45678     removeNodeKeepChildren : function( node)
45679     {
45680     
45681         ar = Array.from(node.childNodes);
45682         for (var i = 0; i < ar.length; i++) {
45683          
45684             node.removeChild(ar[i]);
45685             // what if we need to walk these???
45686             node.parentNode.insertBefore(ar[i], node);
45687            
45688         }
45689         node.parentNode.removeChild(node);
45690     }
45691 }; 
45692
45693 /**
45694  * @class Roo.htmleditor.FilterAttributes
45695  * clean attributes and  styles including http:// etc.. in attribute
45696  * @constructor
45697 * Run a new Attribute Filter
45698 * @param {Object} config Configuration options
45699  */
45700 Roo.htmleditor.FilterAttributes = function(cfg)
45701 {
45702     Roo.apply(this, cfg);
45703     this.attrib_black = this.attrib_black || [];
45704     this.attrib_white = this.attrib_white || [];
45705
45706     this.attrib_clean = this.attrib_clean || [];
45707     this.style_white = this.style_white || [];
45708     this.style_black = this.style_black || [];
45709     this.walk(cfg.node);
45710 }
45711
45712 Roo.extend(Roo.htmleditor.FilterAttributes, Roo.htmleditor.Filter,
45713 {
45714     tag: true, // all tags
45715     
45716     attrib_black : false, // array
45717     attrib_clean : false,
45718     attrib_white : false,
45719
45720     style_white : false,
45721     style_black : false,
45722      
45723      
45724     replaceTag : function(node)
45725     {
45726         if (!node.attributes || !node.attributes.length) {
45727             return true;
45728         }
45729         
45730         for (var i = node.attributes.length-1; i > -1 ; i--) {
45731             var a = node.attributes[i];
45732             //console.log(a);
45733             if (this.attrib_white.length && this.attrib_white.indexOf(a.name.toLowerCase()) < 0) {
45734                 node.removeAttribute(a.name);
45735                 continue;
45736             }
45737             
45738             
45739             
45740             if (a.name.toLowerCase().substr(0,2)=='on')  {
45741                 node.removeAttribute(a.name);
45742                 continue;
45743             }
45744             
45745             
45746             if (this.attrib_black.indexOf(a.name.toLowerCase()) > -1) {
45747                 node.removeAttribute(a.name);
45748                 continue;
45749             }
45750             if (this.attrib_clean.indexOf(a.name.toLowerCase()) > -1) {
45751                 this.cleanAttr(node,a.name,a.value); // fixme..
45752                 continue;
45753             }
45754             if (a.name == 'style') {
45755                 this.cleanStyle(node,a.name,a.value);
45756                 continue;
45757             }
45758             /// clean up MS crap..
45759             // tecnically this should be a list of valid class'es..
45760             
45761             
45762             if (a.name == 'class') {
45763                 if (a.value.match(/^Mso/)) {
45764                     node.removeAttribute('class');
45765                 }
45766                 
45767                 if (a.value.match(/^body$/)) {
45768                     node.removeAttribute('class');
45769                 }
45770                 continue;
45771             }
45772             
45773             
45774             // style cleanup!?
45775             // class cleanup?
45776             
45777         }
45778         return true; // clean children
45779     },
45780         
45781     cleanAttr: function(node, n,v)
45782     {
45783         
45784         if (v.match(/^\./) || v.match(/^\//)) {
45785             return;
45786         }
45787         if (v.match(/^(http|https):\/\//)
45788             || v.match(/^mailto:/) 
45789             || v.match(/^ftp:/)
45790             || v.match(/^data:/)
45791             ) {
45792             return;
45793         }
45794         if (v.match(/^#/)) {
45795             return;
45796         }
45797         if (v.match(/^\{/)) { // allow template editing.
45798             return;
45799         }
45800 //            Roo.log("(REMOVE TAG)"+ node.tagName +'.' + n + '=' + v);
45801         node.removeAttribute(n);
45802         
45803     },
45804     cleanStyle : function(node,  n,v)
45805     {
45806         if (v.match(/expression/)) { //XSS?? should we even bother..
45807             node.removeAttribute(n);
45808             return;
45809         }
45810         
45811         var parts = v.split(/;/);
45812         var clean = [];
45813         
45814         Roo.each(parts, function(p) {
45815             p = p.replace(/^\s+/g,'').replace(/\s+$/g,'');
45816             if (!p.length) {
45817                 return true;
45818             }
45819             var l = p.split(':').shift().replace(/\s+/g,'');
45820             l = l.replace(/^\s+/g,'').replace(/\s+$/g,'');
45821             
45822             if ( this.style_black.length && (this.style_black.indexOf(l) > -1 || this.style_black.indexOf(l.toLowerCase()) > -1)) {
45823                 return true;
45824             }
45825             //Roo.log()
45826             // only allow 'c whitelisted system attributes'
45827             if ( this.style_white.length &&  style_white.indexOf(l) < 0 && style_white.indexOf(l.toLowerCase()) < 0 ) {
45828                 return true;
45829             }
45830             
45831             
45832             clean.push(p);
45833             return true;
45834         },this);
45835         if (clean.length) { 
45836             node.setAttribute(n, clean.join(';'));
45837         } else {
45838             node.removeAttribute(n);
45839         }
45840         
45841     }
45842         
45843         
45844         
45845     
45846 });/**
45847  * @class Roo.htmleditor.FilterBlack
45848  * remove blacklisted elements.
45849  * @constructor
45850  * Run a new Blacklisted Filter
45851  * @param {Object} config Configuration options
45852  */
45853
45854 Roo.htmleditor.FilterBlack = function(cfg)
45855 {
45856     Roo.apply(this, cfg);
45857     this.walk(cfg.node);
45858 }
45859
45860 Roo.extend(Roo.htmleditor.FilterBlack, Roo.htmleditor.Filter,
45861 {
45862     tag : true, // all elements.
45863    
45864     replaceTag : function(n)
45865     {
45866         n.parentNode.removeChild(n);
45867     }
45868 });
45869 /**
45870  * @class Roo.htmleditor.FilterComment
45871  * remove comments.
45872  * @constructor
45873 * Run a new Comments Filter
45874 * @param {Object} config Configuration options
45875  */
45876 Roo.htmleditor.FilterComment = function(cfg)
45877 {
45878     this.walk(cfg.node);
45879 }
45880
45881 Roo.extend(Roo.htmleditor.FilterComment, Roo.htmleditor.Filter,
45882 {
45883   
45884     replaceComment : function(n)
45885     {
45886         n.parentNode.removeChild(n);
45887     }
45888 });/**
45889  * @class Roo.htmleditor.FilterKeepChildren
45890  * remove tags but keep children
45891  * @constructor
45892  * Run a new Keep Children Filter
45893  * @param {Object} config Configuration options
45894  */
45895
45896 Roo.htmleditor.FilterKeepChildren = function(cfg)
45897 {
45898     Roo.apply(this, cfg);
45899     if (this.tag === false) {
45900         return; // dont walk.. (you can use this to use this just to do a child removal on a single tag )
45901     }
45902     // hacky?
45903     if ((typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1)) {
45904         this.cleanNamespace = true;
45905     }
45906         
45907     this.walk(cfg.node);
45908 }
45909
45910 Roo.extend(Roo.htmleditor.FilterKeepChildren, Roo.htmleditor.FilterBlack,
45911 {
45912     cleanNamespace : false, // should really be an option, rather than using ':' inside of this tag.
45913   
45914     replaceTag : function(node)
45915     {
45916         // walk children...
45917         //Roo.log(node.tagName);
45918         var ar = Array.from(node.childNodes);
45919         //remove first..
45920         
45921         for (var i = 0; i < ar.length; i++) {
45922             var e = ar[i];
45923             if (e.nodeType == 1) {
45924                 if (
45925                     (typeof(this.tag) == 'object' && this.tag.indexOf(e.tagName) > -1)
45926                     || // array and it matches
45927                     (typeof(this.tag) == 'string' && this.tag == e.tagName)
45928                     ||
45929                     (e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'object' && this.tag.indexOf(":") > -1)
45930                     ||
45931                     (e.tagName.indexOf(":") > -1 && typeof(this.tag) == 'string' && this.tag == ":")
45932                 ) {
45933                     this.replaceTag(ar[i]); // child is blacklisted as well...
45934                     continue;
45935                 }
45936             }
45937         }  
45938         ar = Array.from(node.childNodes);
45939         for (var i = 0; i < ar.length; i++) {
45940          
45941             node.removeChild(ar[i]);
45942             // what if we need to walk these???
45943             node.parentNode.insertBefore(ar[i], node);
45944             if (this.tag !== false) {
45945                 this.walk(ar[i]);
45946                 
45947             }
45948         }
45949         //Roo.log("REMOVE:" + node.tagName);
45950         node.parentNode.removeChild(node);
45951         return false; // don't walk children
45952         
45953         
45954     }
45955 });/**
45956  * @class Roo.htmleditor.FilterParagraph
45957  * paragraphs cause a nightmare for shared content - this filter is designed to be called ? at various points when editing
45958  * like on 'push' to remove the <p> tags and replace them with line breaks.
45959  * @constructor
45960  * Run a new Paragraph Filter
45961  * @param {Object} config Configuration options
45962  */
45963
45964 Roo.htmleditor.FilterParagraph = function(cfg)
45965 {
45966     // no need to apply config.
45967     this.walk(cfg.node);
45968 }
45969
45970 Roo.extend(Roo.htmleditor.FilterParagraph, Roo.htmleditor.Filter,
45971 {
45972     
45973      
45974     tag : 'P',
45975     
45976      
45977     replaceTag : function(node)
45978     {
45979         
45980         if (node.childNodes.length == 1 &&
45981             node.childNodes[0].nodeType == 3 &&
45982             node.childNodes[0].textContent.trim().length < 1
45983             ) {
45984             // remove and replace with '<BR>';
45985             node.parentNode.replaceChild(node.ownerDocument.createElement('BR'),node);
45986             return false; // no need to walk..
45987         }
45988         var ar = Array.from(node.childNodes);
45989         for (var i = 0; i < ar.length; i++) {
45990             node.removeChild(ar[i]);
45991             // what if we need to walk these???
45992             node.parentNode.insertBefore(ar[i], node);
45993         }
45994         // now what about this?
45995         // <p> &nbsp; </p>
45996         
45997         // double BR.
45998         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
45999         node.parentNode.insertBefore(node.ownerDocument.createElement('BR'), node);
46000         node.parentNode.removeChild(node);
46001         
46002         return false;
46003
46004     }
46005     
46006 });/**
46007  * @class Roo.htmleditor.FilterSpan
46008  * filter span's with no attributes out..
46009  * @constructor
46010  * Run a new Span Filter
46011  * @param {Object} config Configuration options
46012  */
46013
46014 Roo.htmleditor.FilterSpan = function(cfg)
46015 {
46016     // no need to apply config.
46017     this.walk(cfg.node);
46018 }
46019
46020 Roo.extend(Roo.htmleditor.FilterSpan, Roo.htmleditor.FilterKeepChildren,
46021 {
46022      
46023     tag : 'SPAN',
46024      
46025  
46026     replaceTag : function(node)
46027     {
46028         if (node.attributes && node.attributes.length > 0) {
46029             return true; // walk if there are any.
46030         }
46031         Roo.htmleditor.FilterKeepChildren.prototype.replaceTag.call(this, node);
46032         return false;
46033      
46034     }
46035     
46036 });/**
46037  * @class Roo.htmleditor.FilterTableWidth
46038   try and remove table width data - as that frequently messes up other stuff.
46039  * 
46040  *      was cleanTableWidths.
46041  *
46042  * Quite often pasting from word etc.. results in tables with column and widths.
46043  * This does not work well on fluid HTML layouts - like emails. - so this code should hunt an destroy them..
46044  *
46045  * @constructor
46046  * Run a new Table Filter
46047  * @param {Object} config Configuration options
46048  */
46049
46050 Roo.htmleditor.FilterTableWidth = function(cfg)
46051 {
46052     // no need to apply config.
46053     this.tag = ['TABLE', 'TD', 'TR', 'TH', 'THEAD', 'TBODY' ];
46054     this.walk(cfg.node);
46055 }
46056
46057 Roo.extend(Roo.htmleditor.FilterTableWidth, Roo.htmleditor.Filter,
46058 {
46059      
46060      
46061     
46062     replaceTag: function(node) {
46063         
46064         
46065       
46066         if (node.hasAttribute('width')) {
46067             node.removeAttribute('width');
46068         }
46069         
46070          
46071         if (node.hasAttribute("style")) {
46072             // pretty basic...
46073             
46074             var styles = node.getAttribute("style").split(";");
46075             var nstyle = [];
46076             Roo.each(styles, function(s) {
46077                 if (!s.match(/:/)) {
46078                     return;
46079                 }
46080                 var kv = s.split(":");
46081                 if (kv[0].match(/^\s*(width|min-width)\s*$/)) {
46082                     return;
46083                 }
46084                 // what ever is left... we allow.
46085                 nstyle.push(s);
46086             });
46087             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
46088             if (!nstyle.length) {
46089                 node.removeAttribute('style');
46090             }
46091         }
46092         
46093         return true; // continue doing children..
46094     }
46095 });/**
46096  * @class Roo.htmleditor.FilterWord
46097  * try and clean up all the mess that Word generates.
46098  * 
46099  * This is the 'nice version' - see 'Heavy' that white lists a very short list of elements, and multi-filters 
46100  
46101  * @constructor
46102  * Run a new Span Filter
46103  * @param {Object} config Configuration options
46104  */
46105
46106 Roo.htmleditor.FilterWord = function(cfg)
46107 {
46108     // no need to apply config.
46109     this.replaceDocBullets(cfg.node);
46110     
46111     this.replaceAname(cfg.node);
46112     // this is disabled as the removal is done by other filters;
46113    // this.walk(cfg.node);
46114     
46115     
46116 }
46117
46118 Roo.extend(Roo.htmleditor.FilterWord, Roo.htmleditor.Filter,
46119 {
46120     tag: true,
46121      
46122     
46123     /**
46124      * Clean up MS wordisms...
46125      */
46126     replaceTag : function(node)
46127     {
46128          
46129         // no idea what this does - span with text, replaceds with just text.
46130         if(
46131                 node.nodeName == 'SPAN' &&
46132                 !node.hasAttributes() &&
46133                 node.childNodes.length == 1 &&
46134                 node.firstChild.nodeName == "#text"  
46135         ) {
46136             var textNode = node.firstChild;
46137             node.removeChild(textNode);
46138             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
46139                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" "), node);
46140             }
46141             node.parentNode.insertBefore(textNode, node);
46142             if (node.getAttribute('lang') != 'zh-CN') {   // do not space pad on chinese characters..
46143                 node.parentNode.insertBefore(node.ownerDocument.createTextNode(" ") , node);
46144             }
46145             
46146             node.parentNode.removeChild(node);
46147             return false; // dont do chidren - we have remove our node - so no need to do chdhilren?
46148         }
46149         
46150    
46151         
46152         if (node.tagName.toLowerCase().match(/^(style|script|applet|embed|noframes|noscript)$/)) {
46153             node.parentNode.removeChild(node);
46154             return false; // dont do chidlren
46155         }
46156         //Roo.log(node.tagName);
46157         // remove - but keep children..
46158         if (node.tagName.toLowerCase().match(/^(meta|link|\\?xml:|st1:|o:|v:|font)/)) {
46159             //Roo.log('-- removed');
46160             while (node.childNodes.length) {
46161                 var cn = node.childNodes[0];
46162                 node.removeChild(cn);
46163                 node.parentNode.insertBefore(cn, node);
46164                 // move node to parent - and clean it..
46165                 if (cn.nodeType == 1) {
46166                     this.replaceTag(cn);
46167                 }
46168                 
46169             }
46170             node.parentNode.removeChild(node);
46171             /// no need to iterate chidlren = it's got none..
46172             //this.iterateChildren(node, this.cleanWord);
46173             return false; // no need to iterate children.
46174         }
46175         // clean styles
46176         if (node.className.length) {
46177             
46178             var cn = node.className.split(/\W+/);
46179             var cna = [];
46180             Roo.each(cn, function(cls) {
46181                 if (cls.match(/Mso[a-zA-Z]+/)) {
46182                     return;
46183                 }
46184                 cna.push(cls);
46185             });
46186             node.className = cna.length ? cna.join(' ') : '';
46187             if (!cna.length) {
46188                 node.removeAttribute("class");
46189             }
46190         }
46191         
46192         if (node.hasAttribute("lang")) {
46193             node.removeAttribute("lang");
46194         }
46195         
46196         if (node.hasAttribute("style")) {
46197             
46198             var styles = node.getAttribute("style").split(";");
46199             var nstyle = [];
46200             Roo.each(styles, function(s) {
46201                 if (!s.match(/:/)) {
46202                     return;
46203                 }
46204                 var kv = s.split(":");
46205                 if (kv[0].match(/^(mso-|line|font|background|margin|padding|color)/)) {
46206                     return;
46207                 }
46208                 // what ever is left... we allow.
46209                 nstyle.push(s);
46210             });
46211             node.setAttribute("style", nstyle.length ? nstyle.join(';') : '');
46212             if (!nstyle.length) {
46213                 node.removeAttribute('style');
46214             }
46215         }
46216         return true; // do children
46217         
46218         
46219         
46220     },
46221     
46222     styleToObject: function(node)
46223     {
46224         var styles = (node.getAttribute("style") || '').split(";");
46225         var ret = {};
46226         Roo.each(styles, function(s) {
46227             if (!s.match(/:/)) {
46228                 return;
46229             }
46230             var kv = s.split(":");
46231              
46232             // what ever is left... we allow.
46233             ret[kv[0].trim()] = kv[1];
46234         });
46235         return ret;
46236     },
46237     
46238     
46239     replaceAname : function (doc)
46240     {
46241         // replace all the a/name without..
46242         var aa = Array.from(doc.getElementsByTagName('a'));
46243         for (var i = 0; i  < aa.length; i++) {
46244             var a = aa[i];
46245             if (a.hasAttribute("name")) {
46246                 a.removeAttribute("name");
46247             }
46248             if (a.hasAttribute("href")) {
46249                 continue;
46250             }
46251             // reparent children.
46252             this.removeNodeKeepChildren(a);
46253             
46254         }
46255         
46256         
46257         
46258     },
46259
46260     
46261     
46262     replaceDocBullets : function(doc)
46263     {
46264         // this is a bit odd - but it appears some indents use ql-indent-1
46265         //Roo.log(doc.innerHTML);
46266         
46267         var listpara = doc.getElementsByClassName('MsoListParagraphCxSpFirst');
46268         for( var i = 0; i < listpara.length; i ++) {
46269             listpara.item(i).className = "MsoListParagraph";
46270         }
46271         // this is a bit hacky - we had one word document where h2 had a miso-list attribute.
46272         var htwo = doc.getElementsByTagName('h2');
46273         for( var i = 0; i < htwo.length; i ++) {
46274             if (htwo.item(i).hasAttribute('style') && htwo.item(i).getAttribute('style').match(/mso-list:/)) {
46275                 htwo.item(i).className = "MsoListParagraph";
46276             }
46277         }
46278         listpara = doc.getElementsByClassName('MsoNormal');
46279         while(listpara.length) {
46280             if (listpara.item(0).hasAttribute('style') && listpara.item(0).getAttribute('style').match(/mso-list:/)) {
46281                 listpara.item(0).className = "MsoListParagraph";
46282             } else {
46283                 listpara.item(0).className = "MsoNormalx";
46284             }
46285         }
46286         listpara = doc.getElementsByClassName('ql-indent-1');
46287         while(listpara.length) {
46288             this.replaceDocBullet(listpara.item(0));
46289         }
46290         listpara = doc.getElementsByClassName('MsoListParagraph');
46291         while(listpara.length) {
46292             
46293             this.replaceDocBullet(listpara.item(0));
46294         }
46295       
46296     },
46297     
46298      
46299     
46300     replaceDocBullet : function(p)
46301     {
46302         // gather all the siblings.
46303         var ns = p,
46304             parent = p.parentNode,
46305             doc = parent.ownerDocument,
46306             items = [];
46307             
46308             
46309         while (ns) {
46310             if (ns.nodeType != 1) {
46311                 ns = ns.nextSibling;
46312                 continue;
46313             }
46314             if (!ns.className.match(/(MsoListParagraph|ql-indent-1)/i)) {
46315                 break;
46316             }
46317             if (ns.hasAttribute('style') && ns.getAttribute('style').match(/mso-list/)) {
46318                 items.push(ns);
46319                 ns = ns.nextSibling;
46320                 has_list = true;
46321                 continue;
46322             }
46323             var spans = ns.getElementsByTagName('span');
46324             if (!spans.length) {
46325                 break;
46326             }
46327             var has_list  = false;
46328             for(var i = 0; i < spans.length; i++) {
46329                 if (spans[i].hasAttribute('style') && spans[i].getAttribute('style').match(/mso-list/)) {
46330                     has_list = true;
46331                     break;
46332                 }
46333             }
46334             if (!has_list) {
46335                 break;
46336             }
46337             items.push(ns);
46338             ns = ns.nextSibling;
46339             
46340             
46341         }
46342         if (!items.length) {
46343             ns.className = "";
46344             return;
46345         }
46346         
46347         var ul = parent.ownerDocument.createElement('ul'); // what about number lists...
46348         parent.insertBefore(ul, p);
46349         var lvl = 0;
46350         var stack = [ ul ];
46351         var last_li = false;
46352         
46353         var margin_to_depth = {};
46354         max_margins = -1;
46355         
46356         items.forEach(function(n, ipos) {
46357             //Roo.log("got innertHMLT=" + n.innerHTML);
46358             
46359             var spans = n.getElementsByTagName('span');
46360             if (!spans.length) {
46361                 //Roo.log("No spans found");
46362                  
46363                 parent.removeChild(n);
46364                 
46365                 
46366                 return; // skip it...
46367             }
46368            
46369                 
46370             
46371             var style = {};
46372             for(var i = 0; i < spans.length; i++) {
46373             
46374                 style = this.styleToObject(spans[i]);
46375                 if (typeof(style['mso-list']) == 'undefined') {
46376                     continue;
46377                 }
46378                 
46379                 spans[i].parentNode.removeChild(spans[i]); // remove the fake bullet.
46380                 break;
46381             }
46382             //Roo.log("NOW GOT innertHMLT=" + n.innerHTML);
46383             style = this.styleToObject(n); // mo-list is from the parent node.
46384             if (typeof(style['mso-list']) == 'undefined') {
46385                 //Roo.log("parent is missing level");
46386                   
46387                 parent.removeChild(n);
46388                  
46389                 return;
46390             }
46391             
46392             var margin = style['margin-left'];
46393             if (typeof(margin_to_depth[margin]) == 'undefined') {
46394                 max_margins++;
46395                 margin_to_depth[margin] = max_margins;
46396             }
46397             nlvl = margin_to_depth[margin] ;
46398              
46399             if (nlvl > lvl) {
46400                 //new indent
46401                 var nul = doc.createElement('ul'); // what about number lists...
46402                 if (!last_li) {
46403                     last_li = doc.createElement('li');
46404                     stack[lvl].appendChild(last_li);
46405                 }
46406                 last_li.appendChild(nul);
46407                 stack[nlvl] = nul;
46408                 
46409             }
46410             lvl = nlvl;
46411             
46412             var nli = stack[nlvl].appendChild(doc.createElement('li'));
46413             last_li = nli;
46414             nli.innerHTML = n.innerHTML;
46415             //Roo.log("innerHTML = " + n.innerHTML);
46416             parent.removeChild(n);
46417             
46418              
46419              
46420             
46421         },this);
46422         
46423         
46424         
46425         
46426     }
46427     
46428     
46429     
46430 });
46431 /**
46432  * @class Roo.htmleditor.FilterStyleToTag
46433  * part of the word stuff... - certain 'styles' should be converted to tags.
46434  * eg.
46435  *   font-weight: bold -> bold
46436  *   ?? super / subscrit etc..
46437  * 
46438  * @constructor
46439 * Run a new style to tag filter.
46440 * @param {Object} config Configuration options
46441  */
46442 Roo.htmleditor.FilterStyleToTag = function(cfg)
46443 {
46444     
46445     this.tags = {
46446         B  : [ 'fontWeight' , 'bold'],
46447         I :  [ 'fontStyle' , 'italic'],
46448         //pre :  [ 'font-style' , 'italic'],
46449         // h1.. h6 ?? font-size?
46450         SUP : [ 'verticalAlign' , 'super' ],
46451         SUB : [ 'verticalAlign' , 'sub' ]
46452         
46453         
46454     };
46455     
46456     Roo.apply(this, cfg);
46457      
46458     
46459     this.walk(cfg.node);
46460     
46461     
46462     
46463 }
46464
46465
46466 Roo.extend(Roo.htmleditor.FilterStyleToTag, Roo.htmleditor.Filter,
46467 {
46468     tag: true, // all tags
46469     
46470     tags : false,
46471     
46472     
46473     replaceTag : function(node)
46474     {
46475         
46476         
46477         if (node.getAttribute("style") === null) {
46478             return true;
46479         }
46480         var inject = [];
46481         for (var k in this.tags) {
46482             if (node.style[this.tags[k][0]] == this.tags[k][1]) {
46483                 inject.push(k);
46484                 node.style.removeProperty(this.tags[k][0]);
46485             }
46486         }
46487         if (!inject.length) {
46488             return true; 
46489         }
46490         var cn = Array.from(node.childNodes);
46491         var nn = node;
46492         Roo.each(inject, function(t) {
46493             var nc = node.ownerDocument.createElement(t);
46494             nn.appendChild(nc);
46495             nn = nc;
46496         });
46497         for(var i = 0;i < cn.length;cn++) {
46498             node.removeChild(cn[i]);
46499             nn.appendChild(cn[i]);
46500         }
46501         return true /// iterate thru
46502     }
46503     
46504 })/**
46505  * @class Roo.htmleditor.FilterLongBr
46506  * BR/BR/BR - keep a maximum of 2...
46507  * @constructor
46508  * Run a new Long BR Filter
46509  * @param {Object} config Configuration options
46510  */
46511
46512 Roo.htmleditor.FilterLongBr = function(cfg)
46513 {
46514     // no need to apply config.
46515     this.walk(cfg.node);
46516 }
46517
46518 Roo.extend(Roo.htmleditor.FilterLongBr, Roo.htmleditor.Filter,
46519 {
46520     
46521      
46522     tag : 'BR',
46523     
46524      
46525     replaceTag : function(node)
46526     {
46527         
46528         var ps = node.nextSibling;
46529         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
46530             ps = ps.nextSibling;
46531         }
46532         
46533         if (!ps &&  [ 'TD', 'TH', 'LI', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(node.parentNode.tagName) > -1) { 
46534             node.parentNode.removeChild(node); // remove last BR inside one fo these tags
46535             return false;
46536         }
46537         
46538         if (!ps || ps.nodeType != 1) {
46539             return false;
46540         }
46541         
46542         if (!ps || ps.tagName != 'BR') {
46543            
46544             return false;
46545         }
46546         
46547         
46548         
46549         
46550         
46551         if (!node.previousSibling) {
46552             return false;
46553         }
46554         var ps = node.previousSibling;
46555         
46556         while (ps && ps.nodeType == 3 && ps.nodeValue.trim().length < 1) {
46557             ps = ps.previousSibling;
46558         }
46559         if (!ps || ps.nodeType != 1) {
46560             return false;
46561         }
46562         // if header or BR before.. then it's a candidate for removal.. - as we only want '2' of these..
46563         if (!ps || [ 'BR', 'H1', 'H2', 'H3', 'H4', 'H5', 'H6' ].indexOf(ps.tagName) < 0) {
46564             return false;
46565         }
46566         
46567         node.parentNode.removeChild(node); // remove me...
46568         
46569         return false; // no need to do children
46570
46571     }
46572     
46573 }); 
46574
46575 /**
46576  * @class Roo.htmleditor.FilterBlock
46577  * removes id / data-block and contenteditable that are associated with blocks
46578  * usage should be done on a cloned copy of the dom
46579  * @constructor
46580 * Run a new Attribute Filter { node : xxxx }}
46581 * @param {Object} config Configuration options
46582  */
46583 Roo.htmleditor.FilterBlock = function(cfg)
46584 {
46585     Roo.apply(this, cfg);
46586     var qa = cfg.node.querySelectorAll;
46587     this.removeAttributes('data-block');
46588     this.removeAttributes('contenteditable');
46589     this.removeAttributes('id');
46590     
46591 }
46592
46593 Roo.apply(Roo.htmleditor.FilterBlock.prototype,
46594 {
46595     node: true, // all tags
46596      
46597      
46598     removeAttributes : function(attr)
46599     {
46600         var ar = this.node.querySelectorAll('*[' + attr + ']');
46601         for (var i =0;i<ar.length;i++) {
46602             ar[i].removeAttribute(attr);
46603         }
46604     }
46605         
46606         
46607         
46608     
46609 });
46610 /***
46611  * This is based loosely on tinymce 
46612  * @class Roo.htmleditor.TidySerializer
46613  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
46614  * @constructor
46615  * @method Serializer
46616  * @param {Object} settings Name/value settings object.
46617  */
46618
46619
46620 Roo.htmleditor.TidySerializer = function(settings)
46621 {
46622     Roo.apply(this, settings);
46623     
46624     this.writer = new Roo.htmleditor.TidyWriter(settings);
46625     
46626     
46627
46628 };
46629 Roo.htmleditor.TidySerializer.prototype = {
46630     
46631     /**
46632      * @param {boolean} inner do the inner of the node.
46633      */
46634     inner : false,
46635     
46636     writer : false,
46637     
46638     /**
46639     * Serializes the specified node into a string.
46640     *
46641     * @example
46642     * new tinymce.html.Serializer().serialize(new tinymce.html.DomParser().parse('<p>text</p>'));
46643     * @method serialize
46644     * @param {DomElement} node Node instance to serialize.
46645     * @return {String} String with HTML based on DOM tree.
46646     */
46647     serialize : function(node) {
46648         
46649         // = settings.validate;
46650         var writer = this.writer;
46651         var self  = this;
46652         this.handlers = {
46653             // #text
46654             3: function(node) {
46655                 
46656                 writer.text(node.nodeValue, node);
46657             },
46658             // #comment
46659             8: function(node) {
46660                 writer.comment(node.nodeValue);
46661             },
46662             // Processing instruction
46663             7: function(node) {
46664                 writer.pi(node.name, node.nodeValue);
46665             },
46666             // Doctype
46667             10: function(node) {
46668                 writer.doctype(node.nodeValue);
46669             },
46670             // CDATA
46671             4: function(node) {
46672                 writer.cdata(node.nodeValue);
46673             },
46674             // Document fragment
46675             11: function(node) {
46676                 node = node.firstChild;
46677                 if (!node) {
46678                     return;
46679                 }
46680                 while(node) {
46681                     self.walk(node);
46682                     node = node.nextSibling
46683                 }
46684             }
46685         };
46686         writer.reset();
46687         1 != node.nodeType || this.inner ? this.handlers[11](node) : this.walk(node);
46688         return writer.getContent();
46689     },
46690
46691     walk: function(node)
46692     {
46693         var attrName, attrValue, sortedAttrs, i, l, elementRule,
46694             handler = this.handlers[node.nodeType];
46695             
46696         if (handler) {
46697             handler(node);
46698             return;
46699         }
46700     
46701         var name = node.nodeName;
46702         var isEmpty = node.childNodes.length < 1;
46703       
46704         var writer = this.writer;
46705         var attrs = node.attributes;
46706         // Sort attributes
46707         
46708         writer.start(node.nodeName, attrs, isEmpty, node);
46709         if (isEmpty) {
46710             return;
46711         }
46712         node = node.firstChild;
46713         if (!node) {
46714             writer.end(name);
46715             return;
46716         }
46717         while (node) {
46718             this.walk(node);
46719             node = node.nextSibling;
46720         }
46721         writer.end(name);
46722         
46723     
46724     }
46725     // Serialize element and treat all non elements as fragments
46726    
46727 }; 
46728
46729 /***
46730  * This is based loosely on tinymce 
46731  * @class Roo.htmleditor.TidyWriter
46732  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
46733  *
46734  * Known issues?
46735  * - not tested much with 'PRE' formated elements.
46736  * 
46737  *
46738  *
46739  */
46740
46741 Roo.htmleditor.TidyWriter = function(settings)
46742 {
46743     
46744     // indent, indentBefore, indentAfter, encode, htmlOutput, html = [];
46745     Roo.apply(this, settings);
46746     this.html = [];
46747     this.state = [];
46748      
46749     this.encode = Roo.htmleditor.TidyEntities.getEncodeFunc(settings.entity_encoding || 'raw', settings.entities);
46750   
46751 }
46752 Roo.htmleditor.TidyWriter.prototype = {
46753
46754  
46755     state : false,
46756     
46757     indent :  '  ',
46758     
46759     // part of state...
46760     indentstr : '',
46761     in_pre: false,
46762     in_inline : false,
46763     last_inline : false,
46764     encode : false,
46765      
46766     
46767             /**
46768     * Writes the a start element such as <p id="a">.
46769     *
46770     * @method start
46771     * @param {String} name Name of the element.
46772     * @param {Array} attrs Optional attribute array or undefined if it hasn't any.
46773     * @param {Boolean} empty Optional empty state if the tag should end like <br />.
46774     */
46775     start: function(name, attrs, empty, node)
46776     {
46777         var i, l, attr, value;
46778         
46779         // there are some situations where adding line break && indentation will not work. will not work.
46780         // <span / b / i ... formating?
46781         
46782         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
46783         var in_pre    = this.in_pre    || Roo.htmleditor.TidyWriter.whitespace_elements.indexOf(name) > -1;
46784         
46785         var is_short   = empty ? Roo.htmleditor.TidyWriter.shortend_elements.indexOf(name) > -1 : false;
46786         
46787         var add_lb = name == 'BR' ? false : in_inline;
46788         
46789         if (!add_lb && !this.in_pre && this.lastElementEndsWS()) {
46790             i_inline = false;
46791         }
46792
46793         var indentstr =  this.indentstr;
46794         
46795         // e_inline = elements that can be inline, but still allow \n before and after?
46796         // only 'BR' ??? any others?
46797         
46798         // ADD LINE BEFORE tage
46799         if (!this.in_pre) {
46800             if (in_inline) {
46801                 //code
46802                 if (name == 'BR') {
46803                     this.addLine();
46804                 } else if (this.lastElementEndsWS()) {
46805                     this.addLine();
46806                 } else{
46807                     // otherwise - no new line. (and dont indent.)
46808                     indentstr = '';
46809                 }
46810                 
46811             } else {
46812                 this.addLine();
46813             }
46814         } else {
46815             indentstr = '';
46816         }
46817         
46818         this.html.push(indentstr + '<', name.toLowerCase());
46819         
46820         if (attrs) {
46821             for (i = 0, l = attrs.length; i < l; i++) {
46822                 attr = attrs[i];
46823                 this.html.push(' ', attr.name, '="', this.encode(attr.value, true), '"');
46824             }
46825         }
46826      
46827         if (empty) {
46828             if (is_short) {
46829                 this.html[this.html.length] = '/>';
46830             } else {
46831                 this.html[this.html.length] = '></' + name.toLowerCase() + '>';
46832             }
46833             var e_inline = name == 'BR' ? false : this.in_inline;
46834             
46835             if (!e_inline && !this.in_pre) {
46836                 this.addLine();
46837             }
46838             return;
46839         
46840         }
46841         // not empty..
46842         this.html[this.html.length] = '>';
46843         
46844         // there is a special situation, where we need to turn on in_inline - if any of the imediate chidlren are one of these.
46845         /*
46846         if (!in_inline && !in_pre) {
46847             var cn = node.firstChild;
46848             while(cn) {
46849                 if (Roo.htmleditor.TidyWriter.inline_elements.indexOf(cn.nodeName) > -1) {
46850                     in_inline = true
46851                     break;
46852                 }
46853                 cn = cn.nextSibling;
46854             }
46855              
46856         }
46857         */
46858         
46859         
46860         this.pushState({
46861             indentstr : in_pre   ? '' : (this.indentstr + this.indent),
46862             in_pre : in_pre,
46863             in_inline :  in_inline
46864         });
46865         // add a line after if we are not in a
46866         
46867         if (!in_inline && !in_pre) {
46868             this.addLine();
46869         }
46870         
46871             
46872          
46873         
46874     },
46875     
46876     lastElementEndsWS : function()
46877     {
46878         var value = this.html.length > 0 ? this.html[this.html.length-1] : false;
46879         if (value === false) {
46880             return true;
46881         }
46882         return value.match(/\s+$/);
46883         
46884     },
46885     
46886     /**
46887      * Writes the a end element such as </p>.
46888      *
46889      * @method end
46890      * @param {String} name Name of the element.
46891      */
46892     end: function(name) {
46893         var value;
46894         this.popState();
46895         var indentstr = '';
46896         var in_inline = this.in_inline || Roo.htmleditor.TidyWriter.inline_elements.indexOf(name) > -1;
46897         
46898         if (!this.in_pre && !in_inline) {
46899             this.addLine();
46900             indentstr  = this.indentstr;
46901         }
46902         this.html.push(indentstr + '</', name.toLowerCase(), '>');
46903         this.last_inline = in_inline;
46904         
46905         // pop the indent state..
46906     },
46907     /**
46908      * Writes a text node.
46909      *
46910      * In pre - we should not mess with the contents.
46911      * 
46912      *
46913      * @method text
46914      * @param {String} text String to write out.
46915      * @param {Boolean} raw Optional raw state if true the contents wont get encoded.
46916      */
46917     text: function(in_text, node)
46918     {
46919         // if not in whitespace critical
46920         if (in_text.length < 1) {
46921             return;
46922         }
46923         var text = new XMLSerializer().serializeToString(document.createTextNode(in_text)); // escape it properly?
46924         
46925         if (this.in_pre) {
46926             this.html[this.html.length] =  text;
46927             return;   
46928         }
46929         
46930         if (this.in_inline) {
46931             text = text.replace(/\s+/g,' '); // all white space inc line breaks to a slingle' '
46932             if (text != ' ') {
46933                 text = text.replace(/\s+/,' ');  // all white space to single white space
46934                 
46935                     
46936                 // if next tag is '<BR>', then we can trim right..
46937                 if (node.nextSibling &&
46938                     node.nextSibling.nodeType == 1 &&
46939                     node.nextSibling.nodeName == 'BR' )
46940                 {
46941                     text = text.replace(/\s+$/g,'');
46942                 }
46943                 // if previous tag was a BR, we can also trim..
46944                 if (node.previousSibling &&
46945                     node.previousSibling.nodeType == 1 &&
46946                     node.previousSibling.nodeName == 'BR' )
46947                 {
46948                     text = this.indentstr +  text.replace(/^\s+/g,'');
46949                 }
46950                 if (text.match(/\n/)) {
46951                     text = text.replace(
46952                         /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
46953                     );
46954                     // remoeve the last whitespace / line break.
46955                     text = text.replace(/\n\s+$/,'');
46956                 }
46957                 // repace long lines
46958                 
46959             }
46960              
46961             this.html[this.html.length] =  text;
46962             return;   
46963         }
46964         // see if previous element was a inline element.
46965         var indentstr = this.indentstr;
46966    
46967         text = text.replace(/\s+/g," "); // all whitespace into single white space.
46968         
46969         // should trim left?
46970         if (node.previousSibling &&
46971             node.previousSibling.nodeType == 1 &&
46972             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.previousSibling.nodeName) > -1)
46973         {
46974             indentstr = '';
46975             
46976         } else {
46977             this.addLine();
46978             text = text.replace(/^\s+/,''); // trim left
46979           
46980         }
46981         // should trim right?
46982         if (node.nextSibling &&
46983             node.nextSibling.nodeType == 1 &&
46984             Roo.htmleditor.TidyWriter.inline_elements.indexOf(node.nextSibling.nodeName) > -1)
46985         {
46986           // noop
46987             
46988         }  else {
46989             text = text.replace(/\s+$/,''); // trim right
46990         }
46991          
46992               
46993         
46994         
46995         
46996         if (text.length < 1) {
46997             return;
46998         }
46999         if (!text.match(/\n/)) {
47000             this.html.push(indentstr + text);
47001             return;
47002         }
47003         
47004         text = this.indentstr + text.replace(
47005             /(?![^\n]{1,64}$)([^\n]{1,64})\s/g, '$1\n' + this.indentstr
47006         );
47007         // remoeve the last whitespace / line break.
47008         text = text.replace(/\s+$/,''); 
47009         
47010         this.html.push(text);
47011         
47012         // split and indent..
47013         
47014         
47015     },
47016     /**
47017      * Writes a cdata node such as <![CDATA[data]]>.
47018      *
47019      * @method cdata
47020      * @param {String} text String to write out inside the cdata.
47021      */
47022     cdata: function(text) {
47023         this.html.push('<![CDATA[', text, ']]>');
47024     },
47025     /**
47026     * Writes a comment node such as <!-- Comment -->.
47027     *
47028     * @method cdata
47029     * @param {String} text String to write out inside the comment.
47030     */
47031    comment: function(text) {
47032        this.html.push('<!--', text, '-->');
47033    },
47034     /**
47035      * Writes a PI node such as <?xml attr="value" ?>.
47036      *
47037      * @method pi
47038      * @param {String} name Name of the pi.
47039      * @param {String} text String to write out inside the pi.
47040      */
47041     pi: function(name, text) {
47042         text ? this.html.push('<?', name, ' ', this.encode(text), '?>') : this.html.push('<?', name, '?>');
47043         this.indent != '' && this.html.push('\n');
47044     },
47045     /**
47046      * Writes a doctype node such as <!DOCTYPE data>.
47047      *
47048      * @method doctype
47049      * @param {String} text String to write out inside the doctype.
47050      */
47051     doctype: function(text) {
47052         this.html.push('<!DOCTYPE', text, '>', this.indent != '' ? '\n' : '');
47053     },
47054     /**
47055      * Resets the internal buffer if one wants to reuse the writer.
47056      *
47057      * @method reset
47058      */
47059     reset: function() {
47060         this.html.length = 0;
47061         this.state = [];
47062         this.pushState({
47063             indentstr : '',
47064             in_pre : false, 
47065             in_inline : false
47066         })
47067     },
47068     /**
47069      * Returns the contents that got serialized.
47070      *
47071      * @method getContent
47072      * @return {String} HTML contents that got written down.
47073      */
47074     getContent: function() {
47075         return this.html.join('').replace(/\n$/, '');
47076     },
47077     
47078     pushState : function(cfg)
47079     {
47080         this.state.push(cfg);
47081         Roo.apply(this, cfg);
47082     },
47083     
47084     popState : function()
47085     {
47086         if (this.state.length < 1) {
47087             return; // nothing to push
47088         }
47089         var cfg = {
47090             in_pre: false,
47091             indentstr : ''
47092         };
47093         this.state.pop();
47094         if (this.state.length > 0) {
47095             cfg = this.state[this.state.length-1]; 
47096         }
47097         Roo.apply(this, cfg);
47098     },
47099     
47100     addLine: function()
47101     {
47102         if (this.html.length < 1) {
47103             return;
47104         }
47105         
47106         
47107         var value = this.html[this.html.length - 1];
47108         if (value.length > 0 && '\n' !== value) {
47109             this.html.push('\n');
47110         }
47111     }
47112     
47113     
47114 //'pre script noscript style textarea video audio iframe object code'
47115 // shortended... 'area base basefont br col frame hr img input isindex link  meta param embed source wbr track');
47116 // inline 
47117 };
47118
47119 Roo.htmleditor.TidyWriter.inline_elements = [
47120         'SPAN','STRONG','B','EM','I','FONT','STRIKE','U','VAR',
47121         'CITE','DFN','CODE','MARK','Q','SUP','SUB','SAMP', 'A'
47122 ];
47123 Roo.htmleditor.TidyWriter.shortend_elements = [
47124     'AREA','BASE','BASEFONT','BR','COL','FRAME','HR','IMG','INPUT',
47125     'ISINDEX','LINK','','META','PARAM','EMBED','SOURCE','WBR','TRACK'
47126 ];
47127
47128 Roo.htmleditor.TidyWriter.whitespace_elements = [
47129     'PRE','SCRIPT','NOSCRIPT','STYLE','TEXTAREA','VIDEO','AUDIO','IFRAME','OBJECT','CODE'
47130 ];/***
47131  * This is based loosely on tinymce 
47132  * @class Roo.htmleditor.TidyEntities
47133  * @static
47134  * https://github.com/thorn0/tinymce.html/blob/master/tinymce.html.js
47135  *
47136  * Not 100% sure this is actually used or needed.
47137  */
47138
47139 Roo.htmleditor.TidyEntities = {
47140     
47141     /**
47142      * initialize data..
47143      */
47144     init : function (){
47145      
47146         this.namedEntities = this.buildEntitiesLookup(this.namedEntitiesData, 32);
47147        
47148     },
47149
47150
47151     buildEntitiesLookup: function(items, radix) {
47152         var i, chr, entity, lookup = {};
47153         if (!items) {
47154             return {};
47155         }
47156         items = typeof(items) == 'string' ? items.split(',') : items;
47157         radix = radix || 10;
47158         // Build entities lookup table
47159         for (i = 0; i < items.length; i += 2) {
47160             chr = String.fromCharCode(parseInt(items[i], radix));
47161             // Only add non base entities
47162             if (!this.baseEntities[chr]) {
47163                 entity = '&' + items[i + 1] + ';';
47164                 lookup[chr] = entity;
47165                 lookup[entity] = chr;
47166             }
47167         }
47168         return lookup;
47169         
47170     },
47171     
47172     asciiMap : {
47173             128: '€',
47174             130: '‚',
47175             131: 'ƒ',
47176             132: '„',
47177             133: '…',
47178             134: '†',
47179             135: '‡',
47180             136: 'ˆ',
47181             137: '‰',
47182             138: 'Š',
47183             139: '‹',
47184             140: 'Œ',
47185             142: 'Ž',
47186             145: '‘',
47187             146: '’',
47188             147: '“',
47189             148: '”',
47190             149: '•',
47191             150: '–',
47192             151: '—',
47193             152: '˜',
47194             153: '™',
47195             154: 'š',
47196             155: '›',
47197             156: 'œ',
47198             158: 'ž',
47199             159: 'Ÿ'
47200     },
47201     // Raw entities
47202     baseEntities : {
47203         '"': '&quot;',
47204         // Needs to be escaped since the YUI compressor would otherwise break the code
47205         '\'': '&#39;',
47206         '<': '&lt;',
47207         '>': '&gt;',
47208         '&': '&amp;',
47209         '`': '&#96;'
47210     },
47211     // Reverse lookup table for raw entities
47212     reverseEntities : {
47213         '&lt;': '<',
47214         '&gt;': '>',
47215         '&amp;': '&',
47216         '&quot;': '"',
47217         '&apos;': '\''
47218     },
47219     
47220     attrsCharsRegExp : /[&<>\"\u0060\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
47221     textCharsRegExp : /[<>&\u007E-\uD7FF\uE000-\uFFEF]|[\uD800-\uDBFF][\uDC00-\uDFFF]/g,
47222     rawCharsRegExp : /[<>&\"\']/g,
47223     entityRegExp : /&#([a-z0-9]+);?|&([a-z0-9]+);/gi,
47224     namedEntities  : false,
47225     namedEntitiesData : [ 
47226         '50',
47227         'nbsp',
47228         '51',
47229         'iexcl',
47230         '52',
47231         'cent',
47232         '53',
47233         'pound',
47234         '54',
47235         'curren',
47236         '55',
47237         'yen',
47238         '56',
47239         'brvbar',
47240         '57',
47241         'sect',
47242         '58',
47243         'uml',
47244         '59',
47245         'copy',
47246         '5a',
47247         'ordf',
47248         '5b',
47249         'laquo',
47250         '5c',
47251         'not',
47252         '5d',
47253         'shy',
47254         '5e',
47255         'reg',
47256         '5f',
47257         'macr',
47258         '5g',
47259         'deg',
47260         '5h',
47261         'plusmn',
47262         '5i',
47263         'sup2',
47264         '5j',
47265         'sup3',
47266         '5k',
47267         'acute',
47268         '5l',
47269         'micro',
47270         '5m',
47271         'para',
47272         '5n',
47273         'middot',
47274         '5o',
47275         'cedil',
47276         '5p',
47277         'sup1',
47278         '5q',
47279         'ordm',
47280         '5r',
47281         'raquo',
47282         '5s',
47283         'frac14',
47284         '5t',
47285         'frac12',
47286         '5u',
47287         'frac34',
47288         '5v',
47289         'iquest',
47290         '60',
47291         'Agrave',
47292         '61',
47293         'Aacute',
47294         '62',
47295         'Acirc',
47296         '63',
47297         'Atilde',
47298         '64',
47299         'Auml',
47300         '65',
47301         'Aring',
47302         '66',
47303         'AElig',
47304         '67',
47305         'Ccedil',
47306         '68',
47307         'Egrave',
47308         '69',
47309         'Eacute',
47310         '6a',
47311         'Ecirc',
47312         '6b',
47313         'Euml',
47314         '6c',
47315         'Igrave',
47316         '6d',
47317         'Iacute',
47318         '6e',
47319         'Icirc',
47320         '6f',
47321         'Iuml',
47322         '6g',
47323         'ETH',
47324         '6h',
47325         'Ntilde',
47326         '6i',
47327         'Ograve',
47328         '6j',
47329         'Oacute',
47330         '6k',
47331         'Ocirc',
47332         '6l',
47333         'Otilde',
47334         '6m',
47335         'Ouml',
47336         '6n',
47337         'times',
47338         '6o',
47339         'Oslash',
47340         '6p',
47341         'Ugrave',
47342         '6q',
47343         'Uacute',
47344         '6r',
47345         'Ucirc',
47346         '6s',
47347         'Uuml',
47348         '6t',
47349         'Yacute',
47350         '6u',
47351         'THORN',
47352         '6v',
47353         'szlig',
47354         '70',
47355         'agrave',
47356         '71',
47357         'aacute',
47358         '72',
47359         'acirc',
47360         '73',
47361         'atilde',
47362         '74',
47363         'auml',
47364         '75',
47365         'aring',
47366         '76',
47367         'aelig',
47368         '77',
47369         'ccedil',
47370         '78',
47371         'egrave',
47372         '79',
47373         'eacute',
47374         '7a',
47375         'ecirc',
47376         '7b',
47377         'euml',
47378         '7c',
47379         'igrave',
47380         '7d',
47381         'iacute',
47382         '7e',
47383         'icirc',
47384         '7f',
47385         'iuml',
47386         '7g',
47387         'eth',
47388         '7h',
47389         'ntilde',
47390         '7i',
47391         'ograve',
47392         '7j',
47393         'oacute',
47394         '7k',
47395         'ocirc',
47396         '7l',
47397         'otilde',
47398         '7m',
47399         'ouml',
47400         '7n',
47401         'divide',
47402         '7o',
47403         'oslash',
47404         '7p',
47405         'ugrave',
47406         '7q',
47407         'uacute',
47408         '7r',
47409         'ucirc',
47410         '7s',
47411         'uuml',
47412         '7t',
47413         'yacute',
47414         '7u',
47415         'thorn',
47416         '7v',
47417         'yuml',
47418         'ci',
47419         'fnof',
47420         'sh',
47421         'Alpha',
47422         'si',
47423         'Beta',
47424         'sj',
47425         'Gamma',
47426         'sk',
47427         'Delta',
47428         'sl',
47429         'Epsilon',
47430         'sm',
47431         'Zeta',
47432         'sn',
47433         'Eta',
47434         'so',
47435         'Theta',
47436         'sp',
47437         'Iota',
47438         'sq',
47439         'Kappa',
47440         'sr',
47441         'Lambda',
47442         'ss',
47443         'Mu',
47444         'st',
47445         'Nu',
47446         'su',
47447         'Xi',
47448         'sv',
47449         'Omicron',
47450         't0',
47451         'Pi',
47452         't1',
47453         'Rho',
47454         't3',
47455         'Sigma',
47456         't4',
47457         'Tau',
47458         't5',
47459         'Upsilon',
47460         't6',
47461         'Phi',
47462         't7',
47463         'Chi',
47464         't8',
47465         'Psi',
47466         't9',
47467         'Omega',
47468         'th',
47469         'alpha',
47470         'ti',
47471         'beta',
47472         'tj',
47473         'gamma',
47474         'tk',
47475         'delta',
47476         'tl',
47477         'epsilon',
47478         'tm',
47479         'zeta',
47480         'tn',
47481         'eta',
47482         'to',
47483         'theta',
47484         'tp',
47485         'iota',
47486         'tq',
47487         'kappa',
47488         'tr',
47489         'lambda',
47490         'ts',
47491         'mu',
47492         'tt',
47493         'nu',
47494         'tu',
47495         'xi',
47496         'tv',
47497         'omicron',
47498         'u0',
47499         'pi',
47500         'u1',
47501         'rho',
47502         'u2',
47503         'sigmaf',
47504         'u3',
47505         'sigma',
47506         'u4',
47507         'tau',
47508         'u5',
47509         'upsilon',
47510         'u6',
47511         'phi',
47512         'u7',
47513         'chi',
47514         'u8',
47515         'psi',
47516         'u9',
47517         'omega',
47518         'uh',
47519         'thetasym',
47520         'ui',
47521         'upsih',
47522         'um',
47523         'piv',
47524         '812',
47525         'bull',
47526         '816',
47527         'hellip',
47528         '81i',
47529         'prime',
47530         '81j',
47531         'Prime',
47532         '81u',
47533         'oline',
47534         '824',
47535         'frasl',
47536         '88o',
47537         'weierp',
47538         '88h',
47539         'image',
47540         '88s',
47541         'real',
47542         '892',
47543         'trade',
47544         '89l',
47545         'alefsym',
47546         '8cg',
47547         'larr',
47548         '8ch',
47549         'uarr',
47550         '8ci',
47551         'rarr',
47552         '8cj',
47553         'darr',
47554         '8ck',
47555         'harr',
47556         '8dl',
47557         'crarr',
47558         '8eg',
47559         'lArr',
47560         '8eh',
47561         'uArr',
47562         '8ei',
47563         'rArr',
47564         '8ej',
47565         'dArr',
47566         '8ek',
47567         'hArr',
47568         '8g0',
47569         'forall',
47570         '8g2',
47571         'part',
47572         '8g3',
47573         'exist',
47574         '8g5',
47575         'empty',
47576         '8g7',
47577         'nabla',
47578         '8g8',
47579         'isin',
47580         '8g9',
47581         'notin',
47582         '8gb',
47583         'ni',
47584         '8gf',
47585         'prod',
47586         '8gh',
47587         'sum',
47588         '8gi',
47589         'minus',
47590         '8gn',
47591         'lowast',
47592         '8gq',
47593         'radic',
47594         '8gt',
47595         'prop',
47596         '8gu',
47597         'infin',
47598         '8h0',
47599         'ang',
47600         '8h7',
47601         'and',
47602         '8h8',
47603         'or',
47604         '8h9',
47605         'cap',
47606         '8ha',
47607         'cup',
47608         '8hb',
47609         'int',
47610         '8hk',
47611         'there4',
47612         '8hs',
47613         'sim',
47614         '8i5',
47615         'cong',
47616         '8i8',
47617         'asymp',
47618         '8j0',
47619         'ne',
47620         '8j1',
47621         'equiv',
47622         '8j4',
47623         'le',
47624         '8j5',
47625         'ge',
47626         '8k2',
47627         'sub',
47628         '8k3',
47629         'sup',
47630         '8k4',
47631         'nsub',
47632         '8k6',
47633         'sube',
47634         '8k7',
47635         'supe',
47636         '8kl',
47637         'oplus',
47638         '8kn',
47639         'otimes',
47640         '8l5',
47641         'perp',
47642         '8m5',
47643         'sdot',
47644         '8o8',
47645         'lceil',
47646         '8o9',
47647         'rceil',
47648         '8oa',
47649         'lfloor',
47650         '8ob',
47651         'rfloor',
47652         '8p9',
47653         'lang',
47654         '8pa',
47655         'rang',
47656         '9ea',
47657         'loz',
47658         '9j0',
47659         'spades',
47660         '9j3',
47661         'clubs',
47662         '9j5',
47663         'hearts',
47664         '9j6',
47665         'diams',
47666         'ai',
47667         'OElig',
47668         'aj',
47669         'oelig',
47670         'b0',
47671         'Scaron',
47672         'b1',
47673         'scaron',
47674         'bo',
47675         'Yuml',
47676         'm6',
47677         'circ',
47678         'ms',
47679         'tilde',
47680         '802',
47681         'ensp',
47682         '803',
47683         'emsp',
47684         '809',
47685         'thinsp',
47686         '80c',
47687         'zwnj',
47688         '80d',
47689         'zwj',
47690         '80e',
47691         'lrm',
47692         '80f',
47693         'rlm',
47694         '80j',
47695         'ndash',
47696         '80k',
47697         'mdash',
47698         '80o',
47699         'lsquo',
47700         '80p',
47701         'rsquo',
47702         '80q',
47703         'sbquo',
47704         '80s',
47705         'ldquo',
47706         '80t',
47707         'rdquo',
47708         '80u',
47709         'bdquo',
47710         '810',
47711         'dagger',
47712         '811',
47713         'Dagger',
47714         '81g',
47715         'permil',
47716         '81p',
47717         'lsaquo',
47718         '81q',
47719         'rsaquo',
47720         '85c',
47721         'euro'
47722     ],
47723
47724          
47725     /**
47726      * Encodes the specified string using raw entities. This means only the required XML base entities will be encoded.
47727      *
47728      * @method encodeRaw
47729      * @param {String} text Text to encode.
47730      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
47731      * @return {String} Entity encoded text.
47732      */
47733     encodeRaw: function(text, attr)
47734     {
47735         var t = this;
47736         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
47737             return t.baseEntities[chr] || chr;
47738         });
47739     },
47740     /**
47741      * Encoded the specified text with both the attributes and text entities. This function will produce larger text contents
47742      * since it doesn't know if the context is within a attribute or text node. This was added for compatibility
47743      * and is exposed as the DOMUtils.encode function.
47744      *
47745      * @method encodeAllRaw
47746      * @param {String} text Text to encode.
47747      * @return {String} Entity encoded text.
47748      */
47749     encodeAllRaw: function(text) {
47750         var t = this;
47751         return ('' + text).replace(this.rawCharsRegExp, function(chr) {
47752             return t.baseEntities[chr] || chr;
47753         });
47754     },
47755     /**
47756      * Encodes the specified string using numeric entities. The core entities will be
47757      * encoded as named ones but all non lower ascii characters will be encoded into numeric entities.
47758      *
47759      * @method encodeNumeric
47760      * @param {String} text Text to encode.
47761      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
47762      * @return {String} Entity encoded text.
47763      */
47764     encodeNumeric: function(text, attr) {
47765         var t = this;
47766         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
47767             // Multi byte sequence convert it to a single entity
47768             if (chr.length > 1) {
47769                 return '&#' + (1024 * (chr.charCodeAt(0) - 55296) + (chr.charCodeAt(1) - 56320) + 65536) + ';';
47770             }
47771             return t.baseEntities[chr] || '&#' + chr.charCodeAt(0) + ';';
47772         });
47773     },
47774     /**
47775      * Encodes the specified string using named entities. The core entities will be encoded
47776      * as named ones but all non lower ascii characters will be encoded into named entities.
47777      *
47778      * @method encodeNamed
47779      * @param {String} text Text to encode.
47780      * @param {Boolean} attr Optional flag to specify if the text is attribute contents.
47781      * @param {Object} entities Optional parameter with entities to use.
47782      * @return {String} Entity encoded text.
47783      */
47784     encodeNamed: function(text, attr, entities) {
47785         var t = this;
47786         entities = entities || this.namedEntities;
47787         return text.replace(attr ? this.attrsCharsRegExp : this.textCharsRegExp, function(chr) {
47788             return t.baseEntities[chr] || entities[chr] || chr;
47789         });
47790     },
47791     /**
47792      * Returns an encode function based on the name(s) and it's optional entities.
47793      *
47794      * @method getEncodeFunc
47795      * @param {String} name Comma separated list of encoders for example named,numeric.
47796      * @param {String} entities Optional parameter with entities to use instead of the built in set.
47797      * @return {function} Encode function to be used.
47798      */
47799     getEncodeFunc: function(name, entities) {
47800         entities = this.buildEntitiesLookup(entities) || this.namedEntities;
47801         var t = this;
47802         function encodeNamedAndNumeric(text, attr) {
47803             return text.replace(attr ? t.attrsCharsRegExp : t.textCharsRegExp, function(chr) {
47804                 return t.baseEntities[chr] || entities[chr] || '&#' + chr.charCodeAt(0) + ';' || chr;
47805             });
47806         }
47807
47808         function encodeCustomNamed(text, attr) {
47809             return t.encodeNamed(text, attr, entities);
47810         }
47811         // Replace + with , to be compatible with previous TinyMCE versions
47812         name = this.makeMap(name.replace(/\+/g, ','));
47813         // Named and numeric encoder
47814         if (name.named && name.numeric) {
47815             return this.encodeNamedAndNumeric;
47816         }
47817         // Named encoder
47818         if (name.named) {
47819             // Custom names
47820             if (entities) {
47821                 return encodeCustomNamed;
47822             }
47823             return this.encodeNamed;
47824         }
47825         // Numeric
47826         if (name.numeric) {
47827             return this.encodeNumeric;
47828         }
47829         // Raw encoder
47830         return this.encodeRaw;
47831     },
47832     /**
47833      * Decodes the specified string, this will replace entities with raw UTF characters.
47834      *
47835      * @method decode
47836      * @param {String} text Text to entity decode.
47837      * @return {String} Entity decoded string.
47838      */
47839     decode: function(text)
47840     {
47841         var  t = this;
47842         return text.replace(this.entityRegExp, function(all, numeric) {
47843             if (numeric) {
47844                 numeric = 'x' === numeric.charAt(0).toLowerCase() ? parseInt(numeric.substr(1), 16) : parseInt(numeric, 10);
47845                 // Support upper UTF
47846                 if (numeric > 65535) {
47847                     numeric -= 65536;
47848                     return String.fromCharCode(55296 + (numeric >> 10), 56320 + (1023 & numeric));
47849                 }
47850                 return t.asciiMap[numeric] || String.fromCharCode(numeric);
47851             }
47852             return t.reverseEntities[all] || t.namedEntities[all] || t.nativeDecode(all);
47853         });
47854     },
47855     nativeDecode : function (text) {
47856         return text;
47857     },
47858     makeMap : function (items, delim, map) {
47859                 var i;
47860                 items = items || [];
47861                 delim = delim || ',';
47862                 if (typeof items == "string") {
47863                         items = items.split(delim);
47864                 }
47865                 map = map || {};
47866                 i = items.length;
47867                 while (i--) {
47868                         map[items[i]] = {};
47869                 }
47870                 return map;
47871         }
47872 };
47873     
47874     
47875     
47876 Roo.htmleditor.TidyEntities.init();
47877 /**
47878  * @class Roo.htmleditor.KeyEnter
47879  * Handle Enter press..
47880  * @cfg {Roo.HtmlEditorCore} core the editor.
47881  * @constructor
47882  * Create a new Filter.
47883  * @param {Object} config Configuration options
47884  */
47885
47886
47887
47888
47889
47890 Roo.htmleditor.KeyEnter = function(cfg) {
47891     Roo.apply(this, cfg);
47892     // this does not actually call walk as it's really just a abstract class
47893  
47894     Roo.get(this.core.doc.body).on('keypress', this.keypress, this);
47895 }
47896
47897 //Roo.htmleditor.KeyEnter.i = 0;
47898
47899
47900 Roo.htmleditor.KeyEnter.prototype = {
47901     
47902     core : false,
47903     
47904     keypress : function(e)
47905     {
47906         if (e.charCode != 13 && e.charCode != 10) {
47907             Roo.log([e.charCode,e]);
47908             return true;
47909         }
47910         e.preventDefault();
47911         // https://stackoverflow.com/questions/18552336/prevent-contenteditable-adding-div-on-enter-chrome
47912         var doc = this.core.doc;
47913           //add a new line
47914        
47915     
47916         var sel = this.core.getSelection();
47917         var range = sel.getRangeAt(0);
47918         var n = range.commonAncestorContainer;
47919         var pc = range.closest([ 'ol', 'ul']);
47920         var pli = range.closest('li');
47921         if (!pc || e.ctrlKey) {
47922             // on it list, or ctrl pressed.
47923             if (!e.ctrlKey) {
47924                 sel.insertNode('br', 'after'); 
47925             } else {
47926                 // only do this if we have ctrl key..
47927                 var br = doc.createElement('br');
47928                 br.className = 'clear';
47929                 br.setAttribute('style', 'clear: both');
47930                 sel.insertNode(br, 'after'); 
47931             }
47932             
47933          
47934             this.core.undoManager.addEvent();
47935             this.core.fireEditorEvent(e);
47936             return false;
47937         }
47938         
47939         // deal with <li> insetion
47940         if (pli.innerText.trim() == '' &&
47941             pli.previousSibling &&
47942             pli.previousSibling.nodeName == 'LI' &&
47943             pli.previousSibling.innerText.trim() ==  '') {
47944             pli.parentNode.removeChild(pli.previousSibling);
47945             sel.cursorAfter(pc);
47946             this.core.undoManager.addEvent();
47947             this.core.fireEditorEvent(e);
47948             return false;
47949         }
47950     
47951         var li = doc.createElement('LI');
47952         li.innerHTML = '&nbsp;';
47953         if (!pli || !pli.firstSibling) {
47954             pc.appendChild(li);
47955         } else {
47956             pli.parentNode.insertBefore(li, pli.firstSibling);
47957         }
47958         sel.cursorText (li.firstChild);
47959       
47960         this.core.undoManager.addEvent();
47961         this.core.fireEditorEvent(e);
47962
47963         return false;
47964         
47965     
47966         
47967         
47968          
47969     }
47970 };
47971      
47972 /**
47973  * @class Roo.htmleditor.Block
47974  * Base class for html editor blocks - do not use it directly .. extend it..
47975  * @cfg {DomElement} node The node to apply stuff to.
47976  * @cfg {String} friendly_name the name that appears in the context bar about this block
47977  * @cfg {Object} Context menu - see Roo.form.HtmlEditor.ToolbarContext
47978  
47979  * @constructor
47980  * Create a new Filter.
47981  * @param {Object} config Configuration options
47982  */
47983
47984 Roo.htmleditor.Block  = function(cfg)
47985 {
47986     // do nothing .. should not be called really.
47987 }
47988 /**
47989  * factory method to get the block from an element (using cache if necessary)
47990  * @static
47991  * @param {HtmlElement} the dom element
47992  */
47993 Roo.htmleditor.Block.factory = function(node)
47994 {
47995     var cc = Roo.htmleditor.Block.cache;
47996     var id = Roo.get(node).id;
47997     if (typeof(cc[id]) != 'undefined' && (!cc[id].node || cc[id].node.closest('body'))) {
47998         Roo.htmleditor.Block.cache[id].readElement(node);
47999         return Roo.htmleditor.Block.cache[id];
48000     }
48001     var db  = node.getAttribute('data-block');
48002     if (!db) {
48003         db = node.nodeName.toLowerCase().toUpperCaseFirst();
48004     }
48005     var cls = Roo.htmleditor['Block' + db];
48006     if (typeof(cls) == 'undefined') {
48007         //Roo.log(node.getAttribute('data-block'));
48008         Roo.log("OOps missing block : " + 'Block' + db);
48009         return false;
48010     }
48011     Roo.htmleditor.Block.cache[id] = new cls({ node: node });
48012     return Roo.htmleditor.Block.cache[id];  /// should trigger update element
48013 };
48014
48015 /**
48016  * initalize all Elements from content that are 'blockable'
48017  * @static
48018  * @param the body element
48019  */
48020 Roo.htmleditor.Block.initAll = function(body, type)
48021 {
48022     if (typeof(type) == 'undefined') {
48023         var ia = Roo.htmleditor.Block.initAll;
48024         ia(body,'table');
48025         ia(body,'td');
48026         ia(body,'figure');
48027         return;
48028     }
48029     Roo.each(Roo.get(body).query(type), function(e) {
48030         Roo.htmleditor.Block.factory(e);    
48031     },this);
48032 };
48033 // question goes here... do we need to clear out this cache sometimes?
48034 // or show we make it relivant to the htmleditor.
48035 Roo.htmleditor.Block.cache = {};
48036
48037 Roo.htmleditor.Block.prototype = {
48038     
48039     node : false,
48040     
48041      // used by context menu
48042     friendly_name : 'Based Block',
48043     
48044     // text for button to delete this element
48045     deleteTitle : false,
48046     
48047     context : false,
48048     /**
48049      * Update a node with values from this object
48050      * @param {DomElement} node
48051      */
48052     updateElement : function(node)
48053     {
48054         Roo.DomHelper.update(node === undefined ? this.node : node, this.toObject());
48055     },
48056      /**
48057      * convert to plain HTML for calling insertAtCursor..
48058      */
48059     toHTML : function()
48060     {
48061         return Roo.DomHelper.markup(this.toObject());
48062     },
48063     /**
48064      * used by readEleemnt to extract data from a node
48065      * may need improving as it's pretty basic
48066      
48067      * @param {DomElement} node
48068      * @param {String} tag - tag to find, eg. IMG ?? might be better to use DomQuery ?
48069      * @param {String} attribute (use html - for contents, style for using next param as style, or false to return the node)
48070      * @param {String} style the style property - eg. text-align
48071      */
48072     getVal : function(node, tag, attr, style)
48073     {
48074         var n = node;
48075         if (tag !== true && n.tagName != tag.toUpperCase()) {
48076             // in theory we could do figure[3] << 3rd figure? or some more complex search..?
48077             // but kiss for now.
48078             n = node.getElementsByTagName(tag).item(0);
48079         }
48080         if (!n) {
48081             return '';
48082         }
48083         if (attr === false) {
48084             return n;
48085         }
48086         if (attr == 'html') {
48087             return n.innerHTML;
48088         }
48089         if (attr == 'style') {
48090             return n.style[style]; 
48091         }
48092         
48093         return n.hasAttribute(attr) ? n.getAttribute(attr) : '';
48094             
48095     },
48096     /**
48097      * create a DomHelper friendly object - for use with 
48098      * Roo.DomHelper.markup / overwrite / etc..
48099      * (override this)
48100      */
48101     toObject : function()
48102     {
48103         return {};
48104     },
48105       /**
48106      * Read a node that has a 'data-block' property - and extract the values from it.
48107      * @param {DomElement} node - the node
48108      */
48109     readElement : function(node)
48110     {
48111         
48112     } 
48113     
48114     
48115 };
48116
48117  
48118
48119 /**
48120  * @class Roo.htmleditor.BlockFigure
48121  * Block that has an image and a figcaption
48122  * @cfg {String} image_src the url for the image
48123  * @cfg {String} align (left|right) alignment for the block default left
48124  * @cfg {String} caption the text to appear below  (and in the alt tag)
48125  * @cfg {String} caption_display (block|none) display or not the caption
48126  * @cfg {String|number} image_width the width of the image number or %?
48127  * @cfg {String|number} image_height the height of the image number or %?
48128  * 
48129  * @constructor
48130  * Create a new Filter.
48131  * @param {Object} config Configuration options
48132  */
48133
48134 Roo.htmleditor.BlockFigure = function(cfg)
48135 {
48136     if (cfg.node) {
48137         this.readElement(cfg.node);
48138         this.updateElement(cfg.node);
48139     }
48140     Roo.apply(this, cfg);
48141 }
48142 Roo.extend(Roo.htmleditor.BlockFigure, Roo.htmleditor.Block, {
48143  
48144     
48145     // setable values.
48146     image_src: '',
48147     align: 'center',
48148     caption : '',
48149     caption_display : 'block',
48150     width : '100%',
48151     cls : '',
48152     href: '',
48153     video_url : '',
48154     
48155     // margin: '2%', not used
48156     
48157     text_align: 'left', //   (left|right) alignment for the text caption default left. - not used at present
48158
48159     
48160     // used by context menu
48161     friendly_name : 'Image with caption',
48162     deleteTitle : "Delete Image and Caption",
48163     
48164     contextMenu : function(toolbar)
48165     {
48166         
48167         var block = function() {
48168             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
48169         };
48170         
48171         
48172         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
48173         
48174         var syncValue = toolbar.editorcore.syncValue;
48175         
48176         var fields = {};
48177         
48178         return [
48179              {
48180                 xtype : 'TextItem',
48181                 text : "Source: ",
48182                 xns : rooui.Toolbar  //Boostrap?
48183             },
48184             {
48185                 xtype : 'Button',
48186                 text: 'Change Image URL',
48187                  
48188                 listeners : {
48189                     click: function (btn, state)
48190                     {
48191                         var b = block();
48192                         
48193                         Roo.MessageBox.show({
48194                             title : "Image Source URL",
48195                             msg : "Enter the url for the image",
48196                             buttons: Roo.MessageBox.OKCANCEL,
48197                             fn: function(btn, val){
48198                                 if (btn != 'ok') {
48199                                     return;
48200                                 }
48201                                 b.image_src = val;
48202                                 b.updateElement();
48203                                 syncValue();
48204                                 toolbar.editorcore.onEditorEvent();
48205                             },
48206                             minWidth:250,
48207                             prompt:true,
48208                             //multiline: multiline,
48209                             modal : true,
48210                             value : b.image_src
48211                         });
48212                     }
48213                 },
48214                 xns : rooui.Toolbar
48215             },
48216          
48217             {
48218                 xtype : 'Button',
48219                 text: 'Change Link URL',
48220                  
48221                 listeners : {
48222                     click: function (btn, state)
48223                     {
48224                         var b = block();
48225                         
48226                         Roo.MessageBox.show({
48227                             title : "Link URL",
48228                             msg : "Enter the url for the link - leave blank to have no link",
48229                             buttons: Roo.MessageBox.OKCANCEL,
48230                             fn: function(btn, val){
48231                                 if (btn != 'ok') {
48232                                     return;
48233                                 }
48234                                 b.href = val;
48235                                 b.updateElement();
48236                                 syncValue();
48237                                 toolbar.editorcore.onEditorEvent();
48238                             },
48239                             minWidth:250,
48240                             prompt:true,
48241                             //multiline: multiline,
48242                             modal : true,
48243                             value : b.href
48244                         });
48245                     }
48246                 },
48247                 xns : rooui.Toolbar
48248             },
48249             {
48250                 xtype : 'Button',
48251                 text: 'Show Video URL',
48252                  
48253                 listeners : {
48254                     click: function (btn, state)
48255                     {
48256                         Roo.MessageBox.alert("Video URL",
48257                             block().video_url == '' ? 'This image is not linked ot a video' :
48258                                 'The image is linked to: <a target="_new" href="' + block().video_url + '">' + block().video_url + '</a>');
48259                     }
48260                 },
48261                 xns : rooui.Toolbar
48262             },
48263             
48264             
48265             {
48266                 xtype : 'TextItem',
48267                 text : "Width: ",
48268                 xns : rooui.Toolbar  //Boostrap?
48269             },
48270             {
48271                 xtype : 'ComboBox',
48272                 allowBlank : false,
48273                 displayField : 'val',
48274                 editable : true,
48275                 listWidth : 100,
48276                 triggerAction : 'all',
48277                 typeAhead : true,
48278                 valueField : 'val',
48279                 width : 70,
48280                 name : 'width',
48281                 listeners : {
48282                     select : function (combo, r, index)
48283                     {
48284                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48285                         var b = block();
48286                         b.width = r.get('val');
48287                         b.updateElement();
48288                         syncValue();
48289                         toolbar.editorcore.onEditorEvent();
48290                     }
48291                 },
48292                 xns : rooui.form,
48293                 store : {
48294                     xtype : 'SimpleStore',
48295                     data : [
48296                         ['100%'],
48297                         ['80%'],
48298                         ['50%'],
48299                         ['20%'],
48300                         ['10%']
48301                     ],
48302                     fields : [ 'val'],
48303                     xns : Roo.data
48304                 }
48305             },
48306             {
48307                 xtype : 'TextItem',
48308                 text : "Align: ",
48309                 xns : rooui.Toolbar  //Boostrap?
48310             },
48311             {
48312                 xtype : 'ComboBox',
48313                 allowBlank : false,
48314                 displayField : 'val',
48315                 editable : true,
48316                 listWidth : 100,
48317                 triggerAction : 'all',
48318                 typeAhead : true,
48319                 valueField : 'val',
48320                 width : 70,
48321                 name : 'align',
48322                 listeners : {
48323                     select : function (combo, r, index)
48324                     {
48325                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48326                         var b = block();
48327                         b.align = r.get('val');
48328                         b.updateElement();
48329                         syncValue();
48330                         toolbar.editorcore.onEditorEvent();
48331                     }
48332                 },
48333                 xns : rooui.form,
48334                 store : {
48335                     xtype : 'SimpleStore',
48336                     data : [
48337                         ['left'],
48338                         ['right'],
48339                         ['center']
48340                     ],
48341                     fields : [ 'val'],
48342                     xns : Roo.data
48343                 }
48344             },
48345             
48346             
48347             {
48348                 xtype : 'Button',
48349                 text: 'Hide Caption',
48350                 name : 'caption_display',
48351                 pressed : false,
48352                 enableToggle : true,
48353                 setValue : function(v) {
48354                     // this trigger toggle.
48355                      
48356                     this.setText(v ? "Hide Caption" : "Show Caption");
48357                     this.setPressed(v != 'block');
48358                 },
48359                 listeners : {
48360                     toggle: function (btn, state)
48361                     {
48362                         var b  = block();
48363                         b.caption_display = b.caption_display == 'block' ? 'none' : 'block';
48364                         this.setText(b.caption_display == 'block' ? "Hide Caption" : "Show Caption");
48365                         b.updateElement();
48366                         syncValue();
48367                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48368                         toolbar.editorcore.onEditorEvent();
48369                     }
48370                 },
48371                 xns : rooui.Toolbar
48372             }
48373         ];
48374         
48375     },
48376     /**
48377      * create a DomHelper friendly object - for use with
48378      * Roo.DomHelper.markup / overwrite / etc..
48379      */
48380     toObject : function()
48381     {
48382         var d = document.createElement('div');
48383         d.innerHTML = this.caption;
48384         
48385         var m = this.width != '100%' && this.align == 'center' ? '0 auto' : 0; 
48386         
48387         var iw = this.align == 'center' ? this.width : '100%';
48388         var img =   {
48389             tag : 'img',
48390             contenteditable : 'false',
48391             src : this.image_src,
48392             alt : d.innerText.replace(/\n/g, " ").replace(/\s+/g, ' ').trim(), // removeHTML and reduce spaces..
48393             style: {
48394                 width : iw,
48395                 maxWidth : iw + ' !important', // this is not getting rendered?
48396                 margin : m  
48397                 
48398             }
48399         };
48400         /*
48401         '<div class="{0}" width="420" height="315" src="{1}" frameborder="0" allowfullscreen>' +
48402                     '<a href="{2}">' + 
48403                         '<img class="{0}-thumbnail" src="{3}/Images/{4}/{5}#image-{4}" />' + 
48404                     '</a>' + 
48405                 '</div>',
48406         */
48407                 
48408         if (this.href.length > 0) {
48409             img = {
48410                 tag : 'a',
48411                 href: this.href,
48412                 contenteditable : 'true',
48413                 cn : [
48414                     img
48415                 ]
48416             };
48417         }
48418         
48419         
48420         if (this.video_url.length > 0) {
48421             img = {
48422                 tag : 'div',
48423                 cls : this.cls,
48424                 frameborder : 0,
48425                 allowfullscreen : true,
48426                 width : 420,  // these are for video tricks - that we replace the outer
48427                 height : 315,
48428                 src : this.video_url,
48429                 cn : [
48430                     img
48431                 ]
48432             };
48433         }
48434         // we remove caption totally if its hidden... - will delete data.. but otherwise we end up with fake caption
48435         var captionhtml = this.caption_display == 'none' ? '' : (this.caption.length ? this.caption : "Caption");
48436         
48437   
48438         var ret =   {
48439             tag: 'figure',
48440             'data-block' : 'Figure',
48441             'data-width' : this.width, 
48442             contenteditable : 'false',
48443             
48444             style : {
48445                 display: 'block',
48446                 float :  this.align ,
48447                 maxWidth :  this.align == 'center' ? '100% !important' : (this.width + ' !important'),
48448                 width : this.align == 'center' ? '100%' : this.width,
48449                 margin:  '0px',
48450                 padding: this.align == 'center' ? '0' : '0 10px' ,
48451                 textAlign : this.align   // seems to work for email..
48452                 
48453             },
48454            
48455             
48456             align : this.align,
48457             cn : [
48458                 img,
48459               
48460                 {
48461                     tag: 'figcaption',
48462                     'data-display' : this.caption_display,
48463                     style : {
48464                         textAlign : 'left',
48465                         fontSize : '16px',
48466                         lineHeight : '24px',
48467                         display : this.caption_display,
48468                         maxWidth : (this.align == 'center' ?  this.width : '100%' ) + ' !important',
48469                         margin: m,
48470                         width: this.align == 'center' ?  this.width : '100%' 
48471                     
48472                          
48473                     },
48474                     cls : this.cls.length > 0 ? (this.cls  + '-thumbnail' ) : '',
48475                     cn : [
48476                         {
48477                             tag: 'div',
48478                             style  : {
48479                                 marginTop : '16px',
48480                                 textAlign : 'left'
48481                             },
48482                             align: 'left',
48483                             cn : [
48484                                 {
48485                                     // we can not rely on yahoo syndication to use CSS elements - so have to use  '<i>' to encase stuff.
48486                                     tag : 'i',
48487                                     contenteditable : true,
48488                                     html : captionhtml
48489                                 }
48490                                 
48491                             ]
48492                         }
48493                         
48494                     ]
48495                     
48496                 }
48497             ]
48498         };
48499         return ret;
48500          
48501     },
48502     
48503     readElement : function(node)
48504     {
48505         // this should not really come from the link...
48506         this.video_url = this.getVal(node, 'div', 'src');
48507         this.cls = this.getVal(node, 'div', 'class');
48508         this.href = this.getVal(node, 'a', 'href');
48509         
48510         
48511         this.image_src = this.getVal(node, 'img', 'src');
48512          
48513         this.align = this.getVal(node, 'figure', 'align');
48514         var figcaption = this.getVal(node, 'figcaption', false);
48515         if (figcaption !== '') {
48516             this.caption = this.getVal(figcaption, 'i', 'html');
48517         }
48518         
48519
48520         this.caption_display = this.getVal(node, 'figcaption', 'data-display');
48521         //this.text_align = this.getVal(node, 'figcaption', 'style','text-align');
48522         this.width = this.getVal(node, true, 'data-width');
48523         //this.margin = this.getVal(node, 'figure', 'style', 'margin');
48524         
48525     },
48526     removeNode : function()
48527     {
48528         return this.node;
48529     }
48530     
48531   
48532    
48533      
48534     
48535     
48536     
48537     
48538 })
48539
48540  
48541
48542 /**
48543  * @class Roo.htmleditor.BlockTable
48544  * Block that manages a table
48545  * 
48546  * @constructor
48547  * Create a new Filter.
48548  * @param {Object} config Configuration options
48549  */
48550
48551 Roo.htmleditor.BlockTable = function(cfg)
48552 {
48553     if (cfg.node) {
48554         this.readElement(cfg.node);
48555         this.updateElement(cfg.node);
48556     }
48557     Roo.apply(this, cfg);
48558     if (!cfg.node) {
48559         this.rows = [];
48560         for(var r = 0; r < this.no_row; r++) {
48561             this.rows[r] = [];
48562             for(var c = 0; c < this.no_col; c++) {
48563                 this.rows[r][c] = this.emptyCell();
48564             }
48565         }
48566     }
48567     
48568     
48569 }
48570 Roo.extend(Roo.htmleditor.BlockTable, Roo.htmleditor.Block, {
48571  
48572     rows : false,
48573     no_col : 1,
48574     no_row : 1,
48575     
48576     
48577     width: '100%',
48578     
48579     // used by context menu
48580     friendly_name : 'Table',
48581     deleteTitle : 'Delete Table',
48582     // context menu is drawn once..
48583     
48584     contextMenu : function(toolbar)
48585     {
48586         
48587         var block = function() {
48588             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
48589         };
48590         
48591         
48592         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
48593         
48594         var syncValue = toolbar.editorcore.syncValue;
48595         
48596         var fields = {};
48597         
48598         return [
48599             {
48600                 xtype : 'TextItem',
48601                 text : "Width: ",
48602                 xns : rooui.Toolbar  //Boostrap?
48603             },
48604             {
48605                 xtype : 'ComboBox',
48606                 allowBlank : false,
48607                 displayField : 'val',
48608                 editable : true,
48609                 listWidth : 100,
48610                 triggerAction : 'all',
48611                 typeAhead : true,
48612                 valueField : 'val',
48613                 width : 100,
48614                 name : 'width',
48615                 listeners : {
48616                     select : function (combo, r, index)
48617                     {
48618                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48619                         var b = block();
48620                         b.width = r.get('val');
48621                         b.updateElement();
48622                         syncValue();
48623                         toolbar.editorcore.onEditorEvent();
48624                     }
48625                 },
48626                 xns : rooui.form,
48627                 store : {
48628                     xtype : 'SimpleStore',
48629                     data : [
48630                         ['100%'],
48631                         ['auto']
48632                     ],
48633                     fields : [ 'val'],
48634                     xns : Roo.data
48635                 }
48636             },
48637             // -------- Cols
48638             
48639             {
48640                 xtype : 'TextItem',
48641                 text : "Columns: ",
48642                 xns : rooui.Toolbar  //Boostrap?
48643             },
48644          
48645             {
48646                 xtype : 'Button',
48647                 text: '-',
48648                 listeners : {
48649                     click : function (_self, e)
48650                     {
48651                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48652                         block().removeColumn();
48653                         syncValue();
48654                         toolbar.editorcore.onEditorEvent();
48655                     }
48656                 },
48657                 xns : rooui.Toolbar
48658             },
48659             {
48660                 xtype : 'Button',
48661                 text: '+',
48662                 listeners : {
48663                     click : function (_self, e)
48664                     {
48665                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48666                         block().addColumn();
48667                         syncValue();
48668                         toolbar.editorcore.onEditorEvent();
48669                     }
48670                 },
48671                 xns : rooui.Toolbar
48672             },
48673             // -------- ROWS
48674             {
48675                 xtype : 'TextItem',
48676                 text : "Rows: ",
48677                 xns : rooui.Toolbar  //Boostrap?
48678             },
48679          
48680             {
48681                 xtype : 'Button',
48682                 text: '-',
48683                 listeners : {
48684                     click : function (_self, e)
48685                     {
48686                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
48687                         block().removeRow();
48688                         syncValue();
48689                         toolbar.editorcore.onEditorEvent();
48690                     }
48691                 },
48692                 xns : rooui.Toolbar
48693             },
48694             {
48695                 xtype : 'Button',
48696                 text: '+',
48697                 listeners : {
48698                     click : function (_self, e)
48699                     {
48700                         block().addRow();
48701                         syncValue();
48702                         toolbar.editorcore.onEditorEvent();
48703                     }
48704                 },
48705                 xns : rooui.Toolbar
48706             },
48707             // -------- ROWS
48708             {
48709                 xtype : 'Button',
48710                 text: 'Reset Column Widths',
48711                 listeners : {
48712                     
48713                     click : function (_self, e)
48714                     {
48715                         block().resetWidths();
48716                         syncValue();
48717                         toolbar.editorcore.onEditorEvent();
48718                     }
48719                 },
48720                 xns : rooui.Toolbar
48721             } 
48722             
48723             
48724             
48725         ];
48726         
48727     },
48728     
48729     
48730   /**
48731      * create a DomHelper friendly object - for use with
48732      * Roo.DomHelper.markup / overwrite / etc..
48733      * ?? should it be called with option to hide all editing features?
48734      */
48735     toObject : function()
48736     {
48737         
48738         var ret = {
48739             tag : 'table',
48740             contenteditable : 'false', // this stops cell selection from picking the table.
48741             'data-block' : 'Table',
48742             style : {
48743                 width:  this.width,
48744                 border : 'solid 1px #000', // ??? hard coded?
48745                 'border-collapse' : 'collapse' 
48746             },
48747             cn : [
48748                 { tag : 'tbody' , cn : [] }
48749             ]
48750         };
48751         
48752         // do we have a head = not really 
48753         var ncols = 0;
48754         Roo.each(this.rows, function( row ) {
48755             var tr = {
48756                 tag: 'tr',
48757                 style : {
48758                     margin: '6px',
48759                     border : 'solid 1px #000',
48760                     textAlign : 'left' 
48761                 },
48762                 cn : [ ]
48763             };
48764             
48765             ret.cn[0].cn.push(tr);
48766             // does the row have any properties? ?? height?
48767             var nc = 0;
48768             Roo.each(row, function( cell ) {
48769                 
48770                 var td = {
48771                     tag : 'td',
48772                     contenteditable :  'true',
48773                     'data-block' : 'Td',
48774                     html : cell.html,
48775                     style : cell.style
48776                 };
48777                 if (cell.colspan > 1) {
48778                     td.colspan = cell.colspan ;
48779                     nc += cell.colspan;
48780                 } else {
48781                     nc++;
48782                 }
48783                 if (cell.rowspan > 1) {
48784                     td.rowspan = cell.rowspan ;
48785                 }
48786                 
48787                 
48788                 // widths ?
48789                 tr.cn.push(td);
48790                     
48791                 
48792             }, this);
48793             ncols = Math.max(nc, ncols);
48794             
48795             
48796         }, this);
48797         // add the header row..
48798         
48799         ncols++;
48800          
48801         
48802         return ret;
48803          
48804     },
48805     
48806     readElement : function(node)
48807     {
48808         node  = node ? node : this.node ;
48809         this.width = this.getVal(node, true, 'style', 'width') || '100%';
48810         
48811         this.rows = [];
48812         this.no_row = 0;
48813         var trs = Array.from(node.rows);
48814         trs.forEach(function(tr) {
48815             var row =  [];
48816             this.rows.push(row);
48817             
48818             this.no_row++;
48819             var no_column = 0;
48820             Array.from(tr.cells).forEach(function(td) {
48821                 
48822                 var add = {
48823                     colspan : td.hasAttribute('colspan') ? td.getAttribute('colspan')*1 : 1,
48824                     rowspan : td.hasAttribute('rowspan') ? td.getAttribute('rowspan')*1 : 1,
48825                     style : td.hasAttribute('style') ? td.getAttribute('style') : '',
48826                     html : td.innerHTML
48827                 };
48828                 no_column += add.colspan;
48829                      
48830                 
48831                 row.push(add);
48832                 
48833                 
48834             },this);
48835             this.no_col = Math.max(this.no_col, no_column);
48836             
48837             
48838         },this);
48839         
48840         
48841     },
48842     normalizeRows: function()
48843     {
48844         var ret= [];
48845         var rid = -1;
48846         this.rows.forEach(function(row) {
48847             rid++;
48848             ret[rid] = [];
48849             row = this.normalizeRow(row);
48850             var cid = 0;
48851             row.forEach(function(c) {
48852                 while (typeof(ret[rid][cid]) != 'undefined') {
48853                     cid++;
48854                 }
48855                 if (typeof(ret[rid]) == 'undefined') {
48856                     ret[rid] = [];
48857                 }
48858                 ret[rid][cid] = c;
48859                 c.row = rid;
48860                 c.col = cid;
48861                 if (c.rowspan < 2) {
48862                     return;
48863                 }
48864                 
48865                 for(var i = 1 ;i < c.rowspan; i++) {
48866                     if (typeof(ret[rid+i]) == 'undefined') {
48867                         ret[rid+i] = [];
48868                     }
48869                     ret[rid+i][cid] = c;
48870                 }
48871             });
48872         }, this);
48873         return ret;
48874     
48875     },
48876     
48877     normalizeRow: function(row)
48878     {
48879         var ret= [];
48880         row.forEach(function(c) {
48881             if (c.colspan < 2) {
48882                 ret.push(c);
48883                 return;
48884             }
48885             for(var i =0 ;i < c.colspan; i++) {
48886                 ret.push(c);
48887             }
48888         });
48889         return ret;
48890     
48891     },
48892     
48893     deleteColumn : function(sel)
48894     {
48895         if (!sel || sel.type != 'col') {
48896             return;
48897         }
48898         if (this.no_col < 2) {
48899             return;
48900         }
48901         
48902         this.rows.forEach(function(row) {
48903             var cols = this.normalizeRow(row);
48904             var col = cols[sel.col];
48905             if (col.colspan > 1) {
48906                 col.colspan --;
48907             } else {
48908                 row.remove(col);
48909             }
48910             
48911         }, this);
48912         this.no_col--;
48913         
48914     },
48915     removeColumn : function()
48916     {
48917         this.deleteColumn({
48918             type: 'col',
48919             col : this.no_col-1
48920         });
48921         this.updateElement();
48922     },
48923     
48924      
48925     addColumn : function()
48926     {
48927         
48928         this.rows.forEach(function(row) {
48929             row.push(this.emptyCell());
48930            
48931         }, this);
48932         this.updateElement();
48933     },
48934     
48935     deleteRow : function(sel)
48936     {
48937         if (!sel || sel.type != 'row') {
48938             return;
48939         }
48940         
48941         if (this.no_row < 2) {
48942             return;
48943         }
48944         
48945         var rows = this.normalizeRows();
48946         
48947         
48948         rows[sel.row].forEach(function(col) {
48949             if (col.rowspan > 1) {
48950                 col.rowspan--;
48951             } else {
48952                 col.remove = 1; // flage it as removed.
48953             }
48954             
48955         }, this);
48956         var newrows = [];
48957         this.rows.forEach(function(row) {
48958             newrow = [];
48959             row.forEach(function(c) {
48960                 if (typeof(c.remove) == 'undefined') {
48961                     newrow.push(c);
48962                 }
48963                 
48964             });
48965             if (newrow.length > 0) {
48966                 newrows.push(row);
48967             }
48968         });
48969         this.rows =  newrows;
48970         
48971         
48972         
48973         this.no_row--;
48974         this.updateElement();
48975         
48976     },
48977     removeRow : function()
48978     {
48979         this.deleteRow({
48980             type: 'row',
48981             row : this.no_row-1
48982         });
48983         
48984     },
48985     
48986      
48987     addRow : function()
48988     {
48989         
48990         var row = [];
48991         for (var i = 0; i < this.no_col; i++ ) {
48992             
48993             row.push(this.emptyCell());
48994            
48995         }
48996         this.rows.push(row);
48997         this.updateElement();
48998         
48999     },
49000      
49001     // the default cell object... at present...
49002     emptyCell : function() {
49003         return (new Roo.htmleditor.BlockTd({})).toObject();
49004         
49005      
49006     },
49007     
49008     removeNode : function()
49009     {
49010         return this.node;
49011     },
49012     
49013     
49014     
49015     resetWidths : function()
49016     {
49017         Array.from(this.node.getElementsByTagName('td')).forEach(function(n) {
49018             var nn = Roo.htmleditor.Block.factory(n);
49019             nn.width = '';
49020             nn.updateElement(n);
49021         });
49022     }
49023     
49024     
49025     
49026     
49027 })
49028
49029 /**
49030  *
49031  * editing a TD?
49032  *
49033  * since selections really work on the table cell, then editing really should work from there
49034  *
49035  * The original plan was to support merging etc... - but that may not be needed yet..
49036  *
49037  * So this simple version will support:
49038  *   add/remove cols
49039  *   adjust the width +/-
49040  *   reset the width...
49041  *   
49042  *
49043  */
49044
49045
49046  
49047
49048 /**
49049  * @class Roo.htmleditor.BlockTable
49050  * Block that manages a table
49051  * 
49052  * @constructor
49053  * Create a new Filter.
49054  * @param {Object} config Configuration options
49055  */
49056
49057 Roo.htmleditor.BlockTd = function(cfg)
49058 {
49059     if (cfg.node) {
49060         this.readElement(cfg.node);
49061         this.updateElement(cfg.node);
49062     }
49063     Roo.apply(this, cfg);
49064      
49065     
49066     
49067 }
49068 Roo.extend(Roo.htmleditor.BlockTd, Roo.htmleditor.Block, {
49069  
49070     node : false,
49071     
49072     width: '',
49073     textAlign : 'left',
49074     valign : 'top',
49075     
49076     colspan : 1,
49077     rowspan : 1,
49078     
49079     
49080     // used by context menu
49081     friendly_name : 'Table Cell',
49082     deleteTitle : false, // use our customer delete
49083     
49084     // context menu is drawn once..
49085     
49086     contextMenu : function(toolbar)
49087     {
49088         
49089         var cell = function() {
49090             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode);
49091         };
49092         
49093         var table = function() {
49094             return Roo.htmleditor.Block.factory(toolbar.tb.selectedNode.closest('table'));
49095         };
49096         
49097         var lr = false;
49098         var saveSel = function()
49099         {
49100             lr = toolbar.editorcore.getSelection().getRangeAt(0);
49101         }
49102         var restoreSel = function()
49103         {
49104             if (lr) {
49105                 (function() {
49106                     toolbar.editorcore.focus();
49107                     var cr = toolbar.editorcore.getSelection();
49108                     cr.removeAllRanges();
49109                     cr.addRange(lr);
49110                     toolbar.editorcore.onEditorEvent();
49111                 }).defer(10, this);
49112                 
49113                 
49114             }
49115         }
49116         
49117         var rooui =  typeof(Roo.bootstrap) == 'undefined' ? Roo : Roo.bootstrap;
49118         
49119         var syncValue = toolbar.editorcore.syncValue;
49120         
49121         var fields = {};
49122         
49123         return [
49124             {
49125                 xtype : 'Button',
49126                 text : 'Edit Table',
49127                 listeners : {
49128                     click : function() {
49129                         var t = toolbar.tb.selectedNode.closest('table');
49130                         toolbar.editorcore.selectNode(t);
49131                         toolbar.editorcore.onEditorEvent();                        
49132                     }
49133                 }
49134                 
49135             },
49136               
49137            
49138              
49139             {
49140                 xtype : 'TextItem',
49141                 text : "Column Width: ",
49142                  xns : rooui.Toolbar 
49143                
49144             },
49145             {
49146                 xtype : 'Button',
49147                 text: '-',
49148                 listeners : {
49149                     click : function (_self, e)
49150                     {
49151                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49152                         cell().shrinkColumn();
49153                         syncValue();
49154                          toolbar.editorcore.onEditorEvent();
49155                     }
49156                 },
49157                 xns : rooui.Toolbar
49158             },
49159             {
49160                 xtype : 'Button',
49161                 text: '+',
49162                 listeners : {
49163                     click : function (_self, e)
49164                     {
49165                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49166                         cell().growColumn();
49167                         syncValue();
49168                         toolbar.editorcore.onEditorEvent();
49169                     }
49170                 },
49171                 xns : rooui.Toolbar
49172             },
49173             
49174             {
49175                 xtype : 'TextItem',
49176                 text : "Vertical Align: ",
49177                 xns : rooui.Toolbar  //Boostrap?
49178             },
49179             {
49180                 xtype : 'ComboBox',
49181                 allowBlank : false,
49182                 displayField : 'val',
49183                 editable : true,
49184                 listWidth : 100,
49185                 triggerAction : 'all',
49186                 typeAhead : true,
49187                 valueField : 'val',
49188                 width : 100,
49189                 name : 'valign',
49190                 listeners : {
49191                     select : function (combo, r, index)
49192                     {
49193                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49194                         var b = cell();
49195                         b.valign = r.get('val');
49196                         b.updateElement();
49197                         syncValue();
49198                         toolbar.editorcore.onEditorEvent();
49199                     }
49200                 },
49201                 xns : rooui.form,
49202                 store : {
49203                     xtype : 'SimpleStore',
49204                     data : [
49205                         ['top'],
49206                         ['middle'],
49207                         ['bottom'] // there are afew more... 
49208                     ],
49209                     fields : [ 'val'],
49210                     xns : Roo.data
49211                 }
49212             },
49213             
49214             {
49215                 xtype : 'TextItem',
49216                 text : "Merge Cells: ",
49217                  xns : rooui.Toolbar 
49218                
49219             },
49220             
49221             
49222             {
49223                 xtype : 'Button',
49224                 text: 'Right',
49225                 listeners : {
49226                     click : function (_self, e)
49227                     {
49228                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49229                         cell().mergeRight();
49230                         //block().growColumn();
49231                         syncValue();
49232                         toolbar.editorcore.onEditorEvent();
49233                     }
49234                 },
49235                 xns : rooui.Toolbar
49236             },
49237              
49238             {
49239                 xtype : 'Button',
49240                 text: 'Below',
49241                 listeners : {
49242                     click : function (_self, e)
49243                     {
49244                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49245                         cell().mergeBelow();
49246                         //block().growColumn();
49247                         syncValue();
49248                         toolbar.editorcore.onEditorEvent();
49249                     }
49250                 },
49251                 xns : rooui.Toolbar
49252             },
49253             {
49254                 xtype : 'TextItem',
49255                 text : "| ",
49256                  xns : rooui.Toolbar 
49257                
49258             },
49259             
49260             {
49261                 xtype : 'Button',
49262                 text: 'Split',
49263                 listeners : {
49264                     click : function (_self, e)
49265                     {
49266                         //toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49267                         cell().split();
49268                         syncValue();
49269                         toolbar.editorcore.selectNode(toolbar.tb.selectedNode);
49270                         toolbar.editorcore.onEditorEvent();
49271                                              
49272                     }
49273                 },
49274                 xns : rooui.Toolbar
49275             },
49276             {
49277                 xtype : 'Fill',
49278                 xns : rooui.Toolbar 
49279                
49280             },
49281         
49282           
49283             {
49284                 xtype : 'Button',
49285                 text: 'Delete',
49286                  
49287                 xns : rooui.Toolbar,
49288                 menu : {
49289                     xtype : 'Menu',
49290                     xns : rooui.menu,
49291                     items : [
49292                         {
49293                             xtype : 'Item',
49294                             html: 'Column',
49295                             listeners : {
49296                                 click : function (_self, e)
49297                                 {
49298                                     var t = table();
49299                                     
49300                                     cell().deleteColumn();
49301                                     syncValue();
49302                                     toolbar.editorcore.selectNode(t.node);
49303                                     toolbar.editorcore.onEditorEvent();   
49304                                 }
49305                             },
49306                             xns : rooui.menu
49307                         },
49308                         {
49309                             xtype : 'Item',
49310                             html: 'Row',
49311                             listeners : {
49312                                 click : function (_self, e)
49313                                 {
49314                                     var t = table();
49315                                     cell().deleteRow();
49316                                     syncValue();
49317                                     
49318                                     toolbar.editorcore.selectNode(t.node);
49319                                     toolbar.editorcore.onEditorEvent();   
49320                                                          
49321                                 }
49322                             },
49323                             xns : rooui.menu
49324                         },
49325                        {
49326                             xtype : 'Separator',
49327                             xns : rooui.menu
49328                         },
49329                         {
49330                             xtype : 'Item',
49331                             html: 'Table',
49332                             listeners : {
49333                                 click : function (_self, e)
49334                                 {
49335                                     var t = table();
49336                                     var nn = t.node.nextSibling || t.node.previousSibling;
49337                                     t.node.parentNode.removeChild(t.node);
49338                                     if (nn) { 
49339                                         toolbar.editorcore.selectNode(nn, true);
49340                                     }
49341                                     toolbar.editorcore.onEditorEvent();   
49342                                                          
49343                                 }
49344                             },
49345                             xns : rooui.menu
49346                         }
49347                     ]
49348                 }
49349             }
49350             
49351             // align... << fixme
49352             
49353         ];
49354         
49355     },
49356     
49357     
49358   /**
49359      * create a DomHelper friendly object - for use with
49360      * Roo.DomHelper.markup / overwrite / etc..
49361      * ?? should it be called with option to hide all editing features?
49362      */
49363  /**
49364      * create a DomHelper friendly object - for use with
49365      * Roo.DomHelper.markup / overwrite / etc..
49366      * ?? should it be called with option to hide all editing features?
49367      */
49368     toObject : function()
49369     {
49370         var ret = {
49371             tag : 'td',
49372             contenteditable : 'true', // this stops cell selection from picking the table.
49373             'data-block' : 'Td',
49374             valign : this.valign,
49375             style : {  
49376                 'text-align' :  this.textAlign,
49377                 border : 'solid 1px rgb(0, 0, 0)', // ??? hard coded?
49378                 'border-collapse' : 'collapse',
49379                 padding : '6px', // 8 for desktop / 4 for mobile
49380                 'vertical-align': this.valign
49381             },
49382             html : this.html
49383         };
49384         if (this.width != '') {
49385             ret.width = this.width;
49386             ret.style.width = this.width;
49387         }
49388         
49389         
49390         if (this.colspan > 1) {
49391             ret.colspan = this.colspan ;
49392         } 
49393         if (this.rowspan > 1) {
49394             ret.rowspan = this.rowspan ;
49395         }
49396         
49397            
49398         
49399         return ret;
49400          
49401     },
49402     
49403     readElement : function(node)
49404     {
49405         node  = node ? node : this.node ;
49406         this.width = node.style.width;
49407         this.colspan = Math.max(1,1*node.getAttribute('colspan'));
49408         this.rowspan = Math.max(1,1*node.getAttribute('rowspan'));
49409         this.html = node.innerHTML;
49410         
49411         
49412     },
49413      
49414     // the default cell object... at present...
49415     emptyCell : function() {
49416         return {
49417             colspan :  1,
49418             rowspan :  1,
49419             textAlign : 'left',
49420             html : "&nbsp;" // is this going to be editable now?
49421         };
49422      
49423     },
49424     
49425     removeNode : function()
49426     {
49427         return this.node.closest('table');
49428          
49429     },
49430     
49431     cellData : false,
49432     
49433     colWidths : false,
49434     
49435     toTableArray  : function()
49436     {
49437         var ret = [];
49438         var tab = this.node.closest('tr').closest('table');
49439         Array.from(tab.rows).forEach(function(r, ri){
49440             ret[ri] = [];
49441         });
49442         var rn = 0;
49443         this.colWidths = [];
49444         var all_auto = true;
49445         Array.from(tab.rows).forEach(function(r, ri){
49446             
49447             var cn = 0;
49448             Array.from(r.cells).forEach(function(ce, ci){
49449                 var c =  {
49450                     cell : ce,
49451                     row : rn,
49452                     col: cn,
49453                     colspan : ce.colSpan,
49454                     rowspan : ce.rowSpan
49455                 };
49456                 if (ce.isEqualNode(this.node)) {
49457                     this.cellData = c;
49458                 }
49459                 // if we have been filled up by a row?
49460                 if (typeof(ret[rn][cn]) != 'undefined') {
49461                     while(typeof(ret[rn][cn]) != 'undefined') {
49462                         cn++;
49463                     }
49464                     c.col = cn;
49465                 }
49466                 
49467                 if (typeof(this.colWidths[cn]) == 'undefined' && c.colspan < 2) {
49468                     this.colWidths[cn] =   ce.style.width;
49469                     if (this.colWidths[cn] != '') {
49470                         all_auto = false;
49471                     }
49472                 }
49473                 
49474                 
49475                 if (c.colspan < 2 && c.rowspan < 2 ) {
49476                     ret[rn][cn] = c;
49477                     cn++;
49478                     return;
49479                 }
49480                 for(var j = 0; j < c.rowspan; j++) {
49481                     if (typeof(ret[rn+j]) == 'undefined') {
49482                         continue; // we have a problem..
49483                     }
49484                     ret[rn+j][cn] = c;
49485                     for(var i = 0; i < c.colspan; i++) {
49486                         ret[rn+j][cn+i] = c;
49487                     }
49488                 }
49489                 
49490                 cn += c.colspan;
49491             }, this);
49492             rn++;
49493         }, this);
49494         
49495         // initalize widths.?
49496         // either all widths or no widths..
49497         if (all_auto) {
49498             this.colWidths[0] = false; // no widths flag.
49499         }
49500         
49501         
49502         return ret;
49503         
49504     },
49505     
49506     
49507     
49508     
49509     mergeRight: function()
49510     {
49511          
49512         // get the contents of the next cell along..
49513         var tr = this.node.closest('tr');
49514         var i = Array.prototype.indexOf.call(tr.childNodes, this.node);
49515         if (i >= tr.childNodes.length - 1) {
49516             return; // no cells on right to merge with.
49517         }
49518         var table = this.toTableArray();
49519         
49520         if (typeof(table[this.cellData.row][this.cellData.col+this.cellData.colspan]) == 'undefined') {
49521             return; // nothing right?
49522         }
49523         var rc = table[this.cellData.row][this.cellData.col+this.cellData.colspan];
49524         // right cell - must be same rowspan and on the same row.
49525         if (rc.rowspan != this.cellData.rowspan || rc.row != this.cellData.row) {
49526             return; // right hand side is not same rowspan.
49527         }
49528         
49529         
49530         
49531         this.node.innerHTML += ' ' + rc.cell.innerHTML;
49532         tr.removeChild(rc.cell);
49533         this.colspan += rc.colspan;
49534         this.node.setAttribute('colspan', this.colspan);
49535
49536         var table = this.toTableArray();
49537         this.normalizeWidths(table);
49538         this.updateWidths(table);
49539     },
49540     
49541     
49542     mergeBelow : function()
49543     {
49544         var table = this.toTableArray();
49545         if (typeof(table[this.cellData.row+this.cellData.rowspan]) == 'undefined') {
49546             return; // no row below
49547         }
49548         if (typeof(table[this.cellData.row+this.cellData.rowspan][this.cellData.col]) == 'undefined') {
49549             return; // nothing right?
49550         }
49551         var rc = table[this.cellData.row+this.cellData.rowspan][this.cellData.col];
49552         
49553         if (rc.colspan != this.cellData.colspan || rc.col != this.cellData.col) {
49554             return; // right hand side is not same rowspan.
49555         }
49556         this.node.innerHTML =  this.node.innerHTML + rc.cell.innerHTML ;
49557         rc.cell.parentNode.removeChild(rc.cell);
49558         this.rowspan += rc.rowspan;
49559         this.node.setAttribute('rowspan', this.rowspan);
49560     },
49561     
49562     split: function()
49563     {
49564         if (this.node.rowSpan < 2 && this.node.colSpan < 2) {
49565             return;
49566         }
49567         var table = this.toTableArray();
49568         var cd = this.cellData;
49569         this.rowspan = 1;
49570         this.colspan = 1;
49571         
49572         for(var r = cd.row; r < cd.row + cd.rowspan; r++) {
49573              
49574             
49575             for(var c = cd.col; c < cd.col + cd.colspan; c++) {
49576                 if (r == cd.row && c == cd.col) {
49577                     this.node.removeAttribute('rowspan');
49578                     this.node.removeAttribute('colspan');
49579                 }
49580                  
49581                 var ntd = this.node.cloneNode(); // which col/row should be 0..
49582                 ntd.removeAttribute('id'); 
49583                 ntd.style.width  = this.colWidths[c];
49584                 ntd.innerHTML = '';
49585                 table[r][c] = { cell : ntd, col : c, row: r , colspan : 1 , rowspan : 1   };
49586             }
49587             
49588         }
49589         this.redrawAllCells(table);
49590         
49591     },
49592     
49593     
49594     
49595     redrawAllCells: function(table)
49596     {
49597         
49598          
49599         var tab = this.node.closest('tr').closest('table');
49600         var ctr = tab.rows[0].parentNode;
49601         Array.from(tab.rows).forEach(function(r, ri){
49602             
49603             Array.from(r.cells).forEach(function(ce, ci){
49604                 ce.parentNode.removeChild(ce);
49605             });
49606             r.parentNode.removeChild(r);
49607         });
49608         for(var r = 0 ; r < table.length; r++) {
49609             var re = tab.rows[r];
49610             
49611             var re = tab.ownerDocument.createElement('tr');
49612             ctr.appendChild(re);
49613             for(var c = 0 ; c < table[r].length; c++) {
49614                 if (table[r][c].cell === false) {
49615                     continue;
49616                 }
49617                 
49618                 re.appendChild(table[r][c].cell);
49619                  
49620                 table[r][c].cell = false;
49621             }
49622         }
49623         
49624     },
49625     updateWidths : function(table)
49626     {
49627         for(var r = 0 ; r < table.length; r++) {
49628            
49629             for(var c = 0 ; c < table[r].length; c++) {
49630                 if (table[r][c].cell === false) {
49631                     continue;
49632                 }
49633                 
49634                 if (this.colWidths[0] != false && table[r][c].colspan < 2) {
49635                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
49636                     el.width = Math.floor(this.colWidths[c])  +'%';
49637                     el.updateElement(el.node);
49638                 }
49639                 if (this.colWidths[0] != false && table[r][c].colspan > 1) {
49640                     var el = Roo.htmleditor.Block.factory(table[r][c].cell);
49641                     var width = 0;
49642                     for(var i = 0; i < table[r][c].colspan; i ++) {
49643                         width += Math.floor(this.colWidths[c + i]);
49644                     }
49645                     el.width = width  +'%';
49646                     el.updateElement(el.node);
49647                 }
49648                 table[r][c].cell = false; // done
49649             }
49650         }
49651     },
49652     normalizeWidths : function(table)
49653     {
49654         if (this.colWidths[0] === false) {
49655             var nw = 100.0 / this.colWidths.length;
49656             this.colWidths.forEach(function(w,i) {
49657                 this.colWidths[i] = nw;
49658             },this);
49659             return;
49660         }
49661     
49662         var t = 0, missing = [];
49663         
49664         this.colWidths.forEach(function(w,i) {
49665             //if you mix % and
49666             this.colWidths[i] = this.colWidths[i] == '' ? 0 : (this.colWidths[i]+'').replace(/[^0-9]+/g,'')*1;
49667             var add =  this.colWidths[i];
49668             if (add > 0) {
49669                 t+=add;
49670                 return;
49671             }
49672             missing.push(i);
49673             
49674             
49675         },this);
49676         var nc = this.colWidths.length;
49677         if (missing.length) {
49678             var mult = (nc - missing.length) / (1.0 * nc);
49679             var t = mult * t;
49680             var ew = (100 -t) / (1.0 * missing.length);
49681             this.colWidths.forEach(function(w,i) {
49682                 if (w > 0) {
49683                     this.colWidths[i] = w * mult;
49684                     return;
49685                 }
49686                 
49687                 this.colWidths[i] = ew;
49688             }, this);
49689             // have to make up numbers..
49690              
49691         }
49692         // now we should have all the widths..
49693         
49694     
49695     },
49696     
49697     shrinkColumn : function()
49698     {
49699         var table = this.toTableArray();
49700         this.normalizeWidths(table);
49701         var col = this.cellData.col;
49702         var nw = this.colWidths[col] * 0.8;
49703         if (nw < 5) {
49704             return;
49705         }
49706         var otherAdd = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
49707         this.colWidths.forEach(function(w,i) {
49708             if (i == col) {
49709                  this.colWidths[i] = nw;
49710                 return;
49711             }
49712             this.colWidths[i] += otherAdd
49713         }, this);
49714         this.updateWidths(table);
49715          
49716     },
49717     growColumn : function()
49718     {
49719         var table = this.toTableArray();
49720         this.normalizeWidths(table);
49721         var col = this.cellData.col;
49722         var nw = this.colWidths[col] * 1.2;
49723         if (nw > 90) {
49724             return;
49725         }
49726         var otherSub = (this.colWidths[col]  * 0.2) / (this.colWidths.length -1);
49727         this.colWidths.forEach(function(w,i) {
49728             if (i == col) {
49729                 this.colWidths[i] = nw;
49730                 return;
49731             }
49732             this.colWidths[i] -= otherSub
49733         }, this);
49734         this.updateWidths(table);
49735          
49736     },
49737     deleteRow : function()
49738     {
49739         // delete this rows 'tr'
49740         // if any of the cells in this row have a rowspan > 1 && row!= this row..
49741         // then reduce the rowspan.
49742         var table = this.toTableArray();
49743         // this.cellData.row;
49744         for (var i =0;i< table[this.cellData.row].length ; i++) {
49745             var c = table[this.cellData.row][i];
49746             if (c.row != this.cellData.row) {
49747                 
49748                 c.rowspan--;
49749                 c.cell.setAttribute('rowspan', c.rowspan);
49750                 continue;
49751             }
49752             if (c.rowspan > 1) {
49753                 c.rowspan--;
49754                 c.cell.setAttribute('rowspan', c.rowspan);
49755             }
49756         }
49757         table.splice(this.cellData.row,1);
49758         this.redrawAllCells(table);
49759         
49760     },
49761     deleteColumn : function()
49762     {
49763         var table = this.toTableArray();
49764         
49765         for (var i =0;i< table.length ; i++) {
49766             var c = table[i][this.cellData.col];
49767             if (c.col != this.cellData.col) {
49768                 table[i][this.cellData.col].colspan--;
49769             } else if (c.colspan > 1) {
49770                 c.colspan--;
49771                 c.cell.setAttribute('colspan', c.colspan);
49772             }
49773             table[i].splice(this.cellData.col,1);
49774         }
49775         
49776         this.redrawAllCells(table);
49777     }
49778     
49779     
49780     
49781     
49782 })
49783
49784 //<script type="text/javascript">
49785
49786 /*
49787  * Based  Ext JS Library 1.1.1
49788  * Copyright(c) 2006-2007, Ext JS, LLC.
49789  * LGPL
49790  *
49791  */
49792  
49793 /**
49794  * @class Roo.HtmlEditorCore
49795  * @extends Roo.Component
49796  * Provides a the editing component for the HTML editors in Roo. (bootstrap and Roo.form)
49797  *
49798  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
49799  */
49800
49801 Roo.HtmlEditorCore = function(config){
49802     
49803     
49804     Roo.HtmlEditorCore.superclass.constructor.call(this, config);
49805     
49806     
49807     this.addEvents({
49808         /**
49809          * @event initialize
49810          * Fires when the editor is fully initialized (including the iframe)
49811          * @param {Roo.HtmlEditorCore} this
49812          */
49813         initialize: true,
49814         /**
49815          * @event activate
49816          * Fires when the editor is first receives the focus. Any insertion must wait
49817          * until after this event.
49818          * @param {Roo.HtmlEditorCore} this
49819          */
49820         activate: true,
49821          /**
49822          * @event beforesync
49823          * Fires before the textarea is updated with content from the editor iframe. Return false
49824          * to cancel the sync.
49825          * @param {Roo.HtmlEditorCore} this
49826          * @param {String} html
49827          */
49828         beforesync: true,
49829          /**
49830          * @event beforepush
49831          * Fires before the iframe editor is updated with content from the textarea. Return false
49832          * to cancel the push.
49833          * @param {Roo.HtmlEditorCore} this
49834          * @param {String} html
49835          */
49836         beforepush: true,
49837          /**
49838          * @event sync
49839          * Fires when the textarea is updated with content from the editor iframe.
49840          * @param {Roo.HtmlEditorCore} this
49841          * @param {String} html
49842          */
49843         sync: true,
49844          /**
49845          * @event push
49846          * Fires when the iframe editor is updated with content from the textarea.
49847          * @param {Roo.HtmlEditorCore} this
49848          * @param {String} html
49849          */
49850         push: true,
49851         
49852         /**
49853          * @event editorevent
49854          * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
49855          * @param {Roo.HtmlEditorCore} this
49856          */
49857         editorevent: true 
49858          
49859         
49860     });
49861     
49862     // at this point this.owner is set, so we can start working out the whitelisted / blacklisted elements
49863     
49864     // defaults : white / black...
49865     this.applyBlacklists();
49866     
49867     
49868     
49869 };
49870
49871
49872 Roo.extend(Roo.HtmlEditorCore, Roo.Component,  {
49873
49874
49875      /**
49876      * @cfg {Roo.form.HtmlEditor|Roo.bootstrap.HtmlEditor} the owner field 
49877      */
49878     
49879     owner : false,
49880     
49881      /**
49882      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
49883      *                        Roo.resizable.
49884      */
49885     resizable : false,
49886      /**
49887      * @cfg {Number} height (in pixels)
49888      */   
49889     height: 300,
49890    /**
49891      * @cfg {Number} width (in pixels)
49892      */   
49893     width: 500,
49894      /**
49895      * @cfg {boolean} autoClean - default true - loading and saving will remove quite a bit of formating,
49896      *         if you are doing an email editor, this probably needs disabling, it's designed
49897      */
49898     autoClean: true,
49899     
49900     /**
49901      * @cfg {boolean} enableBlocks - default true - if the block editor (table and figure should be enabled)
49902      */
49903     enableBlocks : true,
49904     /**
49905      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets.
49906      * 
49907      */
49908     stylesheets: false,
49909      /**
49910      * @cfg {String} language default en - language of text (usefull for rtl languages)
49911      * 
49912      */
49913     language: 'en',
49914     
49915     /**
49916      * @cfg {boolean} allowComments - default false - allow comments in HTML source
49917      *          - by default they are stripped - if you are editing email you may need this.
49918      */
49919     allowComments: false,
49920     // id of frame..
49921     frameId: false,
49922     
49923     // private properties
49924     validationEvent : false,
49925     deferHeight: true,
49926     initialized : false,
49927     activated : false,
49928     sourceEditMode : false,
49929     onFocus : Roo.emptyFn,
49930     iframePad:3,
49931     hideMode:'offsets',
49932     
49933     clearUp: true,
49934     
49935     // blacklist + whitelisted elements..
49936     black: false,
49937     white: false,
49938      
49939     bodyCls : '',
49940
49941     
49942     undoManager : false,
49943     /**
49944      * Protected method that will not generally be called directly. It
49945      * is called when the editor initializes the iframe with HTML contents. Override this method if you
49946      * want to change the initialization markup of the iframe (e.g. to add stylesheets).
49947      */
49948     getDocMarkup : function(){
49949         // body styles..
49950         var st = '';
49951         
49952         // inherit styels from page...?? 
49953         if (this.stylesheets === false) {
49954             
49955             Roo.get(document.head).select('style').each(function(node) {
49956                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
49957             });
49958             
49959             Roo.get(document.head).select('link').each(function(node) { 
49960                 st += node.dom.outerHTML || new XMLSerializer().serializeToString(node.dom);
49961             });
49962             
49963         } else if (!this.stylesheets.length) {
49964                 // simple..
49965                 st = '<style type="text/css">' +
49966                     'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
49967                    '</style>';
49968         } else {
49969             for (var i in this.stylesheets) {
49970                 if (typeof(this.stylesheets[i]) != 'string') {
49971                     continue;
49972                 }
49973                 st += '<link rel="stylesheet" href="' + this.stylesheets[i] +'" type="text/css">';
49974             }
49975             
49976         }
49977         
49978         st +=  '<style type="text/css">' +
49979             'IMG { cursor: pointer } ' +
49980         '</style>';
49981         
49982         st += '<meta name="google" content="notranslate">';
49983         
49984         var cls = 'notranslate roo-htmleditor-body';
49985         
49986         if(this.bodyCls.length){
49987             cls += ' ' + this.bodyCls;
49988         }
49989         
49990         return '<html  class="notranslate" translate="no"><head>' + st  +
49991             //<style type="text/css">' +
49992             //'body{border:0;margin:0;padding:3px;height:98%;cursor:text;}' +
49993             //'</style>' +
49994             ' </head><body contenteditable="true" data-enable-grammerly="true" class="' +  cls + '"></body></html>';
49995     },
49996
49997     // private
49998     onRender : function(ct, position)
49999     {
50000         var _t = this;
50001         //Roo.HtmlEditorCore.superclass.onRender.call(this, ct, position);
50002         this.el = this.owner.inputEl ? this.owner.inputEl() : this.owner.el;
50003         
50004         
50005         this.el.dom.style.border = '0 none';
50006         this.el.dom.setAttribute('tabIndex', -1);
50007         this.el.addClass('x-hidden hide');
50008         
50009         
50010         
50011         if(Roo.isIE){ // fix IE 1px bogus margin
50012             this.el.applyStyles('margin-top:-1px;margin-bottom:-1px;')
50013         }
50014        
50015         
50016         this.frameId = Roo.id();
50017         
50018          
50019         
50020         var iframe = this.owner.wrap.createChild({
50021             tag: 'iframe',
50022             cls: 'form-control', // bootstrap..
50023             id: this.frameId,
50024             name: this.frameId,
50025             frameBorder : 'no',
50026             'src' : Roo.SSL_SECURE_URL ? Roo.SSL_SECURE_URL  :  "javascript:false"
50027         }, this.el
50028         );
50029         
50030         
50031         this.iframe = iframe.dom;
50032
50033         this.assignDocWin();
50034         
50035         this.doc.designMode = 'on';
50036        
50037         this.doc.open();
50038         this.doc.write(this.getDocMarkup());
50039         this.doc.close();
50040
50041         
50042         var task = { // must defer to wait for browser to be ready
50043             run : function(){
50044                 //console.log("run task?" + this.doc.readyState);
50045                 this.assignDocWin();
50046                 if(this.doc.body || this.doc.readyState == 'complete'){
50047                     try {
50048                         this.doc.designMode="on";
50049                         
50050                     } catch (e) {
50051                         return;
50052                     }
50053                     Roo.TaskMgr.stop(task);
50054                     this.initEditor.defer(10, this);
50055                 }
50056             },
50057             interval : 10,
50058             duration: 10000,
50059             scope: this
50060         };
50061         Roo.TaskMgr.start(task);
50062
50063     },
50064
50065     // private
50066     onResize : function(w, h)
50067     {
50068          Roo.log('resize: ' +w + ',' + h );
50069         //Roo.HtmlEditorCore.superclass.onResize.apply(this, arguments);
50070         if(!this.iframe){
50071             return;
50072         }
50073         if(typeof w == 'number'){
50074             
50075             this.iframe.style.width = w + 'px';
50076         }
50077         if(typeof h == 'number'){
50078             
50079             this.iframe.style.height = h + 'px';
50080             if(this.doc){
50081                 (this.doc.body || this.doc.documentElement).style.height = (h - (this.iframePad*2)) + 'px';
50082             }
50083         }
50084         
50085     },
50086
50087     /**
50088      * Toggles the editor between standard and source edit mode.
50089      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
50090      */
50091     toggleSourceEdit : function(sourceEditMode){
50092         
50093         this.sourceEditMode = sourceEditMode === true;
50094         
50095         if(this.sourceEditMode){
50096  
50097             Roo.get(this.iframe).addClass(['x-hidden','hide', 'd-none']);     //FIXME - what's the BS styles for these
50098             
50099         }else{
50100             Roo.get(this.iframe).removeClass(['x-hidden','hide', 'd-none']);
50101             //this.iframe.className = '';
50102             this.deferFocus();
50103         }
50104         //this.setSize(this.owner.wrap.getSize());
50105         //this.fireEvent('editmodechange', this, this.sourceEditMode);
50106     },
50107
50108     
50109   
50110
50111     /**
50112      * Protected method that will not generally be called directly. If you need/want
50113      * custom HTML cleanup, this is the method you should override.
50114      * @param {String} html The HTML to be cleaned
50115      * return {String} The cleaned HTML
50116      */
50117     cleanHtml : function(html)
50118     {
50119         html = String(html);
50120         if(html.length > 5){
50121             if(Roo.isSafari){ // strip safari nonsense
50122                 html = html.replace(/\sclass="(?:Apple-style-span|khtml-block-placeholder)"/gi, '');
50123             }
50124         }
50125         if(html == '&nbsp;'){
50126             html = '';
50127         }
50128         return html;
50129     },
50130
50131     /**
50132      * HTML Editor -> Textarea
50133      * Protected method that will not generally be called directly. Syncs the contents
50134      * of the editor iframe with the textarea.
50135      */
50136     syncValue : function()
50137     {
50138         //Roo.log("HtmlEditorCore:syncValue (EDITOR->TEXT)");
50139         if(this.initialized){
50140             
50141             if (this.undoManager) {
50142                 this.undoManager.addEvent();
50143             }
50144
50145             
50146             var bd = (this.doc.body || this.doc.documentElement);
50147            
50148             
50149             var sel = this.win.getSelection();
50150             
50151             var div = document.createElement('div');
50152             div.innerHTML = bd.innerHTML;
50153             var gtx = div.getElementsByClassName('gtx-trans-icon'); // google translate - really annoying and difficult to get rid of.
50154             if (gtx.length > 0) {
50155                 var rm = gtx.item(0).parentNode;
50156                 rm.parentNode.removeChild(rm);
50157             }
50158             
50159            
50160             if (this.enableBlocks) {
50161                 new Roo.htmleditor.FilterBlock({ node : div });
50162             }
50163             //?? tidy?
50164             var tidy = new Roo.htmleditor.TidySerializer({
50165                 inner:  true
50166             });
50167             var html  = tidy.serialize(div);
50168             
50169             
50170             if(Roo.isSafari){
50171                 var bs = bd.getAttribute('style'); // Safari puts text-align styles on the body element!
50172                 var m = bs ? bs.match(/text-align:(.*?);/i) : false;
50173                 if(m && m[1]){
50174                     html = '<div style="'+m[0]+'">' + html + '</div>';
50175                 }
50176             }
50177             html = this.cleanHtml(html);
50178             // fix up the special chars.. normaly like back quotes in word...
50179             // however we do not want to do this with chinese..
50180             html = html.replace(/[\uD800-\uDBFF][\uDC00-\uDFFF]|[\u0080-\uFFFF]/g, function(match) {
50181                 
50182                 var cc = match.charCodeAt();
50183
50184                 // Get the character value, handling surrogate pairs
50185                 if (match.length == 2) {
50186                     // It's a surrogate pair, calculate the Unicode code point
50187                     var high = match.charCodeAt(0) - 0xD800;
50188                     var low  = match.charCodeAt(1) - 0xDC00;
50189                     cc = (high * 0x400) + low + 0x10000;
50190                 }  else if (
50191                     (cc >= 0x4E00 && cc < 0xA000 ) ||
50192                     (cc >= 0x3400 && cc < 0x4E00 ) ||
50193                     (cc >= 0xf900 && cc < 0xfb00 )
50194                 ) {
50195                         return match;
50196                 }  
50197          
50198                 // No, use a numeric entity. Here we brazenly (and possibly mistakenly)
50199                 return "&#" + cc + ";";
50200                 
50201                 
50202             });
50203             
50204             
50205              
50206             if(this.owner.fireEvent('beforesync', this, html) !== false){
50207                 this.el.dom.value = html;
50208                 this.owner.fireEvent('sync', this, html);
50209             }
50210         }
50211     },
50212
50213     /**
50214      * TEXTAREA -> EDITABLE
50215      * Protected method that will not generally be called directly. Pushes the value of the textarea
50216      * into the iframe editor.
50217      */
50218     pushValue : function()
50219     {
50220         //Roo.log("HtmlEditorCore:pushValue (TEXT->EDITOR)");
50221         if(this.initialized){
50222             var v = this.el.dom.value.trim();
50223             
50224             
50225             if(this.owner.fireEvent('beforepush', this, v) !== false){
50226                 var d = (this.doc.body || this.doc.documentElement);
50227                 d.innerHTML = v;
50228                  
50229                 this.el.dom.value = d.innerHTML;
50230                 this.owner.fireEvent('push', this, v);
50231             }
50232             if (this.autoClean) {
50233                 new Roo.htmleditor.FilterParagraph({node : this.doc.body}); // paragraphs
50234                 new Roo.htmleditor.FilterSpan({node : this.doc.body}); // empty spans
50235             }
50236             if (this.enableBlocks) {
50237                 Roo.htmleditor.Block.initAll(this.doc.body);
50238             }
50239             
50240             this.updateLanguage();
50241             
50242             var lc = this.doc.body.lastChild;
50243             if (lc && lc.nodeType == 1 && lc.getAttribute("contenteditable") == "false") {
50244                 // add an extra line at the end.
50245                 this.doc.body.appendChild(this.doc.createElement('br'));
50246             }
50247             
50248             
50249         }
50250     },
50251
50252     // private
50253     deferFocus : function(){
50254         this.focus.defer(10, this);
50255     },
50256
50257     // doc'ed in Field
50258     focus : function(){
50259         if(this.win && !this.sourceEditMode){
50260             this.win.focus();
50261         }else{
50262             this.el.focus();
50263         }
50264     },
50265     
50266     assignDocWin: function()
50267     {
50268         var iframe = this.iframe;
50269         
50270          if(Roo.isIE){
50271             this.doc = iframe.contentWindow.document;
50272             this.win = iframe.contentWindow;
50273         } else {
50274 //            if (!Roo.get(this.frameId)) {
50275 //                return;
50276 //            }
50277 //            this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
50278 //            this.win = Roo.get(this.frameId).dom.contentWindow;
50279             
50280             if (!Roo.get(this.frameId) && !iframe.contentDocument) {
50281                 return;
50282             }
50283             
50284             this.doc = (iframe.contentDocument || Roo.get(this.frameId).dom.document);
50285             this.win = (iframe.contentWindow || Roo.get(this.frameId).dom.contentWindow);
50286         }
50287     },
50288     
50289     // private
50290     initEditor : function(){
50291         //console.log("INIT EDITOR");
50292         this.assignDocWin();
50293         
50294         
50295         
50296         this.doc.designMode="on";
50297         this.doc.open();
50298         this.doc.write(this.getDocMarkup());
50299         this.doc.close();
50300         
50301         var dbody = (this.doc.body || this.doc.documentElement);
50302         //var ss = this.el.getStyles('font-size', 'font-family', 'background-image', 'background-repeat');
50303         // this copies styles from the containing element into thsi one..
50304         // not sure why we need all of this..
50305         //var ss = this.el.getStyles('font-size', 'background-image', 'background-repeat');
50306         
50307         //var ss = this.el.getStyles( 'background-image', 'background-repeat');
50308         //ss['background-attachment'] = 'fixed'; // w3c
50309         dbody.bgProperties = 'fixed'; // ie
50310         dbody.setAttribute("translate", "no");
50311         
50312         //Roo.DomHelper.applyStyles(dbody, ss);
50313         Roo.EventManager.on(this.doc, {
50314              
50315             'mouseup': this.onEditorEvent,
50316             'dblclick': this.onEditorEvent,
50317             'click': this.onEditorEvent,
50318             'keyup': this.onEditorEvent,
50319             
50320             buffer:100,
50321             scope: this
50322         });
50323         Roo.EventManager.on(this.doc, {
50324             'paste': this.onPasteEvent,
50325             scope : this
50326         });
50327         if(Roo.isGecko){
50328             Roo.EventManager.on(this.doc, 'keypress', this.mozKeyPress, this);
50329         }
50330         //??? needed???
50331         if(Roo.isIE || Roo.isSafari || Roo.isOpera){
50332             Roo.EventManager.on(this.doc, 'keydown', this.fixKeys, this);
50333         }
50334         this.initialized = true;
50335
50336         
50337         // initialize special key events - enter
50338         new Roo.htmleditor.KeyEnter({core : this});
50339         
50340          
50341         
50342         this.owner.fireEvent('initialize', this);
50343         this.pushValue();
50344     },
50345     // this is to prevent a href clicks resulting in a redirect?
50346    
50347     onPasteEvent : function(e,v)
50348     {
50349         // I think we better assume paste is going to be a dirty load of rubish from word..
50350         
50351         // even pasting into a 'email version' of this widget will have to clean up that mess.
50352         var cd = (e.browserEvent.clipboardData || window.clipboardData);
50353         
50354         // check what type of paste - if it's an image, then handle it differently.
50355         if (cd.files && cd.files.length > 0) {
50356             // pasting images?
50357             var urlAPI = (window.createObjectURL && window) || 
50358                 (window.URL && URL.revokeObjectURL && URL) || 
50359                 (window.webkitURL && webkitURL);
50360     
50361             var url = urlAPI.createObjectURL( cd.files[0]);
50362             this.insertAtCursor('<img src=" + url + ">');
50363             return false;
50364         }
50365         if (cd.types.indexOf('text/html') < 0 ) {
50366             return false;
50367         }
50368         var images = [];
50369         var html = cd.getData('text/html'); // clipboard event
50370         if (cd.types.indexOf('text/rtf') > -1) {
50371             var parser = new Roo.rtf.Parser(cd.getData('text/rtf'));
50372             images = parser.doc ? parser.doc.getElementsByType('pict') : [];
50373         }
50374         //Roo.log(images);
50375         //Roo.log(imgs);
50376         // fixme..
50377         images = images.filter(function(g) { return !g.path.match(/^rtf\/(head|pgdsctbl|listtable|footerf)/); }) // ignore headers/footers etc.
50378                        .map(function(g) { return g.toDataURL(); })
50379                        .filter(function(g) { return g != 'about:blank'; });
50380         
50381         //Roo.log(html);
50382         html = this.cleanWordChars(html);
50383         
50384         var d = (new DOMParser().parseFromString(html, 'text/html')).body;
50385         
50386         
50387         var sn = this.getParentElement();
50388         // check if d contains a table, and prevent nesting??
50389         //Roo.log(d.getElementsByTagName('table'));
50390         //Roo.log(sn);
50391         //Roo.log(sn.closest('table'));
50392         if (d.getElementsByTagName('table').length && sn && sn.closest('table')) {
50393             e.preventDefault();
50394             this.insertAtCursor("You can not nest tables");
50395             //Roo.log("prevent?"); // fixme - 
50396             return false;
50397         }
50398         
50399         
50400         
50401         if (images.length > 0) {
50402             // replace all v:imagedata - with img.
50403             var ar = Array.from(d.getElementsByTagName('v:imagedata'));
50404             Roo.each(ar, function(node) {
50405                 node.parentNode.insertBefore(d.ownerDocument.createElement('img'), node );
50406                 node.parentNode.removeChild(node);
50407             });
50408             
50409             
50410             Roo.each(d.getElementsByTagName('img'), function(img, i) {
50411                 img.setAttribute('src', images[i]);
50412             });
50413         }
50414         if (this.autoClean) {
50415             new Roo.htmleditor.FilterWord({ node : d });
50416             
50417             new Roo.htmleditor.FilterStyleToTag({ node : d });
50418             new Roo.htmleditor.FilterAttributes({
50419                 node : d,
50420                 attrib_white : ['href', 'src', 'name', 'align', 'colspan', 'rowspan', 'data-display', 'data-width'],
50421                 attrib_clean : ['href', 'src' ] 
50422             });
50423             new Roo.htmleditor.FilterBlack({ node : d, tag : this.black});
50424             // should be fonts..
50425             new Roo.htmleditor.FilterKeepChildren({node : d, tag : [ 'FONT', ':' ]} );
50426             new Roo.htmleditor.FilterParagraph({ node : d });
50427             new Roo.htmleditor.FilterSpan({ node : d });
50428             new Roo.htmleditor.FilterLongBr({ node : d });
50429             new Roo.htmleditor.FilterComment({ node : d });
50430             
50431             
50432         }
50433         if (this.enableBlocks) {
50434                 
50435             Array.from(d.getElementsByTagName('img')).forEach(function(img) {
50436                 if (img.closest('figure')) { // assume!! that it's aready
50437                     return;
50438                 }
50439                 var fig  = new Roo.htmleditor.BlockFigure({
50440                     image_src  : img.src
50441                 });
50442                 fig.updateElement(img); // replace it..
50443                 
50444             });
50445         }
50446         
50447         
50448         this.insertAtCursor(d.innerHTML.replace(/&nbsp;/g,' '));
50449         if (this.enableBlocks) {
50450             Roo.htmleditor.Block.initAll(this.doc.body);
50451         }
50452          
50453         
50454         e.preventDefault();
50455         return false;
50456         // default behaveiour should be our local cleanup paste? (optional?)
50457         // for simple editor - we want to hammer the paste and get rid of everything... - so over-rideable..
50458         //this.owner.fireEvent('paste', e, v);
50459     },
50460     // private
50461     onDestroy : function(){
50462         
50463         
50464         
50465         if(this.rendered){
50466             
50467             //for (var i =0; i < this.toolbars.length;i++) {
50468             //    // fixme - ask toolbars for heights?
50469             //    this.toolbars[i].onDestroy();
50470            // }
50471             
50472             //this.wrap.dom.innerHTML = '';
50473             //this.wrap.remove();
50474         }
50475     },
50476
50477     // private
50478     onFirstFocus : function(){
50479         
50480         this.assignDocWin();
50481         this.undoManager = new Roo.lib.UndoManager(100,(this.doc.body || this.doc.documentElement));
50482         
50483         this.activated = true;
50484          
50485     
50486         if(Roo.isGecko){ // prevent silly gecko errors
50487             this.win.focus();
50488             var s = this.win.getSelection();
50489             if(!s.focusNode || s.focusNode.nodeType != 3){
50490                 var r = s.getRangeAt(0);
50491                 r.selectNodeContents((this.doc.body || this.doc.documentElement));
50492                 r.collapse(true);
50493                 this.deferFocus();
50494             }
50495             try{
50496                 this.execCmd('useCSS', true);
50497                 this.execCmd('styleWithCSS', false);
50498             }catch(e){}
50499         }
50500         this.owner.fireEvent('activate', this);
50501     },
50502
50503     // private
50504     adjustFont: function(btn){
50505         var adjust = btn.cmd == 'increasefontsize' ? 1 : -1;
50506         //if(Roo.isSafari){ // safari
50507         //    adjust *= 2;
50508        // }
50509         var v = parseInt(this.doc.queryCommandValue('FontSize')|| 3, 10);
50510         if(Roo.isSafari){ // safari
50511             var sm = { 10 : 1, 13: 2, 16:3, 18:4, 24: 5, 32:6, 48: 7 };
50512             v =  (v < 10) ? 10 : v;
50513             v =  (v > 48) ? 48 : v;
50514             v = typeof(sm[v]) == 'undefined' ? 1 : sm[v];
50515             
50516         }
50517         
50518         
50519         v = Math.max(1, v+adjust);
50520         
50521         this.execCmd('FontSize', v  );
50522     },
50523
50524     onEditorEvent : function(e)
50525     {
50526          
50527         
50528         if (e && (e.ctrlKey || e.metaKey) && e.keyCode === 90) {
50529             return; // we do not handle this.. (undo manager does..)
50530         }
50531         // in theory this detects if the last element is not a br, then we try and do that.
50532         // its so clicking in space at bottom triggers adding a br and moving the cursor.
50533         if (e &&
50534             e.target.nodeName == 'BODY' &&
50535             e.type == "mouseup" &&
50536             this.doc.body.lastChild
50537            ) {
50538             var lc = this.doc.body.lastChild;
50539             // gtx-trans is google translate plugin adding crap.
50540             while ((lc.nodeType == 3 && lc.nodeValue == '') || lc.id == 'gtx-trans') {
50541                 lc = lc.previousSibling;
50542             }
50543             if (lc.nodeType == 1 && lc.nodeName != 'BR') {
50544             // if last element is <BR> - then dont do anything.
50545             
50546                 var ns = this.doc.createElement('br');
50547                 this.doc.body.appendChild(ns);
50548                 range = this.doc.createRange();
50549                 range.setStartAfter(ns);
50550                 range.collapse(true);
50551                 var sel = this.win.getSelection();
50552                 sel.removeAllRanges();
50553                 sel.addRange(range);
50554             }
50555         }
50556         
50557         
50558         
50559         this.fireEditorEvent(e);
50560       //  this.updateToolbar();
50561         this.syncValue(); //we can not sync so often.. sync cleans, so this breaks stuff
50562     },
50563     
50564     fireEditorEvent: function(e)
50565     {
50566         this.owner.fireEvent('editorevent', this, e);
50567     },
50568
50569     insertTag : function(tg)
50570     {
50571         // could be a bit smarter... -> wrap the current selected tRoo..
50572         if (tg.toLowerCase() == 'span' ||
50573             tg.toLowerCase() == 'code' ||
50574             tg.toLowerCase() == 'sup' ||
50575             tg.toLowerCase() == 'sub' 
50576             ) {
50577             
50578             range = this.createRange(this.getSelection());
50579             var wrappingNode = this.doc.createElement(tg.toLowerCase());
50580             wrappingNode.appendChild(range.extractContents());
50581             range.insertNode(wrappingNode);
50582
50583             return;
50584             
50585             
50586             
50587         }
50588         this.execCmd("formatblock",   tg);
50589         this.undoManager.addEvent(); 
50590     },
50591     
50592     insertText : function(txt)
50593     {
50594         
50595         
50596         var range = this.createRange();
50597         range.deleteContents();
50598                //alert(Sender.getAttribute('label'));
50599                
50600         range.insertNode(this.doc.createTextNode(txt));
50601         this.undoManager.addEvent();
50602     } ,
50603     
50604      
50605
50606     /**
50607      * Executes a Midas editor command on the editor document and performs necessary focus and
50608      * toolbar updates. <b>This should only be called after the editor is initialized.</b>
50609      * @param {String} cmd The Midas command
50610      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
50611      */
50612     relayCmd : function(cmd, value)
50613     {
50614         
50615         switch (cmd) {
50616             case 'justifyleft':
50617             case 'justifyright':
50618             case 'justifycenter':
50619                 // if we are in a cell, then we will adjust the
50620                 var n = this.getParentElement();
50621                 var td = n.closest('td');
50622                 if (td) {
50623                     var bl = Roo.htmleditor.Block.factory(td);
50624                     bl.textAlign = cmd.replace('justify','');
50625                     bl.updateElement();
50626                     this.owner.fireEvent('editorevent', this);
50627                     return;
50628                 }
50629                 this.execCmd('styleWithCSS', true); // 
50630                 break;
50631             case 'bold':
50632             case 'italic':
50633                 // if there is no selection, then we insert, and set the curson inside it..
50634                 this.execCmd('styleWithCSS', false); 
50635                 break;
50636                 
50637         
50638             default:
50639                 break;
50640         }
50641         
50642         
50643         this.win.focus();
50644         this.execCmd(cmd, value);
50645         this.owner.fireEvent('editorevent', this);
50646         //this.updateToolbar();
50647         this.owner.deferFocus();
50648     },
50649
50650     /**
50651      * Executes a Midas editor command directly on the editor document.
50652      * For visual commands, you should use {@link #relayCmd} instead.
50653      * <b>This should only be called after the editor is initialized.</b>
50654      * @param {String} cmd The Midas command
50655      * @param {String/Boolean} value (optional) The value to pass to the command (defaults to null)
50656      */
50657     execCmd : function(cmd, value){
50658         this.doc.execCommand(cmd, false, value === undefined ? null : value);
50659         this.syncValue();
50660     },
50661  
50662  
50663    
50664     /**
50665      * Inserts the passed text at the current cursor position. Note: the editor must be initialized and activated
50666      * to insert tRoo.
50667      * @param {String} text | dom node.. 
50668      */
50669     insertAtCursor : function(text)
50670     {
50671         
50672         if(!this.activated){
50673             return;
50674         }
50675          
50676         if(Roo.isGecko || Roo.isOpera || Roo.isSafari){
50677             this.win.focus();
50678             
50679             
50680             // from jquery ui (MIT licenced)
50681             var range, node;
50682             var win = this.win;
50683             
50684             if (win.getSelection && win.getSelection().getRangeAt) {
50685                 
50686                 // delete the existing?
50687                 
50688                 this.createRange(this.getSelection()).deleteContents();
50689                 range = win.getSelection().getRangeAt(0);
50690                 node = typeof(text) == 'string' ? range.createContextualFragment(text) : text;
50691                 range.insertNode(node);
50692                 range = range.cloneRange();
50693                 range.collapse(false);
50694                  
50695                 win.getSelection().removeAllRanges();
50696                 win.getSelection().addRange(range);
50697                 
50698                 
50699                 
50700             } else if (win.document.selection && win.document.selection.createRange) {
50701                 // no firefox support
50702                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
50703                 win.document.selection.createRange().pasteHTML(txt);
50704             
50705             } else {
50706                 // no firefox support
50707                 var txt = typeof(text) == 'string' ? text : text.outerHTML;
50708                 this.execCmd('InsertHTML', txt);
50709             } 
50710             this.syncValue();
50711             
50712             this.deferFocus();
50713         }
50714     },
50715  // private
50716     mozKeyPress : function(e){
50717         if(e.ctrlKey){
50718             var c = e.getCharCode(), cmd;
50719           
50720             if(c > 0){
50721                 c = String.fromCharCode(c).toLowerCase();
50722                 switch(c){
50723                     case 'b':
50724                         cmd = 'bold';
50725                         break;
50726                     case 'i':
50727                         cmd = 'italic';
50728                         break;
50729                     
50730                     case 'u':
50731                         cmd = 'underline';
50732                         break;
50733                     
50734                     //case 'v':
50735                       //  this.cleanUpPaste.defer(100, this);
50736                       //  return;
50737                         
50738                 }
50739                 if(cmd){
50740                     
50741                     this.relayCmd(cmd);
50742                     //this.win.focus();
50743                     //this.execCmd(cmd);
50744                     //this.deferFocus();
50745                     e.preventDefault();
50746                 }
50747                 
50748             }
50749         }
50750     },
50751
50752     // private
50753     fixKeys : function(){ // load time branching for fastest keydown performance
50754         
50755         
50756         if(Roo.isIE){
50757             return function(e){
50758                 var k = e.getKey(), r;
50759                 if(k == e.TAB){
50760                     e.stopEvent();
50761                     r = this.doc.selection.createRange();
50762                     if(r){
50763                         r.collapse(true);
50764                         r.pasteHTML('&#160;&#160;&#160;&#160;');
50765                         this.deferFocus();
50766                     }
50767                     return;
50768                 }
50769                 /// this is handled by Roo.htmleditor.KeyEnter
50770                  /*
50771                 if(k == e.ENTER){
50772                     r = this.doc.selection.createRange();
50773                     if(r){
50774                         var target = r.parentElement();
50775                         if(!target || target.tagName.toLowerCase() != 'li'){
50776                             e.stopEvent();
50777                             r.pasteHTML('<br/>');
50778                             r.collapse(false);
50779                             r.select();
50780                         }
50781                     }
50782                 }
50783                 */
50784                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
50785                 //    this.cleanUpPaste.defer(100, this);
50786                 //    return;
50787                 //}
50788                 
50789                 
50790             };
50791         }else if(Roo.isOpera){
50792             return function(e){
50793                 var k = e.getKey();
50794                 if(k == e.TAB){
50795                     e.stopEvent();
50796                     this.win.focus();
50797                     this.execCmd('InsertHTML','&#160;&#160;&#160;&#160;');
50798                     this.deferFocus();
50799                 }
50800                
50801                 //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
50802                 //    this.cleanUpPaste.defer(100, this);
50803                  //   return;
50804                 //}
50805                 
50806             };
50807         }else if(Roo.isSafari){
50808             return function(e){
50809                 var k = e.getKey();
50810                 
50811                 if(k == e.TAB){
50812                     e.stopEvent();
50813                     this.execCmd('InsertText','\t');
50814                     this.deferFocus();
50815                     return;
50816                 }
50817                  this.mozKeyPress(e);
50818                 
50819                //if (String.fromCharCode(k).toLowerCase() == 'v') { // paste
50820                  //   this.cleanUpPaste.defer(100, this);
50821                  //   return;
50822                // }
50823                 
50824              };
50825         }
50826     }(),
50827     
50828     getAllAncestors: function()
50829     {
50830         var p = this.getSelectedNode();
50831         var a = [];
50832         if (!p) {
50833             a.push(p); // push blank onto stack..
50834             p = this.getParentElement();
50835         }
50836         
50837         
50838         while (p && (p.nodeType == 1) && (p.tagName.toLowerCase() != 'body')) {
50839             a.push(p);
50840             p = p.parentNode;
50841         }
50842         a.push(this.doc.body);
50843         return a;
50844     },
50845     lastSel : false,
50846     lastSelNode : false,
50847     
50848     
50849     getSelection : function() 
50850     {
50851         this.assignDocWin();
50852         return Roo.lib.Selection.wrap(Roo.isIE ? this.doc.selection : this.win.getSelection(), this.doc);
50853     },
50854     /**
50855      * Select a dom node
50856      * @param {DomElement} node the node to select
50857      */
50858     selectNode : function(node, collapse)
50859     {
50860         var nodeRange = node.ownerDocument.createRange();
50861         try {
50862             nodeRange.selectNode(node);
50863         } catch (e) {
50864             nodeRange.selectNodeContents(node);
50865         }
50866         if (collapse === true) {
50867             nodeRange.collapse(true);
50868         }
50869         //
50870         var s = this.win.getSelection();
50871         s.removeAllRanges();
50872         s.addRange(nodeRange);
50873     },
50874     
50875     getSelectedNode: function() 
50876     {
50877         // this may only work on Gecko!!!
50878         
50879         // should we cache this!!!!
50880         
50881          
50882          
50883         var range = this.createRange(this.getSelection()).cloneRange();
50884         
50885         if (Roo.isIE) {
50886             var parent = range.parentElement();
50887             while (true) {
50888                 var testRange = range.duplicate();
50889                 testRange.moveToElementText(parent);
50890                 if (testRange.inRange(range)) {
50891                     break;
50892                 }
50893                 if ((parent.nodeType != 1) || (parent.tagName.toLowerCase() == 'body')) {
50894                     break;
50895                 }
50896                 parent = parent.parentElement;
50897             }
50898             return parent;
50899         }
50900         
50901         // is ancestor a text element.
50902         var ac =  range.commonAncestorContainer;
50903         if (ac.nodeType == 3) {
50904             ac = ac.parentNode;
50905         }
50906         
50907         var ar = ac.childNodes;
50908          
50909         var nodes = [];
50910         var other_nodes = [];
50911         var has_other_nodes = false;
50912         for (var i=0;i<ar.length;i++) {
50913             if ((ar[i].nodeType == 3) && (!ar[i].data.length)) { // empty text ? 
50914                 continue;
50915             }
50916             // fullly contained node.
50917             
50918             if (this.rangeIntersectsNode(range,ar[i]) && this.rangeCompareNode(range,ar[i]) == 3) {
50919                 nodes.push(ar[i]);
50920                 continue;
50921             }
50922             
50923             // probably selected..
50924             if ((ar[i].nodeType == 1) && this.rangeIntersectsNode(range,ar[i]) && (this.rangeCompareNode(range,ar[i]) > 0)) {
50925                 other_nodes.push(ar[i]);
50926                 continue;
50927             }
50928             // outer..
50929             if (!this.rangeIntersectsNode(range,ar[i])|| (this.rangeCompareNode(range,ar[i]) == 0))  {
50930                 continue;
50931             }
50932             
50933             
50934             has_other_nodes = true;
50935         }
50936         if (!nodes.length && other_nodes.length) {
50937             nodes= other_nodes;
50938         }
50939         if (has_other_nodes || !nodes.length || (nodes.length > 1)) {
50940             return false;
50941         }
50942         
50943         return nodes[0];
50944     },
50945     
50946     
50947     createRange: function(sel)
50948     {
50949         // this has strange effects when using with 
50950         // top toolbar - not sure if it's a great idea.
50951         //this.editor.contentWindow.focus();
50952         if (typeof sel != "undefined") {
50953             try {
50954                 return sel.getRangeAt ? sel.getRangeAt(0) : sel.createRange();
50955             } catch(e) {
50956                 return this.doc.createRange();
50957             }
50958         } else {
50959             return this.doc.createRange();
50960         }
50961     },
50962     getParentElement: function()
50963     {
50964         
50965         this.assignDocWin();
50966         var sel = Roo.isIE ? this.doc.selection : this.win.getSelection();
50967         
50968         var range = this.createRange(sel);
50969          
50970         try {
50971             var p = range.commonAncestorContainer;
50972             while (p.nodeType == 3) { // text node
50973                 p = p.parentNode;
50974             }
50975             return p;
50976         } catch (e) {
50977             return null;
50978         }
50979     
50980     },
50981     /***
50982      *
50983      * Range intersection.. the hard stuff...
50984      *  '-1' = before
50985      *  '0' = hits..
50986      *  '1' = after.
50987      *         [ -- selected range --- ]
50988      *   [fail]                        [fail]
50989      *
50990      *    basically..
50991      *      if end is before start or  hits it. fail.
50992      *      if start is after end or hits it fail.
50993      *
50994      *   if either hits (but other is outside. - then it's not 
50995      *   
50996      *    
50997      **/
50998     
50999     
51000     // @see http://www.thismuchiknow.co.uk/?p=64.
51001     rangeIntersectsNode : function(range, node)
51002     {
51003         var nodeRange = node.ownerDocument.createRange();
51004         try {
51005             nodeRange.selectNode(node);
51006         } catch (e) {
51007             nodeRange.selectNodeContents(node);
51008         }
51009     
51010         var rangeStartRange = range.cloneRange();
51011         rangeStartRange.collapse(true);
51012     
51013         var rangeEndRange = range.cloneRange();
51014         rangeEndRange.collapse(false);
51015     
51016         var nodeStartRange = nodeRange.cloneRange();
51017         nodeStartRange.collapse(true);
51018     
51019         var nodeEndRange = nodeRange.cloneRange();
51020         nodeEndRange.collapse(false);
51021     
51022         return rangeStartRange.compareBoundaryPoints(
51023                  Range.START_TO_START, nodeEndRange) == -1 &&
51024                rangeEndRange.compareBoundaryPoints(
51025                  Range.START_TO_START, nodeStartRange) == 1;
51026         
51027          
51028     },
51029     rangeCompareNode : function(range, node)
51030     {
51031         var nodeRange = node.ownerDocument.createRange();
51032         try {
51033             nodeRange.selectNode(node);
51034         } catch (e) {
51035             nodeRange.selectNodeContents(node);
51036         }
51037         
51038         
51039         range.collapse(true);
51040     
51041         nodeRange.collapse(true);
51042      
51043         var ss = range.compareBoundaryPoints( Range.START_TO_START, nodeRange);
51044         var ee = range.compareBoundaryPoints(  Range.END_TO_END, nodeRange);
51045          
51046         //Roo.log(node.tagName + ': ss='+ss +', ee='+ee)
51047         
51048         var nodeIsBefore   =  ss == 1;
51049         var nodeIsAfter    = ee == -1;
51050         
51051         if (nodeIsBefore && nodeIsAfter) {
51052             return 0; // outer
51053         }
51054         if (!nodeIsBefore && nodeIsAfter) {
51055             return 1; //right trailed.
51056         }
51057         
51058         if (nodeIsBefore && !nodeIsAfter) {
51059             return 2;  // left trailed.
51060         }
51061         // fully contined.
51062         return 3;
51063     },
51064  
51065     cleanWordChars : function(input) {// change the chars to hex code
51066         
51067        var swapCodes  = [ 
51068             [    8211, "&#8211;" ], 
51069             [    8212, "&#8212;" ], 
51070             [    8216,  "'" ],  
51071             [    8217, "'" ],  
51072             [    8220, '"' ],  
51073             [    8221, '"' ],  
51074             [    8226, "*" ],  
51075             [    8230, "..." ]
51076         ]; 
51077         var output = input;
51078         Roo.each(swapCodes, function(sw) { 
51079             var swapper = new RegExp("\\u" + sw[0].toString(16), "g"); // hex codes
51080             
51081             output = output.replace(swapper, sw[1]);
51082         });
51083         
51084         return output;
51085     },
51086     
51087      
51088     
51089         
51090     
51091     cleanUpChild : function (node)
51092     {
51093         
51094         new Roo.htmleditor.FilterComment({node : node});
51095         new Roo.htmleditor.FilterAttributes({
51096                 node : node,
51097                 attrib_black : this.ablack,
51098                 attrib_clean : this.aclean,
51099                 style_white : this.cwhite,
51100                 style_black : this.cblack
51101         });
51102         new Roo.htmleditor.FilterBlack({ node : node, tag : this.black});
51103         new Roo.htmleditor.FilterKeepChildren({node : node, tag : this.tag_remove} );
51104          
51105         
51106     },
51107     
51108     /**
51109      * Clean up MS wordisms...
51110      * @deprecated - use filter directly
51111      */
51112     cleanWord : function(node)
51113     {
51114         new Roo.htmleditor.FilterWord({ node : node ? node : this.doc.body });
51115         new Roo.htmleditor.FilterKeepChildren({node : node ? node : this.doc.body, tag : [ 'FONT', ':' ]} );
51116         
51117     },
51118    
51119     
51120     /**
51121
51122      * @deprecated - use filters
51123      */
51124     cleanTableWidths : function(node)
51125     {
51126         new Roo.htmleditor.FilterTableWidth({ node : node ? node : this.doc.body});
51127         
51128  
51129     },
51130     
51131      
51132         
51133     applyBlacklists : function()
51134     {
51135         var w = typeof(this.owner.white) != 'undefined' && this.owner.white ? this.owner.white  : [];
51136         var b = typeof(this.owner.black) != 'undefined' && this.owner.black ? this.owner.black :  [];
51137         
51138         this.aclean = typeof(this.owner.aclean) != 'undefined' && this.owner.aclean ? this.owner.aclean :  Roo.HtmlEditorCore.aclean;
51139         this.ablack = typeof(this.owner.ablack) != 'undefined' && this.owner.ablack ? this.owner.ablack :  Roo.HtmlEditorCore.ablack;
51140         this.tag_remove = typeof(this.owner.tag_remove) != 'undefined' && this.owner.tag_remove ? this.owner.tag_remove :  Roo.HtmlEditorCore.tag_remove;
51141         
51142         this.white = [];
51143         this.black = [];
51144         Roo.each(Roo.HtmlEditorCore.white, function(tag) {
51145             if (b.indexOf(tag) > -1) {
51146                 return;
51147             }
51148             this.white.push(tag);
51149             
51150         }, this);
51151         
51152         Roo.each(w, function(tag) {
51153             if (b.indexOf(tag) > -1) {
51154                 return;
51155             }
51156             if (this.white.indexOf(tag) > -1) {
51157                 return;
51158             }
51159             this.white.push(tag);
51160             
51161         }, this);
51162         
51163         
51164         Roo.each(Roo.HtmlEditorCore.black, function(tag) {
51165             if (w.indexOf(tag) > -1) {
51166                 return;
51167             }
51168             this.black.push(tag);
51169             
51170         }, this);
51171         
51172         Roo.each(b, function(tag) {
51173             if (w.indexOf(tag) > -1) {
51174                 return;
51175             }
51176             if (this.black.indexOf(tag) > -1) {
51177                 return;
51178             }
51179             this.black.push(tag);
51180             
51181         }, this);
51182         
51183         
51184         w = typeof(this.owner.cwhite) != 'undefined' && this.owner.cwhite ? this.owner.cwhite  : [];
51185         b = typeof(this.owner.cblack) != 'undefined' && this.owner.cblack ? this.owner.cblack :  [];
51186         
51187         this.cwhite = [];
51188         this.cblack = [];
51189         Roo.each(Roo.HtmlEditorCore.cwhite, function(tag) {
51190             if (b.indexOf(tag) > -1) {
51191                 return;
51192             }
51193             this.cwhite.push(tag);
51194             
51195         }, this);
51196         
51197         Roo.each(w, function(tag) {
51198             if (b.indexOf(tag) > -1) {
51199                 return;
51200             }
51201             if (this.cwhite.indexOf(tag) > -1) {
51202                 return;
51203             }
51204             this.cwhite.push(tag);
51205             
51206         }, this);
51207         
51208         
51209         Roo.each(Roo.HtmlEditorCore.cblack, function(tag) {
51210             if (w.indexOf(tag) > -1) {
51211                 return;
51212             }
51213             this.cblack.push(tag);
51214             
51215         }, this);
51216         
51217         Roo.each(b, function(tag) {
51218             if (w.indexOf(tag) > -1) {
51219                 return;
51220             }
51221             if (this.cblack.indexOf(tag) > -1) {
51222                 return;
51223             }
51224             this.cblack.push(tag);
51225             
51226         }, this);
51227     },
51228     
51229     setStylesheets : function(stylesheets)
51230     {
51231         if(typeof(stylesheets) == 'string'){
51232             Roo.get(this.iframe.contentDocument.head).createChild({
51233                 tag : 'link',
51234                 rel : 'stylesheet',
51235                 type : 'text/css',
51236                 href : stylesheets
51237             });
51238             
51239             return;
51240         }
51241         var _this = this;
51242      
51243         Roo.each(stylesheets, function(s) {
51244             if(!s.length){
51245                 return;
51246             }
51247             
51248             Roo.get(_this.iframe.contentDocument.head).createChild({
51249                 tag : 'link',
51250                 rel : 'stylesheet',
51251                 type : 'text/css',
51252                 href : s
51253             });
51254         });
51255
51256         
51257     },
51258     
51259     
51260     updateLanguage : function()
51261     {
51262         if (!this.iframe || !this.iframe.contentDocument) {
51263             return;
51264         }
51265         Roo.get(this.iframe.contentDocument.body).attr("lang", this.language);
51266     },
51267     
51268     
51269     removeStylesheets : function()
51270     {
51271         var _this = this;
51272         
51273         Roo.each(Roo.get(_this.iframe.contentDocument.head).select('link[rel=stylesheet]', true).elements, function(s){
51274             s.remove();
51275         });
51276     },
51277     
51278     setStyle : function(style)
51279     {
51280         Roo.get(this.iframe.contentDocument.head).createChild({
51281             tag : 'style',
51282             type : 'text/css',
51283             html : style
51284         });
51285
51286         return;
51287     }
51288     
51289     // hide stuff that is not compatible
51290     /**
51291      * @event blur
51292      * @hide
51293      */
51294     /**
51295      * @event change
51296      * @hide
51297      */
51298     /**
51299      * @event focus
51300      * @hide
51301      */
51302     /**
51303      * @event specialkey
51304      * @hide
51305      */
51306     /**
51307      * @cfg {String} fieldClass @hide
51308      */
51309     /**
51310      * @cfg {String} focusClass @hide
51311      */
51312     /**
51313      * @cfg {String} autoCreate @hide
51314      */
51315     /**
51316      * @cfg {String} inputType @hide
51317      */
51318     /**
51319      * @cfg {String} invalidClass @hide
51320      */
51321     /**
51322      * @cfg {String} invalidText @hide
51323      */
51324     /**
51325      * @cfg {String} msgFx @hide
51326      */
51327     /**
51328      * @cfg {String} validateOnBlur @hide
51329      */
51330 });
51331
51332 Roo.HtmlEditorCore.white = [
51333         'AREA', 'BR', 'IMG', 'INPUT', 'HR', 'WBR',
51334         
51335        'ADDRESS', 'BLOCKQUOTE', 'CENTER', 'DD',      'DIR',       'DIV', 
51336        'DL',      'DT',         'H1',     'H2',      'H3',        'H4', 
51337        'H5',      'H6',         'HR',     'ISINDEX', 'LISTING',   'MARQUEE', 
51338        'MENU',    'MULTICOL',   'OL',     'P',       'PLAINTEXT', 'PRE', 
51339        'TABLE',   'UL',         'XMP', 
51340        
51341        'CAPTION', 'COL', 'COLGROUP', 'TBODY', 'TD', 'TFOOT', 'TH', 
51342       'THEAD',   'TR', 
51343      
51344       'DIR', 'MENU', 'OL', 'UL', 'DL',
51345        
51346       'EMBED',  'OBJECT'
51347 ];
51348
51349
51350 Roo.HtmlEditorCore.black = [
51351     //    'embed',  'object', // enable - backend responsiblity to clean thiese
51352         'APPLET', // 
51353         'BASE',   'BASEFONT', 'BGSOUND', 'BLINK',  'BODY', 
51354         'FRAME',  'FRAMESET', 'HEAD',    'HTML',   'ILAYER', 
51355         'IFRAME', 'LAYER',  'LINK',     'META',    'OBJECT',   
51356         'SCRIPT', 'STYLE' ,'TITLE',  'XML',
51357         //'FONT' // CLEAN LATER..
51358         'COLGROUP', 'COL'   // messy tables.
51359         
51360         
51361 ];
51362 Roo.HtmlEditorCore.clean = [ // ?? needed???
51363      'SCRIPT', 'STYLE', 'TITLE', 'XML'
51364 ];
51365 Roo.HtmlEditorCore.tag_remove = [
51366     'FONT', 'TBODY'  
51367 ];
51368 // attributes..
51369
51370 Roo.HtmlEditorCore.ablack = [
51371     'on'
51372 ];
51373     
51374 Roo.HtmlEditorCore.aclean = [ 
51375     'action', 'background', 'codebase', 'dynsrc', 'href', 'lowsrc' 
51376 ];
51377
51378 // protocols..
51379 Roo.HtmlEditorCore.pwhite= [
51380         'http',  'https',  'mailto'
51381 ];
51382
51383 // white listed style attributes.
51384 Roo.HtmlEditorCore.cwhite= [
51385       //  'text-align', /// default is to allow most things..
51386       
51387          
51388 //        'font-size'//??
51389 ];
51390
51391 // black listed style attributes.
51392 Roo.HtmlEditorCore.cblack= [
51393       //  'font-size' -- this can be set by the project 
51394 ];
51395
51396
51397
51398
51399     //<script type="text/javascript">
51400
51401 /*
51402  * Ext JS Library 1.1.1
51403  * Copyright(c) 2006-2007, Ext JS, LLC.
51404  * Licence LGPL
51405  * 
51406  */
51407  
51408  
51409 Roo.form.HtmlEditor = function(config){
51410     
51411     
51412     
51413     Roo.form.HtmlEditor.superclass.constructor.call(this, config);
51414     
51415     if (!this.toolbars) {
51416         this.toolbars = [];
51417     }
51418     this.editorcore = new Roo.HtmlEditorCore(Roo.apply({ owner : this} , config));
51419     
51420     
51421 };
51422
51423 /**
51424  * @class Roo.form.HtmlEditor
51425  * @extends Roo.form.Field
51426  * Provides a lightweight HTML Editor component.
51427  *
51428  * This has been tested on Fireforx / Chrome.. IE may not be so great..
51429  * 
51430  * <br><br><b>Note: The focus/blur and validation marking functionality inherited from Ext.form.Field is NOT
51431  * supported by this editor.</b><br/><br/>
51432  * An Editor is a sensitive component that can't be used in all spots standard fields can be used. Putting an Editor within
51433  * any element that has display set to 'none' can cause problems in Safari and Firefox.<br/><br/>
51434  */
51435 Roo.extend(Roo.form.HtmlEditor, Roo.form.Field, {
51436     /**
51437      * @cfg {Boolean} clearUp
51438      */
51439     clearUp : true,
51440       /**
51441      * @cfg {Array} toolbars Array of toolbars. - defaults to just the Standard one
51442      */
51443     toolbars : false,
51444    
51445      /**
51446      * @cfg {String} resizable  's' or 'se' or 'e' - wrapps the element in a
51447      *                        Roo.resizable.
51448      */
51449     resizable : false,
51450      /**
51451      * @cfg {Number} height (in pixels)
51452      */   
51453     height: 300,
51454    /**
51455      * @cfg {Number} width (in pixels)
51456      */   
51457     width: 500,
51458     
51459     /**
51460      * @cfg {Array} stylesheets url of stylesheets. set to [] to disable stylesheets - this is usally a good idea  rootURL + '/roojs1/css/undoreset.css',   .
51461      * 
51462      */
51463     stylesheets: false,
51464     
51465     
51466      /**
51467      * @cfg {Array} blacklist of css styles style attributes (blacklist overrides whitelist)
51468      * 
51469      */
51470     cblack: false,
51471     /**
51472      * @cfg {Array} whitelist of css styles style attributes (blacklist overrides whitelist)
51473      * 
51474      */
51475     cwhite: false,
51476     
51477      /**
51478      * @cfg {Array} blacklist of html tags - in addition to standard blacklist.
51479      * 
51480      */
51481     black: false,
51482     /**
51483      * @cfg {Array} whitelist of html tags - in addition to statndard whitelist
51484      * 
51485      */
51486     white: false,
51487     /**
51488      * @cfg {boolean} allowComments - default false - allow comments in HTML source - by default they are stripped - if you are editing email you may need this.
51489      */
51490     allowComments: false,
51491     /**
51492      * @cfg {boolean} enableBlocks - default true - if the block editor (table and figure should be enabled)
51493      */
51494     enableBlocks : true,
51495     
51496     /**
51497      * @cfg {boolean} autoClean - default true - loading and saving will remove quite a bit of formating,
51498      *         if you are doing an email editor, this probably needs disabling, it's designed
51499      */
51500     autoClean: true,
51501     /**
51502      * @cfg {string} bodyCls default '' default classes to add to body of editable area - usually undoreset is a good start..
51503      */
51504     bodyCls : '',
51505     /**
51506      * @cfg {String} language default en - language of text (usefull for rtl languages)
51507      * 
51508      */
51509     language: 'en',
51510     
51511      
51512     // id of frame..
51513     frameId: false,
51514     
51515     // private properties
51516     validationEvent : false,
51517     deferHeight: true,
51518     initialized : false,
51519     activated : false,
51520     
51521     onFocus : Roo.emptyFn,
51522     iframePad:3,
51523     hideMode:'offsets',
51524     
51525     actionMode : 'container', // defaults to hiding it...
51526     
51527     defaultAutoCreate : { // modified by initCompnoent..
51528         tag: "textarea",
51529         style:"width:500px;height:300px;",
51530         autocomplete: "new-password"
51531     },
51532
51533     // private
51534     initComponent : function(){
51535         this.addEvents({
51536             /**
51537              * @event initialize
51538              * Fires when the editor is fully initialized (including the iframe)
51539              * @param {HtmlEditor} this
51540              */
51541             initialize: true,
51542             /**
51543              * @event activate
51544              * Fires when the editor is first receives the focus. Any insertion must wait
51545              * until after this event.
51546              * @param {HtmlEditor} this
51547              */
51548             activate: true,
51549              /**
51550              * @event beforesync
51551              * Fires before the textarea is updated with content from the editor iframe. Return false
51552              * to cancel the sync.
51553              * @param {HtmlEditor} this
51554              * @param {String} html
51555              */
51556             beforesync: true,
51557              /**
51558              * @event beforepush
51559              * Fires before the iframe editor is updated with content from the textarea. Return false
51560              * to cancel the push.
51561              * @param {HtmlEditor} this
51562              * @param {String} html
51563              */
51564             beforepush: true,
51565              /**
51566              * @event sync
51567              * Fires when the textarea is updated with content from the editor iframe.
51568              * @param {HtmlEditor} this
51569              * @param {String} html
51570              */
51571             sync: true,
51572              /**
51573              * @event push
51574              * Fires when the iframe editor is updated with content from the textarea.
51575              * @param {HtmlEditor} this
51576              * @param {String} html
51577              */
51578             push: true,
51579              /**
51580              * @event editmodechange
51581              * Fires when the editor switches edit modes
51582              * @param {HtmlEditor} this
51583              * @param {Boolean} sourceEdit True if source edit, false if standard editing.
51584              */
51585             editmodechange: true,
51586             /**
51587              * @event editorevent
51588              * Fires when on any editor (mouse up/down cursor movement etc.) - used for toolbar hooks.
51589              * @param {HtmlEditor} this
51590              */
51591             editorevent: true,
51592             /**
51593              * @event firstfocus
51594              * Fires when on first focus - needed by toolbars..
51595              * @param {HtmlEditor} this
51596              */
51597             firstfocus: true,
51598             /**
51599              * @event autosave
51600              * Auto save the htmlEditor value as a file into Events
51601              * @param {HtmlEditor} this
51602              */
51603             autosave: true,
51604             /**
51605              * @event savedpreview
51606              * preview the saved version of htmlEditor
51607              * @param {HtmlEditor} this
51608              */
51609             savedpreview: true,
51610             
51611             /**
51612             * @event stylesheetsclick
51613             * Fires when press the Sytlesheets button
51614             * @param {Roo.HtmlEditorCore} this
51615             */
51616             stylesheetsclick: true,
51617             /**
51618             * @event paste
51619             * Fires when press user pastes into the editor
51620             * @param {Roo.HtmlEditorCore} this
51621             */
51622             paste: true 
51623         });
51624         this.defaultAutoCreate =  {
51625             tag: "textarea",
51626             style:'width: ' + this.width + 'px;height: ' + this.height + 'px;',
51627             autocomplete: "new-password"
51628         };
51629     },
51630
51631     /**
51632      * Protected method that will not generally be called directly. It
51633      * is called when the editor creates its toolbar. Override this method if you need to
51634      * add custom toolbar buttons.
51635      * @param {HtmlEditor} editor
51636      */
51637     createToolbar : function(editor){
51638         Roo.log("create toolbars");
51639         if (!editor.toolbars || !editor.toolbars.length) {
51640             editor.toolbars = [ new Roo.form.HtmlEditor.ToolbarStandard() ]; // can be empty?
51641         }
51642         
51643         for (var i =0 ; i < editor.toolbars.length;i++) {
51644             editor.toolbars[i] = Roo.factory(
51645                     typeof(editor.toolbars[i]) == 'string' ?
51646                         { xtype: editor.toolbars[i]} : editor.toolbars[i],
51647                 Roo.form.HtmlEditor);
51648             editor.toolbars[i].init(editor);
51649         }
51650          
51651         
51652     },
51653     /**
51654      * get the Context selected node
51655      * @returns {DomElement|boolean} selected node if active or false if none
51656      * 
51657      */
51658     getSelectedNode : function()
51659     {
51660         if (this.toolbars.length < 2 || !this.toolbars[1].tb) {
51661             return false;
51662         }
51663         return this.toolbars[1].tb.selectedNode;
51664     
51665     },
51666     // private
51667     onRender : function(ct, position)
51668     {
51669         var _t = this;
51670         Roo.form.HtmlEditor.superclass.onRender.call(this, ct, position);
51671         
51672         this.wrap = this.el.wrap({
51673             cls:'x-html-editor-wrap', cn:{cls:'x-html-editor-tb'}
51674         });
51675         
51676         this.editorcore.onRender(ct, position);
51677          
51678         if (this.resizable) {
51679             this.resizeEl = new Roo.Resizable(this.wrap, {
51680                 pinned : true,
51681                 wrap: true,
51682                 dynamic : true,
51683                 minHeight : this.height,
51684                 height: this.height,
51685                 handles : this.resizable,
51686                 width: this.width,
51687                 listeners : {
51688                     resize : function(r, w, h) {
51689                         _t.onResize(w,h); // -something
51690                     }
51691                 }
51692             });
51693             
51694         }
51695         this.createToolbar(this);
51696        
51697         
51698         if(!this.width){
51699             this.setSize(this.wrap.getSize());
51700         }
51701         if (this.resizeEl) {
51702             this.resizeEl.resizeTo.defer(100, this.resizeEl,[ this.width,this.height ] );
51703             // should trigger onReize..
51704         }
51705         
51706         this.keyNav = new Roo.KeyNav(this.el, {
51707             
51708             "tab" : function(e){
51709                 e.preventDefault();
51710                 
51711                 var value = this.getValue();
51712                 
51713                 var start = this.el.dom.selectionStart;
51714                 var end = this.el.dom.selectionEnd;
51715                 
51716                 if(!e.shiftKey){
51717                     
51718                     this.setValue(value.substring(0, start) + "\t" + value.substring(end));
51719                     this.el.dom.setSelectionRange(end + 1, end + 1);
51720                     return;
51721                 }
51722                 
51723                 var f = value.substring(0, start).split("\t");
51724                 
51725                 if(f.pop().length != 0){
51726                     return;
51727                 }
51728                 
51729                 this.setValue(f.join("\t") + value.substring(end));
51730                 this.el.dom.setSelectionRange(start - 1, start - 1);
51731                 
51732             },
51733             
51734             "home" : function(e){
51735                 e.preventDefault();
51736                 
51737                 var curr = this.el.dom.selectionStart;
51738                 var lines = this.getValue().split("\n");
51739                 
51740                 if(!lines.length){
51741                     return;
51742                 }
51743                 
51744                 if(e.ctrlKey){
51745                     this.el.dom.setSelectionRange(0, 0);
51746                     return;
51747                 }
51748                 
51749                 var pos = 0;
51750                 
51751                 for (var i = 0; i < lines.length;i++) {
51752                     pos += lines[i].length;
51753                     
51754                     if(i != 0){
51755                         pos += 1;
51756                     }
51757                     
51758                     if(pos < curr){
51759                         continue;
51760                     }
51761                     
51762                     pos -= lines[i].length;
51763                     
51764                     break;
51765                 }
51766                 
51767                 if(!e.shiftKey){
51768                     this.el.dom.setSelectionRange(pos, pos);
51769                     return;
51770                 }
51771                 
51772                 this.el.dom.selectionStart = pos;
51773                 this.el.dom.selectionEnd = curr;
51774             },
51775             
51776             "end" : function(e){
51777                 e.preventDefault();
51778                 
51779                 var curr = this.el.dom.selectionStart;
51780                 var lines = this.getValue().split("\n");
51781                 
51782                 if(!lines.length){
51783                     return;
51784                 }
51785                 
51786                 if(e.ctrlKey){
51787                     this.el.dom.setSelectionRange(this.getValue().length, this.getValue().length);
51788                     return;
51789                 }
51790                 
51791                 var pos = 0;
51792                 
51793                 for (var i = 0; i < lines.length;i++) {
51794                     
51795                     pos += lines[i].length;
51796                     
51797                     if(i != 0){
51798                         pos += 1;
51799                     }
51800                     
51801                     if(pos < curr){
51802                         continue;
51803                     }
51804                     
51805                     break;
51806                 }
51807                 
51808                 if(!e.shiftKey){
51809                     this.el.dom.setSelectionRange(pos, pos);
51810                     return;
51811                 }
51812                 
51813                 this.el.dom.selectionStart = curr;
51814                 this.el.dom.selectionEnd = pos;
51815             },
51816
51817             scope : this,
51818
51819             doRelay : function(foo, bar, hname){
51820                 return Roo.KeyNav.prototype.doRelay.apply(this, arguments);
51821             },
51822
51823             forceKeyDown: true
51824         });
51825         
51826 //        if(this.autosave && this.w){
51827 //            this.autoSaveFn = setInterval(this.autosave, 1000);
51828 //        }
51829     },
51830
51831     // private
51832     onResize : function(w, h)
51833     {
51834         Roo.form.HtmlEditor.superclass.onResize.apply(this, arguments);
51835         var ew = false;
51836         var eh = false;
51837         
51838         if(this.el ){
51839             if(typeof w == 'number'){
51840                 var aw = w - this.wrap.getFrameWidth('lr');
51841                 this.el.setWidth(this.adjustWidth('textarea', aw));
51842                 ew = aw;
51843             }
51844             if(typeof h == 'number'){
51845                 var tbh = 0;
51846                 for (var i =0; i < this.toolbars.length;i++) {
51847                     // fixme - ask toolbars for heights?
51848                     tbh += this.toolbars[i].tb.el.getHeight();
51849                     if (this.toolbars[i].footer) {
51850                         tbh += this.toolbars[i].footer.el.getHeight();
51851                     }
51852                 }
51853                 
51854                 
51855                 
51856                 
51857                 var ah = h - this.wrap.getFrameWidth('tb') - tbh;// this.tb.el.getHeight();
51858                 ah -= 5; // knock a few pixes off for look..
51859 //                Roo.log(ah);
51860                 this.el.setHeight(this.adjustWidth('textarea', ah));
51861                 var eh = ah;
51862             }
51863         }
51864         Roo.log('onResize:' + [w,h,ew,eh].join(',') );
51865         this.editorcore.onResize(ew,eh);
51866         
51867     },
51868
51869     /**
51870      * Toggles the editor between standard and source edit mode.
51871      * @param {Boolean} sourceEdit (optional) True for source edit, false for standard
51872      */
51873     toggleSourceEdit : function(sourceEditMode)
51874     {
51875         this.editorcore.toggleSourceEdit(sourceEditMode);
51876         
51877         if(this.editorcore.sourceEditMode){
51878             Roo.log('editor - showing textarea');
51879             
51880 //            Roo.log('in');
51881 //            Roo.log(this.syncValue());
51882             this.editorcore.syncValue();
51883             this.el.removeClass('x-hidden');
51884             this.el.dom.removeAttribute('tabIndex');
51885             this.el.focus();
51886             this.el.dom.scrollTop = 0;
51887             
51888             
51889             for (var i = 0; i < this.toolbars.length; i++) {
51890                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
51891                     this.toolbars[i].tb.hide();
51892                     this.toolbars[i].footer.hide();
51893                 }
51894             }
51895             
51896         }else{
51897             Roo.log('editor - hiding textarea');
51898 //            Roo.log('out')
51899 //            Roo.log(this.pushValue()); 
51900             this.editorcore.pushValue();
51901             
51902             this.el.addClass('x-hidden');
51903             this.el.dom.setAttribute('tabIndex', -1);
51904             
51905             for (var i = 0; i < this.toolbars.length; i++) {
51906                 if(this.toolbars[i] instanceof Roo.form.HtmlEditor.ToolbarContext){
51907                     this.toolbars[i].tb.show();
51908                     this.toolbars[i].footer.show();
51909                 }
51910             }
51911             
51912             //this.deferFocus();
51913         }
51914         
51915         this.setSize(this.wrap.getSize());
51916         this.onResize(this.wrap.getSize().width, this.wrap.getSize().height);
51917         
51918         this.fireEvent('editmodechange', this, this.editorcore.sourceEditMode);
51919     },
51920  
51921     // private (for BoxComponent)
51922     adjustSize : Roo.BoxComponent.prototype.adjustSize,
51923
51924     // private (for BoxComponent)
51925     getResizeEl : function(){
51926         return this.wrap;
51927     },
51928
51929     // private (for BoxComponent)
51930     getPositionEl : function(){
51931         return this.wrap;
51932     },
51933
51934     // private
51935     initEvents : function(){
51936         this.originalValue = this.getValue();
51937     },
51938
51939     /**
51940      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
51941      * @method
51942      */
51943     markInvalid : Roo.emptyFn,
51944     /**
51945      * Overridden and disabled. The editor element does not support standard valid/invalid marking. @hide
51946      * @method
51947      */
51948     clearInvalid : Roo.emptyFn,
51949
51950     setValue : function(v){
51951         Roo.form.HtmlEditor.superclass.setValue.call(this, v);
51952         this.editorcore.pushValue();
51953     },
51954
51955     /**
51956      * update the language in the body - really done by core
51957      * @param {String} language - eg. en / ar / zh-CN etc..
51958      */
51959     updateLanguage : function(lang)
51960     {
51961         this.language = lang;
51962         this.editorcore.language = lang;
51963         this.editorcore.updateLanguage();
51964      
51965     },
51966     // private
51967     deferFocus : function(){
51968         this.focus.defer(10, this);
51969     },
51970
51971     // doc'ed in Field
51972     focus : function(){
51973         this.editorcore.focus();
51974         
51975     },
51976       
51977
51978     // private
51979     onDestroy : function(){
51980         
51981         
51982         
51983         if(this.rendered){
51984             
51985             for (var i =0; i < this.toolbars.length;i++) {
51986                 // fixme - ask toolbars for heights?
51987                 this.toolbars[i].onDestroy();
51988             }
51989             
51990             this.wrap.dom.innerHTML = '';
51991             this.wrap.remove();
51992         }
51993     },
51994
51995     // private
51996     onFirstFocus : function(){
51997         //Roo.log("onFirstFocus");
51998         this.editorcore.onFirstFocus();
51999          for (var i =0; i < this.toolbars.length;i++) {
52000             this.toolbars[i].onFirstFocus();
52001         }
52002         
52003     },
52004     
52005     // private
52006     syncValue : function()
52007     {
52008         this.editorcore.syncValue();
52009     },
52010     
52011     pushValue : function()
52012     {
52013         this.editorcore.pushValue();
52014     },
52015     
52016     setStylesheets : function(stylesheets)
52017     {
52018         this.editorcore.setStylesheets(stylesheets);
52019     },
52020     
52021     removeStylesheets : function()
52022     {
52023         this.editorcore.removeStylesheets();
52024     }
52025      
52026     
52027     // hide stuff that is not compatible
52028     /**
52029      * @event blur
52030      * @hide
52031      */
52032     /**
52033      * @event change
52034      * @hide
52035      */
52036     /**
52037      * @event focus
52038      * @hide
52039      */
52040     /**
52041      * @event specialkey
52042      * @hide
52043      */
52044     /**
52045      * @cfg {String} fieldClass @hide
52046      */
52047     /**
52048      * @cfg {String} focusClass @hide
52049      */
52050     /**
52051      * @cfg {String} autoCreate @hide
52052      */
52053     /**
52054      * @cfg {String} inputType @hide
52055      */
52056     /**
52057      * @cfg {String} invalidClass @hide
52058      */
52059     /**
52060      * @cfg {String} invalidText @hide
52061      */
52062     /**
52063      * @cfg {String} msgFx @hide
52064      */
52065     /**
52066      * @cfg {String} validateOnBlur @hide
52067      */
52068 });
52069  
52070     /*
52071  * Based on
52072  * Ext JS Library 1.1.1
52073  * Copyright(c) 2006-2007, Ext JS, LLC.
52074  *  
52075  
52076  */
52077
52078 /**
52079  * @class Roo.form.HtmlEditor.ToolbarStandard
52080  * Basic Toolbar
52081
52082  * Usage:
52083  *
52084  new Roo.form.HtmlEditor({
52085     ....
52086     toolbars : [
52087         new Roo.form.HtmlEditorToolbar1({
52088             disable : { fonts: 1 , format: 1, ..., ... , ...],
52089             btns : [ .... ]
52090         })
52091     }
52092      
52093  * 
52094  * @cfg {Object} disable List of elements to disable..
52095  * @cfg {Roo.Toolbar.Item|Roo.Toolbar.Button|Roo.Toolbar.SplitButton|Roo.form.Field} btns[] List of additional buttons.
52096  * 
52097  * 
52098  * NEEDS Extra CSS? 
52099  * .x-html-editor-tb .x-edit-none .x-btn-text { background: none; }
52100  */
52101  
52102 Roo.form.HtmlEditor.ToolbarStandard = function(config)
52103 {
52104     
52105     Roo.apply(this, config);
52106     
52107     // default disabled, based on 'good practice'..
52108     this.disable = this.disable || {};
52109     Roo.applyIf(this.disable, {
52110         fontSize : true,
52111         colors : true,
52112         specialElements : true
52113     });
52114     
52115     
52116     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
52117     // dont call parent... till later.
52118 }
52119
52120 Roo.form.HtmlEditor.ToolbarStandard.prototype = {
52121     
52122     tb: false,
52123     
52124     rendered: false,
52125     
52126     editor : false,
52127     editorcore : false,
52128     /**
52129      * @cfg {Object} disable  List of toolbar elements to disable
52130          
52131      */
52132     disable : false,
52133     
52134     
52135      /**
52136      * @cfg {String} createLinkText The default text for the create link prompt
52137      */
52138     createLinkText : 'Please enter the URL for the link:',
52139     /**
52140      * @cfg {String} defaultLinkValue The default value for the create link prompt (defaults to http:/ /)
52141      */
52142     defaultLinkValue : 'http:/'+'/',
52143    
52144     
52145       /**
52146      * @cfg {Array} fontFamilies An array of available font families
52147      */
52148     fontFamilies : [
52149         'Arial',
52150         'Courier New',
52151         'Tahoma',
52152         'Times New Roman',
52153         'Verdana'
52154     ],
52155     
52156     specialChars : [
52157            "&#169;",
52158           "&#174;",     
52159           "&#8482;",    
52160           "&#163;" ,    
52161          // "&#8212;",    
52162           "&#8230;",    
52163           "&#247;" ,    
52164         //  "&#225;" ,     ?? a acute?
52165            "&#8364;"    , //Euro
52166        //   "&#8220;"    ,
52167         //  "&#8221;"    ,
52168         //  "&#8226;"    ,
52169           "&#176;"  //   , // degrees
52170
52171          // "&#233;"     , // e ecute
52172          // "&#250;"     , // u ecute?
52173     ],
52174     
52175     specialElements : [
52176         {
52177             text: "Insert Table",
52178             xtype: 'MenuItem',
52179             xns : Roo.Menu,
52180             ihtml :  '<table><tr><td>Cell</td></tr></table>' 
52181                 
52182         },
52183         {    
52184             text: "Insert Image",
52185             xtype: 'MenuItem',
52186             xns : Roo.Menu,
52187             ihtml : '<img src="about:blank"/>'
52188             
52189         }
52190         
52191          
52192     ],
52193     
52194     
52195     inputElements : [ 
52196             "form", "input:text", "input:hidden", "input:checkbox", "input:radio", "input:password", 
52197             "input:submit", "input:button", "select", "textarea", "label" ],
52198     formats : [
52199         ["p"] ,  
52200         ["h1"],["h2"],["h3"],["h4"],["h5"],["h6"], 
52201         ["pre"],[ "code"], 
52202         ["abbr"],[ "acronym"],[ "address"],[ "cite"],[ "samp"],[ "var"],
52203         ['div'],['span'],
52204         ['sup'],['sub']
52205     ],
52206     
52207     cleanStyles : [
52208         "font-size"
52209     ],
52210      /**
52211      * @cfg {String} defaultFont default font to use.
52212      */
52213     defaultFont: 'tahoma',
52214    
52215     fontSelect : false,
52216     
52217     
52218     formatCombo : false,
52219     
52220     init : function(editor)
52221     {
52222         this.editor = editor;
52223         this.editorcore = editor.editorcore ? editor.editorcore : editor;
52224         var editorcore = this.editorcore;
52225         
52226         var _t = this;
52227         
52228         var fid = editorcore.frameId;
52229         var etb = this;
52230         function btn(id, toggle, handler){
52231             var xid = fid + '-'+ id ;
52232             return {
52233                 id : xid,
52234                 cmd : id,
52235                 cls : 'x-btn-icon x-edit-'+id,
52236                 enableToggle:toggle !== false,
52237                 scope: _t, // was editor...
52238                 handler:handler||_t.relayBtnCmd,
52239                 clickEvent:'mousedown',
52240                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
52241                 tabIndex:-1
52242             };
52243         }
52244         
52245         
52246         
52247         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
52248         this.tb = tb;
52249          // stop form submits
52250         tb.el.on('click', function(e){
52251             e.preventDefault(); // what does this do?
52252         });
52253
52254         if(!this.disable.font) { // && !Roo.isSafari){
52255             /* why no safari for fonts 
52256             editor.fontSelect = tb.el.createChild({
52257                 tag:'select',
52258                 tabIndex: -1,
52259                 cls:'x-font-select',
52260                 html: this.createFontOptions()
52261             });
52262             
52263             editor.fontSelect.on('change', function(){
52264                 var font = editor.fontSelect.dom.value;
52265                 editor.relayCmd('fontname', font);
52266                 editor.deferFocus();
52267             }, editor);
52268             
52269             tb.add(
52270                 editor.fontSelect.dom,
52271                 '-'
52272             );
52273             */
52274             
52275         };
52276         if(!this.disable.formats){
52277             this.formatCombo = new Roo.form.ComboBox({
52278                 store: new Roo.data.SimpleStore({
52279                     id : 'tag',
52280                     fields: ['tag'],
52281                     data : this.formats // from states.js
52282                 }),
52283                 blockFocus : true,
52284                 name : '',
52285                 //autoCreate : {tag: "div",  size: "20"},
52286                 displayField:'tag',
52287                 typeAhead: false,
52288                 mode: 'local',
52289                 editable : false,
52290                 triggerAction: 'all',
52291                 emptyText:'Add tag',
52292                 selectOnFocus:true,
52293                 width:135,
52294                 listeners : {
52295                     'select': function(c, r, i) {
52296                         editorcore.insertTag(r.get('tag'));
52297                         editor.focus();
52298                     }
52299                 }
52300
52301             });
52302             tb.addField(this.formatCombo);
52303             
52304         }
52305         
52306         if(!this.disable.format){
52307             tb.add(
52308                 btn('bold'),
52309                 btn('italic'),
52310                 btn('underline'),
52311                 btn('strikethrough')
52312             );
52313         };
52314         if(!this.disable.fontSize){
52315             tb.add(
52316                 '-',
52317                 
52318                 
52319                 btn('increasefontsize', false, editorcore.adjustFont),
52320                 btn('decreasefontsize', false, editorcore.adjustFont)
52321             );
52322         };
52323         
52324         
52325         if(!this.disable.colors){
52326             tb.add(
52327                 '-', {
52328                     id:editorcore.frameId +'-forecolor',
52329                     cls:'x-btn-icon x-edit-forecolor',
52330                     clickEvent:'mousedown',
52331                     tooltip: this.buttonTips['forecolor'] || undefined,
52332                     tabIndex:-1,
52333                     menu : new Roo.menu.ColorMenu({
52334                         allowReselect: true,
52335                         focus: Roo.emptyFn,
52336                         value:'000000',
52337                         plain:true,
52338                         selectHandler: function(cp, color){
52339                             editorcore.execCmd('forecolor', Roo.isSafari || Roo.isIE ? '#'+color : color);
52340                             editor.deferFocus();
52341                         },
52342                         scope: editorcore,
52343                         clickEvent:'mousedown'
52344                     })
52345                 }, {
52346                     id:editorcore.frameId +'backcolor',
52347                     cls:'x-btn-icon x-edit-backcolor',
52348                     clickEvent:'mousedown',
52349                     tooltip: this.buttonTips['backcolor'] || undefined,
52350                     tabIndex:-1,
52351                     menu : new Roo.menu.ColorMenu({
52352                         focus: Roo.emptyFn,
52353                         value:'FFFFFF',
52354                         plain:true,
52355                         allowReselect: true,
52356                         selectHandler: function(cp, color){
52357                             if(Roo.isGecko){
52358                                 editorcore.execCmd('useCSS', false);
52359                                 editorcore.execCmd('hilitecolor', color);
52360                                 editorcore.execCmd('useCSS', true);
52361                                 editor.deferFocus();
52362                             }else{
52363                                 editorcore.execCmd(Roo.isOpera ? 'hilitecolor' : 'backcolor', 
52364                                     Roo.isSafari || Roo.isIE ? '#'+color : color);
52365                                 editor.deferFocus();
52366                             }
52367                         },
52368                         scope:editorcore,
52369                         clickEvent:'mousedown'
52370                     })
52371                 }
52372             );
52373         };
52374         // now add all the items...
52375         
52376
52377         if(!this.disable.alignments){
52378             tb.add(
52379                 '-',
52380                 btn('justifyleft'),
52381                 btn('justifycenter'),
52382                 btn('justifyright')
52383             );
52384         };
52385
52386         //if(!Roo.isSafari){
52387             if(!this.disable.links){
52388                 tb.add(
52389                     '-',
52390                     btn('createlink', false, this.createLink)    /// MOVE TO HERE?!!?!?!?!
52391                 );
52392             };
52393
52394             if(!this.disable.lists){
52395                 tb.add(
52396                     '-',
52397                     btn('insertorderedlist'),
52398                     btn('insertunorderedlist')
52399                 );
52400             }
52401             if(!this.disable.sourceEdit){
52402                 tb.add(
52403                     '-',
52404                     btn('sourceedit', true, function(btn){
52405                         this.toggleSourceEdit(btn.pressed);
52406                     })
52407                 );
52408             }
52409         //}
52410         
52411         var smenu = { };
52412         // special menu.. - needs to be tidied up..
52413         if (!this.disable.special) {
52414             smenu = {
52415                 text: "&#169;",
52416                 cls: 'x-edit-none',
52417                 
52418                 menu : {
52419                     items : []
52420                 }
52421             };
52422             for (var i =0; i < this.specialChars.length; i++) {
52423                 smenu.menu.items.push({
52424                     
52425                     html: this.specialChars[i],
52426                     handler: function(a,b) {
52427                         editorcore.insertAtCursor(String.fromCharCode(a.html.replace('&#','').replace(';', '')));
52428                         //editor.insertAtCursor(a.html);
52429                         
52430                     },
52431                     tabIndex:-1
52432                 });
52433             }
52434             
52435             
52436             tb.add(smenu);
52437             
52438             
52439         }
52440         
52441         var cmenu = { };
52442         if (!this.disable.cleanStyles) {
52443             cmenu = {
52444                 cls: 'x-btn-icon x-btn-clear',
52445                 
52446                 menu : {
52447                     items : []
52448                 }
52449             };
52450             for (var i =0; i < this.cleanStyles.length; i++) {
52451                 cmenu.menu.items.push({
52452                     actiontype : this.cleanStyles[i],
52453                     html: 'Remove ' + this.cleanStyles[i],
52454                     handler: function(a,b) {
52455 //                        Roo.log(a);
52456 //                        Roo.log(b);
52457                         var c = Roo.get(editorcore.doc.body);
52458                         c.select('[style]').each(function(s) {
52459                             s.dom.style.removeProperty(a.actiontype);
52460                         });
52461                         editorcore.syncValue();
52462                     },
52463                     tabIndex:-1
52464                 });
52465             }
52466             cmenu.menu.items.push({
52467                 actiontype : 'tablewidths',
52468                 html: 'Remove Table Widths',
52469                 handler: function(a,b) {
52470                     editorcore.cleanTableWidths();
52471                     editorcore.syncValue();
52472                 },
52473                 tabIndex:-1
52474             });
52475             cmenu.menu.items.push({
52476                 actiontype : 'word',
52477                 html: 'Remove MS Word Formating',
52478                 handler: function(a,b) {
52479                     editorcore.cleanWord();
52480                     editorcore.syncValue();
52481                 },
52482                 tabIndex:-1
52483             });
52484             
52485             cmenu.menu.items.push({
52486                 actiontype : 'all',
52487                 html: 'Remove All Styles',
52488                 handler: function(a,b) {
52489                     
52490                     var c = Roo.get(editorcore.doc.body);
52491                     c.select('[style]').each(function(s) {
52492                         s.dom.removeAttribute('style');
52493                     });
52494                     editorcore.syncValue();
52495                 },
52496                 tabIndex:-1
52497             });
52498             
52499             cmenu.menu.items.push({
52500                 actiontype : 'all',
52501                 html: 'Remove All CSS Classes',
52502                 handler: function(a,b) {
52503                     
52504                     var c = Roo.get(editorcore.doc.body);
52505                     c.select('[class]').each(function(s) {
52506                         s.dom.removeAttribute('class');
52507                     });
52508                     editorcore.cleanWord();
52509                     editorcore.syncValue();
52510                 },
52511                 tabIndex:-1
52512             });
52513             
52514              cmenu.menu.items.push({
52515                 actiontype : 'tidy',
52516                 html: 'Tidy HTML Source',
52517                 handler: function(a,b) {
52518                     new Roo.htmleditor.Tidy(editorcore.doc.body);
52519                     editorcore.syncValue();
52520                 },
52521                 tabIndex:-1
52522             });
52523             
52524             
52525             tb.add(cmenu);
52526         }
52527          
52528         if (!this.disable.specialElements) {
52529             var semenu = {
52530                 text: "Other;",
52531                 cls: 'x-edit-none',
52532                 menu : {
52533                     items : []
52534                 }
52535             };
52536             for (var i =0; i < this.specialElements.length; i++) {
52537                 semenu.menu.items.push(
52538                     Roo.apply({ 
52539                         handler: function(a,b) {
52540                             editor.insertAtCursor(this.ihtml);
52541                         }
52542                     }, this.specialElements[i])
52543                 );
52544                     
52545             }
52546             
52547             tb.add(semenu);
52548             
52549             
52550         }
52551          
52552         
52553         if (this.btns) {
52554             for(var i =0; i< this.btns.length;i++) {
52555                 var b = Roo.factory(this.btns[i],this.btns[i].xns || Roo.form);
52556                 b.cls =  'x-edit-none';
52557                 
52558                 if(typeof(this.btns[i].cls) != 'undefined' && this.btns[i].cls.indexOf('x-init-enable') !== -1){
52559                     b.cls += ' x-init-enable';
52560                 }
52561                 
52562                 b.scope = editorcore;
52563                 tb.add(b);
52564             }
52565         
52566         }
52567         
52568         
52569         
52570         // disable everything...
52571         
52572         this.tb.items.each(function(item){
52573             
52574            if(
52575                 item.id != editorcore.frameId+ '-sourceedit' && 
52576                 (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)
52577             ){
52578                 
52579                 item.disable();
52580             }
52581         });
52582         this.rendered = true;
52583         
52584         // the all the btns;
52585         editor.on('editorevent', this.updateToolbar, this);
52586         // other toolbars need to implement this..
52587         //editor.on('editmodechange', this.updateToolbar, this);
52588     },
52589     
52590     
52591     relayBtnCmd : function(btn) {
52592         this.editorcore.relayCmd(btn.cmd);
52593     },
52594     // private used internally
52595     createLink : function(){
52596         //Roo.log("create link?");
52597         var ec = this.editorcore;
52598         var ar = ec.getAllAncestors();
52599         var n = false;
52600         for(var i = 0;i< ar.length;i++) {
52601             if (ar[i] && ar[i].nodeName == 'A') {
52602                 n = ar[i];
52603                 break;
52604             }
52605         }
52606         
52607         (function() {
52608             
52609             Roo.MessageBox.show({
52610                 title : "Add / Edit Link URL",
52611                 msg : "Enter the url for the link",
52612                 buttons: Roo.MessageBox.OKCANCEL,
52613                 fn: function(btn, url){
52614                     if (btn != 'ok') {
52615                         return;
52616                     }
52617                     if(url && url != 'http:/'+'/'){
52618                         if (n) {
52619                             n.setAttribute('href', url);
52620                         } else {
52621                             ec.relayCmd('createlink', url);
52622                         }
52623                     }
52624                 },
52625                 minWidth:250,
52626                 prompt:true,
52627                 //multiline: multiline,
52628                 modal : true,
52629                 value :  n  ? n.getAttribute('href') : '' 
52630             });
52631             
52632              
52633         }).defer(100, this); // we have to defer this , otherwise the mouse click gives focus to the main window.
52634         
52635     },
52636
52637     
52638     /**
52639      * Protected method that will not generally be called directly. It triggers
52640      * a toolbar update by reading the markup state of the current selection in the editor.
52641      */
52642     updateToolbar: function(){
52643
52644         if(!this.editorcore.activated){
52645             this.editor.onFirstFocus();
52646             return;
52647         }
52648
52649         var btns = this.tb.items.map, 
52650             doc = this.editorcore.doc,
52651             frameId = this.editorcore.frameId;
52652
52653         if(!this.disable.font && !Roo.isSafari){
52654             /*
52655             var name = (doc.queryCommandValue('FontName')||this.editor.defaultFont).toLowerCase();
52656             if(name != this.fontSelect.dom.value){
52657                 this.fontSelect.dom.value = name;
52658             }
52659             */
52660         }
52661         if(!this.disable.format){
52662             btns[frameId + '-bold'].toggle(doc.queryCommandState('bold'));
52663             btns[frameId + '-italic'].toggle(doc.queryCommandState('italic'));
52664             btns[frameId + '-underline'].toggle(doc.queryCommandState('underline'));
52665             btns[frameId + '-strikethrough'].toggle(doc.queryCommandState('strikethrough'));
52666         }
52667         if(!this.disable.alignments){
52668             btns[frameId + '-justifyleft'].toggle(doc.queryCommandState('justifyleft'));
52669             btns[frameId + '-justifycenter'].toggle(doc.queryCommandState('justifycenter'));
52670             btns[frameId + '-justifyright'].toggle(doc.queryCommandState('justifyright'));
52671         }
52672         if(!Roo.isSafari && !this.disable.lists){
52673             btns[frameId + '-insertorderedlist'].toggle(doc.queryCommandState('insertorderedlist'));
52674             btns[frameId + '-insertunorderedlist'].toggle(doc.queryCommandState('insertunorderedlist'));
52675         }
52676         
52677         var ans = this.editorcore.getAllAncestors();
52678         if (this.formatCombo) {
52679             
52680             
52681             var store = this.formatCombo.store;
52682             this.formatCombo.setValue("");
52683             for (var i =0; i < ans.length;i++) {
52684                 if (ans[i] && store.query('tag',ans[i].tagName.toLowerCase(), false).length) {
52685                     // select it..
52686                     this.formatCombo.setValue(ans[i].tagName.toLowerCase());
52687                     break;
52688                 }
52689             }
52690         }
52691         
52692         
52693         
52694         // hides menus... - so this cant be on a menu...
52695         Roo.menu.MenuMgr.hideAll();
52696
52697         //this.editorsyncValue();
52698     },
52699    
52700     
52701     createFontOptions : function(){
52702         var buf = [], fs = this.fontFamilies, ff, lc;
52703         
52704         
52705         
52706         for(var i = 0, len = fs.length; i< len; i++){
52707             ff = fs[i];
52708             lc = ff.toLowerCase();
52709             buf.push(
52710                 '<option value="',lc,'" style="font-family:',ff,';"',
52711                     (this.defaultFont == lc ? ' selected="true">' : '>'),
52712                     ff,
52713                 '</option>'
52714             );
52715         }
52716         return buf.join('');
52717     },
52718     
52719     toggleSourceEdit : function(sourceEditMode){
52720         
52721         Roo.log("toolbar toogle");
52722         if(sourceEditMode === undefined){
52723             sourceEditMode = !this.sourceEditMode;
52724         }
52725         this.sourceEditMode = sourceEditMode === true;
52726         var btn = this.tb.items.get(this.editorcore.frameId +'-sourceedit');
52727         // just toggle the button?
52728         if(btn.pressed !== this.sourceEditMode){
52729             btn.toggle(this.sourceEditMode);
52730             return;
52731         }
52732         
52733         if(sourceEditMode){
52734             Roo.log("disabling buttons");
52735             this.tb.items.each(function(item){
52736                 if(item.cmd != 'sourceedit' && (typeof(item.cls) != 'undefined' && item.cls.indexOf('x-init-enable') === -1)){
52737                     item.disable();
52738                 }
52739             });
52740           
52741         }else{
52742             Roo.log("enabling buttons");
52743             if(this.editorcore.initialized){
52744                 this.tb.items.each(function(item){
52745                     item.enable();
52746                 });
52747                 // initialize 'blocks'
52748                 Roo.each(Roo.get(this.editorcore.doc.body).query('*[data-block]'), function(e) {
52749                     Roo.htmleditor.Block.factory(e).updateElement(e);
52750                 },this);
52751             
52752             }
52753             
52754         }
52755         Roo.log("calling toggole on editor");
52756         // tell the editor that it's been pressed..
52757         this.editor.toggleSourceEdit(sourceEditMode);
52758        
52759     },
52760      /**
52761      * Object collection of toolbar tooltips for the buttons in the editor. The key
52762      * is the command id associated with that button and the value is a valid QuickTips object.
52763      * For example:
52764 <pre><code>
52765 {
52766     bold : {
52767         title: 'Bold (Ctrl+B)',
52768         text: 'Make the selected text bold.',
52769         cls: 'x-html-editor-tip'
52770     },
52771     italic : {
52772         title: 'Italic (Ctrl+I)',
52773         text: 'Make the selected text italic.',
52774         cls: 'x-html-editor-tip'
52775     },
52776     ...
52777 </code></pre>
52778     * @type Object
52779      */
52780     buttonTips : {
52781         bold : {
52782             title: 'Bold (Ctrl+B)',
52783             text: 'Make the selected text bold.',
52784             cls: 'x-html-editor-tip'
52785         },
52786         italic : {
52787             title: 'Italic (Ctrl+I)',
52788             text: 'Make the selected text italic.',
52789             cls: 'x-html-editor-tip'
52790         },
52791         underline : {
52792             title: 'Underline (Ctrl+U)',
52793             text: 'Underline the selected text.',
52794             cls: 'x-html-editor-tip'
52795         },
52796         strikethrough : {
52797             title: 'Strikethrough',
52798             text: 'Strikethrough the selected text.',
52799             cls: 'x-html-editor-tip'
52800         },
52801         increasefontsize : {
52802             title: 'Grow Text',
52803             text: 'Increase the font size.',
52804             cls: 'x-html-editor-tip'
52805         },
52806         decreasefontsize : {
52807             title: 'Shrink Text',
52808             text: 'Decrease the font size.',
52809             cls: 'x-html-editor-tip'
52810         },
52811         backcolor : {
52812             title: 'Text Highlight Color',
52813             text: 'Change the background color of the selected text.',
52814             cls: 'x-html-editor-tip'
52815         },
52816         forecolor : {
52817             title: 'Font Color',
52818             text: 'Change the color of the selected text.',
52819             cls: 'x-html-editor-tip'
52820         },
52821         justifyleft : {
52822             title: 'Align Text Left',
52823             text: 'Align text to the left.',
52824             cls: 'x-html-editor-tip'
52825         },
52826         justifycenter : {
52827             title: 'Center Text',
52828             text: 'Center text in the editor.',
52829             cls: 'x-html-editor-tip'
52830         },
52831         justifyright : {
52832             title: 'Align Text Right',
52833             text: 'Align text to the right.',
52834             cls: 'x-html-editor-tip'
52835         },
52836         insertunorderedlist : {
52837             title: 'Bullet List',
52838             text: 'Start a bulleted list.',
52839             cls: 'x-html-editor-tip'
52840         },
52841         insertorderedlist : {
52842             title: 'Numbered List',
52843             text: 'Start a numbered list.',
52844             cls: 'x-html-editor-tip'
52845         },
52846         createlink : {
52847             title: 'Hyperlink',
52848             text: 'Make the selected text a hyperlink.',
52849             cls: 'x-html-editor-tip'
52850         },
52851         sourceedit : {
52852             title: 'Source Edit',
52853             text: 'Switch to source editing mode.',
52854             cls: 'x-html-editor-tip'
52855         }
52856     },
52857     // private
52858     onDestroy : function(){
52859         if(this.rendered){
52860             
52861             this.tb.items.each(function(item){
52862                 if(item.menu){
52863                     item.menu.removeAll();
52864                     if(item.menu.el){
52865                         item.menu.el.destroy();
52866                     }
52867                 }
52868                 item.destroy();
52869             });
52870              
52871         }
52872     },
52873     onFirstFocus: function() {
52874         this.tb.items.each(function(item){
52875            item.enable();
52876         });
52877     }
52878 };
52879
52880
52881
52882
52883 // <script type="text/javascript">
52884 /*
52885  * Based on
52886  * Ext JS Library 1.1.1
52887  * Copyright(c) 2006-2007, Ext JS, LLC.
52888  *  
52889  
52890  */
52891
52892  
52893 /**
52894  * @class Roo.form.HtmlEditor.ToolbarContext
52895  * Context Toolbar
52896  * 
52897  * Usage:
52898  *
52899  new Roo.form.HtmlEditor({
52900     ....
52901     toolbars : [
52902         { xtype: 'ToolbarStandard', styles : {} }
52903         { xtype: 'ToolbarContext', disable : {} }
52904     ]
52905 })
52906
52907      
52908  * 
52909  * @config : {Object} disable List of elements to disable.. (not done yet.)
52910  * @config : {Object} styles  Map of styles available.
52911  * 
52912  */
52913
52914 Roo.form.HtmlEditor.ToolbarContext = function(config)
52915 {
52916     
52917     Roo.apply(this, config);
52918     //Roo.form.HtmlEditorToolbar1.superclass.constructor.call(this, editor.wrap.dom.firstChild, [], config);
52919     // dont call parent... till later.
52920     this.styles = this.styles || {};
52921 }
52922
52923  
52924
52925 Roo.form.HtmlEditor.ToolbarContext.types = {
52926     'IMG' : [
52927         {
52928             name : 'width',
52929             title: "Width",
52930             width: 40
52931         },
52932         {
52933             name : 'height',
52934             title: "Height",
52935             width: 40
52936         },
52937         {
52938             name : 'align',
52939             title: "Align",
52940             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
52941             width : 80
52942             
52943         },
52944         {
52945             name : 'border',
52946             title: "Border",
52947             width: 40
52948         },
52949         {
52950             name : 'alt',
52951             title: "Alt",
52952             width: 120
52953         },
52954         {
52955             name : 'src',
52956             title: "Src",
52957             width: 220
52958         }
52959         
52960     ],
52961     
52962     'FIGURE' : [
52963         {
52964             name : 'align',
52965             title: "Align",
52966             opts : [ [""],[ "left"],[ "right"],[ "center"],[ "top"]],
52967             width : 80  
52968         }
52969     ],
52970     'A' : [
52971         {
52972             name : 'name',
52973             title: "Name",
52974             width: 50
52975         },
52976         {
52977             name : 'target',
52978             title: "Target",
52979             width: 120
52980         },
52981         {
52982             name : 'href',
52983             title: "Href",
52984             width: 220
52985         } // border?
52986         
52987     ],
52988     
52989     'INPUT' : [
52990         {
52991             name : 'name',
52992             title: "name",
52993             width: 120
52994         },
52995         {
52996             name : 'value',
52997             title: "Value",
52998             width: 120
52999         },
53000         {
53001             name : 'width',
53002             title: "Width",
53003             width: 40
53004         }
53005     ],
53006     'LABEL' : [
53007          {
53008             name : 'for',
53009             title: "For",
53010             width: 120
53011         }
53012     ],
53013     'TEXTAREA' : [
53014         {
53015             name : 'name',
53016             title: "name",
53017             width: 120
53018         },
53019         {
53020             name : 'rows',
53021             title: "Rows",
53022             width: 20
53023         },
53024         {
53025             name : 'cols',
53026             title: "Cols",
53027             width: 20
53028         }
53029     ],
53030     'SELECT' : [
53031         {
53032             name : 'name',
53033             title: "name",
53034             width: 120
53035         },
53036         {
53037             name : 'selectoptions',
53038             title: "Options",
53039             width: 200
53040         }
53041     ],
53042     
53043     // should we really allow this??
53044     // should this just be 
53045     'BODY' : [
53046         
53047         {
53048             name : 'title',
53049             title: "Title",
53050             width: 200,
53051             disabled : true
53052         }
53053     ],
53054  
53055     '*' : [
53056         // empty.
53057     ]
53058
53059 };
53060
53061 // this should be configurable.. - you can either set it up using stores, or modify options somehwere..
53062 Roo.form.HtmlEditor.ToolbarContext.stores = false;
53063
53064 Roo.form.HtmlEditor.ToolbarContext.options = {
53065         'font-family'  : [ 
53066                 [ 'Helvetica,Arial,sans-serif', 'Helvetica'],
53067                 [ 'Courier New', 'Courier New'],
53068                 [ 'Tahoma', 'Tahoma'],
53069                 [ 'Times New Roman,serif', 'Times'],
53070                 [ 'Verdana','Verdana' ]
53071         ]
53072 };
53073
53074 // fixme - these need to be configurable..
53075  
53076
53077 //Roo.form.HtmlEditor.ToolbarContext.types
53078
53079
53080 Roo.apply(Roo.form.HtmlEditor.ToolbarContext.prototype,  {
53081     
53082     tb: false,
53083     
53084     rendered: false,
53085     
53086     editor : false,
53087     editorcore : false,
53088     /**
53089      * @cfg {Object} disable  List of toolbar elements to disable
53090          
53091      */
53092     disable : false,
53093     /**
53094      * @cfg {Object} styles List of styles 
53095      *    eg. { '*' : [ 'headline' ] , 'TD' : [ 'underline', 'double-underline' ] } 
53096      *
53097      * These must be defined in the page, so they get rendered correctly..
53098      * .headline { }
53099      * TD.underline { }
53100      * 
53101      */
53102     styles : false,
53103     
53104     options: false,
53105     
53106     toolbars : false,
53107     
53108     init : function(editor)
53109     {
53110         this.editor = editor;
53111         this.editorcore = editor.editorcore ? editor.editorcore : editor;
53112         var editorcore = this.editorcore;
53113         
53114         var fid = editorcore.frameId;
53115         var etb = this;
53116         function btn(id, toggle, handler){
53117             var xid = fid + '-'+ id ;
53118             return {
53119                 id : xid,
53120                 cmd : id,
53121                 cls : 'x-btn-icon x-edit-'+id,
53122                 enableToggle:toggle !== false,
53123                 scope: editorcore, // was editor...
53124                 handler:handler||editorcore.relayBtnCmd,
53125                 clickEvent:'mousedown',
53126                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
53127                 tabIndex:-1
53128             };
53129         }
53130         // create a new element.
53131         var wdiv = editor.wrap.createChild({
53132                 tag: 'div'
53133             }, editor.wrap.dom.firstChild.nextSibling, true);
53134         
53135         // can we do this more than once??
53136         
53137          // stop form submits
53138       
53139  
53140         // disable everything...
53141         var ty= Roo.form.HtmlEditor.ToolbarContext.types;
53142         this.toolbars = {};
53143         // block toolbars are built in updateToolbar when needed.
53144         for (var i in  ty) {
53145             
53146             this.toolbars[i] = this.buildToolbar(ty[i],i);
53147         }
53148         this.tb = this.toolbars.BODY;
53149         this.tb.el.show();
53150         this.buildFooter();
53151         this.footer.show();
53152         editor.on('hide', function( ) { this.footer.hide() }, this);
53153         editor.on('show', function( ) { this.footer.show() }, this);
53154         
53155          
53156         this.rendered = true;
53157         
53158         // the all the btns;
53159         editor.on('editorevent', this.updateToolbar, this);
53160         // other toolbars need to implement this..
53161         //editor.on('editmodechange', this.updateToolbar, this);
53162     },
53163     
53164     
53165     
53166     /**
53167      * Protected method that will not generally be called directly. It triggers
53168      * a toolbar update by reading the markup state of the current selection in the editor.
53169      *
53170      * Note you can force an update by calling on('editorevent', scope, false)
53171      */
53172     updateToolbar: function(editor ,ev, sel)
53173     {
53174         
53175         if (ev) {
53176             ev.stopEvent(); // se if we can stop this looping with mutiple events.
53177         }
53178         
53179         //Roo.log(ev);
53180         // capture mouse up - this is handy for selecting images..
53181         // perhaps should go somewhere else...
53182         if(!this.editorcore.activated){
53183              this.editor.onFirstFocus();
53184             return;
53185         }
53186         //Roo.log(ev ? ev.target : 'NOTARGET');
53187         
53188         
53189         // http://developer.yahoo.com/yui/docs/simple-editor.js.html
53190         // selectNode - might want to handle IE?
53191         
53192         
53193         
53194         if (ev &&
53195             (ev.type == 'mouseup' || ev.type == 'click' ) &&
53196             ev.target && ev.target.tagName != 'BODY' ) { // && ev.target.tagName == 'IMG') {
53197             // they have click on an image...
53198             // let's see if we can change the selection...
53199             sel = ev.target;
53200             
53201             // this triggers looping?
53202             //this.editorcore.selectNode(sel);
53203              
53204         }
53205         
53206         // this forces an id..
53207         Array.from(this.editorcore.doc.body.querySelectorAll('.roo-ed-selection')).forEach(function(e) {
53208              e.classList.remove('roo-ed-selection');
53209         });
53210         //Roo.select('.roo-ed-selection', false, this.editorcore.doc).removeClass('roo-ed-selection');
53211         //Roo.get(node).addClass('roo-ed-selection');
53212       
53213         //var updateFooter = sel ? false : true; 
53214         
53215         
53216         var ans = this.editorcore.getAllAncestors();
53217         
53218         // pick
53219         var ty = Roo.form.HtmlEditor.ToolbarContext.types;
53220         
53221         if (!sel) { 
53222             sel = ans.length ? (ans[0] ?  ans[0]  : ans[1]) : this.editorcore.doc.body;
53223             sel = sel ? sel : this.editorcore.doc.body;
53224             sel = sel.tagName.length ? sel : this.editorcore.doc.body;
53225             
53226         }
53227         
53228         var tn = sel.tagName.toUpperCase();
53229         var lastSel = this.tb.selectedNode;
53230         this.tb.selectedNode = sel;
53231         var left_label = tn;
53232         
53233         // ok see if we are editing a block?
53234         
53235         var db = false;
53236         // you are not actually selecting the block.
53237         if (sel && sel.hasAttribute('data-block')) {
53238             db = sel;
53239         } else if (sel && sel.closest('[data-block]')) {
53240             
53241             db = sel.closest('[data-block]');
53242             //var cepar = sel.closest('[contenteditable=true]');
53243             //if (db && cepar && cepar.tagName != 'BODY') {
53244             //   db = false; // we are inside an editable block.. = not sure how we are going to handle nested blocks!?
53245             //}   
53246         }
53247         
53248         
53249         var block = false;
53250         //if (db && !sel.hasAttribute('contenteditable') && sel.getAttribute('contenteditable') != 'true' ) {
53251         if (db && this.editorcore.enableBlocks) {
53252             block = Roo.htmleditor.Block.factory(db);
53253             
53254             
53255             if (block) {
53256                  db.className = (
53257                         db.classList.length > 0  ? db.className + ' ' : ''
53258                     )  + 'roo-ed-selection';
53259                  
53260                  // since we removed it earlier... its not there..
53261                 tn = 'BLOCK.' + db.getAttribute('data-block');
53262                 
53263                 //this.editorcore.selectNode(db);
53264                 if (typeof(this.toolbars[tn]) == 'undefined') {
53265                    this.toolbars[tn] = this.buildToolbar( false  ,tn ,block.friendly_name, block);
53266                 }
53267                 this.toolbars[tn].selectedNode = db;
53268                 left_label = block.friendly_name;
53269                 ans = this.editorcore.getAllAncestors();
53270             }
53271             
53272                 
53273             
53274         }
53275         
53276         
53277         if (this.tb.name == tn && lastSel == this.tb.selectedNode && ev !== false) {
53278             return; // no change?
53279         }
53280         
53281         
53282           
53283         this.tb.el.hide();
53284         ///console.log("show: " + tn);
53285         this.tb =  typeof(this.toolbars[tn]) != 'undefined' ? this.toolbars[tn] : this.toolbars['*'];
53286         
53287         this.tb.el.show();
53288         // update name
53289         this.tb.items.first().el.innerHTML = left_label + ':&nbsp;';
53290         
53291         
53292         // update attributes
53293         if (block && this.tb.fields) {
53294              
53295             this.tb.fields.each(function(e) {
53296                 e.setValue(block[e.name]);
53297             });
53298             
53299             
53300         } else  if (this.tb.fields && this.tb.selectedNode) {
53301             this.tb.fields.each( function(e) {
53302                 if (e.stylename) {
53303                     e.setValue(this.tb.selectedNode.style[e.stylename]);
53304                     return;
53305                 } 
53306                 e.setValue(this.tb.selectedNode.getAttribute(e.attrname));
53307             }, this);
53308             this.updateToolbarStyles(this.tb.selectedNode);  
53309         }
53310         
53311         
53312        
53313         Roo.menu.MenuMgr.hideAll();
53314
53315         
53316         
53317     
53318         // update the footer
53319         //
53320         this.updateFooter(ans);
53321              
53322     },
53323     
53324     updateToolbarStyles : function(sel)
53325     {
53326         var hasStyles = false;
53327         for(var i in this.styles) {
53328             hasStyles = true;
53329             break;
53330         }
53331         
53332         // update styles
53333         if (hasStyles && this.tb.hasStyles) { 
53334             var st = this.tb.fields.item(0);
53335             
53336             st.store.removeAll();
53337             var cn = sel.className.split(/\s+/);
53338             
53339             var avs = [];
53340             if (this.styles['*']) {
53341                 
53342                 Roo.each(this.styles['*'], function(v) {
53343                     avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
53344                 });
53345             }
53346             if (this.styles[tn]) { 
53347                 Roo.each(this.styles[tn], function(v) {
53348                     avs.push( [ v , cn.indexOf(v) > -1 ? 1 : 0 ] );         
53349                 });
53350             }
53351             
53352             st.store.loadData(avs);
53353             st.collapse();
53354             st.setValue(cn);
53355         }
53356     },
53357     
53358      
53359     updateFooter : function(ans)
53360     {
53361         var html = '';
53362         if (ans === false) {
53363             this.footDisp.dom.innerHTML = '';
53364             return;
53365         }
53366         
53367         this.footerEls = ans.reverse();
53368         Roo.each(this.footerEls, function(a,i) {
53369             if (!a) { return; }
53370             html += html.length ? ' &gt; '  :  '';
53371             
53372             html += '<span class="x-ed-loc-' + i + '">' + a.tagName + '</span>';
53373             
53374         });
53375        
53376         // 
53377         var sz = this.footDisp.up('td').getSize();
53378         this.footDisp.dom.style.width = (sz.width -10) + 'px';
53379         this.footDisp.dom.style.marginLeft = '5px';
53380         
53381         this.footDisp.dom.style.overflow = 'hidden';
53382         
53383         this.footDisp.dom.innerHTML = html;
53384             
53385         
53386     },
53387    
53388        
53389     // private
53390     onDestroy : function(){
53391         if(this.rendered){
53392             
53393             this.tb.items.each(function(item){
53394                 if(item.menu){
53395                     item.menu.removeAll();
53396                     if(item.menu.el){
53397                         item.menu.el.destroy();
53398                     }
53399                 }
53400                 item.destroy();
53401             });
53402              
53403         }
53404     },
53405     onFirstFocus: function() {
53406         // need to do this for all the toolbars..
53407         this.tb.items.each(function(item){
53408            item.enable();
53409         });
53410     },
53411     buildToolbar: function(tlist, nm, friendly_name, block)
53412     {
53413         var editor = this.editor;
53414         var editorcore = this.editorcore;
53415          // create a new element.
53416         var wdiv = editor.wrap.createChild({
53417                 tag: 'div'
53418             }, editor.wrap.dom.firstChild.nextSibling, true);
53419         
53420        
53421         var tb = new Roo.Toolbar(wdiv);
53422         ///this.tb = tb; // << this sets the active toolbar..
53423         if (tlist === false && block) {
53424             tlist = block.contextMenu(this);
53425         }
53426         
53427         tb.hasStyles = false;
53428         tb.name = nm;
53429         
53430         tb.add((typeof(friendly_name) == 'undefined' ? nm : friendly_name) + ":&nbsp;");
53431         
53432         var styles = Array.from(this.styles);
53433         
53434         
53435         // styles...
53436         if (styles && styles.length) {
53437             tb.hasStyles = true;
53438             // this needs a multi-select checkbox...
53439             tb.addField( new Roo.form.ComboBox({
53440                 store: new Roo.data.SimpleStore({
53441                     id : 'val',
53442                     fields: ['val', 'selected'],
53443                     data : [] 
53444                 }),
53445                 name : '-roo-edit-className',
53446                 attrname : 'className',
53447                 displayField: 'val',
53448                 typeAhead: false,
53449                 mode: 'local',
53450                 editable : false,
53451                 triggerAction: 'all',
53452                 emptyText:'Select Style',
53453                 selectOnFocus:true,
53454                 width: 130,
53455                 listeners : {
53456                     'select': function(c, r, i) {
53457                         // initial support only for on class per el..
53458                         tb.selectedNode.className =  r ? r.get('val') : '';
53459                         editorcore.syncValue();
53460                     }
53461                 }
53462     
53463             }));
53464         }
53465         
53466         var tbc = Roo.form.HtmlEditor.ToolbarContext;
53467         
53468         
53469         for (var i = 0; i < tlist.length; i++) {
53470             
53471             // newer versions will use xtype cfg to create menus.
53472             if (typeof(tlist[i].xtype) != 'undefined') {
53473                 
53474                 tb[typeof(tlist[i].name)== 'undefined' ? 'add' : 'addField'](Roo.factory(tlist[i]));
53475                 
53476                 
53477                 continue;
53478             }
53479             
53480             var item = tlist[i];
53481             tb.add(item.title + ":&nbsp;");
53482             
53483             
53484             //optname == used so you can configure the options available..
53485             var opts = item.opts ? item.opts : false;
53486             if (item.optname) { // use the b
53487                 opts = Roo.form.HtmlEditor.ToolbarContext.options[item.optname];
53488            
53489             }
53490             
53491             if (opts) {
53492                 // opts == pulldown..
53493                 tb.addField( new Roo.form.ComboBox({
53494                     store:   typeof(tbc.stores[i]) != 'undefined' ?  Roo.factory(tbc.stores[i],Roo.data) : new Roo.data.SimpleStore({
53495                         id : 'val',
53496                         fields: ['val', 'display'],
53497                         data : opts  
53498                     }),
53499                     name : '-roo-edit-' + tlist[i].name,
53500                     
53501                     attrname : tlist[i].name,
53502                     stylename : item.style ? item.style : false,
53503                     
53504                     displayField: item.displayField ? item.displayField : 'val',
53505                     valueField :  'val',
53506                     typeAhead: false,
53507                     mode: typeof(tbc.stores[tlist[i].name]) != 'undefined'  ? 'remote' : 'local',
53508                     editable : false,
53509                     triggerAction: 'all',
53510                     emptyText:'Select',
53511                     selectOnFocus:true,
53512                     width: item.width ? item.width  : 130,
53513                     listeners : {
53514                         'select': function(c, r, i) {
53515                              
53516                             
53517                             if (c.stylename) {
53518                                 tb.selectedNode.style[c.stylename] =  r.get('val');
53519                                 editorcore.syncValue();
53520                                 return;
53521                             }
53522                             if (r === false) {
53523                                 tb.selectedNode.removeAttribute(c.attrname);
53524                                 editorcore.syncValue();
53525                                 return;
53526                             }
53527                             tb.selectedNode.setAttribute(c.attrname, r.get('val'));
53528                             editorcore.syncValue();
53529                         }
53530                     }
53531
53532                 }));
53533                 continue;
53534                     
53535                  
53536                 /*
53537                 tb.addField( new Roo.form.TextField({
53538                     name: i,
53539                     width: 100,
53540                     //allowBlank:false,
53541                     value: ''
53542                 }));
53543                 continue;
53544                 */
53545             }
53546             tb.addField( new Roo.form.TextField({
53547                 name: '-roo-edit-' + tlist[i].name,
53548                 attrname : tlist[i].name,
53549                 
53550                 width: item.width,
53551                 //allowBlank:true,
53552                 value: '',
53553                 listeners: {
53554                     'change' : function(f, nv, ov) {
53555                         
53556                          
53557                         tb.selectedNode.setAttribute(f.attrname, nv);
53558                         editorcore.syncValue();
53559                     }
53560                 }
53561             }));
53562              
53563         }
53564         
53565         var _this = this;
53566         var show_delete = !block || block.deleteTitle !== false;
53567         if(nm == 'BODY'){
53568             show_delete = false;
53569             tb.addSeparator();
53570         
53571             tb.addButton( {
53572                 text: 'Stylesheets',
53573
53574                 listeners : {
53575                     click : function ()
53576                     {
53577                         _this.editor.fireEvent('stylesheetsclick', _this.editor);
53578                     }
53579                 }
53580             });
53581         }
53582         
53583         tb.addFill();
53584         if (show_delete) {
53585             tb.addButton({
53586                 text: block && block.deleteTitle ? block.deleteTitle  : 'Remove Block or Formating', // remove the tag, and puts the children outside...
53587         
53588                 listeners : {
53589                     click : function ()
53590                     {
53591                         var sn = tb.selectedNode;
53592                         if (block) {
53593                             sn = Roo.htmleditor.Block.factory(tb.selectedNode).removeNode();
53594                             
53595                         }
53596                         if (!sn) {
53597                             return;
53598                         }
53599                         var stn =  sn.childNodes[0] || sn.nextSibling || sn.previousSibling || sn.parentNode;
53600                         if (sn.hasAttribute('data-block')) {
53601                             stn =  sn.nextSibling || sn.previousSibling || sn.parentNode;
53602                             sn.parentNode.removeChild(sn);
53603                             
53604                         } else if (sn && sn.tagName != 'BODY') {
53605                             // remove and keep parents.
53606                             a = new Roo.htmleditor.FilterKeepChildren({tag : false});
53607                             a.replaceTag(sn);
53608                         }
53609                         
53610                         
53611                         var range = editorcore.createRange();
53612             
53613                         range.setStart(stn,0);
53614                         range.setEnd(stn,0); 
53615                         var selection = editorcore.getSelection();
53616                         selection.removeAllRanges();
53617                         selection.addRange(range);
53618                         
53619                         
53620                         //_this.updateToolbar(null, null, pn);
53621                         _this.updateToolbar(null, null, null);
53622                         _this.updateFooter(false);
53623                         
53624                     }
53625                 }
53626                 
53627                         
53628                     
53629                 
53630             });
53631         }    
53632         
53633         tb.el.on('click', function(e){
53634             e.preventDefault(); // what does this do?
53635         });
53636         tb.el.setVisibilityMode( Roo.Element.DISPLAY);
53637         tb.el.hide();
53638         
53639         // dont need to disable them... as they will get hidden
53640         return tb;
53641          
53642         
53643     },
53644     buildFooter : function()
53645     {
53646         
53647         var fel = this.editor.wrap.createChild();
53648         this.footer = new Roo.Toolbar(fel);
53649         // toolbar has scrolly on left / right?
53650         var footDisp= new Roo.Toolbar.Fill();
53651         var _t = this;
53652         this.footer.add(
53653             {
53654                 text : '&lt;',
53655                 xtype: 'Button',
53656                 handler : function() {
53657                     _t.footDisp.scrollTo('left',0,true)
53658                 }
53659             }
53660         );
53661         this.footer.add( footDisp );
53662         this.footer.add( 
53663             {
53664                 text : '&gt;',
53665                 xtype: 'Button',
53666                 handler : function() {
53667                     // no animation..
53668                     _t.footDisp.select('span').last().scrollIntoView(_t.footDisp,true);
53669                 }
53670             }
53671         );
53672         var fel = Roo.get(footDisp.el);
53673         fel.addClass('x-editor-context');
53674         this.footDispWrap = fel; 
53675         this.footDispWrap.overflow  = 'hidden';
53676         
53677         this.footDisp = fel.createChild();
53678         this.footDispWrap.on('click', this.onContextClick, this)
53679         
53680         
53681     },
53682     // when the footer contect changes
53683     onContextClick : function (ev,dom)
53684     {
53685         ev.preventDefault();
53686         var  cn = dom.className;
53687         //Roo.log(cn);
53688         if (!cn.match(/x-ed-loc-/)) {
53689             return;
53690         }
53691         var n = cn.split('-').pop();
53692         var ans = this.footerEls;
53693         var sel = ans[n];
53694         
53695         this.editorcore.selectNode(sel);
53696         
53697         
53698         this.updateToolbar(null, null, sel);
53699         
53700         
53701     }
53702     
53703     
53704     
53705     
53706     
53707 });
53708
53709
53710
53711
53712
53713 /*
53714  * Based on:
53715  * Ext JS Library 1.1.1
53716  * Copyright(c) 2006-2007, Ext JS, LLC.
53717  *
53718  * Originally Released Under LGPL - original licence link has changed is not relivant.
53719  *
53720  * Fork - LGPL
53721  * <script type="text/javascript">
53722  */
53723  
53724 /**
53725  * @class Roo.form.BasicForm
53726  * @extends Roo.util.Observable
53727  * Supplies the functionality to do "actions" on forms and initialize Roo.form.Field types on existing markup.
53728  * @constructor
53729  * @param {String/HTMLElement/Roo.Element} el The form element or its id
53730  * @param {Object} config Configuration options
53731  */
53732 Roo.form.BasicForm = function(el, config){
53733     this.allItems = [];
53734     this.childForms = [];
53735     Roo.apply(this, config);
53736     /*
53737      * The Roo.form.Field items in this form.
53738      * @type MixedCollection
53739      */
53740      
53741      
53742     this.items = new Roo.util.MixedCollection(false, function(o){
53743         return o.id || (o.id = Roo.id());
53744     });
53745     this.addEvents({
53746         /**
53747          * @event beforeaction
53748          * Fires before any action is performed. Return false to cancel the action.
53749          * @param {Form} this
53750          * @param {Action} action The action to be performed
53751          */
53752         beforeaction: true,
53753         /**
53754          * @event actionfailed
53755          * Fires when an action fails.
53756          * @param {Form} this
53757          * @param {Action} action The action that failed
53758          */
53759         actionfailed : true,
53760         /**
53761          * @event actioncomplete
53762          * Fires when an action is completed.
53763          * @param {Form} this
53764          * @param {Action} action The action that completed
53765          */
53766         actioncomplete : true
53767     });
53768     if(el){
53769         this.initEl(el);
53770     }
53771     Roo.form.BasicForm.superclass.constructor.call(this);
53772     
53773     Roo.form.BasicForm.popover.apply();
53774 };
53775
53776 Roo.extend(Roo.form.BasicForm, Roo.util.Observable, {
53777     /**
53778      * @cfg {String} method
53779      * The request method to use (GET or POST) for form actions if one isn't supplied in the action options.
53780      */
53781     /**
53782      * @cfg {DataReader} reader
53783      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when executing "load" actions.
53784      * This is optional as there is built-in support for processing JSON.
53785      */
53786     /**
53787      * @cfg {DataReader} errorReader
53788      * An Roo.data.DataReader (e.g. {@link Roo.data.XmlReader}) to be used to read data when reading validation errors on "submit" actions.
53789      * This is completely optional as there is built-in support for processing JSON.
53790      */
53791     /**
53792      * @cfg {String} url
53793      * The URL to use for form actions if one isn't supplied in the action options.
53794      */
53795     /**
53796      * @cfg {Boolean} fileUpload
53797      * Set to true if this form is a file upload.
53798      */
53799      
53800     /**
53801      * @cfg {Object} baseParams
53802      * Parameters to pass with all requests. e.g. baseParams: {id: '123', foo: 'bar'}.
53803      */
53804      /**
53805      
53806     /**
53807      * @cfg {Number} timeout Timeout for form actions in seconds (default is 30 seconds).
53808      */
53809     timeout: 30,
53810
53811     // private
53812     activeAction : null,
53813
53814     /**
53815      * @cfg {Boolean} trackResetOnLoad If set to true, form.reset() resets to the last loaded
53816      * or setValues() data instead of when the form was first created.
53817      */
53818     trackResetOnLoad : false,
53819     
53820     
53821     /**
53822      * childForms - used for multi-tab forms
53823      * @type {Array}
53824      */
53825     childForms : false,
53826     
53827     /**
53828      * allItems - full list of fields.
53829      * @type {Array}
53830      */
53831     allItems : false,
53832     
53833     /**
53834      * By default wait messages are displayed with Roo.MessageBox.wait. You can target a specific
53835      * element by passing it or its id or mask the form itself by passing in true.
53836      * @type Mixed
53837      */
53838     waitMsgTarget : false,
53839     
53840     /**
53841      * @type Boolean
53842      */
53843     disableMask : false,
53844     
53845     /**
53846      * @cfg {Boolean} errorMask (true|false) default false
53847      */
53848     errorMask : false,
53849     
53850     /**
53851      * @cfg {Number} maskOffset Default 100
53852      */
53853     maskOffset : 100,
53854
53855     // private
53856     initEl : function(el){
53857         this.el = Roo.get(el);
53858         this.id = this.el.id || Roo.id();
53859         this.el.on('submit', this.onSubmit, this);
53860         this.el.addClass('x-form');
53861     },
53862
53863     // private
53864     onSubmit : function(e){
53865         e.stopEvent();
53866     },
53867
53868     /**
53869      * Returns true if client-side validation on the form is successful.
53870      * @return Boolean
53871      */
53872     isValid : function(){
53873         var valid = true;
53874         var target = false;
53875         this.items.each(function(f){
53876             if(f.validate()){
53877                 return;
53878             }
53879             
53880             valid = false;
53881                 
53882             if(!target && f.el.isVisible(true)){
53883                 target = f;
53884             }
53885         });
53886         
53887         if(this.errorMask && !valid){
53888             Roo.form.BasicForm.popover.mask(this, target);
53889         }
53890         
53891         return valid;
53892     },
53893     /**
53894      * Returns array of invalid form fields.
53895      * @return Array
53896      */
53897     
53898     invalidFields : function()
53899     {
53900         var ret = [];
53901         this.items.each(function(f){
53902             if(f.validate()){
53903                 return;
53904             }
53905             ret.push(f);
53906             
53907         });
53908         
53909         return ret;
53910     },
53911     
53912     
53913     /**
53914      * DEPRICATED Returns true if any fields in this form have changed since their original load. 
53915      * @return Boolean
53916      */
53917     isDirty : function(){
53918         var dirty = false;
53919         this.items.each(function(f){
53920            if(f.isDirty()){
53921                dirty = true;
53922                return false;
53923            }
53924         });
53925         return dirty;
53926     },
53927     
53928     /**
53929      * Returns true if any fields in this form have changed since their original load. (New version)
53930      * @return Boolean
53931      */
53932     
53933     hasChanged : function()
53934     {
53935         var dirty = false;
53936         this.items.each(function(f){
53937            if(f.hasChanged()){
53938                dirty = true;
53939                return false;
53940            }
53941         });
53942         return dirty;
53943         
53944     },
53945     /**
53946      * Resets all hasChanged to 'false' -
53947      * The old 'isDirty' used 'original value..' however this breaks reset() and a few other things.
53948      * So hasChanged storage is only to be used for this purpose
53949      * @return Boolean
53950      */
53951     resetHasChanged : function()
53952     {
53953         this.items.each(function(f){
53954            f.resetHasChanged();
53955         });
53956         
53957     },
53958     
53959     
53960     /**
53961      * Performs a predefined action (submit or load) or custom actions you define on this form.
53962      * @param {String} actionName The name of the action type
53963      * @param {Object} options (optional) The options to pass to the action.  All of the config options listed
53964      * below are supported by both the submit and load actions unless otherwise noted (custom actions could also
53965      * accept other config options):
53966      * <pre>
53967 Property          Type             Description
53968 ----------------  ---------------  ----------------------------------------------------------------------------------
53969 url               String           The url for the action (defaults to the form's url)
53970 method            String           The form method to use (defaults to the form's method, or POST if not defined)
53971 params            String/Object    The params to pass (defaults to the form's baseParams, or none if not defined)
53972 clientValidation  Boolean          Applies to submit only.  Pass true to call form.isValid() prior to posting to
53973                                    validate the form on the client (defaults to false)
53974      * </pre>
53975      * @return {BasicForm} this
53976      */
53977     doAction : function(action, options){
53978         if(typeof action == 'string'){
53979             action = new Roo.form.Action.ACTION_TYPES[action](this, options);
53980         }
53981         if(this.fireEvent('beforeaction', this, action) !== false){
53982             this.beforeAction(action);
53983             action.run.defer(100, action);
53984         }
53985         return this;
53986     },
53987
53988     /**
53989      * Shortcut to do a submit action.
53990      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
53991      * @return {BasicForm} this
53992      */
53993     submit : function(options){
53994         this.doAction('submit', options);
53995         return this;
53996     },
53997
53998     /**
53999      * Shortcut to do a load action.
54000      * @param {Object} options The options to pass to the action (see {@link #doAction} for details)
54001      * @return {BasicForm} this
54002      */
54003     load : function(options){
54004         this.doAction('load', options);
54005         return this;
54006     },
54007
54008     /**
54009      * Persists the values in this form into the passed Roo.data.Record object in a beginEdit/endEdit block.
54010      * @param {Record} record The record to edit
54011      * @return {BasicForm} this
54012      */
54013     updateRecord : function(record){
54014         record.beginEdit();
54015         var fs = record.fields;
54016         fs.each(function(f){
54017             var field = this.findField(f.name);
54018             if(field){
54019                 record.set(f.name, field.getValue());
54020             }
54021         }, this);
54022         record.endEdit();
54023         return this;
54024     },
54025
54026     /**
54027      * Loads an Roo.data.Record into this form.
54028      * @param {Record} record The record to load
54029      * @return {BasicForm} this
54030      */
54031     loadRecord : function(record){
54032         this.setValues(record.data);
54033         return this;
54034     },
54035
54036     // private
54037     beforeAction : function(action){
54038         var o = action.options;
54039         
54040         if(!this.disableMask) {
54041             if(this.waitMsgTarget === true){
54042                 this.el.mask(o.waitMsg || "Sending", 'x-mask-loading');
54043             }else if(this.waitMsgTarget){
54044                 this.waitMsgTarget = Roo.get(this.waitMsgTarget);
54045                 this.waitMsgTarget.mask(o.waitMsg || "Sending", 'x-mask-loading');
54046             }else {
54047                 Roo.MessageBox.wait(o.waitMsg || "Sending", o.waitTitle || this.waitTitle || 'Please Wait...');
54048             }
54049         }
54050         
54051          
54052     },
54053
54054     // private
54055     afterAction : function(action, success){
54056         this.activeAction = null;
54057         var o = action.options;
54058         
54059         if(!this.disableMask) {
54060             if(this.waitMsgTarget === true){
54061                 this.el.unmask();
54062             }else if(this.waitMsgTarget){
54063                 this.waitMsgTarget.unmask();
54064             }else{
54065                 Roo.MessageBox.updateProgress(1);
54066                 Roo.MessageBox.hide();
54067             }
54068         }
54069         
54070         if(success){
54071             if(o.reset){
54072                 this.reset();
54073             }
54074             Roo.callback(o.success, o.scope, [this, action]);
54075             this.fireEvent('actioncomplete', this, action);
54076             
54077         }else{
54078             
54079             // failure condition..
54080             // we have a scenario where updates need confirming.
54081             // eg. if a locking scenario exists..
54082             // we look for { errors : { needs_confirm : true }} in the response.
54083             if (
54084                 (typeof(action.result) != 'undefined')  &&
54085                 (typeof(action.result.errors) != 'undefined')  &&
54086                 (typeof(action.result.errors.needs_confirm) != 'undefined')
54087            ){
54088                 var _t = this;
54089                 Roo.MessageBox.confirm(
54090                     "Change requires confirmation",
54091                     action.result.errorMsg,
54092                     function(r) {
54093                         if (r != 'yes') {
54094                             return;
54095                         }
54096                         _t.doAction('submit', { params :  { _submit_confirmed : 1 } }  );
54097                     }
54098                     
54099                 );
54100                 
54101                 
54102                 
54103                 return;
54104             }
54105             
54106             Roo.callback(o.failure, o.scope, [this, action]);
54107             // show an error message if no failed handler is set..
54108             if (!this.hasListener('actionfailed')) {
54109                 Roo.MessageBox.alert("Error",
54110                     (typeof(action.result) != 'undefined' && typeof(action.result.errorMsg) != 'undefined') ?
54111                         action.result.errorMsg :
54112                         "Saving Failed, please check your entries or try again"
54113                 );
54114             }
54115             
54116             this.fireEvent('actionfailed', this, action);
54117         }
54118         
54119     },
54120
54121     /**
54122      * Find a Roo.form.Field in this form by id, dataIndex, name or hiddenName
54123      * @param {String} id The value to search for
54124      * @return Field
54125      */
54126     findField : function(id){
54127         var field = this.items.get(id);
54128         if(!field){
54129             this.items.each(function(f){
54130                 if(f.isFormField && (f.dataIndex == id || f.id == id || f.getName() == id)){
54131                     field = f;
54132                     return false;
54133                 }
54134             });
54135         }
54136         return field || null;
54137     },
54138
54139     /**
54140      * Add a secondary form to this one, 
54141      * Used to provide tabbed forms. One form is primary, with hidden values 
54142      * which mirror the elements from the other forms.
54143      * 
54144      * @param {Roo.form.Form} form to add.
54145      * 
54146      */
54147     addForm : function(form)
54148     {
54149        
54150         if (this.childForms.indexOf(form) > -1) {
54151             // already added..
54152             return;
54153         }
54154         this.childForms.push(form);
54155         var n = '';
54156         Roo.each(form.allItems, function (fe) {
54157             
54158             n = typeof(fe.getName) == 'undefined' ? fe.name : fe.getName();
54159             if (this.findField(n)) { // already added..
54160                 return;
54161             }
54162             var add = new Roo.form.Hidden({
54163                 name : n
54164             });
54165             add.render(this.el);
54166             
54167             this.add( add );
54168         }, this);
54169         
54170     },
54171     /**
54172      * Mark fields in this form invalid in bulk.
54173      * @param {Array/Object} errors Either an array in the form [{id:'fieldId', msg:'The message'},...] or an object hash of {id: msg, id2: msg2}
54174      * @return {BasicForm} this
54175      */
54176     markInvalid : function(errors){
54177         if(errors instanceof Array){
54178             for(var i = 0, len = errors.length; i < len; i++){
54179                 var fieldError = errors[i];
54180                 var f = this.findField(fieldError.id);
54181                 if(f){
54182                     f.markInvalid(fieldError.msg);
54183                 }
54184             }
54185         }else{
54186             var field, id;
54187             for(id in errors){
54188                 if(typeof errors[id] != 'function' && (field = this.findField(id))){
54189                     field.markInvalid(errors[id]);
54190                 }
54191             }
54192         }
54193         Roo.each(this.childForms || [], function (f) {
54194             f.markInvalid(errors);
54195         });
54196         
54197         return this;
54198     },
54199
54200     /**
54201      * Set values for fields in this form in bulk.
54202      * @param {Array/Object} values Either an array in the form [{id:'fieldId', value:'foo'},...] or an object hash of {id: value, id2: value2}
54203      * @return {BasicForm} this
54204      */
54205     setValues : function(values){
54206         if(values instanceof Array){ // array of objects
54207             for(var i = 0, len = values.length; i < len; i++){
54208                 var v = values[i];
54209                 var f = this.findField(v.id);
54210                 if(f){
54211                     f.setValue(v.value);
54212                     if(this.trackResetOnLoad){
54213                         f.originalValue = f.getValue();
54214                     }
54215                 }
54216             }
54217         }else{ // object hash
54218             var field, id;
54219             for(id in values){
54220                 if(typeof values[id] != 'function' && (field = this.findField(id))){
54221                     
54222                     if (field.setFromData && 
54223                         field.valueField && 
54224                         field.displayField &&
54225                         // combos' with local stores can 
54226                         // be queried via setValue()
54227                         // to set their value..
54228                         (field.store && !field.store.isLocal)
54229                         ) {
54230                         // it's a combo
54231                         var sd = { };
54232                         sd[field.valueField] = typeof(values[field.hiddenName]) == 'undefined' ? '' : values[field.hiddenName];
54233                         sd[field.displayField] = typeof(values[field.name]) == 'undefined' ? '' : values[field.name];
54234                         field.setFromData(sd);
54235                         
54236                     } else {
54237                         field.setValue(values[id]);
54238                     }
54239                     
54240                     
54241                     if(this.trackResetOnLoad){
54242                         field.originalValue = field.getValue();
54243                     }
54244                 }
54245             }
54246         }
54247         this.resetHasChanged();
54248         
54249         
54250         Roo.each(this.childForms || [], function (f) {
54251             f.setValues(values);
54252             f.resetHasChanged();
54253         });
54254                 
54255         return this;
54256     },
54257  
54258     /**
54259      * Returns the fields in this form as an object with key/value pairs. If multiple fields exist with the same name
54260      * they are returned as an array.
54261      * @param {Boolean} asString
54262      * @return {Object}
54263      */
54264     getValues : function(asString)
54265     {
54266         if (this.childForms) {
54267             // copy values from the child forms
54268             Roo.each(this.childForms, function (f) {
54269                 this.setValues(f.getFieldValues()); // get the full set of data, as we might be copying comboboxes from external into this one.
54270             }, this);
54271         }
54272         
54273         // use formdata
54274         if (typeof(FormData) != 'undefined' && asString !== true) {
54275             // this relies on a 'recent' version of chrome apparently...
54276             try {
54277                 var fd = (new FormData(this.el.dom)).entries();
54278                 var ret = {};
54279                 var ent = fd.next();
54280                 while (!ent.done) {
54281                     ret[ent.value[0]] = ent.value[1]; // not sure how this will handle duplicates..
54282                     ent = fd.next();
54283                 };
54284                 return ret;
54285             } catch(e) {
54286                 
54287             }
54288             
54289         }
54290         
54291         
54292         var fs = Roo.lib.Ajax.serializeForm(this.el.dom);
54293         if(asString === true){
54294             return fs;
54295         }
54296         return Roo.urlDecode(fs);
54297     },
54298     
54299     /**
54300      * Returns the fields in this form as an object with key/value pairs. 
54301      * This differs from getValues as it calls getValue on each child item, rather than using dom data.
54302      * Normally this will not return readOnly data 
54303      * @param {Boolean} with_readonly return readonly field data.
54304      * @return {Object}
54305      */
54306     getFieldValues : function(with_readonly)
54307     {
54308         if (this.childForms) {
54309             // copy values from the child forms
54310             // should this call getFieldValues - probably not as we do not currently copy
54311             // hidden fields when we generate..
54312             Roo.each(this.childForms, function (f) {
54313                 this.setValues(f.getFieldValues());
54314             }, this);
54315         }
54316         
54317         var ret = {};
54318         this.items.each(function(f){
54319             
54320             if (f.readOnly && with_readonly !== true) {
54321                 return; // skip read only values. - this is in theory to stop 'old' values being copied over new ones
54322                         // if a subform contains a copy of them.
54323                         // if you have subforms with the same editable data, you will need to copy the data back
54324                         // and forth.
54325             }
54326             
54327             if (!f.getName()) {
54328                 return;
54329             }
54330             var v = f.getValue();
54331             if (f.inputType =='radio') {
54332                 if (typeof(ret[f.getName()]) == 'undefined') {
54333                     ret[f.getName()] = ''; // empty..
54334                 }
54335                 
54336                 if (!f.el.dom.checked) {
54337                     return;
54338                     
54339                 }
54340                 v = f.el.dom.value;
54341                 
54342             }
54343             
54344             // not sure if this supported any more..
54345             if ((typeof(v) == 'object') && f.getRawValue) {
54346                 v = f.getRawValue() ; // dates..
54347             }
54348             // combo boxes where name != hiddenName...
54349             if (f.name != f.getName()) {
54350                 ret[f.name] = f.getRawValue();
54351             }
54352             ret[f.getName()] = v;
54353         });
54354         
54355         return ret;
54356     },
54357
54358     /**
54359      * Clears all invalid messages in this form.
54360      * @return {BasicForm} this
54361      */
54362     clearInvalid : function(){
54363         this.items.each(function(f){
54364            f.clearInvalid();
54365         });
54366         
54367         Roo.each(this.childForms || [], function (f) {
54368             f.clearInvalid();
54369         });
54370         
54371         
54372         return this;
54373     },
54374
54375     /**
54376      * Resets this form.
54377      * @return {BasicForm} this
54378      */
54379     reset : function(){
54380         this.items.each(function(f){
54381             f.reset();
54382         });
54383         
54384         Roo.each(this.childForms || [], function (f) {
54385             f.reset();
54386         });
54387         this.resetHasChanged();
54388         
54389         return this;
54390     },
54391
54392     /**
54393      * Add Roo.form components to this form.
54394      * @param {Field} field1
54395      * @param {Field} field2 (optional)
54396      * @param {Field} etc (optional)
54397      * @return {BasicForm} this
54398      */
54399     add : function(){
54400         this.items.addAll(Array.prototype.slice.call(arguments, 0));
54401         return this;
54402     },
54403
54404
54405     /**
54406      * Removes a field from the items collection (does NOT remove its markup).
54407      * @param {Field} field
54408      * @return {BasicForm} this
54409      */
54410     remove : function(field){
54411         this.items.remove(field);
54412         return this;
54413     },
54414
54415     /**
54416      * Looks at the fields in this form, checks them for an id attribute,
54417      * and calls applyTo on the existing dom element with that id.
54418      * @return {BasicForm} this
54419      */
54420     render : function(){
54421         this.items.each(function(f){
54422             if(f.isFormField && !f.rendered && document.getElementById(f.id)){ // if the element exists
54423                 f.applyTo(f.id);
54424             }
54425         });
54426         return this;
54427     },
54428
54429     /**
54430      * Calls {@link Ext#apply} for all fields in this form with the passed object.
54431      * @param {Object} values
54432      * @return {BasicForm} this
54433      */
54434     applyToFields : function(o){
54435         this.items.each(function(f){
54436            Roo.apply(f, o);
54437         });
54438         return this;
54439     },
54440
54441     /**
54442      * Calls {@link Ext#applyIf} for all field in this form with the passed object.
54443      * @param {Object} values
54444      * @return {BasicForm} this
54445      */
54446     applyIfToFields : function(o){
54447         this.items.each(function(f){
54448            Roo.applyIf(f, o);
54449         });
54450         return this;
54451     }
54452 });
54453
54454 // back compat
54455 Roo.BasicForm = Roo.form.BasicForm;
54456
54457 Roo.apply(Roo.form.BasicForm, {
54458     
54459     popover : {
54460         
54461         padding : 5,
54462         
54463         isApplied : false,
54464         
54465         isMasked : false,
54466         
54467         form : false,
54468         
54469         target : false,
54470         
54471         intervalID : false,
54472         
54473         maskEl : false,
54474         
54475         apply : function()
54476         {
54477             if(this.isApplied){
54478                 return;
54479             }
54480             
54481             this.maskEl = {
54482                 top : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-top-mask" }, true),
54483                 left : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-left-mask" }, true),
54484                 bottom : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-bottom-mask" }, true),
54485                 right : Roo.DomHelper.append(Roo.get(document.body), { tag: "div", cls:"x-dlg-mask roo-form-right-mask" }, true)
54486             };
54487             
54488             this.maskEl.top.enableDisplayMode("block");
54489             this.maskEl.left.enableDisplayMode("block");
54490             this.maskEl.bottom.enableDisplayMode("block");
54491             this.maskEl.right.enableDisplayMode("block");
54492             
54493             Roo.get(document.body).on('click', function(){
54494                 this.unmask();
54495             }, this);
54496             
54497             Roo.get(document.body).on('touchstart', function(){
54498                 this.unmask();
54499             }, this);
54500             
54501             this.isApplied = true
54502         },
54503         
54504         mask : function(form, target)
54505         {
54506             this.form = form;
54507             
54508             this.target = target;
54509             
54510             if(!this.form.errorMask || !target.el){
54511                 return;
54512             }
54513             
54514             var scrollable = this.target.el.findScrollableParent() || this.target.el.findParent('div.x-layout-active-content', 100, true) || Roo.get(document.body);
54515             
54516             var ot = this.target.el.calcOffsetsTo(scrollable);
54517             
54518             var scrollTo = ot[1] - this.form.maskOffset;
54519             
54520             scrollTo = Math.min(scrollTo, scrollable.dom.scrollHeight);
54521             
54522             scrollable.scrollTo('top', scrollTo);
54523             
54524             var el = this.target.wrap || this.target.el;
54525             
54526             var box = el.getBox();
54527             
54528             this.maskEl.top.setStyle('position', 'absolute');
54529             this.maskEl.top.setStyle('z-index', 10000);
54530             this.maskEl.top.setSize(Roo.lib.Dom.getDocumentWidth(), box.y - this.padding);
54531             this.maskEl.top.setLeft(0);
54532             this.maskEl.top.setTop(0);
54533             this.maskEl.top.show();
54534             
54535             this.maskEl.left.setStyle('position', 'absolute');
54536             this.maskEl.left.setStyle('z-index', 10000);
54537             this.maskEl.left.setSize(box.x - this.padding, box.height + this.padding * 2);
54538             this.maskEl.left.setLeft(0);
54539             this.maskEl.left.setTop(box.y - this.padding);
54540             this.maskEl.left.show();
54541
54542             this.maskEl.bottom.setStyle('position', 'absolute');
54543             this.maskEl.bottom.setStyle('z-index', 10000);
54544             this.maskEl.bottom.setSize(Roo.lib.Dom.getDocumentWidth(), Roo.lib.Dom.getDocumentHeight() - box.bottom - this.padding);
54545             this.maskEl.bottom.setLeft(0);
54546             this.maskEl.bottom.setTop(box.bottom + this.padding);
54547             this.maskEl.bottom.show();
54548
54549             this.maskEl.right.setStyle('position', 'absolute');
54550             this.maskEl.right.setStyle('z-index', 10000);
54551             this.maskEl.right.setSize(Roo.lib.Dom.getDocumentWidth() - box.right - this.padding, box.height + this.padding * 2);
54552             this.maskEl.right.setLeft(box.right + this.padding);
54553             this.maskEl.right.setTop(box.y - this.padding);
54554             this.maskEl.right.show();
54555
54556             this.intervalID = window.setInterval(function() {
54557                 Roo.form.BasicForm.popover.unmask();
54558             }, 10000);
54559
54560             window.onwheel = function(){ return false;};
54561             
54562             (function(){ this.isMasked = true; }).defer(500, this);
54563             
54564         },
54565         
54566         unmask : function()
54567         {
54568             if(!this.isApplied || !this.isMasked || !this.form || !this.target || !this.form.errorMask){
54569                 return;
54570             }
54571             
54572             this.maskEl.top.setStyle('position', 'absolute');
54573             this.maskEl.top.setSize(0, 0).setXY([0, 0]);
54574             this.maskEl.top.hide();
54575
54576             this.maskEl.left.setStyle('position', 'absolute');
54577             this.maskEl.left.setSize(0, 0).setXY([0, 0]);
54578             this.maskEl.left.hide();
54579
54580             this.maskEl.bottom.setStyle('position', 'absolute');
54581             this.maskEl.bottom.setSize(0, 0).setXY([0, 0]);
54582             this.maskEl.bottom.hide();
54583
54584             this.maskEl.right.setStyle('position', 'absolute');
54585             this.maskEl.right.setSize(0, 0).setXY([0, 0]);
54586             this.maskEl.right.hide();
54587             
54588             window.onwheel = function(){ return true;};
54589             
54590             if(this.intervalID){
54591                 window.clearInterval(this.intervalID);
54592                 this.intervalID = false;
54593             }
54594             
54595             this.isMasked = false;
54596             
54597         }
54598         
54599     }
54600     
54601 });/*
54602  * Based on:
54603  * Ext JS Library 1.1.1
54604  * Copyright(c) 2006-2007, Ext JS, LLC.
54605  *
54606  * Originally Released Under LGPL - original licence link has changed is not relivant.
54607  *
54608  * Fork - LGPL
54609  * <script type="text/javascript">
54610  */
54611
54612 /**
54613  * @class Roo.form.Form
54614  * @extends Roo.form.BasicForm
54615  * @children Roo.form.Column Roo.form.FieldSet Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
54616  * Adds the ability to dynamically render forms with JavaScript to {@link Roo.form.BasicForm}.
54617  * @constructor
54618  * @param {Object} config Configuration options
54619  */
54620 Roo.form.Form = function(config){
54621     var xitems =  [];
54622     if (config.items) {
54623         xitems = config.items;
54624         delete config.items;
54625     }
54626    
54627     
54628     Roo.form.Form.superclass.constructor.call(this, null, config);
54629     this.url = this.url || this.action;
54630     if(!this.root){
54631         this.root = new Roo.form.Layout(Roo.applyIf({
54632             id: Roo.id()
54633         }, config));
54634     }
54635     this.active = this.root;
54636     /**
54637      * Array of all the buttons that have been added to this form via {@link addButton}
54638      * @type Array
54639      */
54640     this.buttons = [];
54641     this.allItems = [];
54642     this.addEvents({
54643         /**
54644          * @event clientvalidation
54645          * If the monitorValid config option is true, this event fires repetitively to notify of valid state
54646          * @param {Form} this
54647          * @param {Boolean} valid true if the form has passed client-side validation
54648          */
54649         clientvalidation: true,
54650         /**
54651          * @event rendered
54652          * Fires when the form is rendered
54653          * @param {Roo.form.Form} form
54654          */
54655         rendered : true
54656     });
54657     
54658     if (this.progressUrl) {
54659             // push a hidden field onto the list of fields..
54660             this.addxtype( {
54661                     xns: Roo.form, 
54662                     xtype : 'Hidden', 
54663                     name : 'UPLOAD_IDENTIFIER' 
54664             });
54665         }
54666         
54667     
54668     Roo.each(xitems, this.addxtype, this);
54669     
54670 };
54671
54672 Roo.extend(Roo.form.Form, Roo.form.BasicForm, {
54673      /**
54674      * @cfg {Roo.Button} buttons[] buttons at bottom of form
54675      */
54676     
54677     /**
54678      * @cfg {Number} labelWidth The width of labels. This property cascades to child containers.
54679      */
54680     /**
54681      * @cfg {String} itemCls A css class to apply to the x-form-item of fields. This property cascades to child containers.
54682      */
54683     /**
54684      * @cfg {String} (left|center|right) buttonAlign Valid values are "left," "center" and "right" (defaults to "center")
54685      */
54686     buttonAlign:'center',
54687
54688     /**
54689      * @cfg {Number} minButtonWidth Minimum width of all buttons in pixels (defaults to 75)
54690      */
54691     minButtonWidth:75,
54692
54693     /**
54694      * @cfg {String} labelAlign (left|top|right) Valid values are "left," "top" and "right" (defaults to "left").
54695      * This property cascades to child containers if not set.
54696      */
54697     labelAlign:'left',
54698
54699     /**
54700      * @cfg {Boolean} monitorValid If true the form monitors its valid state <b>client-side</b> and
54701      * fires a looping event with that state. This is required to bind buttons to the valid
54702      * state using the config value formBind:true on the button.
54703      */
54704     monitorValid : false,
54705
54706     /**
54707      * @cfg {Number} monitorPoll The milliseconds to poll valid state, ignored if monitorValid is not true (defaults to 200)
54708      */
54709     monitorPoll : 200,
54710     
54711     /**
54712      * @cfg {String} progressUrl - Url to return progress data 
54713      */
54714     
54715     progressUrl : false,
54716     /**
54717      * @cfg {boolean|FormData} formData - true to use new 'FormData' post, or set to a new FormData({dom form}) Object, if
54718      * sending a formdata with extra parameters - eg uploaded elements.
54719      */
54720     
54721     formData : false,
54722     
54723     /**
54724      * Opens a new {@link Roo.form.Column} container in the layout stack. If fields are passed after the config, the
54725      * fields are added and the column is closed. If no fields are passed the column remains open
54726      * until end() is called.
54727      * @param {Object} config The config to pass to the column
54728      * @param {Field} field1 (optional)
54729      * @param {Field} field2 (optional)
54730      * @param {Field} etc (optional)
54731      * @return Column The column container object
54732      */
54733     column : function(c){
54734         var col = new Roo.form.Column(c);
54735         this.start(col);
54736         if(arguments.length > 1){ // duplicate code required because of Opera
54737             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
54738             this.end();
54739         }
54740         return col;
54741     },
54742
54743     /**
54744      * Opens a new {@link Roo.form.FieldSet} container in the layout stack. If fields are passed after the config, the
54745      * fields are added and the fieldset is closed. If no fields are passed the fieldset remains open
54746      * until end() is called.
54747      * @param {Object} config The config to pass to the fieldset
54748      * @param {Field} field1 (optional)
54749      * @param {Field} field2 (optional)
54750      * @param {Field} etc (optional)
54751      * @return FieldSet The fieldset container object
54752      */
54753     fieldset : function(c){
54754         var fs = new Roo.form.FieldSet(c);
54755         this.start(fs);
54756         if(arguments.length > 1){ // duplicate code required because of Opera
54757             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
54758             this.end();
54759         }
54760         return fs;
54761     },
54762
54763     /**
54764      * Opens a new {@link Roo.form.Layout} container in the layout stack. If fields are passed after the config, the
54765      * fields are added and the container is closed. If no fields are passed the container remains open
54766      * until end() is called.
54767      * @param {Object} config The config to pass to the Layout
54768      * @param {Field} field1 (optional)
54769      * @param {Field} field2 (optional)
54770      * @param {Field} etc (optional)
54771      * @return Layout The container object
54772      */
54773     container : function(c){
54774         var l = new Roo.form.Layout(c);
54775         this.start(l);
54776         if(arguments.length > 1){ // duplicate code required because of Opera
54777             this.add.apply(this, Array.prototype.slice.call(arguments, 1));
54778             this.end();
54779         }
54780         return l;
54781     },
54782
54783     /**
54784      * Opens the passed container in the layout stack. The container can be any {@link Roo.form.Layout} or subclass.
54785      * @param {Object} container A Roo.form.Layout or subclass of Layout
54786      * @return {Form} this
54787      */
54788     start : function(c){
54789         // cascade label info
54790         Roo.applyIf(c, {'labelAlign': this.active.labelAlign, 'labelWidth': this.active.labelWidth, 'itemCls': this.active.itemCls});
54791         this.active.stack.push(c);
54792         c.ownerCt = this.active;
54793         this.active = c;
54794         return this;
54795     },
54796
54797     /**
54798      * Closes the current open container
54799      * @return {Form} this
54800      */
54801     end : function(){
54802         if(this.active == this.root){
54803             return this;
54804         }
54805         this.active = this.active.ownerCt;
54806         return this;
54807     },
54808
54809     /**
54810      * Add Roo.form components to the current open container (e.g. column, fieldset, etc.).  Fields added via this method
54811      * can also be passed with an additional property of fieldLabel, which if supplied, will provide the text to display
54812      * as the label of the field.
54813      * @param {Field} field1
54814      * @param {Field} field2 (optional)
54815      * @param {Field} etc. (optional)
54816      * @return {Form} this
54817      */
54818     add : function(){
54819         this.active.stack.push.apply(this.active.stack, arguments);
54820         this.allItems.push.apply(this.allItems,arguments);
54821         var r = [];
54822         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
54823             if(a[i].isFormField){
54824                 r.push(a[i]);
54825             }
54826         }
54827         if(r.length > 0){
54828             Roo.form.Form.superclass.add.apply(this, r);
54829         }
54830         return this;
54831     },
54832     
54833
54834     
54835     
54836     
54837      /**
54838      * Find any element that has been added to a form, using it's ID or name
54839      * This can include framesets, columns etc. along with regular fields..
54840      * @param {String} id - id or name to find.
54841      
54842      * @return {Element} e - or false if nothing found.
54843      */
54844     findbyId : function(id)
54845     {
54846         var ret = false;
54847         if (!id) {
54848             return ret;
54849         }
54850         Roo.each(this.allItems, function(f){
54851             if (f.id == id || f.name == id ){
54852                 ret = f;
54853                 return false;
54854             }
54855         });
54856         return ret;
54857     },
54858
54859     
54860     
54861     /**
54862      * Render this form into the passed container. This should only be called once!
54863      * @param {String/HTMLElement/Element} container The element this component should be rendered into
54864      * @return {Form} this
54865      */
54866     render : function(ct)
54867     {
54868         
54869         
54870         
54871         ct = Roo.get(ct);
54872         var o = this.autoCreate || {
54873             tag: 'form',
54874             method : this.method || 'POST',
54875             id : this.id || Roo.id()
54876         };
54877         this.initEl(ct.createChild(o));
54878
54879         this.root.render(this.el);
54880         
54881        
54882              
54883         this.items.each(function(f){
54884             f.render('x-form-el-'+f.id);
54885         });
54886
54887         if(this.buttons.length > 0){
54888             // tables are required to maintain order and for correct IE layout
54889             var tb = this.el.createChild({cls:'x-form-btns-ct', cn: {
54890                 cls:"x-form-btns x-form-btns-"+this.buttonAlign,
54891                 html:'<table cellspacing="0"><tbody><tr></tr></tbody></table><div class="x-clear"></div>'
54892             }}, null, true);
54893             var tr = tb.getElementsByTagName('tr')[0];
54894             for(var i = 0, len = this.buttons.length; i < len; i++) {
54895                 var b = this.buttons[i];
54896                 var td = document.createElement('td');
54897                 td.className = 'x-form-btn-td';
54898                 b.render(tr.appendChild(td));
54899             }
54900         }
54901         if(this.monitorValid){ // initialize after render
54902             this.startMonitoring();
54903         }
54904         this.fireEvent('rendered', this);
54905         return this;
54906     },
54907
54908     /**
54909      * Adds a button to the footer of the form - this <b>must</b> be called before the form is rendered.
54910      * @param {String/Object} config A string becomes the button text, an object can either be a Button config
54911      * object or a valid Roo.DomHelper element config
54912      * @param {Function} handler The function called when the button is clicked
54913      * @param {Object} scope (optional) The scope of the handler function
54914      * @return {Roo.Button}
54915      */
54916     addButton : function(config, handler, scope){
54917         var bc = {
54918             handler: handler,
54919             scope: scope,
54920             minWidth: this.minButtonWidth,
54921             hideParent:true
54922         };
54923         if(typeof config == "string"){
54924             bc.text = config;
54925         }else{
54926             Roo.apply(bc, config);
54927         }
54928         var btn = new Roo.Button(null, bc);
54929         this.buttons.push(btn);
54930         return btn;
54931     },
54932
54933      /**
54934      * Adds a series of form elements (using the xtype property as the factory method.
54935      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column, (and 'end' to close a block)
54936      * @param {Object} config 
54937      */
54938     
54939     addxtype : function()
54940     {
54941         var ar = Array.prototype.slice.call(arguments, 0);
54942         var ret = false;
54943         for(var i = 0; i < ar.length; i++) {
54944             if (!ar[i]) {
54945                 continue; // skip -- if this happends something invalid got sent, we 
54946                 // should ignore it, as basically that interface element will not show up
54947                 // and that should be pretty obvious!!
54948             }
54949             
54950             if (Roo.form[ar[i].xtype]) {
54951                 ar[i].form = this;
54952                 var fe = Roo.factory(ar[i], Roo.form);
54953                 if (!ret) {
54954                     ret = fe;
54955                 }
54956                 fe.form = this;
54957                 if (fe.store) {
54958                     fe.store.form = this;
54959                 }
54960                 if (fe.isLayout) {  
54961                          
54962                     this.start(fe);
54963                     this.allItems.push(fe);
54964                     if (fe.items && fe.addxtype) {
54965                         fe.addxtype.apply(fe, fe.items);
54966                         delete fe.items;
54967                     }
54968                      this.end();
54969                     continue;
54970                 }
54971                 
54972                 
54973                  
54974                 this.add(fe);
54975               //  console.log('adding ' + ar[i].xtype);
54976             }
54977             if (ar[i].xtype == 'Button') {  
54978                 //console.log('adding button');
54979                 //console.log(ar[i]);
54980                 this.addButton(ar[i]);
54981                 this.allItems.push(fe);
54982                 continue;
54983             }
54984             
54985             if (ar[i].xtype == 'end') { // so we can add fieldsets... / layout etc.
54986                 alert('end is not supported on xtype any more, use items');
54987             //    this.end();
54988             //    //console.log('adding end');
54989             }
54990             
54991         }
54992         return ret;
54993     },
54994     
54995     /**
54996      * Starts monitoring of the valid state of this form. Usually this is done by passing the config
54997      * option "monitorValid"
54998      */
54999     startMonitoring : function(){
55000         if(!this.bound){
55001             this.bound = true;
55002             Roo.TaskMgr.start({
55003                 run : this.bindHandler,
55004                 interval : this.monitorPoll || 200,
55005                 scope: this
55006             });
55007         }
55008     },
55009
55010     /**
55011      * Stops monitoring of the valid state of this form
55012      */
55013     stopMonitoring : function(){
55014         this.bound = false;
55015     },
55016
55017     // private
55018     bindHandler : function(){
55019         if(!this.bound){
55020             return false; // stops binding
55021         }
55022         var valid = true;
55023         this.items.each(function(f){
55024             if(!f.isValid(true)){
55025                 valid = false;
55026                 return false;
55027             }
55028         });
55029         for(var i = 0, len = this.buttons.length; i < len; i++){
55030             var btn = this.buttons[i];
55031             if(btn.formBind === true && btn.disabled === valid){
55032                 btn.setDisabled(!valid);
55033             }
55034         }
55035         this.fireEvent('clientvalidation', this, valid);
55036     }
55037     
55038     
55039     
55040     
55041     
55042     
55043     
55044     
55045 });
55046
55047
55048 // back compat
55049 Roo.Form = Roo.form.Form;
55050 /*
55051  * Based on:
55052  * Ext JS Library 1.1.1
55053  * Copyright(c) 2006-2007, Ext JS, LLC.
55054  *
55055  * Originally Released Under LGPL - original licence link has changed is not relivant.
55056  *
55057  * Fork - LGPL
55058  * <script type="text/javascript">
55059  */
55060
55061 // as we use this in bootstrap.
55062 Roo.namespace('Roo.form');
55063  /**
55064  * @class Roo.form.Action
55065  * Internal Class used to handle form actions
55066  * @constructor
55067  * @param {Roo.form.BasicForm} el The form element or its id
55068  * @param {Object} config Configuration options
55069  */
55070
55071  
55072  
55073 // define the action interface
55074 Roo.form.Action = function(form, options){
55075     this.form = form;
55076     this.options = options || {};
55077 };
55078 /**
55079  * Client Validation Failed
55080  * @const 
55081  */
55082 Roo.form.Action.CLIENT_INVALID = 'client';
55083 /**
55084  * Server Validation Failed
55085  * @const 
55086  */
55087 Roo.form.Action.SERVER_INVALID = 'server';
55088  /**
55089  * Connect to Server Failed
55090  * @const 
55091  */
55092 Roo.form.Action.CONNECT_FAILURE = 'connect';
55093 /**
55094  * Reading Data from Server Failed
55095  * @const 
55096  */
55097 Roo.form.Action.LOAD_FAILURE = 'load';
55098
55099 Roo.form.Action.prototype = {
55100     type : 'default',
55101     failureType : undefined,
55102     response : undefined,
55103     result : undefined,
55104
55105     // interface method
55106     run : function(options){
55107
55108     },
55109
55110     // interface method
55111     success : function(response){
55112
55113     },
55114
55115     // interface method
55116     handleResponse : function(response){
55117
55118     },
55119
55120     // default connection failure
55121     failure : function(response){
55122         
55123         this.response = response;
55124         this.failureType = Roo.form.Action.CONNECT_FAILURE;
55125         this.form.afterAction(this, false);
55126     },
55127
55128     processResponse : function(response){
55129         this.response = response;
55130         if(!response.responseText){
55131             return true;
55132         }
55133         this.result = this.handleResponse(response);
55134         return this.result;
55135     },
55136
55137     // utility functions used internally
55138     getUrl : function(appendParams){
55139         var url = this.options.url || this.form.url || this.form.el.dom.action;
55140         if(appendParams){
55141             var p = this.getParams();
55142             if(p){
55143                 url += (url.indexOf('?') != -1 ? '&' : '?') + p;
55144             }
55145         }
55146         return url;
55147     },
55148
55149     getMethod : function(){
55150         return (this.options.method || this.form.method || this.form.el.dom.method || 'POST').toUpperCase();
55151     },
55152
55153     getParams : function(){
55154         var bp = this.form.baseParams;
55155         var p = this.options.params;
55156         if(p){
55157             if(typeof p == "object"){
55158                 p = Roo.urlEncode(Roo.applyIf(p, bp));
55159             }else if(typeof p == 'string' && bp){
55160                 p += '&' + Roo.urlEncode(bp);
55161             }
55162         }else if(bp){
55163             p = Roo.urlEncode(bp);
55164         }
55165         return p;
55166     },
55167
55168     createCallback : function(){
55169         return {
55170             success: this.success,
55171             failure: this.failure,
55172             scope: this,
55173             timeout: (this.form.timeout*1000),
55174             upload: this.form.fileUpload ? this.success : undefined
55175         };
55176     }
55177 };
55178
55179 Roo.form.Action.Submit = function(form, options){
55180     Roo.form.Action.Submit.superclass.constructor.call(this, form, options);
55181 };
55182
55183 Roo.extend(Roo.form.Action.Submit, Roo.form.Action, {
55184     type : 'submit',
55185
55186     haveProgress : false,
55187     uploadComplete : false,
55188     
55189     // uploadProgress indicator.
55190     uploadProgress : function()
55191     {
55192         if (!this.form.progressUrl) {
55193             return;
55194         }
55195         
55196         if (!this.haveProgress) {
55197             Roo.MessageBox.progress("Uploading", "Uploading");
55198         }
55199         if (this.uploadComplete) {
55200            Roo.MessageBox.hide();
55201            return;
55202         }
55203         
55204         this.haveProgress = true;
55205    
55206         var uid = this.form.findField('UPLOAD_IDENTIFIER').getValue();
55207         
55208         var c = new Roo.data.Connection();
55209         c.request({
55210             url : this.form.progressUrl,
55211             params: {
55212                 id : uid
55213             },
55214             method: 'GET',
55215             success : function(req){
55216                //console.log(data);
55217                 var rdata = false;
55218                 var edata;
55219                 try  {
55220                    rdata = Roo.decode(req.responseText)
55221                 } catch (e) {
55222                     Roo.log("Invalid data from server..");
55223                     Roo.log(edata);
55224                     return;
55225                 }
55226                 if (!rdata || !rdata.success) {
55227                     Roo.log(rdata);
55228                     Roo.MessageBox.alert(Roo.encode(rdata));
55229                     return;
55230                 }
55231                 var data = rdata.data;
55232                 
55233                 if (this.uploadComplete) {
55234                    Roo.MessageBox.hide();
55235                    return;
55236                 }
55237                    
55238                 if (data){
55239                     Roo.MessageBox.updateProgress(data.bytes_uploaded/data.bytes_total,
55240                        Math.floor((data.bytes_total - data.bytes_uploaded)/1000) + 'k remaining'
55241                     );
55242                 }
55243                 this.uploadProgress.defer(2000,this);
55244             },
55245        
55246             failure: function(data) {
55247                 Roo.log('progress url failed ');
55248                 Roo.log(data);
55249             },
55250             scope : this
55251         });
55252            
55253     },
55254     
55255     
55256     run : function()
55257     {
55258         // run get Values on the form, so it syncs any secondary forms.
55259         this.form.getValues();
55260         
55261         var o = this.options;
55262         var method = this.getMethod();
55263         var isPost = method == 'POST';
55264         if(o.clientValidation === false || this.form.isValid()){
55265             
55266             if (this.form.progressUrl) {
55267                 this.form.findField('UPLOAD_IDENTIFIER').setValue(
55268                     (new Date() * 1) + '' + Math.random());
55269                     
55270             } 
55271             
55272             
55273             Roo.Ajax.request(Roo.apply(this.createCallback(), {
55274                 form:this.form.el.dom,
55275                 url:this.getUrl(!isPost),
55276                 method: method,
55277                 params:isPost ? this.getParams() : null,
55278                 isUpload: this.form.fileUpload,
55279                 formData : this.form.formData
55280             }));
55281             
55282             this.uploadProgress();
55283
55284         }else if (o.clientValidation !== false){ // client validation failed
55285             this.failureType = Roo.form.Action.CLIENT_INVALID;
55286             this.form.afterAction(this, false);
55287         }
55288     },
55289
55290     success : function(response)
55291     {
55292         this.uploadComplete= true;
55293         if (this.haveProgress) {
55294             Roo.MessageBox.hide();
55295         }
55296         
55297         
55298         var result = this.processResponse(response);
55299         if(result === true || result.success){
55300             this.form.afterAction(this, true);
55301             return;
55302         }
55303         if(result.errors){
55304             this.form.markInvalid(result.errors);
55305             this.failureType = Roo.form.Action.SERVER_INVALID;
55306         }
55307         this.form.afterAction(this, false);
55308     },
55309     failure : function(response)
55310     {
55311         this.uploadComplete= true;
55312         if (this.haveProgress) {
55313             Roo.MessageBox.hide();
55314         }
55315         
55316         this.response = response;
55317         this.failureType = Roo.form.Action.CONNECT_FAILURE;
55318         this.form.afterAction(this, false);
55319     },
55320     
55321     handleResponse : function(response){
55322         if(this.form.errorReader){
55323             var rs = this.form.errorReader.read(response);
55324             var errors = [];
55325             if(rs.records){
55326                 for(var i = 0, len = rs.records.length; i < len; i++) {
55327                     var r = rs.records[i];
55328                     errors[i] = r.data;
55329                 }
55330             }
55331             if(errors.length < 1){
55332                 errors = null;
55333             }
55334             return {
55335                 success : rs.success,
55336                 errors : errors
55337             };
55338         }
55339         var ret = false;
55340         try {
55341             ret = Roo.decode(response.responseText);
55342         } catch (e) {
55343             ret = {
55344                 success: false,
55345                 errorMsg: "Failed to read server message: " + (response ? response.responseText : ' - no message'),
55346                 errors : []
55347             };
55348         }
55349         return ret;
55350         
55351     }
55352 });
55353
55354
55355 Roo.form.Action.Load = function(form, options){
55356     Roo.form.Action.Load.superclass.constructor.call(this, form, options);
55357     this.reader = this.form.reader;
55358 };
55359
55360 Roo.extend(Roo.form.Action.Load, Roo.form.Action, {
55361     type : 'load',
55362
55363     run : function(){
55364         
55365         Roo.Ajax.request(Roo.apply(
55366                 this.createCallback(), {
55367                     method:this.getMethod(),
55368                     url:this.getUrl(false),
55369                     params:this.getParams()
55370         }));
55371     },
55372
55373     success : function(response){
55374         
55375         var result = this.processResponse(response);
55376         if(result === true || !result.success || !result.data){
55377             this.failureType = Roo.form.Action.LOAD_FAILURE;
55378             this.form.afterAction(this, false);
55379             return;
55380         }
55381         this.form.clearInvalid();
55382         this.form.setValues(result.data);
55383         this.form.afterAction(this, true);
55384     },
55385
55386     handleResponse : function(response){
55387         if(this.form.reader){
55388             var rs = this.form.reader.read(response);
55389             var data = rs.records && rs.records[0] ? rs.records[0].data : null;
55390             return {
55391                 success : rs.success,
55392                 data : data
55393             };
55394         }
55395         return Roo.decode(response.responseText);
55396     }
55397 });
55398
55399 Roo.form.Action.ACTION_TYPES = {
55400     'load' : Roo.form.Action.Load,
55401     'submit' : Roo.form.Action.Submit
55402 };/*
55403  * Based on:
55404  * Ext JS Library 1.1.1
55405  * Copyright(c) 2006-2007, Ext JS, LLC.
55406  *
55407  * Originally Released Under LGPL - original licence link has changed is not relivant.
55408  *
55409  * Fork - LGPL
55410  * <script type="text/javascript">
55411  */
55412  
55413 /**
55414  * @class Roo.form.Layout
55415  * @extends Roo.Component
55416  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
55417  * Creates a container for layout and rendering of fields in an {@link Roo.form.Form}.
55418  * @constructor
55419  * @param {Object} config Configuration options
55420  */
55421 Roo.form.Layout = function(config){
55422     var xitems = [];
55423     if (config.items) {
55424         xitems = config.items;
55425         delete config.items;
55426     }
55427     Roo.form.Layout.superclass.constructor.call(this, config);
55428     this.stack = [];
55429     Roo.each(xitems, this.addxtype, this);
55430      
55431 };
55432
55433 Roo.extend(Roo.form.Layout, Roo.Component, {
55434     /**
55435      * @cfg {String/Object} autoCreate
55436      * A DomHelper element spec used to autocreate the layout (defaults to {tag: 'div', cls: 'x-form-ct'})
55437      */
55438     /**
55439      * @cfg {String/Object/Function} style
55440      * A style specification string, e.g. "width:100px", or object in the form {width:"100px"}, or
55441      * a function which returns such a specification.
55442      */
55443     /**
55444      * @cfg {String} labelAlign (left|top|right)
55445      * Valid values are "left," "top" and "right" (defaults to "left")
55446      */
55447     /**
55448      * @cfg {Number} labelWidth
55449      * Fixed width in pixels of all field labels (defaults to undefined)
55450      */
55451     /**
55452      * @cfg {Boolean} clear
55453      * True to add a clearing element at the end of this layout, equivalent to CSS clear: both (defaults to true)
55454      */
55455     clear : true,
55456     /**
55457      * @cfg {String} labelSeparator
55458      * The separator to use after field labels (defaults to ':')
55459      */
55460     labelSeparator : ':',
55461     /**
55462      * @cfg {Boolean} hideLabels
55463      * True to suppress the display of field labels in this layout (defaults to false)
55464      */
55465     hideLabels : false,
55466
55467     // private
55468     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct'},
55469     
55470     isLayout : true,
55471     
55472     // private
55473     onRender : function(ct, position){
55474         if(this.el){ // from markup
55475             this.el = Roo.get(this.el);
55476         }else {  // generate
55477             var cfg = this.getAutoCreate();
55478             this.el = ct.createChild(cfg, position);
55479         }
55480         if(this.style){
55481             this.el.applyStyles(this.style);
55482         }
55483         if(this.labelAlign){
55484             this.el.addClass('x-form-label-'+this.labelAlign);
55485         }
55486         if(this.hideLabels){
55487             this.labelStyle = "display:none";
55488             this.elementStyle = "padding-left:0;";
55489         }else{
55490             if(typeof this.labelWidth == 'number'){
55491                 this.labelStyle = "width:"+this.labelWidth+"px;";
55492                 this.elementStyle = "padding-left:"+((this.labelWidth+(typeof this.labelPad == 'number' ? this.labelPad : 5))+'px')+";";
55493             }
55494             if(this.labelAlign == 'top'){
55495                 this.labelStyle = "width:auto;";
55496                 this.elementStyle = "padding-left:0;";
55497             }
55498         }
55499         var stack = this.stack;
55500         var slen = stack.length;
55501         if(slen > 0){
55502             if(!this.fieldTpl){
55503                 var t = new Roo.Template(
55504                     '<div class="x-form-item {5}">',
55505                         '<label for="{0}" style="{2}">{1}{4}</label>',
55506                         '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
55507                         '</div>',
55508                     '</div><div class="x-form-clear-left"></div>'
55509                 );
55510                 t.disableFormats = true;
55511                 t.compile();
55512                 Roo.form.Layout.prototype.fieldTpl = t;
55513             }
55514             for(var i = 0; i < slen; i++) {
55515                 if(stack[i].isFormField){
55516                     this.renderField(stack[i]);
55517                 }else{
55518                     this.renderComponent(stack[i]);
55519                 }
55520             }
55521         }
55522         if(this.clear){
55523             this.el.createChild({cls:'x-form-clear'});
55524         }
55525     },
55526
55527     // private
55528     renderField : function(f){
55529         f.fieldEl = Roo.get(this.fieldTpl.append(this.el, [
55530                f.id, //0
55531                f.fieldLabel, //1
55532                f.labelStyle||this.labelStyle||'', //2
55533                this.elementStyle||'', //3
55534                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator, //4
55535                f.itemCls||this.itemCls||''  //5
55536        ], true).getPrevSibling());
55537     },
55538
55539     // private
55540     renderComponent : function(c){
55541         c.render(c.isLayout ? this.el : this.el.createChild());    
55542     },
55543     /**
55544      * Adds a object form elements (using the xtype property as the factory method.)
55545      * Valid xtypes are:  TextField, TextArea .... Button, Layout, FieldSet, Column
55546      * @param {Object} config 
55547      */
55548     addxtype : function(o)
55549     {
55550         // create the lement.
55551         o.form = this.form;
55552         var fe = Roo.factory(o, Roo.form);
55553         this.form.allItems.push(fe);
55554         this.stack.push(fe);
55555         
55556         if (fe.isFormField) {
55557             this.form.items.add(fe);
55558         }
55559          
55560         return fe;
55561     }
55562 });
55563
55564
55565 /**
55566  * @class Roo.form.Column
55567  * @extends Roo.form.Layout
55568  * @children Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
55569  * Creates a column container for layout and rendering of fields in an {@link Roo.form.Form}.
55570  * @constructor
55571  * @param {Object} config Configuration options
55572  */
55573 Roo.form.Column = function(config){
55574     Roo.form.Column.superclass.constructor.call(this, config);
55575 };
55576
55577 Roo.extend(Roo.form.Column, Roo.form.Layout, {
55578     /**
55579      * @cfg {Number/String} width
55580      * The fixed width of the column in pixels or CSS value (defaults to "auto")
55581      */
55582     /**
55583      * @cfg {String/Object} autoCreate
55584      * A DomHelper element spec used to autocreate the column (defaults to {tag: 'div', cls: 'x-form-ct x-form-column'})
55585      */
55586
55587     // private
55588     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-column'},
55589
55590     // private
55591     onRender : function(ct, position){
55592         Roo.form.Column.superclass.onRender.call(this, ct, position);
55593         if(this.width){
55594             this.el.setWidth(this.width);
55595         }
55596     }
55597 });
55598
55599 /**
55600  * @class Roo.form.Row
55601  * @extends Roo.form.Layout
55602  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem Roo.form.FieldSet
55603  * Creates a row container for layout and rendering of fields in an {@link Roo.form.Form}.
55604  * @constructor
55605  * @param {Object} config Configuration options
55606  */
55607
55608  
55609 Roo.form.Row = function(config){
55610     Roo.form.Row.superclass.constructor.call(this, config);
55611 };
55612  
55613 Roo.extend(Roo.form.Row, Roo.form.Layout, {
55614       /**
55615      * @cfg {Number/String} width
55616      * The fixed width of the column in pixels or CSS value (defaults to "auto")
55617      */
55618     /**
55619      * @cfg {Number/String} height
55620      * The fixed height of the column in pixels or CSS value (defaults to "auto")
55621      */
55622     defaultAutoCreate : {tag: 'div', cls: 'x-form-ct x-form-row'},
55623     
55624     padWidth : 20,
55625     // private
55626     onRender : function(ct, position){
55627         //console.log('row render');
55628         if(!this.rowTpl){
55629             var t = new Roo.Template(
55630                 '<div class="x-form-item {5}" style="float:left;width:{6}px">',
55631                     '<label for="{0}" style="{2}">{1}{4}</label>',
55632                     '<div class="x-form-element" id="x-form-el-{0}" style="{3}">',
55633                     '</div>',
55634                 '</div>'
55635             );
55636             t.disableFormats = true;
55637             t.compile();
55638             Roo.form.Layout.prototype.rowTpl = t;
55639         }
55640         this.fieldTpl = this.rowTpl;
55641         
55642         //console.log('lw' + this.labelWidth +', la:' + this.labelAlign);
55643         var labelWidth = 100;
55644         
55645         if ((this.labelAlign != 'top')) {
55646             if (typeof this.labelWidth == 'number') {
55647                 labelWidth = this.labelWidth
55648             }
55649             this.padWidth =  20 + labelWidth;
55650             
55651         }
55652         
55653         Roo.form.Column.superclass.onRender.call(this, ct, position);
55654         if(this.width){
55655             this.el.setWidth(this.width);
55656         }
55657         if(this.height){
55658             this.el.setHeight(this.height);
55659         }
55660     },
55661     
55662     // private
55663     renderField : function(f){
55664         f.fieldEl = this.fieldTpl.append(this.el, [
55665                f.id, f.fieldLabel,
55666                f.labelStyle||this.labelStyle||'',
55667                this.elementStyle||'',
55668                typeof f.labelSeparator == 'undefined' ? this.labelSeparator : f.labelSeparator,
55669                f.itemCls||this.itemCls||'',
55670                f.width ? f.width + this.padWidth : 160 + this.padWidth
55671        ],true);
55672     }
55673 });
55674  
55675
55676 /**
55677  * @class Roo.form.FieldSet
55678  * @extends Roo.form.Layout
55679  * @children Roo.form.Column Roo.form.Row Roo.form.Field Roo.Button Roo.form.TextItem
55680  * Creates a fieldset container for layout and rendering of fields in an {@link Roo.form.Form}.
55681  * @constructor
55682  * @param {Object} config Configuration options
55683  */
55684 Roo.form.FieldSet = function(config){
55685     Roo.form.FieldSet.superclass.constructor.call(this, config);
55686 };
55687
55688 Roo.extend(Roo.form.FieldSet, Roo.form.Layout, {
55689     /**
55690      * @cfg {String} legend
55691      * The text to display as the legend for the FieldSet (defaults to '')
55692      */
55693     /**
55694      * @cfg {String/Object} autoCreate
55695      * A DomHelper element spec used to autocreate the fieldset (defaults to {tag: 'fieldset', cn: {tag:'legend'}})
55696      */
55697
55698     // private
55699     defaultAutoCreate : {tag: 'fieldset', cn: {tag:'legend'}},
55700
55701     // private
55702     onRender : function(ct, position){
55703         Roo.form.FieldSet.superclass.onRender.call(this, ct, position);
55704         if(this.legend){
55705             this.setLegend(this.legend);
55706         }
55707     },
55708
55709     // private
55710     setLegend : function(text){
55711         if(this.rendered){
55712             this.el.child('legend').update(text);
55713         }
55714     }
55715 });/*
55716  * Based on:
55717  * Ext JS Library 1.1.1
55718  * Copyright(c) 2006-2007, Ext JS, LLC.
55719  *
55720  * Originally Released Under LGPL - original licence link has changed is not relivant.
55721  *
55722  * Fork - LGPL
55723  * <script type="text/javascript">
55724  */
55725 /**
55726  * @class Roo.form.VTypes
55727  * Overridable validation definitions. The validations provided are basic and intended to be easily customizable and extended.
55728  * @static
55729  */
55730 Roo.form.VTypes = function(){
55731     // closure these in so they are only created once.
55732     var alpha = /^[a-zA-Z_]+$/;
55733     var alphanum = /^[a-zA-Z0-9_]+$/;
55734     var email = /^([\w]+)(.[\w]+)*@([\w-]+\.){1,5}([A-Za-z]){2,24}$/;
55735     var url = /(((https?)|(ftp)):\/\/([\-\w]+\.)+\w{2,3}(\/[%\-\w]+(\.\w{2,})?)*(([\w\-\.\?\\\/+@&#;`~=%!]*)(\.\w{2,})?)*\/?)/i;
55736
55737     // All these messages and functions are configurable
55738     return {
55739         /**
55740          * The function used to validate email addresses
55741          * @param {String} value The email address
55742          */
55743         'email' : function(v){
55744             return email.test(v);
55745         },
55746         /**
55747          * The error text to display when the email validation function returns false
55748          * @type String
55749          */
55750         'emailText' : 'This field should be an e-mail address in the format "user@domain.com"',
55751         /**
55752          * The keystroke filter mask to be applied on email input
55753          * @type RegExp
55754          */
55755         'emailMask' : /[a-z0-9_\.\-@]/i,
55756
55757         /**
55758          * The function used to validate URLs
55759          * @param {String} value The URL
55760          */
55761         'url' : function(v){
55762             return url.test(v);
55763         },
55764         /**
55765          * The error text to display when the url validation function returns false
55766          * @type String
55767          */
55768         'urlText' : 'This field should be a URL in the format "http:/'+'/www.domain.com"',
55769         
55770         /**
55771          * The function used to validate alpha values
55772          * @param {String} value The value
55773          */
55774         'alpha' : function(v){
55775             return alpha.test(v);
55776         },
55777         /**
55778          * The error text to display when the alpha validation function returns false
55779          * @type String
55780          */
55781         'alphaText' : 'This field should only contain letters and _',
55782         /**
55783          * The keystroke filter mask to be applied on alpha input
55784          * @type RegExp
55785          */
55786         'alphaMask' : /[a-z_]/i,
55787
55788         /**
55789          * The function used to validate alphanumeric values
55790          * @param {String} value The value
55791          */
55792         'alphanum' : function(v){
55793             return alphanum.test(v);
55794         },
55795         /**
55796          * The error text to display when the alphanumeric validation function returns false
55797          * @type String
55798          */
55799         'alphanumText' : 'This field should only contain letters, numbers and _',
55800         /**
55801          * The keystroke filter mask to be applied on alphanumeric input
55802          * @type RegExp
55803          */
55804         'alphanumMask' : /[a-z0-9_]/i
55805     };
55806 }();//<script type="text/javascript">
55807
55808 /**
55809  * @class Roo.form.FCKeditor
55810  * @extends Roo.form.TextArea
55811  * Wrapper around the FCKEditor http://www.fckeditor.net
55812  * @constructor
55813  * Creates a new FCKeditor
55814  * @param {Object} config Configuration options
55815  */
55816 Roo.form.FCKeditor = function(config){
55817     Roo.form.FCKeditor.superclass.constructor.call(this, config);
55818     this.addEvents({
55819          /**
55820          * @event editorinit
55821          * Fired when the editor is initialized - you can add extra handlers here..
55822          * @param {FCKeditor} this
55823          * @param {Object} the FCK object.
55824          */
55825         editorinit : true
55826     });
55827     
55828     
55829 };
55830 Roo.form.FCKeditor.editors = { };
55831 Roo.extend(Roo.form.FCKeditor, Roo.form.TextArea,
55832 {
55833     //defaultAutoCreate : {
55834     //    tag : "textarea",style   : "width:100px;height:60px;" ,autocomplete    : "off"
55835     //},
55836     // private
55837     /**
55838      * @cfg {Object} fck options - see fck manual for details.
55839      */
55840     fckconfig : false,
55841     
55842     /**
55843      * @cfg {Object} fck toolbar set (Basic or Default)
55844      */
55845     toolbarSet : 'Basic',
55846     /**
55847      * @cfg {Object} fck BasePath
55848      */ 
55849     basePath : '/fckeditor/',
55850     
55851     
55852     frame : false,
55853     
55854     value : '',
55855     
55856    
55857     onRender : function(ct, position)
55858     {
55859         if(!this.el){
55860             this.defaultAutoCreate = {
55861                 tag: "textarea",
55862                 style:"width:300px;height:60px;",
55863                 autocomplete: "new-password"
55864             };
55865         }
55866         Roo.form.FCKeditor.superclass.onRender.call(this, ct, position);
55867         /*
55868         if(this.grow){
55869             this.textSizeEl = Roo.DomHelper.append(document.body, {tag: "pre", cls: "x-form-grow-sizer"});
55870             if(this.preventScrollbars){
55871                 this.el.setStyle("overflow", "hidden");
55872             }
55873             this.el.setHeight(this.growMin);
55874         }
55875         */
55876         //console.log('onrender' + this.getId() );
55877         Roo.form.FCKeditor.editors[this.getId()] = this;
55878          
55879
55880         this.replaceTextarea() ;
55881         
55882     },
55883     
55884     getEditor : function() {
55885         return this.fckEditor;
55886     },
55887     /**
55888      * Sets a data value into the field and validates it.  To set the value directly without validation see {@link #setRawValue}.
55889      * @param {Mixed} value The value to set
55890      */
55891     
55892     
55893     setValue : function(value)
55894     {
55895         //console.log('setValue: ' + value);
55896         
55897         if(typeof(value) == 'undefined') { // not sure why this is happending...
55898             return;
55899         }
55900         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
55901         
55902         //if(!this.el || !this.getEditor()) {
55903         //    this.value = value;
55904             //this.setValue.defer(100,this,[value]);    
55905         //    return;
55906         //} 
55907         
55908         if(!this.getEditor()) {
55909             return;
55910         }
55911         
55912         this.getEditor().SetData(value);
55913         
55914         //
55915
55916     },
55917
55918     /**
55919      * Returns the normalized data value (undefined or emptyText will be returned as '').  To return the raw value see {@link #getRawValue}.
55920      * @return {Mixed} value The field value
55921      */
55922     getValue : function()
55923     {
55924         
55925         if (this.frame && this.frame.dom.style.display == 'none') {
55926             return Roo.form.FCKeditor.superclass.getValue.call(this);
55927         }
55928         
55929         if(!this.el || !this.getEditor()) {
55930            
55931            // this.getValue.defer(100,this); 
55932             return this.value;
55933         }
55934        
55935         
55936         var value=this.getEditor().GetData();
55937         Roo.form.FCKeditor.superclass.setValue.apply(this,[value]);
55938         return Roo.form.FCKeditor.superclass.getValue.call(this);
55939         
55940
55941     },
55942
55943     /**
55944      * Returns the raw data value which may or may not be a valid, defined value.  To return a normalized value see {@link #getValue}.
55945      * @return {Mixed} value The field value
55946      */
55947     getRawValue : function()
55948     {
55949         if (this.frame && this.frame.dom.style.display == 'none') {
55950             return Roo.form.FCKeditor.superclass.getRawValue.call(this);
55951         }
55952         
55953         if(!this.el || !this.getEditor()) {
55954             //this.getRawValue.defer(100,this); 
55955             return this.value;
55956             return;
55957         }
55958         
55959         
55960         
55961         var value=this.getEditor().GetData();
55962         Roo.form.FCKeditor.superclass.setRawValue.apply(this,[value]);
55963         return Roo.form.FCKeditor.superclass.getRawValue.call(this);
55964          
55965     },
55966     
55967     setSize : function(w,h) {
55968         
55969         
55970         
55971         //if (this.frame && this.frame.dom.style.display == 'none') {
55972         //    Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
55973         //    return;
55974         //}
55975         //if(!this.el || !this.getEditor()) {
55976         //    this.setSize.defer(100,this, [w,h]); 
55977         //    return;
55978         //}
55979         
55980         
55981         
55982         Roo.form.FCKeditor.superclass.setSize.apply(this, [w, h]);
55983         
55984         this.frame.dom.setAttribute('width', w);
55985         this.frame.dom.setAttribute('height', h);
55986         this.frame.setSize(w,h);
55987         
55988     },
55989     
55990     toggleSourceEdit : function(value) {
55991         
55992       
55993          
55994         this.el.dom.style.display = value ? '' : 'none';
55995         this.frame.dom.style.display = value ?  'none' : '';
55996         
55997     },
55998     
55999     
56000     focus: function(tag)
56001     {
56002         if (this.frame.dom.style.display == 'none') {
56003             return Roo.form.FCKeditor.superclass.focus.call(this);
56004         }
56005         if(!this.el || !this.getEditor()) {
56006             this.focus.defer(100,this, [tag]); 
56007             return;
56008         }
56009         
56010         
56011         
56012         
56013         var tgs = this.getEditor().EditorDocument.getElementsByTagName(tag);
56014         this.getEditor().Focus();
56015         if (tgs.length) {
56016             if (!this.getEditor().Selection.GetSelection()) {
56017                 this.focus.defer(100,this, [tag]); 
56018                 return;
56019             }
56020             
56021             
56022             var r = this.getEditor().EditorDocument.createRange();
56023             r.setStart(tgs[0],0);
56024             r.setEnd(tgs[0],0);
56025             this.getEditor().Selection.GetSelection().removeAllRanges();
56026             this.getEditor().Selection.GetSelection().addRange(r);
56027             this.getEditor().Focus();
56028         }
56029         
56030     },
56031     
56032     
56033     
56034     replaceTextarea : function()
56035     {
56036         if ( document.getElementById( this.getId() + '___Frame' ) ) {
56037             return ;
56038         }
56039         //if ( !this.checkBrowser || this._isCompatibleBrowser() )
56040         //{
56041             // We must check the elements firstly using the Id and then the name.
56042         var oTextarea = document.getElementById( this.getId() );
56043         
56044         var colElementsByName = document.getElementsByName( this.getId() ) ;
56045          
56046         oTextarea.style.display = 'none' ;
56047
56048         if ( oTextarea.tabIndex ) {            
56049             this.TabIndex = oTextarea.tabIndex ;
56050         }
56051         
56052         this._insertHtmlBefore( this._getConfigHtml(), oTextarea ) ;
56053         this._insertHtmlBefore( this._getIFrameHtml(), oTextarea ) ;
56054         this.frame = Roo.get(this.getId() + '___Frame')
56055     },
56056     
56057     _getConfigHtml : function()
56058     {
56059         var sConfig = '' ;
56060
56061         for ( var o in this.fckconfig ) {
56062             sConfig += sConfig.length > 0  ? '&amp;' : '';
56063             sConfig += encodeURIComponent( o ) + '=' + encodeURIComponent( this.fckconfig[o] ) ;
56064         }
56065
56066         return '<input type="hidden" id="' + this.getId() + '___Config" value="' + sConfig + '" style="display:none" />' ;
56067     },
56068     
56069     
56070     _getIFrameHtml : function()
56071     {
56072         var sFile = 'fckeditor.html' ;
56073         /* no idea what this is about..
56074         try
56075         {
56076             if ( (/fcksource=true/i).test( window.top.location.search ) )
56077                 sFile = 'fckeditor.original.html' ;
56078         }
56079         catch (e) { 
56080         */
56081
56082         var sLink = this.basePath + 'editor/' + sFile + '?InstanceName=' + encodeURIComponent( this.getId() ) ;
56083         sLink += this.toolbarSet ? ( '&amp;Toolbar=' + this.toolbarSet)  : '';
56084         
56085         
56086         var html = '<iframe id="' + this.getId() +
56087             '___Frame" src="' + sLink +
56088             '" width="' + this.width +
56089             '" height="' + this.height + '"' +
56090             (this.tabIndex ?  ' tabindex="' + this.tabIndex + '"' :'' ) +
56091             ' frameborder="0" scrolling="no"></iframe>' ;
56092
56093         return html ;
56094     },
56095     
56096     _insertHtmlBefore : function( html, element )
56097     {
56098         if ( element.insertAdjacentHTML )       {
56099             // IE
56100             element.insertAdjacentHTML( 'beforeBegin', html ) ;
56101         } else { // Gecko
56102             var oRange = document.createRange() ;
56103             oRange.setStartBefore( element ) ;
56104             var oFragment = oRange.createContextualFragment( html );
56105             element.parentNode.insertBefore( oFragment, element ) ;
56106         }
56107     }
56108     
56109     
56110   
56111     
56112     
56113     
56114     
56115
56116 });
56117
56118 //Roo.reg('fckeditor', Roo.form.FCKeditor);
56119
56120 function FCKeditor_OnComplete(editorInstance){
56121     var f = Roo.form.FCKeditor.editors[editorInstance.Name];
56122     f.fckEditor = editorInstance;
56123     //console.log("loaded");
56124     f.fireEvent('editorinit', f, editorInstance);
56125
56126   
56127
56128  
56129
56130
56131
56132
56133
56134
56135
56136
56137
56138
56139
56140
56141
56142
56143
56144 //<script type="text/javascript">
56145 /**
56146  * @class Roo.form.GridField
56147  * @extends Roo.form.Field
56148  * Embed a grid (or editable grid into a form)
56149  * STATUS ALPHA
56150  * 
56151  * This embeds a grid in a form, the value of the field should be the json encoded array of rows
56152  * it needs 
56153  * xgrid.store = Roo.data.Store
56154  * xgrid.store.proxy = Roo.data.MemoryProxy (data = [] )
56155  * xgrid.store.reader = Roo.data.JsonReader 
56156  * 
56157  * 
56158  * @constructor
56159  * Creates a new GridField
56160  * @param {Object} config Configuration options
56161  */
56162 Roo.form.GridField = function(config){
56163     Roo.form.GridField.superclass.constructor.call(this, config);
56164      
56165 };
56166
56167 Roo.extend(Roo.form.GridField, Roo.form.Field,  {
56168     /**
56169      * @cfg {Number} width  - used to restrict width of grid..
56170      */
56171     width : 100,
56172     /**
56173      * @cfg {Number} height - used to restrict height of grid..
56174      */
56175     height : 50,
56176      /**
56177      * @cfg {Object} xgrid (xtype'd description of grid) { xtype : 'Grid', dataSource: .... }
56178          * 
56179          *}
56180      */
56181     xgrid : false, 
56182     /**
56183      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
56184      * {tag: "input", type: "checkbox", autocomplete: "off"})
56185      */
56186    // defaultAutoCreate : { tag: 'div' },
56187     defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'new-password'},
56188     /**
56189      * @cfg {String} addTitle Text to include for adding a title.
56190      */
56191     addTitle : false,
56192     //
56193     onResize : function(){
56194         Roo.form.Field.superclass.onResize.apply(this, arguments);
56195     },
56196
56197     initEvents : function(){
56198         // Roo.form.Checkbox.superclass.initEvents.call(this);
56199         // has no events...
56200        
56201     },
56202
56203
56204     getResizeEl : function(){
56205         return this.wrap;
56206     },
56207
56208     getPositionEl : function(){
56209         return this.wrap;
56210     },
56211
56212     // private
56213     onRender : function(ct, position){
56214         
56215         this.style = this.style || 'overflow: hidden; border:1px solid #c3daf9;';
56216         var style = this.style;
56217         delete this.style;
56218         
56219         Roo.form.GridField.superclass.onRender.call(this, ct, position);
56220         this.wrap = this.el.wrap({cls: ''}); // not sure why ive done thsi...
56221         this.viewEl = this.wrap.createChild({ tag: 'div' });
56222         if (style) {
56223             this.viewEl.applyStyles(style);
56224         }
56225         if (this.width) {
56226             this.viewEl.setWidth(this.width);
56227         }
56228         if (this.height) {
56229             this.viewEl.setHeight(this.height);
56230         }
56231         //if(this.inputValue !== undefined){
56232         //this.setValue(this.value);
56233         
56234         
56235         this.grid = new Roo.grid[this.xgrid.xtype](this.viewEl, this.xgrid);
56236         
56237         
56238         this.grid.render();
56239         this.grid.getDataSource().on('remove', this.refreshValue, this);
56240         this.grid.getDataSource().on('update', this.refreshValue, this);
56241         this.grid.on('afteredit', this.refreshValue, this);
56242  
56243     },
56244      
56245     
56246     /**
56247      * Sets the value of the item. 
56248      * @param {String} either an object  or a string..
56249      */
56250     setValue : function(v){
56251         //this.value = v;
56252         v = v || []; // empty set..
56253         // this does not seem smart - it really only affects memoryproxy grids..
56254         if (this.grid && this.grid.getDataSource() && typeof(v) != 'undefined') {
56255             var ds = this.grid.getDataSource();
56256             // assumes a json reader..
56257             var data = {}
56258             data[ds.reader.meta.root ] =  typeof(v) == 'string' ? Roo.decode(v) : v;
56259             ds.loadData( data);
56260         }
56261         // clear selection so it does not get stale.
56262         if (this.grid.sm) { 
56263             this.grid.sm.clearSelections();
56264         }
56265         
56266         Roo.form.GridField.superclass.setValue.call(this, v);
56267         this.refreshValue();
56268         // should load data in the grid really....
56269     },
56270     
56271     // private
56272     refreshValue: function() {
56273          var val = [];
56274         this.grid.getDataSource().each(function(r) {
56275             val.push(r.data);
56276         });
56277         this.el.dom.value = Roo.encode(val);
56278     }
56279     
56280      
56281     
56282     
56283 });/*
56284  * Based on:
56285  * Ext JS Library 1.1.1
56286  * Copyright(c) 2006-2007, Ext JS, LLC.
56287  *
56288  * Originally Released Under LGPL - original licence link has changed is not relivant.
56289  *
56290  * Fork - LGPL
56291  * <script type="text/javascript">
56292  */
56293 /**
56294  * @class Roo.form.DisplayField
56295  * @extends Roo.form.Field
56296  * A generic Field to display non-editable data.
56297  * @cfg {Boolean} closable (true|false) default false
56298  * @constructor
56299  * Creates a new Display Field item.
56300  * @param {Object} config Configuration options
56301  */
56302 Roo.form.DisplayField = function(config){
56303     Roo.form.DisplayField.superclass.constructor.call(this, config);
56304     
56305     this.addEvents({
56306         /**
56307          * @event close
56308          * Fires after the click the close btn
56309              * @param {Roo.form.DisplayField} this
56310              */
56311         close : true
56312     });
56313 };
56314
56315 Roo.extend(Roo.form.DisplayField, Roo.form.TextField,  {
56316     inputType:      'hidden',
56317     allowBlank:     true,
56318     readOnly:         true,
56319     
56320  
56321     /**
56322      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
56323      */
56324     focusClass : undefined,
56325     /**
56326      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
56327      */
56328     fieldClass: 'x-form-field',
56329     
56330      /**
56331      * @cfg {Function} valueRenderer The renderer for the field (so you can reformat output). should return raw HTML
56332      */
56333     valueRenderer: undefined,
56334     
56335     width: 100,
56336     /**
56337      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
56338      * {tag: "input", type: "checkbox", autocomplete: "off"})
56339      */
56340      
56341  //   defaultAutoCreate : { tag: 'input', type: 'hidden', autocomplete: 'off'},
56342  
56343     closable : false,
56344     
56345     onResize : function(){
56346         Roo.form.DisplayField.superclass.onResize.apply(this, arguments);
56347         
56348     },
56349
56350     initEvents : function(){
56351         // Roo.form.Checkbox.superclass.initEvents.call(this);
56352         // has no events...
56353         
56354         if(this.closable){
56355             this.closeEl.on('click', this.onClose, this);
56356         }
56357        
56358     },
56359
56360
56361     getResizeEl : function(){
56362         return this.wrap;
56363     },
56364
56365     getPositionEl : function(){
56366         return this.wrap;
56367     },
56368
56369     // private
56370     onRender : function(ct, position){
56371         
56372         Roo.form.DisplayField.superclass.onRender.call(this, ct, position);
56373         //if(this.inputValue !== undefined){
56374         this.wrap = this.el.wrap();
56375         
56376         this.viewEl = this.wrap.createChild({ tag: 'div', cls: 'x-form-displayfield'});
56377         
56378         if(this.closable){
56379             this.closeEl = this.wrap.createChild({ tag: 'div', cls: 'x-dlg-close'});
56380         }
56381         
56382         if (this.bodyStyle) {
56383             this.viewEl.applyStyles(this.bodyStyle);
56384         }
56385         //this.viewEl.setStyle('padding', '2px');
56386         
56387         this.setValue(this.value);
56388         
56389     },
56390 /*
56391     // private
56392     initValue : Roo.emptyFn,
56393
56394   */
56395
56396         // private
56397     onClick : function(){
56398         
56399     },
56400
56401     /**
56402      * Sets the checked state of the checkbox.
56403      * @param {Boolean/String} checked True, 'true', '1', or 'on' to check the checkbox, any other value will uncheck it.
56404      */
56405     setValue : function(v){
56406         this.value = v;
56407         var html = this.valueRenderer ?  this.valueRenderer(v) : String.format('{0}', v);
56408         // this might be called before we have a dom element..
56409         if (!this.viewEl) {
56410             return;
56411         }
56412         this.viewEl.dom.innerHTML = html;
56413         Roo.form.DisplayField.superclass.setValue.call(this, v);
56414
56415     },
56416     
56417     onClose : function(e)
56418     {
56419         e.preventDefault();
56420         
56421         this.fireEvent('close', this);
56422     }
56423 });/*
56424  * 
56425  * Licence- LGPL
56426  * 
56427  */
56428
56429 /**
56430  * @class Roo.form.DayPicker
56431  * @extends Roo.form.Field
56432  * A Day picker show [M] [T] [W] ....
56433  * @constructor
56434  * Creates a new Day Picker
56435  * @param {Object} config Configuration options
56436  */
56437 Roo.form.DayPicker= function(config){
56438     Roo.form.DayPicker.superclass.constructor.call(this, config);
56439      
56440 };
56441
56442 Roo.extend(Roo.form.DayPicker, Roo.form.Field,  {
56443     /**
56444      * @cfg {String} focusClass The CSS class to use when the checkbox receives focus (defaults to undefined)
56445      */
56446     focusClass : undefined,
56447     /**
56448      * @cfg {String} fieldClass The default CSS class for the checkbox (defaults to "x-form-field")
56449      */
56450     fieldClass: "x-form-field",
56451    
56452     /**
56453      * @cfg {String/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to
56454      * {tag: "input", type: "checkbox", autocomplete: "off"})
56455      */
56456     defaultAutoCreate : { tag: "input", type: 'hidden', autocomplete: "new-password"},
56457     
56458    
56459     actionMode : 'viewEl', 
56460     //
56461     // private
56462  
56463     inputType : 'hidden',
56464     
56465      
56466     inputElement: false, // real input element?
56467     basedOn: false, // ????
56468     
56469     isFormField: true, // not sure where this is needed!!!!
56470
56471     onResize : function(){
56472         Roo.form.Checkbox.superclass.onResize.apply(this, arguments);
56473         if(!this.boxLabel){
56474             this.el.alignTo(this.wrap, 'c-c');
56475         }
56476     },
56477
56478     initEvents : function(){
56479         Roo.form.Checkbox.superclass.initEvents.call(this);
56480         this.el.on("click", this.onClick,  this);
56481         this.el.on("change", this.onClick,  this);
56482     },
56483
56484
56485     getResizeEl : function(){
56486         return this.wrap;
56487     },
56488
56489     getPositionEl : function(){
56490         return this.wrap;
56491     },
56492
56493     
56494     // private
56495     onRender : function(ct, position){
56496         Roo.form.Checkbox.superclass.onRender.call(this, ct, position);
56497        
56498         this.wrap = this.el.wrap({cls: 'x-form-daypick-item '});
56499         
56500         var r1 = '<table><tr>';
56501         var r2 = '<tr class="x-form-daypick-icons">';
56502         for (var i=0; i < 7; i++) {
56503             r1+= '<td><div>' + Date.dayNames[i].substring(0,3) + '</div></td>';
56504             r2+= '<td><img class="x-menu-item-icon" src="' + Roo.BLANK_IMAGE_URL  +'"></td>';
56505         }
56506         
56507         var viewEl = this.wrap.createChild( r1 + '</tr>' + r2 + '</tr></table>');
56508         viewEl.select('img').on('click', this.onClick, this);
56509         this.viewEl = viewEl;   
56510         
56511         
56512         // this will not work on Chrome!!!
56513         this.el.on('DOMAttrModified', this.setFromHidden,  this); //ff
56514         this.el.on('propertychange', this.setFromHidden,  this);  //ie
56515         
56516         
56517           
56518
56519     },
56520
56521     // private
56522     initValue : Roo.emptyFn,
56523
56524     /**
56525      * Returns the checked state of the checkbox.
56526      * @return {Boolean} True if checked, else false
56527      */
56528     getValue : function(){
56529         return this.el.dom.value;
56530         
56531     },
56532
56533         // private
56534     onClick : function(e){ 
56535         //this.setChecked(!this.checked);
56536         Roo.get(e.target).toggleClass('x-menu-item-checked');
56537         this.refreshValue();
56538         //if(this.el.dom.checked != this.checked){
56539         //    this.setValue(this.el.dom.checked);
56540        // }
56541     },
56542     
56543     // private
56544     refreshValue : function()
56545     {
56546         var val = '';
56547         this.viewEl.select('img',true).each(function(e,i,n)  {
56548             val += e.is(".x-menu-item-checked") ? String(n) : '';
56549         });
56550         this.setValue(val, true);
56551     },
56552
56553     /**
56554      * Sets the checked state of the checkbox.
56555      * On is always based on a string comparison between inputValue and the param.
56556      * @param {Boolean/String} value - the value to set 
56557      * @param {Boolean/String} suppressEvent - whether to suppress the checkchange event.
56558      */
56559     setValue : function(v,suppressEvent){
56560         if (!this.el.dom) {
56561             return;
56562         }
56563         var old = this.el.dom.value ;
56564         this.el.dom.value = v;
56565         if (suppressEvent) {
56566             return ;
56567         }
56568          
56569         // update display..
56570         this.viewEl.select('img',true).each(function(e,i,n)  {
56571             
56572             var on = e.is(".x-menu-item-checked");
56573             var newv = v.indexOf(String(n)) > -1;
56574             if (on != newv) {
56575                 e.toggleClass('x-menu-item-checked');
56576             }
56577             
56578         });
56579         
56580         
56581         this.fireEvent('change', this, v, old);
56582         
56583         
56584     },
56585    
56586     // handle setting of hidden value by some other method!!?!?
56587     setFromHidden: function()
56588     {
56589         if(!this.el){
56590             return;
56591         }
56592         //console.log("SET FROM HIDDEN");
56593         //alert('setFrom hidden');
56594         this.setValue(this.el.dom.value);
56595     },
56596     
56597     onDestroy : function()
56598     {
56599         if(this.viewEl){
56600             Roo.get(this.viewEl).remove();
56601         }
56602          
56603         Roo.form.DayPicker.superclass.onDestroy.call(this);
56604     }
56605
56606 });/*
56607  * RooJS Library 1.1.1
56608  * Copyright(c) 2008-2011  Alan Knowles
56609  *
56610  * License - LGPL
56611  */
56612  
56613
56614 /**
56615  * @class Roo.form.ComboCheck
56616  * @extends Roo.form.ComboBox
56617  * A combobox for multiple select items.
56618  *
56619  * FIXME - could do with a reset button..
56620  * 
56621  * @constructor
56622  * Create a new ComboCheck
56623  * @param {Object} config Configuration options
56624  */
56625 Roo.form.ComboCheck = function(config){
56626     Roo.form.ComboCheck.superclass.constructor.call(this, config);
56627     // should verify some data...
56628     // like
56629     // hiddenName = required..
56630     // displayField = required
56631     // valudField == required
56632     var req= [ 'hiddenName', 'displayField', 'valueField' ];
56633     var _t = this;
56634     Roo.each(req, function(e) {
56635         if ((typeof(_t[e]) == 'undefined' ) || !_t[e].length) {
56636             throw "Roo.form.ComboCheck : missing value for: " + e;
56637         }
56638     });
56639     
56640     
56641 };
56642
56643 Roo.extend(Roo.form.ComboCheck, Roo.form.ComboBox, {
56644      
56645      
56646     editable : false,
56647      
56648     selectedClass: 'x-menu-item-checked', 
56649     
56650     // private
56651     onRender : function(ct, position){
56652         var _t = this;
56653         
56654         
56655         
56656         if(!this.tpl){
56657             var cls = 'x-combo-list';
56658
56659             
56660             this.tpl =  new Roo.Template({
56661                 html :  '<div class="'+cls+'-item x-menu-check-item">' +
56662                    '<img class="x-menu-item-icon" style="margin: 0px;" src="' + Roo.BLANK_IMAGE_URL + '">' + 
56663                    '<span>{' + this.displayField + '}</span>' +
56664                     '</div>' 
56665                 
56666             });
56667         }
56668  
56669         
56670         Roo.form.ComboCheck.superclass.onRender.call(this, ct, position);
56671         this.view.singleSelect = false;
56672         this.view.multiSelect = true;
56673         this.view.toggleSelect = true;
56674         this.pageTb.add(new Roo.Toolbar.Fill(), {
56675             
56676             text: 'Done',
56677             handler: function()
56678             {
56679                 _t.collapse();
56680             }
56681         });
56682     },
56683     
56684     onViewOver : function(e, t){
56685         // do nothing...
56686         return;
56687         
56688     },
56689     
56690     onViewClick : function(doFocus,index){
56691         return;
56692         
56693     },
56694     select: function () {
56695         //Roo.log("SELECT CALLED");
56696     },
56697      
56698     selectByValue : function(xv, scrollIntoView){
56699         var ar = this.getValueArray();
56700         var sels = [];
56701         
56702         Roo.each(ar, function(v) {
56703             if(v === undefined || v === null){
56704                 return;
56705             }
56706             var r = this.findRecord(this.valueField, v);
56707             if(r){
56708                 sels.push(this.store.indexOf(r))
56709                 
56710             }
56711         },this);
56712         this.view.select(sels);
56713         return false;
56714     },
56715     
56716     
56717     
56718     onSelect : function(record, index){
56719        // Roo.log("onselect Called");
56720        // this is only called by the clear button now..
56721         this.view.clearSelections();
56722         this.setValue('[]');
56723         if (this.value != this.valueBefore) {
56724             this.fireEvent('change', this, this.value, this.valueBefore);
56725             this.valueBefore = this.value;
56726         }
56727     },
56728     getValueArray : function()
56729     {
56730         var ar = [] ;
56731         
56732         try {
56733             //Roo.log(this.value);
56734             if (typeof(this.value) == 'undefined') {
56735                 return [];
56736             }
56737             var ar = Roo.decode(this.value);
56738             return  ar instanceof Array ? ar : []; //?? valid?
56739             
56740         } catch(e) {
56741             Roo.log(e + "\nRoo.form.ComboCheck:getValueArray  invalid data:" + this.getValue());
56742             return [];
56743         }
56744          
56745     },
56746     expand : function ()
56747     {
56748         
56749         Roo.form.ComboCheck.superclass.expand.call(this);
56750         this.valueBefore = typeof(this.value) == 'undefined' ? '' : this.value;
56751         //this.valueBefore = typeof(this.valueBefore) == 'undefined' ? '' : this.valueBefore;
56752         
56753
56754     },
56755     
56756     collapse : function(){
56757         Roo.form.ComboCheck.superclass.collapse.call(this);
56758         var sl = this.view.getSelectedIndexes();
56759         var st = this.store;
56760         var nv = [];
56761         var tv = [];
56762         var r;
56763         Roo.each(sl, function(i) {
56764             r = st.getAt(i);
56765             nv.push(r.get(this.valueField));
56766         },this);
56767         this.setValue(Roo.encode(nv));
56768         if (this.value != this.valueBefore) {
56769
56770             this.fireEvent('change', this, this.value, this.valueBefore);
56771             this.valueBefore = this.value;
56772         }
56773         
56774     },
56775     
56776     setValue : function(v){
56777         // Roo.log(v);
56778         this.value = v;
56779         
56780         var vals = this.getValueArray();
56781         var tv = [];
56782         Roo.each(vals, function(k) {
56783             var r = this.findRecord(this.valueField, k);
56784             if(r){
56785                 tv.push(r.data[this.displayField]);
56786             }else if(this.valueNotFoundText !== undefined){
56787                 tv.push( this.valueNotFoundText );
56788             }
56789         },this);
56790        // Roo.log(tv);
56791         
56792         Roo.form.ComboBox.superclass.setValue.call(this, tv.join(', '));
56793         this.hiddenField.value = v;
56794         this.value = v;
56795     }
56796     
56797 });/*
56798  * Based on:
56799  * Ext JS Library 1.1.1
56800  * Copyright(c) 2006-2007, Ext JS, LLC.
56801  *
56802  * Originally Released Under LGPL - original licence link has changed is not relivant.
56803  *
56804  * Fork - LGPL
56805  * <script type="text/javascript">
56806  */
56807  
56808 /**
56809  * @class Roo.form.Signature
56810  * @extends Roo.form.Field
56811  * Signature field.  
56812  * @constructor
56813  * 
56814  * @param {Object} config Configuration options
56815  */
56816
56817 Roo.form.Signature = function(config){
56818     Roo.form.Signature.superclass.constructor.call(this, config);
56819     
56820     this.addEvents({// not in used??
56821          /**
56822          * @event confirm
56823          * Fires when the 'confirm' icon is pressed (add a listener to enable add button)
56824              * @param {Roo.form.Signature} combo This combo box
56825              */
56826         'confirm' : true,
56827         /**
56828          * @event reset
56829          * Fires when the 'edit' icon is pressed (add a listener to enable add button)
56830              * @param {Roo.form.ComboBox} combo This combo box
56831              * @param {Roo.data.Record|false} record The data record returned from the underlying store (or false on nothing selected)
56832              */
56833         'reset' : true
56834     });
56835 };
56836
56837 Roo.extend(Roo.form.Signature, Roo.form.Field,  {
56838     /**
56839      * @cfg {Object} labels Label to use when rendering a form.
56840      * defaults to 
56841      * labels : { 
56842      *      clear : "Clear",
56843      *      confirm : "Confirm"
56844      *  }
56845      */
56846     labels : { 
56847         clear : "Clear",
56848         confirm : "Confirm"
56849     },
56850     /**
56851      * @cfg {Number} width The signature panel width (defaults to 300)
56852      */
56853     width: 300,
56854     /**
56855      * @cfg {Number} height The signature panel height (defaults to 100)
56856      */
56857     height : 100,
56858     /**
56859      * @cfg {Boolean} allowBlank False to validate that the value length > 0 (defaults to false)
56860      */
56861     allowBlank : false,
56862     
56863     //private
56864     // {Object} signPanel The signature SVG panel element (defaults to {})
56865     signPanel : {},
56866     // {Boolean} isMouseDown False to validate that the mouse down event (defaults to false)
56867     isMouseDown : false,
56868     // {Boolean} isConfirmed validate the signature is confirmed or not for submitting form (defaults to false)
56869     isConfirmed : false,
56870     // {String} signatureTmp SVG mapping string (defaults to empty string)
56871     signatureTmp : '',
56872     
56873     
56874     defaultAutoCreate : { // modified by initCompnoent..
56875         tag: "input",
56876         type:"hidden"
56877     },
56878
56879     // private
56880     onRender : function(ct, position){
56881         
56882         Roo.form.Signature.superclass.onRender.call(this, ct, position);
56883         
56884         this.wrap = this.el.wrap({
56885             cls:'x-form-signature-wrap', style : 'width: ' + this.width + 'px', cn:{cls:'x-form-signature'}
56886         });
56887         
56888         this.createToolbar(this);
56889         this.signPanel = this.wrap.createChild({
56890                 tag: 'div',
56891                 style: 'width: ' + this.width + 'px; height: ' + this.height + 'px; border: 0;'
56892             }, this.el
56893         );
56894             
56895         this.svgID = Roo.id();
56896         this.svgEl = this.signPanel.createChild({
56897               xmlns : 'http://www.w3.org/2000/svg',
56898               tag : 'svg',
56899               id : this.svgID + "-svg",
56900               width: this.width,
56901               height: this.height,
56902               viewBox: '0 0 '+this.width+' '+this.height,
56903               cn : [
56904                 {
56905                     tag: "rect",
56906                     id: this.svgID + "-svg-r",
56907                     width: this.width,
56908                     height: this.height,
56909                     fill: "#ffa"
56910                 },
56911                 {
56912                     tag: "line",
56913                     id: this.svgID + "-svg-l",
56914                     x1: "0", // start
56915                     y1: (this.height*0.8), // start set the line in 80% of height
56916                     x2: this.width, // end
56917                     y2: (this.height*0.8), // end set the line in 80% of height
56918                     'stroke': "#666",
56919                     'stroke-width': "1",
56920                     'stroke-dasharray': "3",
56921                     'shape-rendering': "crispEdges",
56922                     'pointer-events': "none"
56923                 },
56924                 {
56925                     tag: "path",
56926                     id: this.svgID + "-svg-p",
56927                     'stroke': "navy",
56928                     'stroke-width': "3",
56929                     'fill': "none",
56930                     'pointer-events': 'none'
56931                 }
56932               ]
56933         });
56934         this.createSVG();
56935         this.svgBox = this.svgEl.dom.getScreenCTM();
56936     },
56937     createSVG : function(){ 
56938         var svg = this.signPanel;
56939         var r = svg.select('#'+ this.svgID + '-svg-r', true).first().dom;
56940         var t = this;
56941
56942         r.addEventListener('mousedown', function(e) { return t.down(e); }, false);
56943         r.addEventListener('mousemove', function(e) { return t.move(e); }, false);
56944         r.addEventListener('mouseup', function(e) { return t.up(e); }, false);
56945         r.addEventListener('mouseout', function(e) { return t.up(e); }, false);
56946         r.addEventListener('touchstart', function(e) { return t.down(e); }, false);
56947         r.addEventListener('touchmove', function(e) { return t.move(e); }, false);
56948         r.addEventListener('touchend', function(e) { return t.up(e); }, false);
56949         
56950     },
56951     isTouchEvent : function(e){
56952         return e.type.match(/^touch/);
56953     },
56954     getCoords : function (e) {
56955         var pt    = this.svgEl.dom.createSVGPoint();
56956         pt.x = e.clientX; 
56957         pt.y = e.clientY;
56958         if (this.isTouchEvent(e)) {
56959             pt.x =  e.targetTouches[0].clientX;
56960             pt.y = e.targetTouches[0].clientY;
56961         }
56962         var a = this.svgEl.dom.getScreenCTM();
56963         var b = a.inverse();
56964         var mx = pt.matrixTransform(b);
56965         return mx.x + ',' + mx.y;
56966     },
56967     //mouse event headler 
56968     down : function (e) {
56969         this.signatureTmp += 'M' + this.getCoords(e) + ' ';
56970         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr('d', this.signatureTmp);
56971         
56972         this.isMouseDown = true;
56973         
56974         e.preventDefault();
56975     },
56976     move : function (e) {
56977         if (this.isMouseDown) {
56978             this.signatureTmp += 'L' + this.getCoords(e) + ' ';
56979             this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', this.signatureTmp);
56980         }
56981         
56982         e.preventDefault();
56983     },
56984     up : function (e) {
56985         this.isMouseDown = false;
56986         var sp = this.signatureTmp.split(' ');
56987         
56988         if(sp.length > 1){
56989             if(!sp[sp.length-2].match(/^L/)){
56990                 sp.pop();
56991                 sp.pop();
56992                 sp.push("");
56993                 this.signatureTmp = sp.join(" ");
56994             }
56995         }
56996         if(this.getValue() != this.signatureTmp){
56997             this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
56998             this.isConfirmed = false;
56999         }
57000         e.preventDefault();
57001     },
57002     
57003     /**
57004      * Protected method that will not generally be called directly. It
57005      * is called when the editor creates its toolbar. Override this method if you need to
57006      * add custom toolbar buttons.
57007      * @param {HtmlEditor} editor
57008      */
57009     createToolbar : function(editor){
57010          function btn(id, toggle, handler){
57011             var xid = fid + '-'+ id ;
57012             return {
57013                 id : xid,
57014                 cmd : id,
57015                 cls : 'x-btn-icon x-edit-'+id,
57016                 enableToggle:toggle !== false,
57017                 scope: editor, // was editor...
57018                 handler:handler||editor.relayBtnCmd,
57019                 clickEvent:'mousedown',
57020                 tooltip: etb.buttonTips[id] || undefined, ///tips ???
57021                 tabIndex:-1
57022             };
57023         }
57024         
57025         
57026         var tb = new Roo.Toolbar(editor.wrap.dom.firstChild);
57027         this.tb = tb;
57028         this.tb.add(
57029            {
57030                 cls : ' x-signature-btn x-signature-'+id,
57031                 scope: editor, // was editor...
57032                 handler: this.reset,
57033                 clickEvent:'mousedown',
57034                 text: this.labels.clear
57035             },
57036             {
57037                  xtype : 'Fill',
57038                  xns: Roo.Toolbar
57039             }, 
57040             {
57041                 cls : '  x-signature-btn x-signature-'+id,
57042                 scope: editor, // was editor...
57043                 handler: this.confirmHandler,
57044                 clickEvent:'mousedown',
57045                 text: this.labels.confirm
57046             }
57047         );
57048     
57049     },
57050     //public
57051     /**
57052      * when user is clicked confirm then show this image.....
57053      * 
57054      * @return {String} Image Data URI
57055      */
57056     getImageDataURI : function(){
57057         var svg = this.svgEl.dom.parentNode.innerHTML;
57058         var src = 'data:image/svg+xml;base64,'+window.btoa(svg);
57059         return src; 
57060     },
57061     /**
57062      * 
57063      * @return {Boolean} this.isConfirmed
57064      */
57065     getConfirmed : function(){
57066         return this.isConfirmed;
57067     },
57068     /**
57069      * 
57070      * @return {Number} this.width
57071      */
57072     getWidth : function(){
57073         return this.width;
57074     },
57075     /**
57076      * 
57077      * @return {Number} this.height
57078      */
57079     getHeight : function(){
57080         return this.height;
57081     },
57082     // private
57083     getSignature : function(){
57084         return this.signatureTmp;
57085     },
57086     // private
57087     reset : function(){
57088         this.signatureTmp = '';
57089         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
57090         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', '');
57091         this.isConfirmed = false;
57092         Roo.form.Signature.superclass.reset.call(this);
57093     },
57094     setSignature : function(s){
57095         this.signatureTmp = s;
57096         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#ffa');
57097         this.signPanel.select('#'+ this.svgID + '-svg-p', true).first().attr( 'd', s);
57098         this.setValue(s);
57099         this.isConfirmed = false;
57100         Roo.form.Signature.superclass.reset.call(this);
57101     }, 
57102     test : function(){
57103 //        Roo.log(this.signPanel.dom.contentWindow.up())
57104     },
57105     //private
57106     setConfirmed : function(){
57107         
57108         
57109         
57110 //        Roo.log(Roo.get(this.signPanel.dom.contentWindow.r).attr('fill', '#cfc'));
57111     },
57112     // private
57113     confirmHandler : function(){
57114         if(!this.getSignature()){
57115             return;
57116         }
57117         
57118         this.signPanel.select('#'+ this.svgID + '-svg-r', true).first().attr('fill', '#cfc');
57119         this.setValue(this.getSignature());
57120         this.isConfirmed = true;
57121         
57122         this.fireEvent('confirm', this);
57123     },
57124     // private
57125     // Subclasses should provide the validation implementation by overriding this
57126     validateValue : function(value){
57127         if(this.allowBlank){
57128             return true;
57129         }
57130         
57131         if(this.isConfirmed){
57132             return true;
57133         }
57134         return false;
57135     }
57136 });/*
57137  * Based on:
57138  * Ext JS Library 1.1.1
57139  * Copyright(c) 2006-2007, Ext JS, LLC.
57140  *
57141  * Originally Released Under LGPL - original licence link has changed is not relivant.
57142  *
57143  * Fork - LGPL
57144  * <script type="text/javascript">
57145  */
57146  
57147
57148 /**
57149  * @class Roo.form.ComboBox
57150  * @extends Roo.form.TriggerField
57151  * A combobox control with support for autocomplete, remote-loading, paging and many other features.
57152  * @constructor
57153  * Create a new ComboBox.
57154  * @param {Object} config Configuration options
57155  */
57156 Roo.form.Select = function(config){
57157     Roo.form.Select.superclass.constructor.call(this, config);
57158      
57159 };
57160
57161 Roo.extend(Roo.form.Select , Roo.form.ComboBox, {
57162     /**
57163      * @cfg {String/HTMLElement/Element} transform The id, DOM node or element of an existing select to convert to a ComboBox
57164      */
57165     /**
57166      * @cfg {Boolean} lazyRender True to prevent the ComboBox from rendering until requested (should always be used when
57167      * rendering into an Roo.Editor, defaults to false)
57168      */
57169     /**
57170      * @cfg {Boolean/Object} autoCreate A DomHelper element spec, or true for a default element spec (defaults to:
57171      * {tag: "input", type: "text", size: "24", autocomplete: "off"})
57172      */
57173     /**
57174      * @cfg {Roo.data.Store} store The data store to which this combo is bound (defaults to undefined)
57175      */
57176     /**
57177      * @cfg {String} title If supplied, a header element is created containing this text and added into the top of
57178      * the dropdown list (defaults to undefined, with no header element)
57179      */
57180
57181      /**
57182      * @cfg {String/Roo.Template} tpl The template to use to render the output
57183      */
57184      
57185     // private
57186     defaultAutoCreate : {tag: "select"  },
57187     /**
57188      * @cfg {Number} listWidth The width in pixels of the dropdown list (defaults to the width of the ComboBox field)
57189      */
57190     listWidth: undefined,
57191     /**
57192      * @cfg {String} displayField The underlying data field name to bind to this CombBox (defaults to undefined if
57193      * mode = 'remote' or 'text' if mode = 'local')
57194      */
57195     displayField: undefined,
57196     /**
57197      * @cfg {String} valueField The underlying data value name to bind to this CombBox (defaults to undefined if
57198      * mode = 'remote' or 'value' if mode = 'local'). 
57199      * Note: use of a valueField requires the user make a selection
57200      * in order for a value to be mapped.
57201      */
57202     valueField: undefined,
57203     
57204     
57205     /**
57206      * @cfg {String} hiddenName If specified, a hidden form field with this name is dynamically generated to store the
57207      * field's data value (defaults to the underlying DOM element's name)
57208      */
57209     hiddenName: undefined,
57210     /**
57211      * @cfg {String} listClass CSS class to apply to the dropdown list element (defaults to '')
57212      */
57213     listClass: '',
57214     /**
57215      * @cfg {String} selectedClass CSS class to apply to the selected item in the dropdown list (defaults to 'x-combo-selected')
57216      */
57217     selectedClass: 'x-combo-selected',
57218     /**
57219      * @cfg {String} triggerClass An additional CSS class used to style the trigger button.  The trigger will always get the
57220      * class 'x-form-trigger' and triggerClass will be <b>appended</b> if specified (defaults to 'x-form-arrow-trigger'
57221      * which displays a downward arrow icon).
57222      */
57223     triggerClass : 'x-form-arrow-trigger',
57224     /**
57225      * @cfg {Boolean/String} shadow True or "sides" for the default effect, "frame" for 4-way shadow, and "drop" for bottom-right
57226      */
57227     shadow:'sides',
57228     /**
57229      * @cfg {String} listAlign A valid anchor position value. See {@link Roo.Element#alignTo} for details on supported
57230      * anchor positions (defaults to 'tl-bl')
57231      */
57232     listAlign: 'tl-bl?',
57233     /**
57234      * @cfg {Number} maxHeight The maximum height in pixels of the dropdown list before scrollbars are shown (defaults to 300)
57235      */
57236     maxHeight: 300,
57237     /**
57238      * @cfg {String} triggerAction The action to execute when the trigger field is activated.  Use 'all' to run the
57239      * query specified by the allQuery config option (defaults to 'query')
57240      */
57241     triggerAction: 'query',
57242     /**
57243      * @cfg {Number} minChars The minimum number of characters the user must type before autocomplete and typeahead activate
57244      * (defaults to 4, does not apply if editable = false)
57245      */
57246     minChars : 4,
57247     /**
57248      * @cfg {Boolean} typeAhead True to populate and autoselect the remainder of the text being typed after a configurable
57249      * delay (typeAheadDelay) if it matches a known value (defaults to false)
57250      */
57251     typeAhead: false,
57252     /**
57253      * @cfg {Number} queryDelay The length of time in milliseconds to delay between the start of typing and sending the
57254      * query to filter the dropdown list (defaults to 500 if mode = 'remote' or 10 if mode = 'local')
57255      */
57256     queryDelay: 500,
57257     /**
57258      * @cfg {Number} pageSize If greater than 0, a paging toolbar is displayed in the footer of the dropdown list and the
57259      * filter queries will execute with page start and limit parameters.  Only applies when mode = 'remote' (defaults to 0)
57260      */
57261     pageSize: 0,
57262     /**
57263      * @cfg {Boolean} selectOnFocus True to select any existing text in the field immediately on focus.  Only applies
57264      * when editable = true (defaults to false)
57265      */
57266     selectOnFocus:false,
57267     /**
57268      * @cfg {String} queryParam Name of the query as it will be passed on the querystring (defaults to 'query')
57269      */
57270     queryParam: 'query',
57271     /**
57272      * @cfg {String} loadingText The text to display in the dropdown list while data is loading.  Only applies
57273      * when mode = 'remote' (defaults to 'Loading...')
57274      */
57275     loadingText: 'Loading...',
57276     /**
57277      * @cfg {Boolean} resizable True to add a resize handle to the bottom of the dropdown list (defaults to false)
57278      */
57279     resizable: false,
57280     /**
57281      * @cfg {Number} handleHeight The height in pixels of the dropdown list resize handle if resizable = true (defaults to 8)
57282      */
57283     handleHeight : 8,
57284     /**
57285      * @cfg {Boolean} editable False to prevent the user from typing text directly into the field, just like a
57286      * traditional select (defaults to true)
57287      */
57288     editable: true,
57289     /**
57290      * @cfg {String} allQuery The text query to send to the server to return all records for the list with no filtering (defaults to '')
57291      */
57292     allQuery: '',
57293     /**
57294      * @cfg {String} mode Set to 'local' if the ComboBox loads local data (defaults to 'remote' which loads from the server)
57295      */
57296     mode: 'remote',
57297     /**
57298      * @cfg {Number} minListWidth The minimum width of the dropdown list in pixels (defaults to 70, will be ignored if
57299      * listWidth has a higher value)
57300      */
57301     minListWidth : 70,
57302     /**
57303      * @cfg {Boolean} forceSelection True to restrict the selected value to one of the values in the list, false to
57304      * allow the user to set arbitrary text into the field (defaults to false)
57305      */
57306     forceSelection:false,
57307     /**
57308      * @cfg {Number} typeAheadDelay The length of time in milliseconds to wait until the typeahead text is displayed
57309      * if typeAhead = true (defaults to 250)
57310      */
57311     typeAheadDelay : 250,
57312     /**
57313      * @cfg {String} valueNotFoundText When using a name/value combo, if the value passed to setValue is not found in
57314      * the store, valueNotFoundText will be displayed as the field text if defined (defaults to undefined)
57315      */
57316     valueNotFoundText : undefined,
57317     
57318     /**
57319      * @cfg {String} defaultValue The value displayed after loading the store.
57320      */
57321     defaultValue: '',
57322     
57323     /**
57324      * @cfg {Boolean} blockFocus Prevents all focus calls, so it can work with things like HTML edtor bar
57325      */
57326     blockFocus : false,
57327     
57328     /**
57329      * @cfg {Boolean} disableClear Disable showing of clear button.
57330      */
57331     disableClear : false,
57332     /**
57333      * @cfg {Boolean} alwaysQuery  Disable caching of results, and always send query
57334      */
57335     alwaysQuery : false,
57336     
57337     //private
57338     addicon : false,
57339     editicon: false,
57340     
57341     // element that contains real text value.. (when hidden is used..)
57342      
57343     // private
57344     onRender : function(ct, position){
57345         Roo.form.Field.prototype.onRender.call(this, ct, position);
57346         
57347         if(this.store){
57348             this.store.on('beforeload', this.onBeforeLoad, this);
57349             this.store.on('load', this.onLoad, this);
57350             this.store.on('loadexception', this.onLoadException, this);
57351             this.store.load({});
57352         }
57353         
57354         
57355         
57356     },
57357
57358     // private
57359     initEvents : function(){
57360         //Roo.form.ComboBox.superclass.initEvents.call(this);
57361  
57362     },
57363
57364     onDestroy : function(){
57365        
57366         if(this.store){
57367             this.store.un('beforeload', this.onBeforeLoad, this);
57368             this.store.un('load', this.onLoad, this);
57369             this.store.un('loadexception', this.onLoadException, this);
57370         }
57371         //Roo.form.ComboBox.superclass.onDestroy.call(this);
57372     },
57373
57374     // private
57375     fireKey : function(e){
57376         if(e.isNavKeyPress() && !this.list.isVisible()){
57377             this.fireEvent("specialkey", this, e);
57378         }
57379     },
57380
57381     // private
57382     onResize: function(w, h){
57383         
57384         return; 
57385     
57386         
57387     },
57388
57389     /**
57390      * Allow or prevent the user from directly editing the field text.  If false is passed,
57391      * the user will only be able to select from the items defined in the dropdown list.  This method
57392      * is the runtime equivalent of setting the 'editable' config option at config time.
57393      * @param {Boolean} value True to allow the user to directly edit the field text
57394      */
57395     setEditable : function(value){
57396          
57397     },
57398
57399     // private
57400     onBeforeLoad : function(){
57401         
57402         Roo.log("Select before load");
57403         return;
57404     
57405         this.innerList.update(this.loadingText ?
57406                '<div class="loading-indicator">'+this.loadingText+'</div>' : '');
57407         //this.restrictHeight();
57408         this.selectedIndex = -1;
57409     },
57410
57411     // private
57412     onLoad : function(){
57413
57414     
57415         var dom = this.el.dom;
57416         dom.innerHTML = '';
57417          var od = dom.ownerDocument;
57418          
57419         if (this.emptyText) {
57420             var op = od.createElement('option');
57421             op.setAttribute('value', '');
57422             op.innerHTML = String.format('{0}', this.emptyText);
57423             dom.appendChild(op);
57424         }
57425         if(this.store.getCount() > 0){
57426            
57427             var vf = this.valueField;
57428             var df = this.displayField;
57429             this.store.data.each(function(r) {
57430                 // which colmsn to use... testing - cdoe / title..
57431                 var op = od.createElement('option');
57432                 op.setAttribute('value', r.data[vf]);
57433                 op.innerHTML = String.format('{0}', r.data[df]);
57434                 dom.appendChild(op);
57435             });
57436             if (typeof(this.defaultValue != 'undefined')) {
57437                 this.setValue(this.defaultValue);
57438             }
57439             
57440              
57441         }else{
57442             //this.onEmptyResults();
57443         }
57444         //this.el.focus();
57445     },
57446     // private
57447     onLoadException : function()
57448     {
57449         dom.innerHTML = '';
57450             
57451         Roo.log("Select on load exception");
57452         return;
57453     
57454         this.collapse();
57455         Roo.log(this.store.reader.jsonData);
57456         if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
57457             Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
57458         }
57459         
57460         
57461     },
57462     // private
57463     onTypeAhead : function(){
57464          
57465     },
57466
57467     // private
57468     onSelect : function(record, index){
57469         Roo.log('on select?');
57470         return;
57471         if(this.fireEvent('beforeselect', this, record, index) !== false){
57472             this.setFromData(index > -1 ? record.data : false);
57473             this.collapse();
57474             this.fireEvent('select', this, record, index);
57475         }
57476     },
57477
57478     /**
57479      * Returns the currently selected field value or empty string if no value is set.
57480      * @return {String} value The selected value
57481      */
57482     getValue : function(){
57483         var dom = this.el.dom;
57484         this.value = dom.options[dom.selectedIndex].value;
57485         return this.value;
57486         
57487     },
57488
57489     /**
57490      * Clears any text/value currently set in the field
57491      */
57492     clearValue : function(){
57493         this.value = '';
57494         this.el.dom.selectedIndex = this.emptyText ? 0 : -1;
57495         
57496     },
57497
57498     /**
57499      * Sets the specified value into the field.  If the value finds a match, the corresponding record text
57500      * will be displayed in the field.  If the value does not match the data value of an existing item,
57501      * and the valueNotFoundText config option is defined, it will be displayed as the default field text.
57502      * Otherwise the field will be blank (although the value will still be set).
57503      * @param {String} value The value to match
57504      */
57505     setValue : function(v){
57506         var d = this.el.dom;
57507         for (var i =0; i < d.options.length;i++) {
57508             if (v == d.options[i].value) {
57509                 d.selectedIndex = i;
57510                 this.value = v;
57511                 return;
57512             }
57513         }
57514         this.clearValue();
57515     },
57516     /**
57517      * @property {Object} the last set data for the element
57518      */
57519     
57520     lastData : false,
57521     /**
57522      * Sets the value of the field based on a object which is related to the record format for the store.
57523      * @param {Object} value the value to set as. or false on reset?
57524      */
57525     setFromData : function(o){
57526         Roo.log('setfrom data?');
57527          
57528         
57529         
57530     },
57531     // private
57532     reset : function(){
57533         this.clearValue();
57534     },
57535     // private
57536     findRecord : function(prop, value){
57537         
57538         return false;
57539     
57540         var record;
57541         if(this.store.getCount() > 0){
57542             this.store.each(function(r){
57543                 if(r.data[prop] == value){
57544                     record = r;
57545                     return false;
57546                 }
57547                 return true;
57548             });
57549         }
57550         return record;
57551     },
57552     
57553     getName: function()
57554     {
57555         // returns hidden if it's set..
57556         if (!this.rendered) {return ''};
57557         return !this.hiddenName && this.el.dom.name  ? this.el.dom.name : (this.hiddenName || '');
57558         
57559     },
57560      
57561
57562     
57563
57564     // private
57565     onEmptyResults : function(){
57566         Roo.log('empty results');
57567         //this.collapse();
57568     },
57569
57570     /**
57571      * Returns true if the dropdown list is expanded, else false.
57572      */
57573     isExpanded : function(){
57574         return false;
57575     },
57576
57577     /**
57578      * Select an item in the dropdown list by its data value. This function does NOT cause the select event to fire.
57579      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
57580      * @param {String} value The data value of the item to select
57581      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
57582      * selected item if it is not currently in view (defaults to true)
57583      * @return {Boolean} True if the value matched an item in the list, else false
57584      */
57585     selectByValue : function(v, scrollIntoView){
57586         Roo.log('select By Value');
57587         return false;
57588     
57589         if(v !== undefined && v !== null){
57590             var r = this.findRecord(this.valueField || this.displayField, v);
57591             if(r){
57592                 this.select(this.store.indexOf(r), scrollIntoView);
57593                 return true;
57594             }
57595         }
57596         return false;
57597     },
57598
57599     /**
57600      * Select an item in the dropdown list by its numeric index in the list. This function does NOT cause the select event to fire.
57601      * The store must be loaded and the list expanded for this function to work, otherwise use setValue.
57602      * @param {Number} index The zero-based index of the list item to select
57603      * @param {Boolean} scrollIntoView False to prevent the dropdown list from autoscrolling to display the
57604      * selected item if it is not currently in view (defaults to true)
57605      */
57606     select : function(index, scrollIntoView){
57607         Roo.log('select ');
57608         return  ;
57609         
57610         this.selectedIndex = index;
57611         this.view.select(index);
57612         if(scrollIntoView !== false){
57613             var el = this.view.getNode(index);
57614             if(el){
57615                 this.innerList.scrollChildIntoView(el, false);
57616             }
57617         }
57618     },
57619
57620       
57621
57622     // private
57623     validateBlur : function(){
57624         
57625         return;
57626         
57627     },
57628
57629     // private
57630     initQuery : function(){
57631         this.doQuery(this.getRawValue());
57632     },
57633
57634     // private
57635     doForce : function(){
57636         if(this.el.dom.value.length > 0){
57637             this.el.dom.value =
57638                 this.lastSelectionText === undefined ? '' : this.lastSelectionText;
57639              
57640         }
57641     },
57642
57643     /**
57644      * Execute a query to filter the dropdown list.  Fires the beforequery event prior to performing the
57645      * query allowing the query action to be canceled if needed.
57646      * @param {String} query The SQL query to execute
57647      * @param {Boolean} forceAll True to force the query to execute even if there are currently fewer characters
57648      * in the field than the minimum specified by the minChars config option.  It also clears any filter previously
57649      * saved in the current store (defaults to false)
57650      */
57651     doQuery : function(q, forceAll){
57652         
57653         Roo.log('doQuery?');
57654         if(q === undefined || q === null){
57655             q = '';
57656         }
57657         var qe = {
57658             query: q,
57659             forceAll: forceAll,
57660             combo: this,
57661             cancel:false
57662         };
57663         if(this.fireEvent('beforequery', qe)===false || qe.cancel){
57664             return false;
57665         }
57666         q = qe.query;
57667         forceAll = qe.forceAll;
57668         if(forceAll === true || (q.length >= this.minChars)){
57669             if(this.lastQuery != q || this.alwaysQuery){
57670                 this.lastQuery = q;
57671                 if(this.mode == 'local'){
57672                     this.selectedIndex = -1;
57673                     if(forceAll){
57674                         this.store.clearFilter();
57675                     }else{
57676                         this.store.filter(this.displayField, q);
57677                     }
57678                     this.onLoad();
57679                 }else{
57680                     this.store.baseParams[this.queryParam] = q;
57681                     this.store.load({
57682                         params: this.getParams(q)
57683                     });
57684                     this.expand();
57685                 }
57686             }else{
57687                 this.selectedIndex = -1;
57688                 this.onLoad();   
57689             }
57690         }
57691     },
57692
57693     // private
57694     getParams : function(q){
57695         var p = {};
57696         //p[this.queryParam] = q;
57697         if(this.pageSize){
57698             p.start = 0;
57699             p.limit = this.pageSize;
57700         }
57701         return p;
57702     },
57703
57704     /**
57705      * Hides the dropdown list if it is currently expanded. Fires the 'collapse' event on completion.
57706      */
57707     collapse : function(){
57708         
57709     },
57710
57711     // private
57712     collapseIf : function(e){
57713         
57714     },
57715
57716     /**
57717      * Expands the dropdown list if it is currently hidden. Fires the 'expand' event on completion.
57718      */
57719     expand : function(){
57720         
57721     } ,
57722
57723     // private
57724      
57725
57726     /** 
57727     * @cfg {Boolean} grow 
57728     * @hide 
57729     */
57730     /** 
57731     * @cfg {Number} growMin 
57732     * @hide 
57733     */
57734     /** 
57735     * @cfg {Number} growMax 
57736     * @hide 
57737     */
57738     /**
57739      * @hide
57740      * @method autoSize
57741      */
57742     
57743     setWidth : function()
57744     {
57745         
57746     },
57747     getResizeEl : function(){
57748         return this.el;
57749     }
57750 });//<script type="text/javasscript">
57751  
57752
57753 /**
57754  * @class Roo.DDView
57755  * A DnD enabled version of Roo.View.
57756  * @param {Element/String} container The Element in which to create the View.
57757  * @param {String} tpl The template string used to create the markup for each element of the View
57758  * @param {Object} config The configuration properties. These include all the config options of
57759  * {@link Roo.View} plus some specific to this class.<br>
57760  * <p>
57761  * Drag/drop is implemented by adding {@link Roo.data.Record}s to the target DDView. If copying is
57762  * not being performed, the original {@link Roo.data.Record} is removed from the source DDView.<br>
57763  * <p>
57764  * The following extra CSS rules are needed to provide insertion point highlighting:<pre><code>
57765 .x-view-drag-insert-above {
57766         border-top:1px dotted #3366cc;
57767 }
57768 .x-view-drag-insert-below {
57769         border-bottom:1px dotted #3366cc;
57770 }
57771 </code></pre>
57772  * 
57773  */
57774  
57775 Roo.DDView = function(container, tpl, config) {
57776     Roo.DDView.superclass.constructor.apply(this, arguments);
57777     this.getEl().setStyle("outline", "0px none");
57778     this.getEl().unselectable();
57779     if (this.dragGroup) {
57780         this.setDraggable(this.dragGroup.split(","));
57781     }
57782     if (this.dropGroup) {
57783         this.setDroppable(this.dropGroup.split(","));
57784     }
57785     if (this.deletable) {
57786         this.setDeletable();
57787     }
57788     this.isDirtyFlag = false;
57789         this.addEvents({
57790                 "drop" : true
57791         });
57792 };
57793
57794 Roo.extend(Roo.DDView, Roo.View, {
57795 /**     @cfg {String/Array} dragGroup The ddgroup name(s) for the View's DragZone. */
57796 /**     @cfg {String/Array} dropGroup The ddgroup name(s) for the View's DropZone. */
57797 /**     @cfg {Boolean} copy Causes drag operations to copy nodes rather than move. */
57798 /**     @cfg {Boolean} allowCopy Causes ctrl/drag operations to copy nodes rather than move. */
57799
57800         isFormField: true,
57801
57802         reset: Roo.emptyFn,
57803         
57804         clearInvalid: Roo.form.Field.prototype.clearInvalid,
57805
57806         validate: function() {
57807                 return true;
57808         },
57809         
57810         destroy: function() {
57811                 this.purgeListeners();
57812                 this.getEl.removeAllListeners();
57813                 this.getEl().remove();
57814                 if (this.dragZone) {
57815                         if (this.dragZone.destroy) {
57816                                 this.dragZone.destroy();
57817                         }
57818                 }
57819                 if (this.dropZone) {
57820                         if (this.dropZone.destroy) {
57821                                 this.dropZone.destroy();
57822                         }
57823                 }
57824         },
57825
57826 /**     Allows this class to be an Roo.form.Field so it can be found using {@link Roo.form.BasicForm#findField}. */
57827         getName: function() {
57828                 return this.name;
57829         },
57830
57831 /**     Loads the View from a JSON string representing the Records to put into the Store. */
57832         setValue: function(v) {
57833                 if (!this.store) {
57834                         throw "DDView.setValue(). DDView must be constructed with a valid Store";
57835                 }
57836                 var data = {};
57837                 data[this.store.reader.meta.root] = v ? [].concat(v) : [];
57838                 this.store.proxy = new Roo.data.MemoryProxy(data);
57839                 this.store.load();
57840         },
57841
57842 /**     @return {String} a parenthesised list of the ids of the Records in the View. */
57843         getValue: function() {
57844                 var result = '(';
57845                 this.store.each(function(rec) {
57846                         result += rec.id + ',';
57847                 });
57848                 return result.substr(0, result.length - 1) + ')';
57849         },
57850         
57851         getIds: function() {
57852                 var i = 0, result = new Array(this.store.getCount());
57853                 this.store.each(function(rec) {
57854                         result[i++] = rec.id;
57855                 });
57856                 return result;
57857         },
57858         
57859         isDirty: function() {
57860                 return this.isDirtyFlag;
57861         },
57862
57863 /**
57864  *      Part of the Roo.dd.DropZone interface. If no target node is found, the
57865  *      whole Element becomes the target, and this causes the drop gesture to append.
57866  */
57867     getTargetFromEvent : function(e) {
57868                 var target = e.getTarget();
57869                 while ((target !== null) && (target.parentNode != this.el.dom)) {
57870                 target = target.parentNode;
57871                 }
57872                 if (!target) {
57873                         target = this.el.dom.lastChild || this.el.dom;
57874                 }
57875                 return target;
57876     },
57877
57878 /**
57879  *      Create the drag data which consists of an object which has the property "ddel" as
57880  *      the drag proxy element. 
57881  */
57882     getDragData : function(e) {
57883         var target = this.findItemFromChild(e.getTarget());
57884                 if(target) {
57885                         this.handleSelection(e);
57886                         var selNodes = this.getSelectedNodes();
57887             var dragData = {
57888                 source: this,
57889                 copy: this.copy || (this.allowCopy && e.ctrlKey),
57890                 nodes: selNodes,
57891                 records: []
57892                         };
57893                         var selectedIndices = this.getSelectedIndexes();
57894                         for (var i = 0; i < selectedIndices.length; i++) {
57895                                 dragData.records.push(this.store.getAt(selectedIndices[i]));
57896                         }
57897                         if (selNodes.length == 1) {
57898                                 dragData.ddel = target.cloneNode(true); // the div element
57899                         } else {
57900                                 var div = document.createElement('div'); // create the multi element drag "ghost"
57901                                 div.className = 'multi-proxy';
57902                                 for (var i = 0, len = selNodes.length; i < len; i++) {
57903                                         div.appendChild(selNodes[i].cloneNode(true));
57904                                 }
57905                                 dragData.ddel = div;
57906                         }
57907             //console.log(dragData)
57908             //console.log(dragData.ddel.innerHTML)
57909                         return dragData;
57910                 }
57911         //console.log('nodragData')
57912                 return false;
57913     },
57914     
57915 /**     Specify to which ddGroup items in this DDView may be dragged. */
57916     setDraggable: function(ddGroup) {
57917         if (ddGroup instanceof Array) {
57918                 Roo.each(ddGroup, this.setDraggable, this);
57919                 return;
57920         }
57921         if (this.dragZone) {
57922                 this.dragZone.addToGroup(ddGroup);
57923         } else {
57924                         this.dragZone = new Roo.dd.DragZone(this.getEl(), {
57925                                 containerScroll: true,
57926                                 ddGroup: ddGroup 
57927
57928                         });
57929 //                      Draggability implies selection. DragZone's mousedown selects the element.
57930                         if (!this.multiSelect) { this.singleSelect = true; }
57931
57932 //                      Wire the DragZone's handlers up to methods in *this*
57933                         this.dragZone.getDragData = this.getDragData.createDelegate(this);
57934                 }
57935     },
57936
57937 /**     Specify from which ddGroup this DDView accepts drops. */
57938     setDroppable: function(ddGroup) {
57939         if (ddGroup instanceof Array) {
57940                 Roo.each(ddGroup, this.setDroppable, this);
57941                 return;
57942         }
57943         if (this.dropZone) {
57944                 this.dropZone.addToGroup(ddGroup);
57945         } else {
57946                         this.dropZone = new Roo.dd.DropZone(this.getEl(), {
57947                                 containerScroll: true,
57948                                 ddGroup: ddGroup
57949                         });
57950
57951 //                      Wire the DropZone's handlers up to methods in *this*
57952                         this.dropZone.getTargetFromEvent = this.getTargetFromEvent.createDelegate(this);
57953                         this.dropZone.onNodeEnter = this.onNodeEnter.createDelegate(this);
57954                         this.dropZone.onNodeOver = this.onNodeOver.createDelegate(this);
57955                         this.dropZone.onNodeOut = this.onNodeOut.createDelegate(this);
57956                         this.dropZone.onNodeDrop = this.onNodeDrop.createDelegate(this);
57957                 }
57958     },
57959
57960 /**     Decide whether to drop above or below a View node. */
57961     getDropPoint : function(e, n, dd){
57962         if (n == this.el.dom) { return "above"; }
57963                 var t = Roo.lib.Dom.getY(n), b = t + n.offsetHeight;
57964                 var c = t + (b - t) / 2;
57965                 var y = Roo.lib.Event.getPageY(e);
57966                 if(y <= c) {
57967                         return "above";
57968                 }else{
57969                         return "below";
57970                 }
57971     },
57972
57973     onNodeEnter : function(n, dd, e, data){
57974                 return false;
57975     },
57976     
57977     onNodeOver : function(n, dd, e, data){
57978                 var pt = this.getDropPoint(e, n, dd);
57979                 // set the insert point style on the target node
57980                 var dragElClass = this.dropNotAllowed;
57981                 if (pt) {
57982                         var targetElClass;
57983                         if (pt == "above"){
57984                                 dragElClass = n.previousSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-above";
57985                                 targetElClass = "x-view-drag-insert-above";
57986                         } else {
57987                                 dragElClass = n.nextSibling ? "x-tree-drop-ok-between" : "x-tree-drop-ok-below";
57988                                 targetElClass = "x-view-drag-insert-below";
57989                         }
57990                         if (this.lastInsertClass != targetElClass){
57991                                 Roo.fly(n).replaceClass(this.lastInsertClass, targetElClass);
57992                                 this.lastInsertClass = targetElClass;
57993                         }
57994                 }
57995                 return dragElClass;
57996         },
57997
57998     onNodeOut : function(n, dd, e, data){
57999                 this.removeDropIndicators(n);
58000     },
58001
58002     onNodeDrop : function(n, dd, e, data){
58003         if (this.fireEvent("drop", this, n, dd, e, data) === false) {
58004                 return false;
58005         }
58006         var pt = this.getDropPoint(e, n, dd);
58007                 var insertAt = (n == this.el.dom) ? this.nodes.length : n.nodeIndex;
58008                 if (pt == "below") { insertAt++; }
58009                 for (var i = 0; i < data.records.length; i++) {
58010                         var r = data.records[i];
58011                         var dup = this.store.getById(r.id);
58012                         if (dup && (dd != this.dragZone)) {
58013                                 Roo.fly(this.getNode(this.store.indexOf(dup))).frame("red", 1);
58014                         } else {
58015                                 if (data.copy) {
58016                                         this.store.insert(insertAt++, r.copy());
58017                                 } else {
58018                                         data.source.isDirtyFlag = true;
58019                                         r.store.remove(r);
58020                                         this.store.insert(insertAt++, r);
58021                                 }
58022                                 this.isDirtyFlag = true;
58023                         }
58024                 }
58025                 this.dragZone.cachedTarget = null;
58026                 return true;
58027     },
58028
58029     removeDropIndicators : function(n){
58030                 if(n){
58031                         Roo.fly(n).removeClass([
58032                                 "x-view-drag-insert-above",
58033                                 "x-view-drag-insert-below"]);
58034                         this.lastInsertClass = "_noclass";
58035                 }
58036     },
58037
58038 /**
58039  *      Utility method. Add a delete option to the DDView's context menu.
58040  *      @param {String} imageUrl The URL of the "delete" icon image.
58041  */
58042         setDeletable: function(imageUrl) {
58043                 if (!this.singleSelect && !this.multiSelect) {
58044                         this.singleSelect = true;
58045                 }
58046                 var c = this.getContextMenu();
58047                 this.contextMenu.on("itemclick", function(item) {
58048                         switch (item.id) {
58049                                 case "delete":
58050                                         this.remove(this.getSelectedIndexes());
58051                                         break;
58052                         }
58053                 }, this);
58054                 this.contextMenu.add({
58055                         icon: imageUrl,
58056                         id: "delete",
58057                         text: 'Delete'
58058                 });
58059         },
58060         
58061 /**     Return the context menu for this DDView. */
58062         getContextMenu: function() {
58063                 if (!this.contextMenu) {
58064 //                      Create the View's context menu
58065                         this.contextMenu = new Roo.menu.Menu({
58066                                 id: this.id + "-contextmenu"
58067                         });
58068                         this.el.on("contextmenu", this.showContextMenu, this);
58069                 }
58070                 return this.contextMenu;
58071         },
58072         
58073         disableContextMenu: function() {
58074                 if (this.contextMenu) {
58075                         this.el.un("contextmenu", this.showContextMenu, this);
58076                 }
58077         },
58078
58079         showContextMenu: function(e, item) {
58080         item = this.findItemFromChild(e.getTarget());
58081                 if (item) {
58082                         e.stopEvent();
58083                         this.select(this.getNode(item), this.multiSelect && e.ctrlKey, true);
58084                         this.contextMenu.showAt(e.getXY());
58085             }
58086     },
58087
58088 /**
58089  *      Remove {@link Roo.data.Record}s at the specified indices.
58090  *      @param {Array/Number} selectedIndices The index (or Array of indices) of Records to remove.
58091  */
58092     remove: function(selectedIndices) {
58093                 selectedIndices = [].concat(selectedIndices);
58094                 for (var i = 0; i < selectedIndices.length; i++) {
58095                         var rec = this.store.getAt(selectedIndices[i]);
58096                         this.store.remove(rec);
58097                 }
58098     },
58099
58100 /**
58101  *      Double click fires the event, but also, if this is draggable, and there is only one other
58102  *      related DropZone, it transfers the selected node.
58103  */
58104     onDblClick : function(e){
58105         var item = this.findItemFromChild(e.getTarget());
58106         if(item){
58107             if (this.fireEvent("dblclick", this, this.indexOf(item), item, e) === false) {
58108                 return false;
58109             }
58110             if (this.dragGroup) {
58111                     var targets = Roo.dd.DragDropMgr.getRelated(this.dragZone, true);
58112                     while (targets.indexOf(this.dropZone) > -1) {
58113                             targets.remove(this.dropZone);
58114                                 }
58115                     if (targets.length == 1) {
58116                                         this.dragZone.cachedTarget = null;
58117                         var el = Roo.get(targets[0].getEl());
58118                         var box = el.getBox(true);
58119                         targets[0].onNodeDrop(el.dom, {
58120                                 target: el.dom,
58121                                 xy: [box.x, box.y + box.height - 1]
58122                         }, null, this.getDragData(e));
58123                     }
58124                 }
58125         }
58126     },
58127     
58128     handleSelection: function(e) {
58129                 this.dragZone.cachedTarget = null;
58130         var item = this.findItemFromChild(e.getTarget());
58131         if (!item) {
58132                 this.clearSelections(true);
58133                 return;
58134         }
58135                 if (item && (this.multiSelect || this.singleSelect)){
58136                         if(this.multiSelect && e.shiftKey && (!e.ctrlKey) && this.lastSelection){
58137                                 this.select(this.getNodes(this.indexOf(this.lastSelection), item.nodeIndex), false);
58138                         }else if (this.isSelected(this.getNode(item)) && e.ctrlKey){
58139                                 this.unselect(item);
58140                         } else {
58141                                 this.select(item, this.multiSelect && e.ctrlKey);
58142                                 this.lastSelection = item;
58143                         }
58144                 }
58145     },
58146
58147     onItemClick : function(item, index, e){
58148                 if(this.fireEvent("beforeclick", this, index, item, e) === false){
58149                         return false;
58150                 }
58151                 return true;
58152     },
58153
58154     unselect : function(nodeInfo, suppressEvent){
58155                 var node = this.getNode(nodeInfo);
58156                 if(node && this.isSelected(node)){
58157                         if(this.fireEvent("beforeselect", this, node, this.selections) !== false){
58158                                 Roo.fly(node).removeClass(this.selectedClass);
58159                                 this.selections.remove(node);
58160                                 if(!suppressEvent){
58161                                         this.fireEvent("selectionchange", this, this.selections);
58162                                 }
58163                         }
58164                 }
58165     }
58166 });
58167 /*
58168  * Based on:
58169  * Ext JS Library 1.1.1
58170  * Copyright(c) 2006-2007, Ext JS, LLC.
58171  *
58172  * Originally Released Under LGPL - original licence link has changed is not relivant.
58173  *
58174  * Fork - LGPL
58175  * <script type="text/javascript">
58176  */
58177  
58178 /**
58179  * @class Roo.LayoutManager
58180  * @extends Roo.util.Observable
58181  * Base class for layout managers.
58182  */
58183 Roo.LayoutManager = function(container, config){
58184     Roo.LayoutManager.superclass.constructor.call(this);
58185     this.el = Roo.get(container);
58186     // ie scrollbar fix
58187     if(this.el.dom == document.body && Roo.isIE && !config.allowScroll){
58188         document.body.scroll = "no";
58189     }else if(this.el.dom != document.body && this.el.getStyle('position') == 'static'){
58190         this.el.position('relative');
58191     }
58192     this.id = this.el.id;
58193     this.el.addClass("x-layout-container");
58194     /** false to disable window resize monitoring @type Boolean */
58195     this.monitorWindowResize = true;
58196     this.regions = {};
58197     this.addEvents({
58198         /**
58199          * @event layout
58200          * Fires when a layout is performed. 
58201          * @param {Roo.LayoutManager} this
58202          */
58203         "layout" : true,
58204         /**
58205          * @event regionresized
58206          * Fires when the user resizes a region. 
58207          * @param {Roo.LayoutRegion} region The resized region
58208          * @param {Number} newSize The new size (width for east/west, height for north/south)
58209          */
58210         "regionresized" : true,
58211         /**
58212          * @event regioncollapsed
58213          * Fires when a region is collapsed. 
58214          * @param {Roo.LayoutRegion} region The collapsed region
58215          */
58216         "regioncollapsed" : true,
58217         /**
58218          * @event regionexpanded
58219          * Fires when a region is expanded.  
58220          * @param {Roo.LayoutRegion} region The expanded region
58221          */
58222         "regionexpanded" : true
58223     });
58224     this.updating = false;
58225     Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
58226 };
58227
58228 Roo.extend(Roo.LayoutManager, Roo.util.Observable, {
58229     /**
58230      * Returns true if this layout is currently being updated
58231      * @return {Boolean}
58232      */
58233     isUpdating : function(){
58234         return this.updating; 
58235     },
58236     
58237     /**
58238      * Suspend the LayoutManager from doing auto-layouts while
58239      * making multiple add or remove calls
58240      */
58241     beginUpdate : function(){
58242         this.updating = true;    
58243     },
58244     
58245     /**
58246      * Restore auto-layouts and optionally disable the manager from performing a layout
58247      * @param {Boolean} noLayout true to disable a layout update 
58248      */
58249     endUpdate : function(noLayout){
58250         this.updating = false;
58251         if(!noLayout){
58252             this.layout();
58253         }    
58254     },
58255     
58256     layout: function(){
58257         
58258     },
58259     
58260     onRegionResized : function(region, newSize){
58261         this.fireEvent("regionresized", region, newSize);
58262         this.layout();
58263     },
58264     
58265     onRegionCollapsed : function(region){
58266         this.fireEvent("regioncollapsed", region);
58267     },
58268     
58269     onRegionExpanded : function(region){
58270         this.fireEvent("regionexpanded", region);
58271     },
58272         
58273     /**
58274      * Returns the size of the current view. This method normalizes document.body and element embedded layouts and
58275      * performs box-model adjustments.
58276      * @return {Object} The size as an object {width: (the width), height: (the height)}
58277      */
58278     getViewSize : function(){
58279         var size;
58280         if(this.el.dom != document.body){
58281             size = this.el.getSize();
58282         }else{
58283             size = {width: Roo.lib.Dom.getViewWidth(), height: Roo.lib.Dom.getViewHeight()};
58284         }
58285         size.width -= this.el.getBorderWidth("lr")-this.el.getPadding("lr");
58286         size.height -= this.el.getBorderWidth("tb")-this.el.getPadding("tb");
58287         return size;
58288     },
58289     
58290     /**
58291      * Returns the Element this layout is bound to.
58292      * @return {Roo.Element}
58293      */
58294     getEl : function(){
58295         return this.el;
58296     },
58297     
58298     /**
58299      * Returns the specified region.
58300      * @param {String} target The region key ('center', 'north', 'south', 'east' or 'west')
58301      * @return {Roo.LayoutRegion}
58302      */
58303     getRegion : function(target){
58304         return this.regions[target.toLowerCase()];
58305     },
58306     
58307     onWindowResize : function(){
58308         if(this.monitorWindowResize){
58309             this.layout();
58310         }
58311     }
58312 });/*
58313  * Based on:
58314  * Ext JS Library 1.1.1
58315  * Copyright(c) 2006-2007, Ext JS, LLC.
58316  *
58317  * Originally Released Under LGPL - original licence link has changed is not relivant.
58318  *
58319  * Fork - LGPL
58320  * <script type="text/javascript">
58321  */
58322 /**
58323  * @class Roo.BorderLayout
58324  * @extends Roo.LayoutManager
58325  * @children Roo.ContentPanel
58326  * This class represents a common layout manager used in desktop applications. For screenshots and more details,
58327  * please see: <br><br>
58328  * <a href="http://www.jackslocum.com/yui/2006/10/19/cross-browser-web-20-layouts-with-yahoo-ui/">Cross Browser Layouts - Part 1</a><br>
58329  * <a href="http://www.jackslocum.com/yui/2006/10/28/cross-browser-web-20-layouts-part-2-ajax-feed-viewer-20/">Cross Browser Layouts - Part 2</a><br><br>
58330  * Example:
58331  <pre><code>
58332  var layout = new Roo.BorderLayout(document.body, {
58333     north: {
58334         initialSize: 25,
58335         titlebar: false
58336     },
58337     west: {
58338         split:true,
58339         initialSize: 200,
58340         minSize: 175,
58341         maxSize: 400,
58342         titlebar: true,
58343         collapsible: true
58344     },
58345     east: {
58346         split:true,
58347         initialSize: 202,
58348         minSize: 175,
58349         maxSize: 400,
58350         titlebar: true,
58351         collapsible: true
58352     },
58353     south: {
58354         split:true,
58355         initialSize: 100,
58356         minSize: 100,
58357         maxSize: 200,
58358         titlebar: true,
58359         collapsible: true
58360     },
58361     center: {
58362         titlebar: true,
58363         autoScroll:true,
58364         resizeTabs: true,
58365         minTabWidth: 50,
58366         preferredTabWidth: 150
58367     }
58368 });
58369
58370 // shorthand
58371 var CP = Roo.ContentPanel;
58372
58373 layout.beginUpdate();
58374 layout.add("north", new CP("north", "North"));
58375 layout.add("south", new CP("south", {title: "South", closable: true}));
58376 layout.add("west", new CP("west", {title: "West"}));
58377 layout.add("east", new CP("autoTabs", {title: "Auto Tabs", closable: true}));
58378 layout.add("center", new CP("center1", {title: "Close Me", closable: true}));
58379 layout.add("center", new CP("center2", {title: "Center Panel", closable: false}));
58380 layout.getRegion("center").showPanel("center1");
58381 layout.endUpdate();
58382 </code></pre>
58383
58384 <b>The container the layout is rendered into can be either the body element or any other element.
58385 If it is not the body element, the container needs to either be an absolute positioned element,
58386 or you will need to add "position:relative" to the css of the container.  You will also need to specify
58387 the container size if it is not the body element.</b>
58388
58389 * @constructor
58390 * Create a new BorderLayout
58391 * @param {String/HTMLElement/Element} container The container this layout is bound to
58392 * @param {Object} config Configuration options
58393  */
58394 Roo.BorderLayout = function(container, config){
58395     config = config || {};
58396     Roo.BorderLayout.superclass.constructor.call(this, container, config);
58397     this.factory = config.factory || Roo.BorderLayout.RegionFactory;
58398     for(var i = 0, len = this.factory.validRegions.length; i < len; i++) {
58399         var target = this.factory.validRegions[i];
58400         if(config[target]){
58401             this.addRegion(target, config[target]);
58402         }
58403     }
58404 };
58405
58406 Roo.extend(Roo.BorderLayout, Roo.LayoutManager, {
58407         
58408         /**
58409          * @cfg {Roo.LayoutRegion} east
58410          */
58411         /**
58412          * @cfg {Roo.LayoutRegion} west
58413          */
58414         /**
58415          * @cfg {Roo.LayoutRegion} north
58416          */
58417         /**
58418          * @cfg {Roo.LayoutRegion} south
58419          */
58420         /**
58421          * @cfg {Roo.LayoutRegion} center
58422          */
58423     /**
58424      * Creates and adds a new region if it doesn't already exist.
58425      * @param {String} target The target region key (north, south, east, west or center).
58426      * @param {Object} config The regions config object
58427      * @return {BorderLayoutRegion} The new region
58428      */
58429     addRegion : function(target, config){
58430         if(!this.regions[target]){
58431             var r = this.factory.create(target, this, config);
58432             this.bindRegion(target, r);
58433         }
58434         return this.regions[target];
58435     },
58436
58437     // private (kinda)
58438     bindRegion : function(name, r){
58439         this.regions[name] = r;
58440         r.on("visibilitychange", this.layout, this);
58441         r.on("paneladded", this.layout, this);
58442         r.on("panelremoved", this.layout, this);
58443         r.on("invalidated", this.layout, this);
58444         r.on("resized", this.onRegionResized, this);
58445         r.on("collapsed", this.onRegionCollapsed, this);
58446         r.on("expanded", this.onRegionExpanded, this);
58447     },
58448
58449     /**
58450      * Performs a layout update.
58451      */
58452     layout : function(){
58453         if(this.updating) {
58454             return;
58455         }
58456         var size = this.getViewSize();
58457         var w = size.width;
58458         var h = size.height;
58459         var centerW = w;
58460         var centerH = h;
58461         var centerY = 0;
58462         var centerX = 0;
58463         //var x = 0, y = 0;
58464
58465         var rs = this.regions;
58466         var north = rs["north"];
58467         var south = rs["south"]; 
58468         var west = rs["west"];
58469         var east = rs["east"];
58470         var center = rs["center"];
58471         //if(this.hideOnLayout){ // not supported anymore
58472             //c.el.setStyle("display", "none");
58473         //}
58474         if(north && north.isVisible()){
58475             var b = north.getBox();
58476             var m = north.getMargins();
58477             b.width = w - (m.left+m.right);
58478             b.x = m.left;
58479             b.y = m.top;
58480             centerY = b.height + b.y + m.bottom;
58481             centerH -= centerY;
58482             north.updateBox(this.safeBox(b));
58483         }
58484         if(south && south.isVisible()){
58485             var b = south.getBox();
58486             var m = south.getMargins();
58487             b.width = w - (m.left+m.right);
58488             b.x = m.left;
58489             var totalHeight = (b.height + m.top + m.bottom);
58490             b.y = h - totalHeight + m.top;
58491             centerH -= totalHeight;
58492             south.updateBox(this.safeBox(b));
58493         }
58494         if(west && west.isVisible()){
58495             var b = west.getBox();
58496             var m = west.getMargins();
58497             b.height = centerH - (m.top+m.bottom);
58498             b.x = m.left;
58499             b.y = centerY + m.top;
58500             var totalWidth = (b.width + m.left + m.right);
58501             centerX += totalWidth;
58502             centerW -= totalWidth;
58503             west.updateBox(this.safeBox(b));
58504         }
58505         if(east && east.isVisible()){
58506             var b = east.getBox();
58507             var m = east.getMargins();
58508             b.height = centerH - (m.top+m.bottom);
58509             var totalWidth = (b.width + m.left + m.right);
58510             b.x = w - totalWidth + m.left;
58511             b.y = centerY + m.top;
58512             centerW -= totalWidth;
58513             east.updateBox(this.safeBox(b));
58514         }
58515         if(center){
58516             var m = center.getMargins();
58517             var centerBox = {
58518                 x: centerX + m.left,
58519                 y: centerY + m.top,
58520                 width: centerW - (m.left+m.right),
58521                 height: centerH - (m.top+m.bottom)
58522             };
58523             //if(this.hideOnLayout){
58524                 //center.el.setStyle("display", "block");
58525             //}
58526             center.updateBox(this.safeBox(centerBox));
58527         }
58528         this.el.repaint();
58529         this.fireEvent("layout", this);
58530     },
58531
58532     // private
58533     safeBox : function(box){
58534         box.width = Math.max(0, box.width);
58535         box.height = Math.max(0, box.height);
58536         return box;
58537     },
58538
58539     /**
58540      * Adds a ContentPanel (or subclass) to this layout.
58541      * @param {String} target The target region key (north, south, east, west or center).
58542      * @param {Roo.ContentPanel} panel The panel to add
58543      * @return {Roo.ContentPanel} The added panel
58544      */
58545     add : function(target, panel){
58546          
58547         target = target.toLowerCase();
58548         return this.regions[target].add(panel);
58549     },
58550
58551     /**
58552      * Remove a ContentPanel (or subclass) to this layout.
58553      * @param {String} target The target region key (north, south, east, west or center).
58554      * @param {Number/String/Roo.ContentPanel} panel The index, id or panel to remove
58555      * @return {Roo.ContentPanel} The removed panel
58556      */
58557     remove : function(target, panel){
58558         target = target.toLowerCase();
58559         return this.regions[target].remove(panel);
58560     },
58561
58562     /**
58563      * Searches all regions for a panel with the specified id
58564      * @param {String} panelId
58565      * @return {Roo.ContentPanel} The panel or null if it wasn't found
58566      */
58567     findPanel : function(panelId){
58568         var rs = this.regions;
58569         for(var target in rs){
58570             if(typeof rs[target] != "function"){
58571                 var p = rs[target].getPanel(panelId);
58572                 if(p){
58573                     return p;
58574                 }
58575             }
58576         }
58577         return null;
58578     },
58579
58580     /**
58581      * Searches all regions for a panel with the specified id and activates (shows) it.
58582      * @param {String/ContentPanel} panelId The panels id or the panel itself
58583      * @return {Roo.ContentPanel} The shown panel or null
58584      */
58585     showPanel : function(panelId) {
58586       var rs = this.regions;
58587       for(var target in rs){
58588          var r = rs[target];
58589          if(typeof r != "function"){
58590             if(r.hasPanel(panelId)){
58591                return r.showPanel(panelId);
58592             }
58593          }
58594       }
58595       return null;
58596    },
58597
58598    /**
58599      * Restores this layout's state using Roo.state.Manager or the state provided by the passed provider.
58600      * @param {Roo.state.Provider} provider (optional) An alternate state provider
58601      */
58602     restoreState : function(provider){
58603         if(!provider){
58604             provider = Roo.state.Manager;
58605         }
58606         var sm = new Roo.LayoutStateManager();
58607         sm.init(this, provider);
58608     },
58609
58610     /**
58611      * Adds a batch of multiple ContentPanels dynamically by passing a special regions config object.  This config
58612      * object should contain properties for each region to add ContentPanels to, and each property's value should be
58613      * a valid ContentPanel config object.  Example:
58614      * <pre><code>
58615 // Create the main layout
58616 var layout = new Roo.BorderLayout('main-ct', {
58617     west: {
58618         split:true,
58619         minSize: 175,
58620         titlebar: true
58621     },
58622     center: {
58623         title:'Components'
58624     }
58625 }, 'main-ct');
58626
58627 // Create and add multiple ContentPanels at once via configs
58628 layout.batchAdd({
58629    west: {
58630        id: 'source-files',
58631        autoCreate:true,
58632        title:'Ext Source Files',
58633        autoScroll:true,
58634        fitToFrame:true
58635    },
58636    center : {
58637        el: cview,
58638        autoScroll:true,
58639        fitToFrame:true,
58640        toolbar: tb,
58641        resizeEl:'cbody'
58642    }
58643 });
58644 </code></pre>
58645      * @param {Object} regions An object containing ContentPanel configs by region name
58646      */
58647     batchAdd : function(regions){
58648         this.beginUpdate();
58649         for(var rname in regions){
58650             var lr = this.regions[rname];
58651             if(lr){
58652                 this.addTypedPanels(lr, regions[rname]);
58653             }
58654         }
58655         this.endUpdate();
58656     },
58657
58658     // private
58659     addTypedPanels : function(lr, ps){
58660         if(typeof ps == 'string'){
58661             lr.add(new Roo.ContentPanel(ps));
58662         }
58663         else if(ps instanceof Array){
58664             for(var i =0, len = ps.length; i < len; i++){
58665                 this.addTypedPanels(lr, ps[i]);
58666             }
58667         }
58668         else if(!ps.events){ // raw config?
58669             var el = ps.el;
58670             delete ps.el; // prevent conflict
58671             lr.add(new Roo.ContentPanel(el || Roo.id(), ps));
58672         }
58673         else {  // panel object assumed!
58674             lr.add(ps);
58675         }
58676     },
58677     /**
58678      * Adds a xtype elements to the layout.
58679      * <pre><code>
58680
58681 layout.addxtype({
58682        xtype : 'ContentPanel',
58683        region: 'west',
58684        items: [ .... ]
58685    }
58686 );
58687
58688 layout.addxtype({
58689         xtype : 'NestedLayoutPanel',
58690         region: 'west',
58691         layout: {
58692            center: { },
58693            west: { }   
58694         },
58695         items : [ ... list of content panels or nested layout panels.. ]
58696    }
58697 );
58698 </code></pre>
58699      * @param {Object} cfg Xtype definition of item to add.
58700      */
58701     addxtype : function(cfg)
58702     {
58703         // basically accepts a pannel...
58704         // can accept a layout region..!?!?
58705         //Roo.log('Roo.BorderLayout add ' + cfg.xtype)
58706         
58707         if (!cfg.xtype.match(/Panel$/)) {
58708             return false;
58709         }
58710         var ret = false;
58711         
58712         if (typeof(cfg.region) == 'undefined') {
58713             Roo.log("Failed to add Panel, region was not set");
58714             Roo.log(cfg);
58715             return false;
58716         }
58717         var region = cfg.region;
58718         delete cfg.region;
58719         
58720           
58721         var xitems = [];
58722         if (cfg.items) {
58723             xitems = cfg.items;
58724             delete cfg.items;
58725         }
58726         var nb = false;
58727         
58728         switch(cfg.xtype) 
58729         {
58730             case 'ContentPanel':  // ContentPanel (el, cfg)
58731             case 'ScrollPanel':  // ContentPanel (el, cfg)
58732             case 'ViewPanel': 
58733                 if(cfg.autoCreate) {
58734                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
58735                 } else {
58736                     var el = this.el.createChild();
58737                     ret = new Roo[cfg.xtype](el, cfg); // new panel!!!!!
58738                 }
58739                 
58740                 this.add(region, ret);
58741                 break;
58742             
58743             
58744             case 'TreePanel': // our new panel!
58745                 cfg.el = this.el.createChild();
58746                 ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
58747                 this.add(region, ret);
58748                 break;
58749             
58750             case 'NestedLayoutPanel': 
58751                 // create a new Layout (which is  a Border Layout...
58752                 var el = this.el.createChild();
58753                 var clayout = cfg.layout;
58754                 delete cfg.layout;
58755                 clayout.items   = clayout.items  || [];
58756                 // replace this exitems with the clayout ones..
58757                 xitems = clayout.items;
58758                  
58759                 
58760                 if (region == 'center' && this.active && this.getRegion('center').panels.length < 1) {
58761                     cfg.background = false;
58762                 }
58763                 var layout = new Roo.BorderLayout(el, clayout);
58764                 
58765                 ret = new Roo[cfg.xtype](layout, cfg); // new panel!!!!!
58766                 //console.log('adding nested layout panel '  + cfg.toSource());
58767                 this.add(region, ret);
58768                 nb = {}; /// find first...
58769                 break;
58770                 
58771             case 'GridPanel': 
58772             
58773                 // needs grid and region
58774                 
58775                 //var el = this.getRegion(region).el.createChild();
58776                 var el = this.el.createChild();
58777                 // create the grid first...
58778                 
58779                 var grid = new Roo.grid[cfg.grid.xtype](el, cfg.grid);
58780                 delete cfg.grid;
58781                 if (region == 'center' && this.active ) {
58782                     cfg.background = false;
58783                 }
58784                 ret = new Roo[cfg.xtype](grid, cfg); // new panel!!!!!
58785                 
58786                 this.add(region, ret);
58787                 if (cfg.background) {
58788                     ret.on('activate', function(gp) {
58789                         if (!gp.grid.rendered) {
58790                             gp.grid.render();
58791                         }
58792                     });
58793                 } else {
58794                     grid.render();
58795                 }
58796                 break;
58797            
58798            
58799            
58800                 
58801                 
58802                 
58803             default:
58804                 if (typeof(Roo[cfg.xtype]) != 'undefined') {
58805                     
58806                     ret = new Roo[cfg.xtype](cfg); // new panel!!!!!
58807                     this.add(region, ret);
58808                 } else {
58809                 
58810                     alert("Can not add '" + cfg.xtype + "' to BorderLayout");
58811                     return null;
58812                 }
58813                 
58814              // GridPanel (grid, cfg)
58815             
58816         }
58817         this.beginUpdate();
58818         // add children..
58819         var region = '';
58820         var abn = {};
58821         Roo.each(xitems, function(i)  {
58822             region = nb && i.region ? i.region : false;
58823             
58824             var add = ret.addxtype(i);
58825            
58826             if (region) {
58827                 nb[region] = nb[region] == undefined ? 0 : nb[region]+1;
58828                 if (!i.background) {
58829                     abn[region] = nb[region] ;
58830                 }
58831             }
58832             
58833         });
58834         this.endUpdate();
58835
58836         // make the last non-background panel active..
58837         //if (nb) { Roo.log(abn); }
58838         if (nb) {
58839             
58840             for(var r in abn) {
58841                 region = this.getRegion(r);
58842                 if (region) {
58843                     // tried using nb[r], but it does not work..
58844                      
58845                     region.showPanel(abn[r]);
58846                    
58847                 }
58848             }
58849         }
58850         return ret;
58851         
58852     }
58853 });
58854
58855 /**
58856  * Shortcut for creating a new BorderLayout object and adding one or more ContentPanels to it in a single step, handling
58857  * the beginUpdate and endUpdate calls internally.  The key to this method is the <b>panels</b> property that can be
58858  * provided with each region config, which allows you to add ContentPanel configs in addition to the region configs
58859  * during creation.  The following code is equivalent to the constructor-based example at the beginning of this class:
58860  * <pre><code>
58861 // shorthand
58862 var CP = Roo.ContentPanel;
58863
58864 var layout = Roo.BorderLayout.create({
58865     north: {
58866         initialSize: 25,
58867         titlebar: false,
58868         panels: [new CP("north", "North")]
58869     },
58870     west: {
58871         split:true,
58872         initialSize: 200,
58873         minSize: 175,
58874         maxSize: 400,
58875         titlebar: true,
58876         collapsible: true,
58877         panels: [new CP("west", {title: "West"})]
58878     },
58879     east: {
58880         split:true,
58881         initialSize: 202,
58882         minSize: 175,
58883         maxSize: 400,
58884         titlebar: true,
58885         collapsible: true,
58886         panels: [new CP("autoTabs", {title: "Auto Tabs", closable: true})]
58887     },
58888     south: {
58889         split:true,
58890         initialSize: 100,
58891         minSize: 100,
58892         maxSize: 200,
58893         titlebar: true,
58894         collapsible: true,
58895         panels: [new CP("south", {title: "South", closable: true})]
58896     },
58897     center: {
58898         titlebar: true,
58899         autoScroll:true,
58900         resizeTabs: true,
58901         minTabWidth: 50,
58902         preferredTabWidth: 150,
58903         panels: [
58904             new CP("center1", {title: "Close Me", closable: true}),
58905             new CP("center2", {title: "Center Panel", closable: false})
58906         ]
58907     }
58908 }, document.body);
58909
58910 layout.getRegion("center").showPanel("center1");
58911 </code></pre>
58912  * @param config
58913  * @param targetEl
58914  */
58915 Roo.BorderLayout.create = function(config, targetEl){
58916     var layout = new Roo.BorderLayout(targetEl || document.body, config);
58917     layout.beginUpdate();
58918     var regions = Roo.BorderLayout.RegionFactory.validRegions;
58919     for(var j = 0, jlen = regions.length; j < jlen; j++){
58920         var lr = regions[j];
58921         if(layout.regions[lr] && config[lr].panels){
58922             var r = layout.regions[lr];
58923             var ps = config[lr].panels;
58924             layout.addTypedPanels(r, ps);
58925         }
58926     }
58927     layout.endUpdate();
58928     return layout;
58929 };
58930
58931 // private
58932 Roo.BorderLayout.RegionFactory = {
58933     // private
58934     validRegions : ["north","south","east","west","center"],
58935
58936     // private
58937     create : function(target, mgr, config){
58938         target = target.toLowerCase();
58939         if(config.lightweight || config.basic){
58940             return new Roo.BasicLayoutRegion(mgr, config, target);
58941         }
58942         switch(target){
58943             case "north":
58944                 return new Roo.NorthLayoutRegion(mgr, config);
58945             case "south":
58946                 return new Roo.SouthLayoutRegion(mgr, config);
58947             case "east":
58948                 return new Roo.EastLayoutRegion(mgr, config);
58949             case "west":
58950                 return new Roo.WestLayoutRegion(mgr, config);
58951             case "center":
58952                 return new Roo.CenterLayoutRegion(mgr, config);
58953         }
58954         throw 'Layout region "'+target+'" not supported.';
58955     }
58956 };/*
58957  * Based on:
58958  * Ext JS Library 1.1.1
58959  * Copyright(c) 2006-2007, Ext JS, LLC.
58960  *
58961  * Originally Released Under LGPL - original licence link has changed is not relivant.
58962  *
58963  * Fork - LGPL
58964  * <script type="text/javascript">
58965  */
58966  
58967 /**
58968  * @class Roo.BasicLayoutRegion
58969  * @extends Roo.util.Observable
58970  * This class represents a lightweight region in a layout manager. This region does not move dom nodes
58971  * and does not have a titlebar, tabs or any other features. All it does is size and position 
58972  * panels. To create a BasicLayoutRegion, add lightweight:true or basic:true to your regions config.
58973  */
58974 Roo.BasicLayoutRegion = function(mgr, config, pos, skipConfig){
58975     this.mgr = mgr;
58976     this.position  = pos;
58977     this.events = {
58978         /**
58979          * @scope Roo.BasicLayoutRegion
58980          */
58981         
58982         /**
58983          * @event beforeremove
58984          * Fires before a panel is removed (or closed). To cancel the removal set "e.cancel = true" on the event argument.
58985          * @param {Roo.LayoutRegion} this
58986          * @param {Roo.ContentPanel} panel The panel
58987          * @param {Object} e The cancel event object
58988          */
58989         "beforeremove" : true,
58990         /**
58991          * @event invalidated
58992          * Fires when the layout for this region is changed.
58993          * @param {Roo.LayoutRegion} this
58994          */
58995         "invalidated" : true,
58996         /**
58997          * @event visibilitychange
58998          * Fires when this region is shown or hidden 
58999          * @param {Roo.LayoutRegion} this
59000          * @param {Boolean} visibility true or false
59001          */
59002         "visibilitychange" : true,
59003         /**
59004          * @event paneladded
59005          * Fires when a panel is added. 
59006          * @param {Roo.LayoutRegion} this
59007          * @param {Roo.ContentPanel} panel The panel
59008          */
59009         "paneladded" : true,
59010         /**
59011          * @event panelremoved
59012          * Fires when a panel is removed. 
59013          * @param {Roo.LayoutRegion} this
59014          * @param {Roo.ContentPanel} panel The panel
59015          */
59016         "panelremoved" : true,
59017         /**
59018          * @event beforecollapse
59019          * Fires when this region before collapse.
59020          * @param {Roo.LayoutRegion} this
59021          */
59022         "beforecollapse" : true,
59023         /**
59024          * @event collapsed
59025          * Fires when this region is collapsed.
59026          * @param {Roo.LayoutRegion} this
59027          */
59028         "collapsed" : true,
59029         /**
59030          * @event expanded
59031          * Fires when this region is expanded.
59032          * @param {Roo.LayoutRegion} this
59033          */
59034         "expanded" : true,
59035         /**
59036          * @event slideshow
59037          * Fires when this region is slid into view.
59038          * @param {Roo.LayoutRegion} this
59039          */
59040         "slideshow" : true,
59041         /**
59042          * @event slidehide
59043          * Fires when this region slides out of view. 
59044          * @param {Roo.LayoutRegion} this
59045          */
59046         "slidehide" : true,
59047         /**
59048          * @event panelactivated
59049          * Fires when a panel is activated. 
59050          * @param {Roo.LayoutRegion} this
59051          * @param {Roo.ContentPanel} panel The activated panel
59052          */
59053         "panelactivated" : true,
59054         /**
59055          * @event resized
59056          * Fires when the user resizes this region. 
59057          * @param {Roo.LayoutRegion} this
59058          * @param {Number} newSize The new size (width for east/west, height for north/south)
59059          */
59060         "resized" : true
59061     };
59062     /** A collection of panels in this region. @type Roo.util.MixedCollection */
59063     this.panels = new Roo.util.MixedCollection();
59064     this.panels.getKey = this.getPanelId.createDelegate(this);
59065     this.box = null;
59066     this.activePanel = null;
59067     // ensure listeners are added...
59068     
59069     if (config.listeners || config.events) {
59070         Roo.BasicLayoutRegion.superclass.constructor.call(this, {
59071             listeners : config.listeners || {},
59072             events : config.events || {}
59073         });
59074     }
59075     
59076     if(skipConfig !== true){
59077         this.applyConfig(config);
59078     }
59079 };
59080
59081 Roo.extend(Roo.BasicLayoutRegion, Roo.util.Observable, {
59082     getPanelId : function(p){
59083         return p.getId();
59084     },
59085     
59086     applyConfig : function(config){
59087         this.margins = config.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
59088         this.config = config;
59089         
59090     },
59091     
59092     /**
59093      * Resizes the region to the specified size. For vertical regions (west, east) this adjusts 
59094      * the width, for horizontal (north, south) the height.
59095      * @param {Number} newSize The new width or height
59096      */
59097     resizeTo : function(newSize){
59098         var el = this.el ? this.el :
59099                  (this.activePanel ? this.activePanel.getEl() : null);
59100         if(el){
59101             switch(this.position){
59102                 case "east":
59103                 case "west":
59104                     el.setWidth(newSize);
59105                     this.fireEvent("resized", this, newSize);
59106                 break;
59107                 case "north":
59108                 case "south":
59109                     el.setHeight(newSize);
59110                     this.fireEvent("resized", this, newSize);
59111                 break;                
59112             }
59113         }
59114     },
59115     
59116     getBox : function(){
59117         return this.activePanel ? this.activePanel.getEl().getBox(false, true) : null;
59118     },
59119     
59120     getMargins : function(){
59121         return this.margins;
59122     },
59123     
59124     updateBox : function(box){
59125         this.box = box;
59126         var el = this.activePanel.getEl();
59127         el.dom.style.left = box.x + "px";
59128         el.dom.style.top = box.y + "px";
59129         this.activePanel.setSize(box.width, box.height);
59130     },
59131     
59132     /**
59133      * Returns the container element for this region.
59134      * @return {Roo.Element}
59135      */
59136     getEl : function(){
59137         return this.activePanel;
59138     },
59139     
59140     /**
59141      * Returns true if this region is currently visible.
59142      * @return {Boolean}
59143      */
59144     isVisible : function(){
59145         return this.activePanel ? true : false;
59146     },
59147     
59148     setActivePanel : function(panel){
59149         panel = this.getPanel(panel);
59150         if(this.activePanel && this.activePanel != panel){
59151             this.activePanel.setActiveState(false);
59152             this.activePanel.getEl().setLeftTop(-10000,-10000);
59153         }
59154         this.activePanel = panel;
59155         panel.setActiveState(true);
59156         if(this.box){
59157             panel.setSize(this.box.width, this.box.height);
59158         }
59159         this.fireEvent("panelactivated", this, panel);
59160         this.fireEvent("invalidated");
59161     },
59162     
59163     /**
59164      * Show the specified panel.
59165      * @param {Number/String/ContentPanel} panelId The panels index, id or the panel itself
59166      * @return {Roo.ContentPanel} The shown panel or null
59167      */
59168     showPanel : function(panel){
59169         if(panel = this.getPanel(panel)){
59170             this.setActivePanel(panel);
59171         }
59172         return panel;
59173     },
59174     
59175     /**
59176      * Get the active panel for this region.
59177      * @return {Roo.ContentPanel} The active panel or null
59178      */
59179     getActivePanel : function(){
59180         return this.activePanel;
59181     },
59182     
59183     /**
59184      * Add the passed ContentPanel(s)
59185      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
59186      * @return {Roo.ContentPanel} The panel added (if only one was added)
59187      */
59188     add : function(panel){
59189         if(arguments.length > 1){
59190             for(var i = 0, len = arguments.length; i < len; i++) {
59191                 this.add(arguments[i]);
59192             }
59193             return null;
59194         }
59195         if(this.hasPanel(panel)){
59196             this.showPanel(panel);
59197             return panel;
59198         }
59199         var el = panel.getEl();
59200         if(el.dom.parentNode != this.mgr.el.dom){
59201             this.mgr.el.dom.appendChild(el.dom);
59202         }
59203         if(panel.setRegion){
59204             panel.setRegion(this);
59205         }
59206         this.panels.add(panel);
59207         el.setStyle("position", "absolute");
59208         if(!panel.background){
59209             this.setActivePanel(panel);
59210             if(this.config.initialSize && this.panels.getCount()==1){
59211                 this.resizeTo(this.config.initialSize);
59212             }
59213         }
59214         this.fireEvent("paneladded", this, panel);
59215         return panel;
59216     },
59217     
59218     /**
59219      * Returns true if the panel is in this region.
59220      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
59221      * @return {Boolean}
59222      */
59223     hasPanel : function(panel){
59224         if(typeof panel == "object"){ // must be panel obj
59225             panel = panel.getId();
59226         }
59227         return this.getPanel(panel) ? true : false;
59228     },
59229     
59230     /**
59231      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
59232      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
59233      * @param {Boolean} preservePanel Overrides the config preservePanel option
59234      * @return {Roo.ContentPanel} The panel that was removed
59235      */
59236     remove : function(panel, preservePanel){
59237         panel = this.getPanel(panel);
59238         if(!panel){
59239             return null;
59240         }
59241         var e = {};
59242         this.fireEvent("beforeremove", this, panel, e);
59243         if(e.cancel === true){
59244             return null;
59245         }
59246         var panelId = panel.getId();
59247         this.panels.removeKey(panelId);
59248         return panel;
59249     },
59250     
59251     /**
59252      * Returns the panel specified or null if it's not in this region.
59253      * @param {Number/String/ContentPanel} panel The panels index, id or the panel itself
59254      * @return {Roo.ContentPanel}
59255      */
59256     getPanel : function(id){
59257         if(typeof id == "object"){ // must be panel obj
59258             return id;
59259         }
59260         return this.panels.get(id);
59261     },
59262     
59263     /**
59264      * Returns this regions position (north/south/east/west/center).
59265      * @return {String} 
59266      */
59267     getPosition: function(){
59268         return this.position;    
59269     }
59270 });/*
59271  * Based on:
59272  * Ext JS Library 1.1.1
59273  * Copyright(c) 2006-2007, Ext JS, LLC.
59274  *
59275  * Originally Released Under LGPL - original licence link has changed is not relivant.
59276  *
59277  * Fork - LGPL
59278  * <script type="text/javascript">
59279  */
59280  
59281 /**
59282  * @class Roo.LayoutRegion
59283  * @extends Roo.BasicLayoutRegion
59284  * This class represents a region in a layout manager.
59285  * @cfg {Boolean}   collapsible     False to disable collapsing (defaults to true)
59286  * @cfg {Boolean}   collapsed       True to set the initial display to collapsed (defaults to false)
59287  * @cfg {Boolean}   floatable       False to disable floating (defaults to true)
59288  * @cfg {Object}    margins         Margins for the element (defaults to {top: 0, left: 0, right:0, bottom: 0})
59289  * @cfg {Object}    cmargins        Margins for the element when collapsed (defaults to: north/south {top: 2, left: 0, right:0, bottom: 2} or east/west {top: 0, left: 2, right:2, bottom: 0})
59290  * @cfg {String}    tabPosition     (top|bottom) "top" or "bottom" (defaults to "bottom")
59291  * @cfg {String}    collapsedTitle  Optional string message to display in the collapsed block of a north or south region
59292  * @cfg {Boolean}   alwaysShowTabs  True to always display tabs even when there is only 1 panel (defaults to false)
59293  * @cfg {Boolean}   autoScroll      True to enable overflow scrolling (defaults to false)
59294  * @cfg {Boolean}   titlebar        True to display a title bar (defaults to true)
59295  * @cfg {String}    title           The title for the region (overrides panel titles)
59296  * @cfg {Boolean}   animate         True to animate expand/collapse (defaults to false)
59297  * @cfg {Boolean}   autoHide        False to disable auto hiding when the mouse leaves the "floated" region (defaults to true)
59298  * @cfg {Boolean}   preservePanels  True to preserve removed panels so they can be readded later (defaults to false)
59299  * @cfg {Boolean}   closeOnTab      True to place the close icon on the tabs instead of the region titlebar (defaults to false)
59300  * @cfg {Boolean}   hideTabs        True to hide the tab strip (defaults to false)
59301  * @cfg {Boolean}   resizeTabs      True to enable automatic tab resizing. This will resize the tabs so they are all the same size and fit within
59302  *                      the space available, similar to FireFox 1.5 tabs (defaults to false)
59303  * @cfg {Number}    minTabWidth     The minimum tab width (defaults to 40)
59304  * @cfg {Number}    preferredTabWidth The preferred tab width (defaults to 150)
59305  * @cfg {Boolean}   showPin         True to show a pin button
59306  * @cfg {Boolean}   hidden          True to start the region hidden (defaults to false)
59307  * @cfg {Boolean}   hideWhenEmpty   True to hide the region when it has no panels
59308  * @cfg {Boolean}   disableTabTips  True to disable tab tooltips
59309  * @cfg {Number}    width           For East/West panels
59310  * @cfg {Number}    height          For North/South panels
59311  * @cfg {Boolean}   split           To show the splitter
59312  * @cfg {Boolean}   toolbar         xtype configuration for a toolbar - shows on right of tabbar
59313  */
59314 Roo.LayoutRegion = function(mgr, config, pos){
59315     Roo.LayoutRegion.superclass.constructor.call(this, mgr, config, pos, true);
59316     var dh = Roo.DomHelper;
59317     /** This region's container element 
59318     * @type Roo.Element */
59319     this.el = dh.append(mgr.el.dom, {tag: "div", cls: "x-layout-panel x-layout-panel-" + this.position}, true);
59320     /** This region's title element 
59321     * @type Roo.Element */
59322
59323     this.titleEl = dh.append(this.el.dom, {tag: "div", unselectable: "on", cls: "x-unselectable x-layout-panel-hd x-layout-title-"+this.position, children:[
59324         {tag: "span", cls: "x-unselectable x-layout-panel-hd-text", unselectable: "on", html: "&#160;"},
59325         {tag: "div", cls: "x-unselectable x-layout-panel-hd-tools", unselectable: "on"}
59326     ]}, true);
59327     this.titleEl.enableDisplayMode();
59328     /** This region's title text element 
59329     * @type HTMLElement */
59330     this.titleTextEl = this.titleEl.dom.firstChild;
59331     this.tools = Roo.get(this.titleEl.dom.childNodes[1], true);
59332     this.closeBtn = this.createTool(this.tools.dom, "x-layout-close");
59333     this.closeBtn.enableDisplayMode();
59334     this.closeBtn.on("click", this.closeClicked, this);
59335     this.closeBtn.hide();
59336
59337     this.createBody(config);
59338     this.visible = true;
59339     this.collapsed = false;
59340
59341     if(config.hideWhenEmpty){
59342         this.hide();
59343         this.on("paneladded", this.validateVisibility, this);
59344         this.on("panelremoved", this.validateVisibility, this);
59345     }
59346     this.applyConfig(config);
59347 };
59348
59349 Roo.extend(Roo.LayoutRegion, Roo.BasicLayoutRegion, {
59350
59351     createBody : function(){
59352         /** This region's body element 
59353         * @type Roo.Element */
59354         this.bodyEl = this.el.createChild({tag: "div", cls: "x-layout-panel-body"});
59355     },
59356
59357     applyConfig : function(c){
59358         if(c.collapsible && this.position != "center" && !this.collapsedEl){
59359             var dh = Roo.DomHelper;
59360             if(c.titlebar !== false){
59361                 this.collapseBtn = this.createTool(this.tools.dom, "x-layout-collapse-"+this.position);
59362                 this.collapseBtn.on("click", this.collapse, this);
59363                 this.collapseBtn.enableDisplayMode();
59364
59365                 if(c.showPin === true || this.showPin){
59366                     this.stickBtn = this.createTool(this.tools.dom, "x-layout-stick");
59367                     this.stickBtn.enableDisplayMode();
59368                     this.stickBtn.on("click", this.expand, this);
59369                     this.stickBtn.hide();
59370                 }
59371             }
59372             /** This region's collapsed element
59373             * @type Roo.Element */
59374             this.collapsedEl = dh.append(this.mgr.el.dom, {cls: "x-layout-collapsed x-layout-collapsed-"+this.position, children:[
59375                 {cls: "x-layout-collapsed-tools", children:[{cls: "x-layout-ctools-inner"}]}
59376             ]}, true);
59377             if(c.floatable !== false){
59378                this.collapsedEl.addClassOnOver("x-layout-collapsed-over");
59379                this.collapsedEl.on("click", this.collapseClick, this);
59380             }
59381
59382             if(c.collapsedTitle && (this.position == "north" || this.position== "south")) {
59383                 this.collapsedTitleTextEl = dh.append(this.collapsedEl.dom, {tag: "div", cls: "x-unselectable x-layout-panel-hd-text",
59384                    id: "message", unselectable: "on", style:{"float":"left"}});
59385                this.collapsedTitleTextEl.innerHTML = c.collapsedTitle;
59386              }
59387             this.expandBtn = this.createTool(this.collapsedEl.dom.firstChild.firstChild, "x-layout-expand-"+this.position);
59388             this.expandBtn.on("click", this.expand, this);
59389         }
59390         if(this.collapseBtn){
59391             this.collapseBtn.setVisible(c.collapsible == true);
59392         }
59393         this.cmargins = c.cmargins || this.cmargins ||
59394                          (this.position == "west" || this.position == "east" ?
59395                              {top: 0, left: 2, right:2, bottom: 0} :
59396                              {top: 2, left: 0, right:0, bottom: 2});
59397         this.margins = c.margins || this.margins || {top: 0, left: 0, right:0, bottom: 0};
59398         this.bottomTabs = c.tabPosition != "top";
59399         this.autoScroll = c.autoScroll || false;
59400         if(this.autoScroll){
59401             this.bodyEl.setStyle("overflow", "auto");
59402         }else{
59403             this.bodyEl.setStyle("overflow", "hidden");
59404         }
59405         //if(c.titlebar !== false){
59406             if((!c.titlebar && !c.title) || c.titlebar === false){
59407                 this.titleEl.hide();
59408             }else{
59409                 this.titleEl.show();
59410                 if(c.title){
59411                     this.titleTextEl.innerHTML = c.title;
59412                 }
59413             }
59414         //}
59415         this.duration = c.duration || .30;
59416         this.slideDuration = c.slideDuration || .45;
59417         this.config = c;
59418         if(c.collapsed){
59419             this.collapse(true);
59420         }
59421         if(c.hidden){
59422             this.hide();
59423         }
59424     },
59425     /**
59426      * Returns true if this region is currently visible.
59427      * @return {Boolean}
59428      */
59429     isVisible : function(){
59430         return this.visible;
59431     },
59432
59433     /**
59434      * Updates the title for collapsed north/south regions (used with {@link #collapsedTitle} config option)
59435      * @param {String} title (optional) The title text (accepts HTML markup, defaults to the numeric character reference for a non-breaking space, "&amp;#160;")
59436      */
59437     setCollapsedTitle : function(title){
59438         title = title || "&#160;";
59439         if(this.collapsedTitleTextEl){
59440             this.collapsedTitleTextEl.innerHTML = title;
59441         }
59442     },
59443
59444     getBox : function(){
59445         var b;
59446         if(!this.collapsed){
59447             b = this.el.getBox(false, true);
59448         }else{
59449             b = this.collapsedEl.getBox(false, true);
59450         }
59451         return b;
59452     },
59453
59454     getMargins : function(){
59455         return this.collapsed ? this.cmargins : this.margins;
59456     },
59457
59458     highlight : function(){
59459         this.el.addClass("x-layout-panel-dragover");
59460     },
59461
59462     unhighlight : function(){
59463         this.el.removeClass("x-layout-panel-dragover");
59464     },
59465
59466     updateBox : function(box){
59467         this.box = box;
59468         if(!this.collapsed){
59469             this.el.dom.style.left = box.x + "px";
59470             this.el.dom.style.top = box.y + "px";
59471             this.updateBody(box.width, box.height);
59472         }else{
59473             this.collapsedEl.dom.style.left = box.x + "px";
59474             this.collapsedEl.dom.style.top = box.y + "px";
59475             this.collapsedEl.setSize(box.width, box.height);
59476         }
59477         if(this.tabs){
59478             this.tabs.autoSizeTabs();
59479         }
59480     },
59481
59482     updateBody : function(w, h){
59483         if(w !== null){
59484             this.el.setWidth(w);
59485             w -= this.el.getBorderWidth("rl");
59486             if(this.config.adjustments){
59487                 w += this.config.adjustments[0];
59488             }
59489         }
59490         if(h !== null){
59491             this.el.setHeight(h);
59492             h = this.titleEl && this.titleEl.isDisplayed() ? h - (this.titleEl.getHeight()||0) : h;
59493             h -= this.el.getBorderWidth("tb");
59494             if(this.config.adjustments){
59495                 h += this.config.adjustments[1];
59496             }
59497             this.bodyEl.setHeight(h);
59498             if(this.tabs){
59499                 h = this.tabs.syncHeight(h);
59500             }
59501         }
59502         if(this.panelSize){
59503             w = w !== null ? w : this.panelSize.width;
59504             h = h !== null ? h : this.panelSize.height;
59505         }
59506         if(this.activePanel){
59507             var el = this.activePanel.getEl();
59508             w = w !== null ? w : el.getWidth();
59509             h = h !== null ? h : el.getHeight();
59510             this.panelSize = {width: w, height: h};
59511             this.activePanel.setSize(w, h);
59512         }
59513         if(Roo.isIE && this.tabs){
59514             this.tabs.el.repaint();
59515         }
59516     },
59517
59518     /**
59519      * Returns the container element for this region.
59520      * @return {Roo.Element}
59521      */
59522     getEl : function(){
59523         return this.el;
59524     },
59525
59526     /**
59527      * Hides this region.
59528      */
59529     hide : function(){
59530         if(!this.collapsed){
59531             this.el.dom.style.left = "-2000px";
59532             this.el.hide();
59533         }else{
59534             this.collapsedEl.dom.style.left = "-2000px";
59535             this.collapsedEl.hide();
59536         }
59537         this.visible = false;
59538         this.fireEvent("visibilitychange", this, false);
59539     },
59540
59541     /**
59542      * Shows this region if it was previously hidden.
59543      */
59544     show : function(){
59545         if(!this.collapsed){
59546             this.el.show();
59547         }else{
59548             this.collapsedEl.show();
59549         }
59550         this.visible = true;
59551         this.fireEvent("visibilitychange", this, true);
59552     },
59553
59554     closeClicked : function(){
59555         if(this.activePanel){
59556             this.remove(this.activePanel);
59557         }
59558     },
59559
59560     collapseClick : function(e){
59561         if(this.isSlid){
59562            e.stopPropagation();
59563            this.slideIn();
59564         }else{
59565            e.stopPropagation();
59566            this.slideOut();
59567         }
59568     },
59569
59570     /**
59571      * Collapses this region.
59572      * @param {Boolean} skipAnim (optional) true to collapse the element without animation (if animate is true)
59573      */
59574     collapse : function(skipAnim, skipCheck){
59575         if(this.collapsed) {
59576             return;
59577         }
59578         
59579         if(skipCheck || this.fireEvent("beforecollapse", this) != false){
59580             
59581             this.collapsed = true;
59582             if(this.split){
59583                 this.split.el.hide();
59584             }
59585             if(this.config.animate && skipAnim !== true){
59586                 this.fireEvent("invalidated", this);
59587                 this.animateCollapse();
59588             }else{
59589                 this.el.setLocation(-20000,-20000);
59590                 this.el.hide();
59591                 this.collapsedEl.show();
59592                 this.fireEvent("collapsed", this);
59593                 this.fireEvent("invalidated", this);
59594             }
59595         }
59596         
59597     },
59598
59599     animateCollapse : function(){
59600         // overridden
59601     },
59602
59603     /**
59604      * Expands this region if it was previously collapsed.
59605      * @param {Roo.EventObject} e The event that triggered the expand (or null if calling manually)
59606      * @param {Boolean} skipAnim (optional) true to expand the element without animation (if animate is true)
59607      */
59608     expand : function(e, skipAnim){
59609         if(e) {
59610             e.stopPropagation();
59611         }
59612         if(!this.collapsed || this.el.hasActiveFx()) {
59613             return;
59614         }
59615         if(this.isSlid){
59616             this.afterSlideIn();
59617             skipAnim = true;
59618         }
59619         this.collapsed = false;
59620         if(this.config.animate && skipAnim !== true){
59621             this.animateExpand();
59622         }else{
59623             this.el.show();
59624             if(this.split){
59625                 this.split.el.show();
59626             }
59627             this.collapsedEl.setLocation(-2000,-2000);
59628             this.collapsedEl.hide();
59629             this.fireEvent("invalidated", this);
59630             this.fireEvent("expanded", this);
59631         }
59632     },
59633
59634     animateExpand : function(){
59635         // overridden
59636     },
59637
59638     initTabs : function()
59639     {
59640         this.bodyEl.setStyle("overflow", "hidden");
59641         var ts = new Roo.TabPanel(
59642                 this.bodyEl.dom,
59643                 {
59644                     tabPosition: this.bottomTabs ? 'bottom' : 'top',
59645                     disableTooltips: this.config.disableTabTips,
59646                     toolbar : this.config.toolbar
59647                 }
59648         );
59649         if(this.config.hideTabs){
59650             ts.stripWrap.setDisplayed(false);
59651         }
59652         this.tabs = ts;
59653         ts.resizeTabs = this.config.resizeTabs === true;
59654         ts.minTabWidth = this.config.minTabWidth || 40;
59655         ts.maxTabWidth = this.config.maxTabWidth || 250;
59656         ts.preferredTabWidth = this.config.preferredTabWidth || 150;
59657         ts.monitorResize = false;
59658         ts.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
59659         ts.bodyEl.addClass('x-layout-tabs-body');
59660         this.panels.each(this.initPanelAsTab, this);
59661     },
59662
59663     initPanelAsTab : function(panel){
59664         var ti = this.tabs.addTab(panel.getEl().id, panel.getTitle(), null,
59665                     this.config.closeOnTab && panel.isClosable());
59666         if(panel.tabTip !== undefined){
59667             ti.setTooltip(panel.tabTip);
59668         }
59669         ti.on("activate", function(){
59670               this.setActivePanel(panel);
59671         }, this);
59672         if(this.config.closeOnTab){
59673             ti.on("beforeclose", function(t, e){
59674                 e.cancel = true;
59675                 this.remove(panel);
59676             }, this);
59677         }
59678         return ti;
59679     },
59680
59681     updatePanelTitle : function(panel, title){
59682         if(this.activePanel == panel){
59683             this.updateTitle(title);
59684         }
59685         if(this.tabs){
59686             var ti = this.tabs.getTab(panel.getEl().id);
59687             ti.setText(title);
59688             if(panel.tabTip !== undefined){
59689                 ti.setTooltip(panel.tabTip);
59690             }
59691         }
59692     },
59693
59694     updateTitle : function(title){
59695         if(this.titleTextEl && !this.config.title){
59696             this.titleTextEl.innerHTML = (typeof title != "undefined" && title.length > 0 ? title : "&#160;");
59697         }
59698     },
59699
59700     setActivePanel : function(panel){
59701         panel = this.getPanel(panel);
59702         if(this.activePanel && this.activePanel != panel){
59703             this.activePanel.setActiveState(false);
59704         }
59705         this.activePanel = panel;
59706         panel.setActiveState(true);
59707         if(this.panelSize){
59708             panel.setSize(this.panelSize.width, this.panelSize.height);
59709         }
59710         if(this.closeBtn){
59711             this.closeBtn.setVisible(!this.config.closeOnTab && !this.isSlid && panel.isClosable());
59712         }
59713         this.updateTitle(panel.getTitle());
59714         if(this.tabs){
59715             this.fireEvent("invalidated", this);
59716         }
59717         this.fireEvent("panelactivated", this, panel);
59718     },
59719
59720     /**
59721      * Shows the specified panel.
59722      * @param {Number/String/ContentPanel} panelId The panel's index, id or the panel itself
59723      * @return {Roo.ContentPanel} The shown panel, or null if a panel could not be found from panelId
59724      */
59725     showPanel : function(panel)
59726     {
59727         panel = this.getPanel(panel);
59728         if(panel){
59729             if(this.tabs){
59730                 var tab = this.tabs.getTab(panel.getEl().id);
59731                 if(tab.isHidden()){
59732                     this.tabs.unhideTab(tab.id);
59733                 }
59734                 tab.activate();
59735             }else{
59736                 this.setActivePanel(panel);
59737             }
59738         }
59739         return panel;
59740     },
59741
59742     /**
59743      * Get the active panel for this region.
59744      * @return {Roo.ContentPanel} The active panel or null
59745      */
59746     getActivePanel : function(){
59747         return this.activePanel;
59748     },
59749
59750     validateVisibility : function(){
59751         if(this.panels.getCount() < 1){
59752             this.updateTitle("&#160;");
59753             this.closeBtn.hide();
59754             this.hide();
59755         }else{
59756             if(!this.isVisible()){
59757                 this.show();
59758             }
59759         }
59760     },
59761
59762     /**
59763      * Adds the passed ContentPanel(s) to this region.
59764      * @param {ContentPanel...} panel The ContentPanel(s) to add (you can pass more than one)
59765      * @return {Roo.ContentPanel} The panel added (if only one was added; null otherwise)
59766      */
59767     add : function(panel){
59768         if(arguments.length > 1){
59769             for(var i = 0, len = arguments.length; i < len; i++) {
59770                 this.add(arguments[i]);
59771             }
59772             return null;
59773         }
59774         if(this.hasPanel(panel)){
59775             this.showPanel(panel);
59776             return panel;
59777         }
59778         panel.setRegion(this);
59779         this.panels.add(panel);
59780         if(this.panels.getCount() == 1 && !this.config.alwaysShowTabs){
59781             this.bodyEl.dom.appendChild(panel.getEl().dom);
59782             if(panel.background !== true){
59783                 this.setActivePanel(panel);
59784             }
59785             this.fireEvent("paneladded", this, panel);
59786             return panel;
59787         }
59788         if(!this.tabs){
59789             this.initTabs();
59790         }else{
59791             this.initPanelAsTab(panel);
59792         }
59793         if(panel.background !== true){
59794             this.tabs.activate(panel.getEl().id);
59795         }
59796         this.fireEvent("paneladded", this, panel);
59797         return panel;
59798     },
59799
59800     /**
59801      * Hides the tab for the specified panel.
59802      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
59803      */
59804     hidePanel : function(panel){
59805         if(this.tabs && (panel = this.getPanel(panel))){
59806             this.tabs.hideTab(panel.getEl().id);
59807         }
59808     },
59809
59810     /**
59811      * Unhides the tab for a previously hidden panel.
59812      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
59813      */
59814     unhidePanel : function(panel){
59815         if(this.tabs && (panel = this.getPanel(panel))){
59816             this.tabs.unhideTab(panel.getEl().id);
59817         }
59818     },
59819
59820     clearPanels : function(){
59821         while(this.panels.getCount() > 0){
59822              this.remove(this.panels.first());
59823         }
59824     },
59825
59826     /**
59827      * Removes the specified panel. If preservePanel is not true (either here or in the config), the panel is destroyed.
59828      * @param {Number/String/ContentPanel} panel The panel's index, id or the panel itself
59829      * @param {Boolean} preservePanel Overrides the config preservePanel option
59830      * @return {Roo.ContentPanel} The panel that was removed
59831      */
59832     remove : function(panel, preservePanel){
59833         panel = this.getPanel(panel);
59834         if(!panel){
59835             return null;
59836         }
59837         var e = {};
59838         this.fireEvent("beforeremove", this, panel, e);
59839         if(e.cancel === true){
59840             return null;
59841         }
59842         preservePanel = (typeof preservePanel != "undefined" ? preservePanel : (this.config.preservePanels === true || panel.preserve === true));
59843         var panelId = panel.getId();
59844         this.panels.removeKey(panelId);
59845         if(preservePanel){
59846             document.body.appendChild(panel.getEl().dom);
59847         }
59848         if(this.tabs){
59849             this.tabs.removeTab(panel.getEl().id);
59850         }else if (!preservePanel){
59851             this.bodyEl.dom.removeChild(panel.getEl().dom);
59852         }
59853         if(this.panels.getCount() == 1 && this.tabs && !this.config.alwaysShowTabs){
59854             var p = this.panels.first();
59855             var tempEl = document.createElement("div"); // temp holder to keep IE from deleting the node
59856             tempEl.appendChild(p.getEl().dom);
59857             this.bodyEl.update("");
59858             this.bodyEl.dom.appendChild(p.getEl().dom);
59859             tempEl = null;
59860             this.updateTitle(p.getTitle());
59861             this.tabs = null;
59862             this.bodyEl.setStyle("overflow", this.config.autoScroll ? "auto" : "hidden");
59863             this.setActivePanel(p);
59864         }
59865         panel.setRegion(null);
59866         if(this.activePanel == panel){
59867             this.activePanel = null;
59868         }
59869         if(this.config.autoDestroy !== false && preservePanel !== true){
59870             try{panel.destroy();}catch(e){}
59871         }
59872         this.fireEvent("panelremoved", this, panel);
59873         return panel;
59874     },
59875
59876     /**
59877      * Returns the TabPanel component used by this region
59878      * @return {Roo.TabPanel}
59879      */
59880     getTabs : function(){
59881         return this.tabs;
59882     },
59883
59884     createTool : function(parentEl, className){
59885         var btn = Roo.DomHelper.append(parentEl, {tag: "div", cls: "x-layout-tools-button",
59886             children: [{tag: "div", cls: "x-layout-tools-button-inner " + className, html: "&#160;"}]}, true);
59887         btn.addClassOnOver("x-layout-tools-button-over");
59888         return btn;
59889     }
59890 });/*
59891  * Based on:
59892  * Ext JS Library 1.1.1
59893  * Copyright(c) 2006-2007, Ext JS, LLC.
59894  *
59895  * Originally Released Under LGPL - original licence link has changed is not relivant.
59896  *
59897  * Fork - LGPL
59898  * <script type="text/javascript">
59899  */
59900  
59901
59902
59903 /**
59904  * @class Roo.SplitLayoutRegion
59905  * @extends Roo.LayoutRegion
59906  * Adds a splitbar and other (private) useful functionality to a {@link Roo.LayoutRegion}.
59907  */
59908 Roo.SplitLayoutRegion = function(mgr, config, pos, cursor){
59909     this.cursor = cursor;
59910     Roo.SplitLayoutRegion.superclass.constructor.call(this, mgr, config, pos);
59911 };
59912
59913 Roo.extend(Roo.SplitLayoutRegion, Roo.LayoutRegion, {
59914     splitTip : "Drag to resize.",
59915     collapsibleSplitTip : "Drag to resize. Double click to hide.",
59916     useSplitTips : false,
59917
59918     applyConfig : function(config){
59919         Roo.SplitLayoutRegion.superclass.applyConfig.call(this, config);
59920         if(config.split){
59921             if(!this.split){
59922                 var splitEl = Roo.DomHelper.append(this.mgr.el.dom, 
59923                         {tag: "div", id: this.el.id + "-split", cls: "x-layout-split x-layout-split-"+this.position, html: "&#160;"});
59924                 /** The SplitBar for this region 
59925                 * @type Roo.SplitBar */
59926                 this.split = new Roo.SplitBar(splitEl, this.el, this.orientation);
59927                 this.split.on("moved", this.onSplitMove, this);
59928                 this.split.useShim = config.useShim === true;
59929                 this.split.getMaximumSize = this[this.position == 'north' || this.position == 'south' ? 'getVMaxSize' : 'getHMaxSize'].createDelegate(this);
59930                 if(this.useSplitTips){
59931                     this.split.el.dom.title = config.collapsible ? this.collapsibleSplitTip : this.splitTip;
59932                 }
59933                 if(config.collapsible){
59934                     this.split.el.on("dblclick", this.collapse,  this);
59935                 }
59936             }
59937             if(typeof config.minSize != "undefined"){
59938                 this.split.minSize = config.minSize;
59939             }
59940             if(typeof config.maxSize != "undefined"){
59941                 this.split.maxSize = config.maxSize;
59942             }
59943             if(config.hideWhenEmpty || config.hidden || config.collapsed){
59944                 this.hideSplitter();
59945             }
59946         }
59947     },
59948
59949     getHMaxSize : function(){
59950          var cmax = this.config.maxSize || 10000;
59951          var center = this.mgr.getRegion("center");
59952          return Math.min(cmax, (this.el.getWidth()+center.getEl().getWidth())-center.getMinWidth());
59953     },
59954
59955     getVMaxSize : function(){
59956          var cmax = this.config.maxSize || 10000;
59957          var center = this.mgr.getRegion("center");
59958          return Math.min(cmax, (this.el.getHeight()+center.getEl().getHeight())-center.getMinHeight());
59959     },
59960
59961     onSplitMove : function(split, newSize){
59962         this.fireEvent("resized", this, newSize);
59963     },
59964     
59965     /** 
59966      * Returns the {@link Roo.SplitBar} for this region.
59967      * @return {Roo.SplitBar}
59968      */
59969     getSplitBar : function(){
59970         return this.split;
59971     },
59972     
59973     hide : function(){
59974         this.hideSplitter();
59975         Roo.SplitLayoutRegion.superclass.hide.call(this);
59976     },
59977
59978     hideSplitter : function(){
59979         if(this.split){
59980             this.split.el.setLocation(-2000,-2000);
59981             this.split.el.hide();
59982         }
59983     },
59984
59985     show : function(){
59986         if(this.split){
59987             this.split.el.show();
59988         }
59989         Roo.SplitLayoutRegion.superclass.show.call(this);
59990     },
59991     
59992     beforeSlide: function(){
59993         if(Roo.isGecko){// firefox overflow auto bug workaround
59994             this.bodyEl.clip();
59995             if(this.tabs) {
59996                 this.tabs.bodyEl.clip();
59997             }
59998             if(this.activePanel){
59999                 this.activePanel.getEl().clip();
60000                 
60001                 if(this.activePanel.beforeSlide){
60002                     this.activePanel.beforeSlide();
60003                 }
60004             }
60005         }
60006     },
60007     
60008     afterSlide : function(){
60009         if(Roo.isGecko){// firefox overflow auto bug workaround
60010             this.bodyEl.unclip();
60011             if(this.tabs) {
60012                 this.tabs.bodyEl.unclip();
60013             }
60014             if(this.activePanel){
60015                 this.activePanel.getEl().unclip();
60016                 if(this.activePanel.afterSlide){
60017                     this.activePanel.afterSlide();
60018                 }
60019             }
60020         }
60021     },
60022
60023     initAutoHide : function(){
60024         if(this.autoHide !== false){
60025             if(!this.autoHideHd){
60026                 var st = new Roo.util.DelayedTask(this.slideIn, this);
60027                 this.autoHideHd = {
60028                     "mouseout": function(e){
60029                         if(!e.within(this.el, true)){
60030                             st.delay(500);
60031                         }
60032                     },
60033                     "mouseover" : function(e){
60034                         st.cancel();
60035                     },
60036                     scope : this
60037                 };
60038             }
60039             this.el.on(this.autoHideHd);
60040         }
60041     },
60042
60043     clearAutoHide : function(){
60044         if(this.autoHide !== false){
60045             this.el.un("mouseout", this.autoHideHd.mouseout);
60046             this.el.un("mouseover", this.autoHideHd.mouseover);
60047         }
60048     },
60049
60050     clearMonitor : function(){
60051         Roo.get(document).un("click", this.slideInIf, this);
60052     },
60053
60054     // these names are backwards but not changed for compat
60055     slideOut : function(){
60056         if(this.isSlid || this.el.hasActiveFx()){
60057             return;
60058         }
60059         this.isSlid = true;
60060         if(this.collapseBtn){
60061             this.collapseBtn.hide();
60062         }
60063         this.closeBtnState = this.closeBtn.getStyle('display');
60064         this.closeBtn.hide();
60065         if(this.stickBtn){
60066             this.stickBtn.show();
60067         }
60068         this.el.show();
60069         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor());
60070         this.beforeSlide();
60071         this.el.setStyle("z-index", 10001);
60072         this.el.slideIn(this.getSlideAnchor(), {
60073             callback: function(){
60074                 this.afterSlide();
60075                 this.initAutoHide();
60076                 Roo.get(document).on("click", this.slideInIf, this);
60077                 this.fireEvent("slideshow", this);
60078             },
60079             scope: this,
60080             block: true
60081         });
60082     },
60083
60084     afterSlideIn : function(){
60085         this.clearAutoHide();
60086         this.isSlid = false;
60087         this.clearMonitor();
60088         this.el.setStyle("z-index", "");
60089         if(this.collapseBtn){
60090             this.collapseBtn.show();
60091         }
60092         this.closeBtn.setStyle('display', this.closeBtnState);
60093         if(this.stickBtn){
60094             this.stickBtn.hide();
60095         }
60096         this.fireEvent("slidehide", this);
60097     },
60098
60099     slideIn : function(cb){
60100         if(!this.isSlid || this.el.hasActiveFx()){
60101             Roo.callback(cb);
60102             return;
60103         }
60104         this.isSlid = false;
60105         this.beforeSlide();
60106         this.el.slideOut(this.getSlideAnchor(), {
60107             callback: function(){
60108                 this.el.setLeftTop(-10000, -10000);
60109                 this.afterSlide();
60110                 this.afterSlideIn();
60111                 Roo.callback(cb);
60112             },
60113             scope: this,
60114             block: true
60115         });
60116     },
60117     
60118     slideInIf : function(e){
60119         if(!e.within(this.el)){
60120             this.slideIn();
60121         }
60122     },
60123
60124     animateCollapse : function(){
60125         this.beforeSlide();
60126         this.el.setStyle("z-index", 20000);
60127         var anchor = this.getSlideAnchor();
60128         this.el.slideOut(anchor, {
60129             callback : function(){
60130                 this.el.setStyle("z-index", "");
60131                 this.collapsedEl.slideIn(anchor, {duration:.3});
60132                 this.afterSlide();
60133                 this.el.setLocation(-10000,-10000);
60134                 this.el.hide();
60135                 this.fireEvent("collapsed", this);
60136             },
60137             scope: this,
60138             block: true
60139         });
60140     },
60141
60142     animateExpand : function(){
60143         this.beforeSlide();
60144         this.el.alignTo(this.collapsedEl, this.getCollapseAnchor(), this.getExpandAdj());
60145         this.el.setStyle("z-index", 20000);
60146         this.collapsedEl.hide({
60147             duration:.1
60148         });
60149         this.el.slideIn(this.getSlideAnchor(), {
60150             callback : function(){
60151                 this.el.setStyle("z-index", "");
60152                 this.afterSlide();
60153                 if(this.split){
60154                     this.split.el.show();
60155                 }
60156                 this.fireEvent("invalidated", this);
60157                 this.fireEvent("expanded", this);
60158             },
60159             scope: this,
60160             block: true
60161         });
60162     },
60163
60164     anchors : {
60165         "west" : "left",
60166         "east" : "right",
60167         "north" : "top",
60168         "south" : "bottom"
60169     },
60170
60171     sanchors : {
60172         "west" : "l",
60173         "east" : "r",
60174         "north" : "t",
60175         "south" : "b"
60176     },
60177
60178     canchors : {
60179         "west" : "tl-tr",
60180         "east" : "tr-tl",
60181         "north" : "tl-bl",
60182         "south" : "bl-tl"
60183     },
60184
60185     getAnchor : function(){
60186         return this.anchors[this.position];
60187     },
60188
60189     getCollapseAnchor : function(){
60190         return this.canchors[this.position];
60191     },
60192
60193     getSlideAnchor : function(){
60194         return this.sanchors[this.position];
60195     },
60196
60197     getAlignAdj : function(){
60198         var cm = this.cmargins;
60199         switch(this.position){
60200             case "west":
60201                 return [0, 0];
60202             break;
60203             case "east":
60204                 return [0, 0];
60205             break;
60206             case "north":
60207                 return [0, 0];
60208             break;
60209             case "south":
60210                 return [0, 0];
60211             break;
60212         }
60213     },
60214
60215     getExpandAdj : function(){
60216         var c = this.collapsedEl, cm = this.cmargins;
60217         switch(this.position){
60218             case "west":
60219                 return [-(cm.right+c.getWidth()+cm.left), 0];
60220             break;
60221             case "east":
60222                 return [cm.right+c.getWidth()+cm.left, 0];
60223             break;
60224             case "north":
60225                 return [0, -(cm.top+cm.bottom+c.getHeight())];
60226             break;
60227             case "south":
60228                 return [0, cm.top+cm.bottom+c.getHeight()];
60229             break;
60230         }
60231     }
60232 });/*
60233  * Based on:
60234  * Ext JS Library 1.1.1
60235  * Copyright(c) 2006-2007, Ext JS, LLC.
60236  *
60237  * Originally Released Under LGPL - original licence link has changed is not relivant.
60238  *
60239  * Fork - LGPL
60240  * <script type="text/javascript">
60241  */
60242 /*
60243  * These classes are private internal classes
60244  */
60245 Roo.CenterLayoutRegion = function(mgr, config){
60246     Roo.LayoutRegion.call(this, mgr, config, "center");
60247     this.visible = true;
60248     this.minWidth = config.minWidth || 20;
60249     this.minHeight = config.minHeight || 20;
60250 };
60251
60252 Roo.extend(Roo.CenterLayoutRegion, Roo.LayoutRegion, {
60253     hide : function(){
60254         // center panel can't be hidden
60255     },
60256     
60257     show : function(){
60258         // center panel can't be hidden
60259     },
60260     
60261     getMinWidth: function(){
60262         return this.minWidth;
60263     },
60264     
60265     getMinHeight: function(){
60266         return this.minHeight;
60267     }
60268 });
60269
60270
60271 Roo.NorthLayoutRegion = function(mgr, config){
60272     Roo.LayoutRegion.call(this, mgr, config, "north", "n-resize");
60273     if(this.split){
60274         this.split.placement = Roo.SplitBar.TOP;
60275         this.split.orientation = Roo.SplitBar.VERTICAL;
60276         this.split.el.addClass("x-layout-split-v");
60277     }
60278     var size = config.initialSize || config.height;
60279     if(typeof size != "undefined"){
60280         this.el.setHeight(size);
60281     }
60282 };
60283 Roo.extend(Roo.NorthLayoutRegion, Roo.SplitLayoutRegion, {
60284     orientation: Roo.SplitBar.VERTICAL,
60285     getBox : function(){
60286         if(this.collapsed){
60287             return this.collapsedEl.getBox();
60288         }
60289         var box = this.el.getBox();
60290         if(this.split){
60291             box.height += this.split.el.getHeight();
60292         }
60293         return box;
60294     },
60295     
60296     updateBox : function(box){
60297         if(this.split && !this.collapsed){
60298             box.height -= this.split.el.getHeight();
60299             this.split.el.setLeft(box.x);
60300             this.split.el.setTop(box.y+box.height);
60301             this.split.el.setWidth(box.width);
60302         }
60303         if(this.collapsed){
60304             this.updateBody(box.width, null);
60305         }
60306         Roo.LayoutRegion.prototype.updateBox.call(this, box);
60307     }
60308 });
60309
60310 Roo.SouthLayoutRegion = function(mgr, config){
60311     Roo.SplitLayoutRegion.call(this, mgr, config, "south", "s-resize");
60312     if(this.split){
60313         this.split.placement = Roo.SplitBar.BOTTOM;
60314         this.split.orientation = Roo.SplitBar.VERTICAL;
60315         this.split.el.addClass("x-layout-split-v");
60316     }
60317     var size = config.initialSize || config.height;
60318     if(typeof size != "undefined"){
60319         this.el.setHeight(size);
60320     }
60321 };
60322 Roo.extend(Roo.SouthLayoutRegion, Roo.SplitLayoutRegion, {
60323     orientation: Roo.SplitBar.VERTICAL,
60324     getBox : function(){
60325         if(this.collapsed){
60326             return this.collapsedEl.getBox();
60327         }
60328         var box = this.el.getBox();
60329         if(this.split){
60330             var sh = this.split.el.getHeight();
60331             box.height += sh;
60332             box.y -= sh;
60333         }
60334         return box;
60335     },
60336     
60337     updateBox : function(box){
60338         if(this.split && !this.collapsed){
60339             var sh = this.split.el.getHeight();
60340             box.height -= sh;
60341             box.y += sh;
60342             this.split.el.setLeft(box.x);
60343             this.split.el.setTop(box.y-sh);
60344             this.split.el.setWidth(box.width);
60345         }
60346         if(this.collapsed){
60347             this.updateBody(box.width, null);
60348         }
60349         Roo.LayoutRegion.prototype.updateBox.call(this, box);
60350     }
60351 });
60352
60353 Roo.EastLayoutRegion = function(mgr, config){
60354     Roo.SplitLayoutRegion.call(this, mgr, config, "east", "e-resize");
60355     if(this.split){
60356         this.split.placement = Roo.SplitBar.RIGHT;
60357         this.split.orientation = Roo.SplitBar.HORIZONTAL;
60358         this.split.el.addClass("x-layout-split-h");
60359     }
60360     var size = config.initialSize || config.width;
60361     if(typeof size != "undefined"){
60362         this.el.setWidth(size);
60363     }
60364 };
60365 Roo.extend(Roo.EastLayoutRegion, Roo.SplitLayoutRegion, {
60366     orientation: Roo.SplitBar.HORIZONTAL,
60367     getBox : function(){
60368         if(this.collapsed){
60369             return this.collapsedEl.getBox();
60370         }
60371         var box = this.el.getBox();
60372         if(this.split){
60373             var sw = this.split.el.getWidth();
60374             box.width += sw;
60375             box.x -= sw;
60376         }
60377         return box;
60378     },
60379
60380     updateBox : function(box){
60381         if(this.split && !this.collapsed){
60382             var sw = this.split.el.getWidth();
60383             box.width -= sw;
60384             this.split.el.setLeft(box.x);
60385             this.split.el.setTop(box.y);
60386             this.split.el.setHeight(box.height);
60387             box.x += sw;
60388         }
60389         if(this.collapsed){
60390             this.updateBody(null, box.height);
60391         }
60392         Roo.LayoutRegion.prototype.updateBox.call(this, box);
60393     }
60394 });
60395
60396 Roo.WestLayoutRegion = function(mgr, config){
60397     Roo.SplitLayoutRegion.call(this, mgr, config, "west", "w-resize");
60398     if(this.split){
60399         this.split.placement = Roo.SplitBar.LEFT;
60400         this.split.orientation = Roo.SplitBar.HORIZONTAL;
60401         this.split.el.addClass("x-layout-split-h");
60402     }
60403     var size = config.initialSize || config.width;
60404     if(typeof size != "undefined"){
60405         this.el.setWidth(size);
60406     }
60407 };
60408 Roo.extend(Roo.WestLayoutRegion, Roo.SplitLayoutRegion, {
60409     orientation: Roo.SplitBar.HORIZONTAL,
60410     getBox : function(){
60411         if(this.collapsed){
60412             return this.collapsedEl.getBox();
60413         }
60414         var box = this.el.getBox();
60415         if(this.split){
60416             box.width += this.split.el.getWidth();
60417         }
60418         return box;
60419     },
60420     
60421     updateBox : function(box){
60422         if(this.split && !this.collapsed){
60423             var sw = this.split.el.getWidth();
60424             box.width -= sw;
60425             this.split.el.setLeft(box.x+box.width);
60426             this.split.el.setTop(box.y);
60427             this.split.el.setHeight(box.height);
60428         }
60429         if(this.collapsed){
60430             this.updateBody(null, box.height);
60431         }
60432         Roo.LayoutRegion.prototype.updateBox.call(this, box);
60433     }
60434 });
60435 /*
60436  * Based on:
60437  * Ext JS Library 1.1.1
60438  * Copyright(c) 2006-2007, Ext JS, LLC.
60439  *
60440  * Originally Released Under LGPL - original licence link has changed is not relivant.
60441  *
60442  * Fork - LGPL
60443  * <script type="text/javascript">
60444  */
60445  
60446  
60447 /*
60448  * Private internal class for reading and applying state
60449  */
60450 Roo.LayoutStateManager = function(layout){
60451      // default empty state
60452      this.state = {
60453         north: {},
60454         south: {},
60455         east: {},
60456         west: {}       
60457     };
60458 };
60459
60460 Roo.LayoutStateManager.prototype = {
60461     init : function(layout, provider){
60462         this.provider = provider;
60463         var state = provider.get(layout.id+"-layout-state");
60464         if(state){
60465             var wasUpdating = layout.isUpdating();
60466             if(!wasUpdating){
60467                 layout.beginUpdate();
60468             }
60469             for(var key in state){
60470                 if(typeof state[key] != "function"){
60471                     var rstate = state[key];
60472                     var r = layout.getRegion(key);
60473                     if(r && rstate){
60474                         if(rstate.size){
60475                             r.resizeTo(rstate.size);
60476                         }
60477                         if(rstate.collapsed == true){
60478                             r.collapse(true);
60479                         }else{
60480                             r.expand(null, true);
60481                         }
60482                     }
60483                 }
60484             }
60485             if(!wasUpdating){
60486                 layout.endUpdate();
60487             }
60488             this.state = state; 
60489         }
60490         this.layout = layout;
60491         layout.on("regionresized", this.onRegionResized, this);
60492         layout.on("regioncollapsed", this.onRegionCollapsed, this);
60493         layout.on("regionexpanded", this.onRegionExpanded, this);
60494     },
60495     
60496     storeState : function(){
60497         this.provider.set(this.layout.id+"-layout-state", this.state);
60498     },
60499     
60500     onRegionResized : function(region, newSize){
60501         this.state[region.getPosition()].size = newSize;
60502         this.storeState();
60503     },
60504     
60505     onRegionCollapsed : function(region){
60506         this.state[region.getPosition()].collapsed = true;
60507         this.storeState();
60508     },
60509     
60510     onRegionExpanded : function(region){
60511         this.state[region.getPosition()].collapsed = false;
60512         this.storeState();
60513     }
60514 };/*
60515  * Based on:
60516  * Ext JS Library 1.1.1
60517  * Copyright(c) 2006-2007, Ext JS, LLC.
60518  *
60519  * Originally Released Under LGPL - original licence link has changed is not relivant.
60520  *
60521  * Fork - LGPL
60522  * <script type="text/javascript">
60523  */
60524 /**
60525  * @class Roo.ContentPanel
60526  * @extends Roo.util.Observable
60527  * @children Roo.form.Form Roo.JsonView Roo.View
60528  * @parent Roo.BorderLayout Roo.LayoutDialog builder
60529  * A basic ContentPanel element.
60530  * @cfg {Boolean}   fitToFrame    True for this panel to adjust its size to fit when the region resizes  (defaults to false)
60531  * @cfg {Boolean}   fitContainer   When using {@link #fitToFrame} and {@link #resizeEl}, you can also fit the parent container  (defaults to false)
60532  * @cfg {Boolean|Object} autoCreate True to auto generate the DOM element for this panel, or a {@link Roo.DomHelper} config of the element to create
60533  * @cfg {Boolean}   closable      True if the panel can be closed/removed
60534  * @cfg {Boolean}   background    True if the panel should not be activated when it is added (defaults to false)
60535  * @cfg {String|HTMLElement|Element} resizeEl An element to resize if {@link #fitToFrame} is true (instead of this panel's element)
60536  * @cfg {Roo.Toolbar}   toolbar       A toolbar for this panel
60537  * @cfg {Boolean} autoScroll    True to scroll overflow in this panel (use with {@link #fitToFrame})
60538  * @cfg {String} title          The title for this panel
60539  * @cfg {Array} adjustments     Values to <b>add</b> to the width/height when doing a {@link #fitToFrame} (default is [0, 0])
60540  * @cfg {String} url            Calls {@link #setUrl} with this value
60541  * @cfg {String} region (center|north|south|east|west) [required] which region to put this panel on (when used with xtype constructors)
60542  * @cfg {String|Object} params  When used with {@link #url}, calls {@link #setUrl} with this value
60543  * @cfg {Boolean} loadOnce      When used with {@link #url}, calls {@link #setUrl} with this value
60544  * @cfg {String}    content        Raw content to fill content panel with (uses setContent on construction.)
60545  * @cfg {String}    style  Extra style to add to the content panel
60546  * @cfg {Roo.menu.Menu} menu  popup menu
60547
60548  * @constructor
60549  * Create a new ContentPanel.
60550  * @param {String/HTMLElement/Roo.Element} el The container element for this panel
60551  * @param {String/Object} config A string to set only the title or a config object
60552  * @param {String} content (optional) Set the HTML content for this panel
60553  * @param {String} region (optional) Used by xtype constructors to add to regions. (values center,east,west,south,north)
60554  */
60555 Roo.ContentPanel = function(el, config, content){
60556     
60557      
60558     /*
60559     if(el.autoCreate || el.xtype){ // xtype is available if this is called from factory
60560         config = el;
60561         el = Roo.id();
60562     }
60563     if (config && config.parentLayout) { 
60564         el = config.parentLayout.el.createChild(); 
60565     }
60566     */
60567     if(el.autoCreate){ // xtype is available if this is called from factory
60568         config = el;
60569         el = Roo.id();
60570     }
60571     this.el = Roo.get(el);
60572     if(!this.el && config && config.autoCreate){
60573         if(typeof config.autoCreate == "object"){
60574             if(!config.autoCreate.id){
60575                 config.autoCreate.id = config.id||el;
60576             }
60577             this.el = Roo.DomHelper.append(document.body,
60578                         config.autoCreate, true);
60579         }else{
60580             this.el = Roo.DomHelper.append(document.body,
60581                         {tag: "div", cls: "x-layout-inactive-content", id: config.id||el}, true);
60582         }
60583     }
60584     
60585     
60586     this.closable = false;
60587     this.loaded = false;
60588     this.active = false;
60589     if(typeof config == "string"){
60590         this.title = config;
60591     }else{
60592         Roo.apply(this, config);
60593     }
60594     
60595     if (this.toolbar && !this.toolbar.el && this.toolbar.xtype) {
60596         this.wrapEl = this.el.wrap();
60597         this.toolbar.container = this.el.insertSibling(false, 'before');
60598         this.toolbar = new Roo.Toolbar(this.toolbar);
60599     }
60600     
60601     // xtype created footer. - not sure if will work as we normally have to render first..
60602     if (this.footer && !this.footer.el && this.footer.xtype) {
60603         if (!this.wrapEl) {
60604             this.wrapEl = this.el.wrap();
60605         }
60606     
60607         this.footer.container = this.wrapEl.createChild();
60608          
60609         this.footer = Roo.factory(this.footer, Roo);
60610         
60611     }
60612     
60613     if(this.resizeEl){
60614         this.resizeEl = Roo.get(this.resizeEl, true);
60615     }else{
60616         this.resizeEl = this.el;
60617     }
60618     // handle view.xtype
60619     
60620  
60621     
60622     
60623     this.addEvents({
60624         /**
60625          * @event activate
60626          * Fires when this panel is activated. 
60627          * @param {Roo.ContentPanel} this
60628          */
60629         "activate" : true,
60630         /**
60631          * @event deactivate
60632          * Fires when this panel is activated. 
60633          * @param {Roo.ContentPanel} this
60634          */
60635         "deactivate" : true,
60636
60637         /**
60638          * @event resize
60639          * Fires when this panel is resized if fitToFrame is true.
60640          * @param {Roo.ContentPanel} this
60641          * @param {Number} width The width after any component adjustments
60642          * @param {Number} height The height after any component adjustments
60643          */
60644         "resize" : true,
60645         
60646          /**
60647          * @event render
60648          * Fires when this tab is created
60649          * @param {Roo.ContentPanel} this
60650          */
60651         "render" : true
60652          
60653         
60654     });
60655     
60656
60657     
60658     
60659     if(this.autoScroll){
60660         this.resizeEl.setStyle("overflow", "auto");
60661     } else {
60662         // fix randome scrolling
60663         this.el.on('scroll', function() {
60664             Roo.log('fix random scolling');
60665             this.scrollTo('top',0); 
60666         });
60667     }
60668     content = content || this.content;
60669     if(content){
60670         this.setContent(content);
60671     }
60672     if(config && config.url){
60673         this.setUrl(this.url, this.params, this.loadOnce);
60674     }
60675     
60676     
60677     
60678     Roo.ContentPanel.superclass.constructor.call(this);
60679     
60680     if (this.view && typeof(this.view.xtype) != 'undefined') {
60681         this.view.el = this.el.appendChild(document.createElement("div"));
60682         this.view = Roo.factory(this.view); 
60683         this.view.render  &&  this.view.render(false, '');  
60684     }
60685     
60686     
60687     this.fireEvent('render', this);
60688 };
60689
60690 Roo.extend(Roo.ContentPanel, Roo.util.Observable, {
60691     tabTip:'',
60692     setRegion : function(region){
60693         this.region = region;
60694         if(region){
60695            this.el.replaceClass("x-layout-inactive-content", "x-layout-active-content");
60696         }else{
60697            this.el.replaceClass("x-layout-active-content", "x-layout-inactive-content");
60698         } 
60699     },
60700     
60701     /**
60702      * Returns the toolbar for this Panel if one was configured. 
60703      * @return {Roo.Toolbar} 
60704      */
60705     getToolbar : function(){
60706         return this.toolbar;
60707     },
60708     
60709     setActiveState : function(active){
60710         this.active = active;
60711         if(!active){
60712             this.fireEvent("deactivate", this);
60713         }else{
60714             this.fireEvent("activate", this);
60715         }
60716     },
60717     /**
60718      * Updates this panel's element
60719      * @param {String} content The new content
60720      * @param {Boolean} loadScripts (optional) true to look for and process scripts
60721     */
60722     setContent : function(content, loadScripts){
60723         this.el.update(content, loadScripts);
60724     },
60725
60726     ignoreResize : function(w, h){
60727         if(this.lastSize && this.lastSize.width == w && this.lastSize.height == h){
60728             return true;
60729         }else{
60730             this.lastSize = {width: w, height: h};
60731             return false;
60732         }
60733     },
60734     /**
60735      * Get the {@link Roo.UpdateManager} for this panel. Enables you to perform Ajax updates.
60736      * @return {Roo.UpdateManager} The UpdateManager
60737      */
60738     getUpdateManager : function(){
60739         return this.el.getUpdateManager();
60740     },
60741      /**
60742      * Loads this content panel immediately with content from XHR. Note: to delay loading until the panel is activated, use {@link #setUrl}.
60743      * @param {Object/String/Function} url The url for this request or a function to call to get the url or a config object containing any of the following options:
60744 <pre><code>
60745 panel.load({
60746     url: "your-url.php",
60747     params: {param1: "foo", param2: "bar"}, // or a URL encoded string
60748     callback: yourFunction,
60749     scope: yourObject, //(optional scope)
60750     discardUrl: false,
60751     nocache: false,
60752     text: "Loading...",
60753     timeout: 30,
60754     scripts: false
60755 });
60756 </code></pre>
60757      * The only required property is <i>url</i>. The optional properties <i>nocache</i>, <i>text</i> and <i>scripts</i>
60758      * are shorthand for <i>disableCaching</i>, <i>indicatorText</i> and <i>loadScripts</i> and are used to set their associated property on this panel UpdateManager instance.
60759      * @param {String/Object} params (optional) The parameters to pass as either a URL encoded string "param1=1&amp;param2=2" or an object {param1: 1, param2: 2}
60760      * @param {Function} callback (optional) Callback when transaction is complete -- called with signature (oElement, bSuccess, oResponse)
60761      * @param {Boolean} discardUrl (optional) By default when you execute an update the defaultUrl is changed to the last used URL. If true, it will not store the URL.
60762      * @return {Roo.ContentPanel} this
60763      */
60764     load : function(){
60765         var um = this.el.getUpdateManager();
60766         um.update.apply(um, arguments);
60767         return this;
60768     },
60769
60770
60771     /**
60772      * Set a URL to be used to load the content for this panel. When this panel is activated, the content will be loaded from that URL.
60773      * @param {String/Function} url The URL to load the content from or a function to call to get the URL
60774      * @param {String/Object} params (optional) The string params for the update call or an object of the params. See {@link Roo.UpdateManager#update} for more details. (Defaults to null)
60775      * @param {Boolean} loadOnce (optional) Whether to only load the content once. If this is false it makes the Ajax call every time this panel is activated. (Defaults to false)
60776      * @return {Roo.UpdateManager} The UpdateManager
60777      */
60778     setUrl : function(url, params, loadOnce){
60779         if(this.refreshDelegate){
60780             this.removeListener("activate", this.refreshDelegate);
60781         }
60782         this.refreshDelegate = this._handleRefresh.createDelegate(this, [url, params, loadOnce]);
60783         this.on("activate", this.refreshDelegate);
60784         return this.el.getUpdateManager();
60785     },
60786     
60787     _handleRefresh : function(url, params, loadOnce){
60788         if(!loadOnce || !this.loaded){
60789             var updater = this.el.getUpdateManager();
60790             updater.update(url, params, this._setLoaded.createDelegate(this));
60791         }
60792     },
60793     
60794     _setLoaded : function(){
60795         this.loaded = true;
60796     }, 
60797     
60798     /**
60799      * Returns this panel's id
60800      * @return {String} 
60801      */
60802     getId : function(){
60803         return this.el.id;
60804     },
60805     
60806     /** 
60807      * Returns this panel's element - used by regiosn to add.
60808      * @return {Roo.Element} 
60809      */
60810     getEl : function(){
60811         return this.wrapEl || this.el;
60812     },
60813     
60814     adjustForComponents : function(width, height)
60815     {
60816         //Roo.log('adjustForComponents ');
60817         if(this.resizeEl != this.el){
60818             width -= this.el.getFrameWidth('lr');
60819             height -= this.el.getFrameWidth('tb');
60820         }
60821         if(this.toolbar){
60822             var te = this.toolbar.getEl();
60823             height -= te.getHeight();
60824             te.setWidth(width);
60825         }
60826         if(this.footer){
60827             var te = this.footer.getEl();
60828             //Roo.log("footer:" + te.getHeight());
60829             
60830             height -= te.getHeight();
60831             te.setWidth(width);
60832         }
60833         
60834         
60835         if(this.adjustments){
60836             width += this.adjustments[0];
60837             height += this.adjustments[1];
60838         }
60839         return {"width": width, "height": height};
60840     },
60841     
60842     setSize : function(width, height){
60843         if(this.fitToFrame && !this.ignoreResize(width, height)){
60844             if(this.fitContainer && this.resizeEl != this.el){
60845                 this.el.setSize(width, height);
60846             }
60847             var size = this.adjustForComponents(width, height);
60848             this.resizeEl.setSize(this.autoWidth ? "auto" : size.width, this.autoHeight ? "auto" : size.height);
60849             this.fireEvent('resize', this, size.width, size.height);
60850         }
60851     },
60852     
60853     /**
60854      * Returns this panel's title
60855      * @return {String} 
60856      */
60857     getTitle : function(){
60858         return this.title;
60859     },
60860     
60861     /**
60862      * Set this panel's title
60863      * @param {String} title
60864      */
60865     setTitle : function(title){
60866         this.title = title;
60867         if(this.region){
60868             this.region.updatePanelTitle(this, title);
60869         }
60870     },
60871     
60872     /**
60873      * Returns true is this panel was configured to be closable
60874      * @return {Boolean} 
60875      */
60876     isClosable : function(){
60877         return this.closable;
60878     },
60879     
60880     beforeSlide : function(){
60881         this.el.clip();
60882         this.resizeEl.clip();
60883     },
60884     
60885     afterSlide : function(){
60886         this.el.unclip();
60887         this.resizeEl.unclip();
60888     },
60889     
60890     /**
60891      *   Force a content refresh from the URL specified in the {@link #setUrl} method.
60892      *   Will fail silently if the {@link #setUrl} method has not been called.
60893      *   This does not activate the panel, just updates its content.
60894      */
60895     refresh : function(){
60896         if(this.refreshDelegate){
60897            this.loaded = false;
60898            this.refreshDelegate();
60899         }
60900     },
60901     
60902     /**
60903      * Destroys this panel
60904      */
60905     destroy : function(){
60906         this.el.removeAllListeners();
60907         var tempEl = document.createElement("span");
60908         tempEl.appendChild(this.el.dom);
60909         tempEl.innerHTML = "";
60910         this.el.remove();
60911         this.el = null;
60912     },
60913     
60914     /**
60915      * form - if the content panel contains a form - this is a reference to it.
60916      * @type {Roo.form.Form}
60917      */
60918     form : false,
60919     /**
60920      * view - if the content panel contains a view (Roo.DatePicker / Roo.View / Roo.JsonView)
60921      *    This contains a reference to it.
60922      * @type {Roo.View}
60923      */
60924     view : false,
60925     
60926       /**
60927      * Adds a xtype elements to the panel - currently only supports Forms, View, JsonView.
60928      * <pre><code>
60929
60930 layout.addxtype({
60931        xtype : 'Form',
60932        items: [ .... ]
60933    }
60934 );
60935
60936 </code></pre>
60937      * @param {Object} cfg Xtype definition of item to add.
60938      */
60939     
60940     addxtype : function(cfg) {
60941         // add form..
60942         if (cfg.xtype.match(/^Form$/)) {
60943             
60944             var el;
60945             //if (this.footer) {
60946             //    el = this.footer.container.insertSibling(false, 'before');
60947             //} else {
60948                 el = this.el.createChild();
60949             //}
60950
60951             this.form = new  Roo.form.Form(cfg);
60952             
60953             
60954             if ( this.form.allItems.length) {
60955                 this.form.render(el.dom);
60956             }
60957             return this.form;
60958         }
60959         // should only have one of theses..
60960         if ([ 'View', 'JsonView', 'DatePicker'].indexOf(cfg.xtype) > -1) {
60961             // views.. should not be just added - used named prop 'view''
60962             
60963             cfg.el = this.el.appendChild(document.createElement("div"));
60964             // factory?
60965             
60966             var ret = new Roo.factory(cfg);
60967              
60968              ret.render && ret.render(false, ''); // render blank..
60969             this.view = ret;
60970             return ret;
60971         }
60972         return false;
60973     }
60974 });
60975
60976
60977
60978
60979
60980
60981
60982
60983
60984
60985
60986
60987 /**
60988  * @class Roo.GridPanel
60989  * @extends Roo.ContentPanel
60990  * @parent Roo.BorderLayout Roo.LayoutDialog builder
60991  * @constructor
60992  * Create a new GridPanel.
60993  * @cfg {Roo.grid.Grid} grid The grid for this panel
60994  */
60995 Roo.GridPanel = function(grid, config){
60996     
60997     // universal ctor...
60998     if (typeof(grid.grid) != 'undefined') {
60999         config = grid;
61000         grid = config.grid;
61001     }
61002     this.wrapper = Roo.DomHelper.append(document.body, // wrapper for IE7 strict & safari scroll issue
61003         {tag: "div", cls: "x-layout-grid-wrapper x-layout-inactive-content"}, true);
61004         
61005     this.wrapper.dom.appendChild(grid.getGridEl().dom);
61006     
61007     Roo.GridPanel.superclass.constructor.call(this, this.wrapper, config);
61008     
61009     if(this.toolbar){
61010         this.toolbar.el.insertBefore(this.wrapper.dom.firstChild);
61011     }
61012     // xtype created footer. - not sure if will work as we normally have to render first..
61013     if (this.footer && !this.footer.el && this.footer.xtype) {
61014         
61015         this.footer.container = this.grid.getView().getFooterPanel(true);
61016         this.footer.dataSource = this.grid.dataSource;
61017         this.footer = Roo.factory(this.footer, Roo);
61018         
61019     }
61020     
61021     grid.monitorWindowResize = false; // turn off autosizing
61022     grid.autoHeight = false;
61023     grid.autoWidth = false;
61024     this.grid = grid;
61025     this.grid.getGridEl().replaceClass("x-layout-inactive-content", "x-layout-component-panel");
61026 };
61027
61028 Roo.extend(Roo.GridPanel, Roo.ContentPanel, {
61029     getId : function(){
61030         return this.grid.id;
61031     },
61032     
61033     /**
61034      * Returns the grid for this panel
61035      * @return {Roo.grid.Grid} 
61036      */
61037     getGrid : function(){
61038         return this.grid;    
61039     },
61040     
61041     setSize : function(width, height){
61042         if(!this.ignoreResize(width, height)){
61043             var grid = this.grid;
61044             var size = this.adjustForComponents(width, height);
61045             grid.getGridEl().setSize(size.width, size.height);
61046             grid.autoSize();
61047         }
61048     },
61049     
61050     beforeSlide : function(){
61051         this.grid.getView().scroller.clip();
61052     },
61053     
61054     afterSlide : function(){
61055         this.grid.getView().scroller.unclip();
61056     },
61057     
61058     destroy : function(){
61059         this.grid.destroy();
61060         delete this.grid;
61061         Roo.GridPanel.superclass.destroy.call(this); 
61062     }
61063 });
61064
61065
61066 /**
61067  * @class Roo.NestedLayoutPanel
61068  * @extends Roo.ContentPanel
61069  * @parent Roo.BorderLayout Roo.LayoutDialog builder
61070  * @cfg {Roo.BorderLayout} layout   [required] The layout for this panel
61071  *
61072  * 
61073  * @constructor
61074  * Create a new NestedLayoutPanel.
61075  * 
61076  * 
61077  * @param {Roo.BorderLayout} layout [required] The layout for this panel
61078  * @param {String/Object} config A string to set only the title or a config object
61079  */
61080 Roo.NestedLayoutPanel = function(layout, config)
61081 {
61082     // construct with only one argument..
61083     /* FIXME - implement nicer consturctors
61084     if (layout.layout) {
61085         config = layout;
61086         layout = config.layout;
61087         delete config.layout;
61088     }
61089     if (layout.xtype && !layout.getEl) {
61090         // then layout needs constructing..
61091         layout = Roo.factory(layout, Roo);
61092     }
61093     */
61094     
61095     
61096     Roo.NestedLayoutPanel.superclass.constructor.call(this, layout.getEl(), config);
61097     
61098     layout.monitorWindowResize = false; // turn off autosizing
61099     this.layout = layout;
61100     this.layout.getEl().addClass("x-layout-nested-layout");
61101     
61102     
61103     
61104     
61105 };
61106
61107 Roo.extend(Roo.NestedLayoutPanel, Roo.ContentPanel, {
61108
61109     layout : false,
61110
61111     setSize : function(width, height){
61112         if(!this.ignoreResize(width, height)){
61113             var size = this.adjustForComponents(width, height);
61114             var el = this.layout.getEl();
61115             el.setSize(size.width, size.height);
61116             var touch = el.dom.offsetWidth;
61117             this.layout.layout();
61118             // ie requires a double layout on the first pass
61119             if(Roo.isIE && !this.initialized){
61120                 this.initialized = true;
61121                 this.layout.layout();
61122             }
61123         }
61124     },
61125     
61126     // activate all subpanels if not currently active..
61127     
61128     setActiveState : function(active){
61129         this.active = active;
61130         if(!active){
61131             this.fireEvent("deactivate", this);
61132             return;
61133         }
61134         
61135         this.fireEvent("activate", this);
61136         // not sure if this should happen before or after..
61137         if (!this.layout) {
61138             return; // should not happen..
61139         }
61140         var reg = false;
61141         for (var r in this.layout.regions) {
61142             reg = this.layout.getRegion(r);
61143             if (reg.getActivePanel()) {
61144                 //reg.showPanel(reg.getActivePanel()); // force it to activate.. 
61145                 reg.setActivePanel(reg.getActivePanel());
61146                 continue;
61147             }
61148             if (!reg.panels.length) {
61149                 continue;
61150             }
61151             reg.showPanel(reg.getPanel(0));
61152         }
61153         
61154         
61155         
61156         
61157     },
61158     
61159     /**
61160      * Returns the nested BorderLayout for this panel
61161      * @return {Roo.BorderLayout}
61162      */
61163     getLayout : function(){
61164         return this.layout;
61165     },
61166     
61167      /**
61168      * Adds a xtype elements to the layout of the nested panel
61169      * <pre><code>
61170
61171 panel.addxtype({
61172        xtype : 'ContentPanel',
61173        region: 'west',
61174        items: [ .... ]
61175    }
61176 );
61177
61178 panel.addxtype({
61179         xtype : 'NestedLayoutPanel',
61180         region: 'west',
61181         layout: {
61182            center: { },
61183            west: { }   
61184         },
61185         items : [ ... list of content panels or nested layout panels.. ]
61186    }
61187 );
61188 </code></pre>
61189      * @param {Object} cfg Xtype definition of item to add.
61190      */
61191     addxtype : function(cfg) {
61192         return this.layout.addxtype(cfg);
61193     
61194     }
61195 });
61196
61197 Roo.ScrollPanel = function(el, config, content){
61198     config = config || {};
61199     config.fitToFrame = true;
61200     Roo.ScrollPanel.superclass.constructor.call(this, el, config, content);
61201     
61202     this.el.dom.style.overflow = "hidden";
61203     var wrap = this.el.wrap({cls: "x-scroller x-layout-inactive-content"});
61204     this.el.removeClass("x-layout-inactive-content");
61205     this.el.on("mousewheel", this.onWheel, this);
61206
61207     var up = wrap.createChild({cls: "x-scroller-up", html: "&#160;"}, this.el.dom);
61208     var down = wrap.createChild({cls: "x-scroller-down", html: "&#160;"});
61209     up.unselectable(); down.unselectable();
61210     up.on("click", this.scrollUp, this);
61211     down.on("click", this.scrollDown, this);
61212     up.addClassOnOver("x-scroller-btn-over");
61213     down.addClassOnOver("x-scroller-btn-over");
61214     up.addClassOnClick("x-scroller-btn-click");
61215     down.addClassOnClick("x-scroller-btn-click");
61216     this.adjustments = [0, -(up.getHeight() + down.getHeight())];
61217
61218     this.resizeEl = this.el;
61219     this.el = wrap; this.up = up; this.down = down;
61220 };
61221
61222 Roo.extend(Roo.ScrollPanel, Roo.ContentPanel, {
61223     increment : 100,
61224     wheelIncrement : 5,
61225     scrollUp : function(){
61226         this.resizeEl.scroll("up", this.increment, {callback: this.afterScroll, scope: this});
61227     },
61228
61229     scrollDown : function(){
61230         this.resizeEl.scroll("down", this.increment, {callback: this.afterScroll, scope: this});
61231     },
61232
61233     afterScroll : function(){
61234         var el = this.resizeEl;
61235         var t = el.dom.scrollTop, h = el.dom.scrollHeight, ch = el.dom.clientHeight;
61236         this.up[t == 0 ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
61237         this.down[h - t <= ch ? "addClass" : "removeClass"]("x-scroller-btn-disabled");
61238     },
61239
61240     setSize : function(){
61241         Roo.ScrollPanel.superclass.setSize.apply(this, arguments);
61242         this.afterScroll();
61243     },
61244
61245     onWheel : function(e){
61246         var d = e.getWheelDelta();
61247         this.resizeEl.dom.scrollTop -= (d*this.wheelIncrement);
61248         this.afterScroll();
61249         e.stopEvent();
61250     },
61251
61252     setContent : function(content, loadScripts){
61253         this.resizeEl.update(content, loadScripts);
61254     }
61255
61256 });
61257
61258
61259
61260 /**
61261  * @class Roo.TreePanel
61262  * @extends Roo.ContentPanel
61263  * @parent Roo.BorderLayout Roo.LayoutDialog builder
61264  * Treepanel component
61265  * 
61266  * @constructor
61267  * Create a new TreePanel. - defaults to fit/scoll contents.
61268  * @param {String/Object} config A string to set only the panel's title, or a config object
61269  */
61270 Roo.TreePanel = function(config){
61271     var el = config.el;
61272     var tree = config.tree;
61273     delete config.tree; 
61274     delete config.el; // hopefull!
61275     
61276     // wrapper for IE7 strict & safari scroll issue
61277     
61278     var treeEl = el.createChild();
61279     config.resizeEl = treeEl;
61280     
61281     
61282     
61283     Roo.TreePanel.superclass.constructor.call(this, el, config);
61284  
61285  
61286     this.tree = new Roo.tree.TreePanel(treeEl , tree);
61287     //console.log(tree);
61288     this.on('activate', function()
61289     {
61290         if (this.tree.rendered) {
61291             return;
61292         }
61293         //console.log('render tree');
61294         this.tree.render();
61295     });
61296     // this should not be needed.. - it's actually the 'el' that resizes?
61297     // actuall it breaks the containerScroll - dragging nodes auto scroll at top
61298     
61299     //this.on('resize',  function (cp, w, h) {
61300     //        this.tree.innerCt.setWidth(w);
61301     //        this.tree.innerCt.setHeight(h);
61302     //        //this.tree.innerCt.setStyle('overflow-y', 'auto');
61303     //});
61304
61305         
61306     
61307 };
61308
61309 Roo.extend(Roo.TreePanel, Roo.ContentPanel, {   
61310     fitToFrame : true,
61311     autoScroll : true,
61312     /*
61313      * @cfg {Roo.tree.TreePanel} tree [required] The tree TreePanel, with config etc.
61314      */
61315     tree : false
61316
61317 });
61318 /*
61319  * Based on:
61320  * Ext JS Library 1.1.1
61321  * Copyright(c) 2006-2007, Ext JS, LLC.
61322  *
61323  * Originally Released Under LGPL - original licence link has changed is not relivant.
61324  *
61325  * Fork - LGPL
61326  * <script type="text/javascript">
61327  */
61328  
61329
61330 /**
61331  * @class Roo.ReaderLayout
61332  * @extends Roo.BorderLayout
61333  * This is a pre-built layout that represents a classic, 5-pane application.  It consists of a header, a primary
61334  * center region containing two nested regions (a top one for a list view and one for item preview below),
61335  * and regions on either side that can be used for navigation, application commands, informational displays, etc.
61336  * The setup and configuration work exactly the same as it does for a {@link Roo.BorderLayout} - this class simply
61337  * expedites the setup of the overall layout and regions for this common application style.
61338  * Example:
61339  <pre><code>
61340 var reader = new Roo.ReaderLayout();
61341 var CP = Roo.ContentPanel;  // shortcut for adding
61342
61343 reader.beginUpdate();
61344 reader.add("north", new CP("north", "North"));
61345 reader.add("west", new CP("west", {title: "West"}));
61346 reader.add("east", new CP("east", {title: "East"}));
61347
61348 reader.regions.listView.add(new CP("listView", "List"));
61349 reader.regions.preview.add(new CP("preview", "Preview"));
61350 reader.endUpdate();
61351 </code></pre>
61352 * @constructor
61353 * Create a new ReaderLayout
61354 * @param {Object} config Configuration options
61355 * @param {String/HTMLElement/Element} container (optional) The container this layout is bound to (defaults to
61356 * document.body if omitted)
61357 */
61358 Roo.ReaderLayout = function(config, renderTo){
61359     var c = config || {size:{}};
61360     Roo.ReaderLayout.superclass.constructor.call(this, renderTo || document.body, {
61361         north: c.north !== false ? Roo.apply({
61362             split:false,
61363             initialSize: 32,
61364             titlebar: false
61365         }, c.north) : false,
61366         west: c.west !== false ? Roo.apply({
61367             split:true,
61368             initialSize: 200,
61369             minSize: 175,
61370             maxSize: 400,
61371             titlebar: true,
61372             collapsible: true,
61373             animate: true,
61374             margins:{left:5,right:0,bottom:5,top:5},
61375             cmargins:{left:5,right:5,bottom:5,top:5}
61376         }, c.west) : false,
61377         east: c.east !== false ? Roo.apply({
61378             split:true,
61379             initialSize: 200,
61380             minSize: 175,
61381             maxSize: 400,
61382             titlebar: true,
61383             collapsible: true,
61384             animate: true,
61385             margins:{left:0,right:5,bottom:5,top:5},
61386             cmargins:{left:5,right:5,bottom:5,top:5}
61387         }, c.east) : false,
61388         center: Roo.apply({
61389             tabPosition: 'top',
61390             autoScroll:false,
61391             closeOnTab: true,
61392             titlebar:false,
61393             margins:{left:c.west!==false ? 0 : 5,right:c.east!==false ? 0 : 5,bottom:5,top:2}
61394         }, c.center)
61395     });
61396
61397     this.el.addClass('x-reader');
61398
61399     this.beginUpdate();
61400
61401     var inner = new Roo.BorderLayout(Roo.get(document.body).createChild(), {
61402         south: c.preview !== false ? Roo.apply({
61403             split:true,
61404             initialSize: 200,
61405             minSize: 100,
61406             autoScroll:true,
61407             collapsible:true,
61408             titlebar: true,
61409             cmargins:{top:5,left:0, right:0, bottom:0}
61410         }, c.preview) : false,
61411         center: Roo.apply({
61412             autoScroll:false,
61413             titlebar:false,
61414             minHeight:200
61415         }, c.listView)
61416     });
61417     this.add('center', new Roo.NestedLayoutPanel(inner,
61418             Roo.apply({title: c.mainTitle || '',tabTip:''},c.innerPanelCfg)));
61419
61420     this.endUpdate();
61421
61422     this.regions.preview = inner.getRegion('south');
61423     this.regions.listView = inner.getRegion('center');
61424 };
61425
61426 Roo.extend(Roo.ReaderLayout, Roo.BorderLayout);/*
61427  * Based on:
61428  * Ext JS Library 1.1.1
61429  * Copyright(c) 2006-2007, Ext JS, LLC.
61430  *
61431  * Originally Released Under LGPL - original licence link has changed is not relivant.
61432  *
61433  * Fork - LGPL
61434  * <script type="text/javascript">
61435  */
61436  
61437 /**
61438  * @class Roo.grid.Grid
61439  * @extends Roo.util.Observable
61440  * This class represents the primary interface of a component based grid control.
61441  * <br><br>Usage:<pre><code>
61442  var grid = new Roo.grid.Grid("my-container-id", {
61443      ds: myDataStore,
61444      cm: myColModel,
61445      selModel: mySelectionModel,
61446      autoSizeColumns: true,
61447      monitorWindowResize: false,
61448      trackMouseOver: true
61449  });
61450  // set any options
61451  grid.render();
61452  * </code></pre>
61453  * <b>Common Problems:</b><br/>
61454  * - Grid does not resize properly when going smaller: Setting overflow hidden on the container
61455  * element will correct this<br/>
61456  * - If you get el.style[camel]= NaNpx or -2px or something related, be certain you have given your container element
61457  * dimensions. The grid adapts to your container's size, if your container has no size defined then the results
61458  * are unpredictable.<br/>
61459  * - Do not render the grid into an element with display:none. Try using visibility:hidden. Otherwise there is no way for the
61460  * grid to calculate dimensions/offsets.<br/>
61461   * @constructor
61462  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
61463  * The container MUST have some type of size defined for the grid to fill. The container will be
61464  * automatically set to position relative if it isn't already.
61465  * @param {Object} config A config object that sets properties on this grid.
61466  */
61467 Roo.grid.Grid = function(container, config){
61468         // initialize the container
61469         this.container = Roo.get(container);
61470         this.container.update("");
61471         this.container.setStyle("overflow", "hidden");
61472     this.container.addClass('x-grid-container');
61473
61474     this.id = this.container.id;
61475
61476     Roo.apply(this, config);
61477     // check and correct shorthanded configs
61478     if(this.ds){
61479         this.dataSource = this.ds;
61480         delete this.ds;
61481     }
61482     if(this.cm){
61483         this.colModel = this.cm;
61484         delete this.cm;
61485     }
61486     if(this.sm){
61487         this.selModel = this.sm;
61488         delete this.sm;
61489     }
61490
61491     if (this.selModel) {
61492         this.selModel = Roo.factory(this.selModel, Roo.grid);
61493         this.sm = this.selModel;
61494         this.sm.xmodule = this.xmodule || false;
61495     }
61496     if (typeof(this.colModel.config) == 'undefined') {
61497         this.colModel = new Roo.grid.ColumnModel(this.colModel);
61498         this.cm = this.colModel;
61499         this.cm.xmodule = this.xmodule || false;
61500     }
61501     if (this.dataSource) {
61502         this.dataSource= Roo.factory(this.dataSource, Roo.data);
61503         this.ds = this.dataSource;
61504         this.ds.xmodule = this.xmodule || false;
61505          
61506     }
61507     
61508     
61509     
61510     if(this.width){
61511         this.container.setWidth(this.width);
61512     }
61513
61514     if(this.height){
61515         this.container.setHeight(this.height);
61516     }
61517     /** @private */
61518         this.addEvents({
61519         // raw events
61520         /**
61521          * @event click
61522          * The raw click event for the entire grid.
61523          * @param {Roo.EventObject} e
61524          */
61525         "click" : true,
61526         /**
61527          * @event dblclick
61528          * The raw dblclick event for the entire grid.
61529          * @param {Roo.EventObject} e
61530          */
61531         "dblclick" : true,
61532         /**
61533          * @event contextmenu
61534          * The raw contextmenu event for the entire grid.
61535          * @param {Roo.EventObject} e
61536          */
61537         "contextmenu" : true,
61538         /**
61539          * @event mousedown
61540          * The raw mousedown event for the entire grid.
61541          * @param {Roo.EventObject} e
61542          */
61543         "mousedown" : true,
61544         /**
61545          * @event mouseup
61546          * The raw mouseup event for the entire grid.
61547          * @param {Roo.EventObject} e
61548          */
61549         "mouseup" : true,
61550         /**
61551          * @event mouseover
61552          * The raw mouseover event for the entire grid.
61553          * @param {Roo.EventObject} e
61554          */
61555         "mouseover" : true,
61556         /**
61557          * @event mouseout
61558          * The raw mouseout event for the entire grid.
61559          * @param {Roo.EventObject} e
61560          */
61561         "mouseout" : true,
61562         /**
61563          * @event keypress
61564          * The raw keypress event for the entire grid.
61565          * @param {Roo.EventObject} e
61566          */
61567         "keypress" : true,
61568         /**
61569          * @event keydown
61570          * The raw keydown event for the entire grid.
61571          * @param {Roo.EventObject} e
61572          */
61573         "keydown" : true,
61574
61575         // custom events
61576
61577         /**
61578          * @event cellclick
61579          * Fires when a cell is clicked
61580          * @param {Grid} this
61581          * @param {Number} rowIndex
61582          * @param {Number} columnIndex
61583          * @param {Roo.EventObject} e
61584          */
61585         "cellclick" : true,
61586         /**
61587          * @event celldblclick
61588          * Fires when a cell is double clicked
61589          * @param {Grid} this
61590          * @param {Number} rowIndex
61591          * @param {Number} columnIndex
61592          * @param {Roo.EventObject} e
61593          */
61594         "celldblclick" : true,
61595         /**
61596          * @event rowclick
61597          * Fires when a row is clicked
61598          * @param {Grid} this
61599          * @param {Number} rowIndex
61600          * @param {Roo.EventObject} e
61601          */
61602         "rowclick" : true,
61603         /**
61604          * @event rowdblclick
61605          * Fires when a row is double clicked
61606          * @param {Grid} this
61607          * @param {Number} rowIndex
61608          * @param {Roo.EventObject} e
61609          */
61610         "rowdblclick" : true,
61611         /**
61612          * @event headerclick
61613          * Fires when a header is clicked
61614          * @param {Grid} this
61615          * @param {Number} columnIndex
61616          * @param {Roo.EventObject} e
61617          */
61618         "headerclick" : true,
61619         /**
61620          * @event headerdblclick
61621          * Fires when a header cell is double clicked
61622          * @param {Grid} this
61623          * @param {Number} columnIndex
61624          * @param {Roo.EventObject} e
61625          */
61626         "headerdblclick" : true,
61627         /**
61628          * @event rowcontextmenu
61629          * Fires when a row is right clicked
61630          * @param {Grid} this
61631          * @param {Number} rowIndex
61632          * @param {Roo.EventObject} e
61633          */
61634         "rowcontextmenu" : true,
61635         /**
61636          * @event cellcontextmenu
61637          * Fires when a cell is right clicked
61638          * @param {Grid} this
61639          * @param {Number} rowIndex
61640          * @param {Number} cellIndex
61641          * @param {Roo.EventObject} e
61642          */
61643          "cellcontextmenu" : true,
61644         /**
61645          * @event headercontextmenu
61646          * Fires when a header is right clicked
61647          * @param {Grid} this
61648          * @param {Number} columnIndex
61649          * @param {Roo.EventObject} e
61650          */
61651         "headercontextmenu" : true,
61652         /**
61653          * @event bodyscroll
61654          * Fires when the body element is scrolled
61655          * @param {Number} scrollLeft
61656          * @param {Number} scrollTop
61657          */
61658         "bodyscroll" : true,
61659         /**
61660          * @event columnresize
61661          * Fires when the user resizes a column
61662          * @param {Number} columnIndex
61663          * @param {Number} newSize
61664          */
61665         "columnresize" : true,
61666         /**
61667          * @event columnmove
61668          * Fires when the user moves a column
61669          * @param {Number} oldIndex
61670          * @param {Number} newIndex
61671          */
61672         "columnmove" : true,
61673         /**
61674          * @event startdrag
61675          * Fires when row(s) start being dragged
61676          * @param {Grid} this
61677          * @param {Roo.GridDD} dd The drag drop object
61678          * @param {event} e The raw browser event
61679          */
61680         "startdrag" : true,
61681         /**
61682          * @event enddrag
61683          * Fires when a drag operation is complete
61684          * @param {Grid} this
61685          * @param {Roo.GridDD} dd The drag drop object
61686          * @param {event} e The raw browser event
61687          */
61688         "enddrag" : true,
61689         /**
61690          * @event dragdrop
61691          * Fires when dragged row(s) are dropped on a valid DD target
61692          * @param {Grid} this
61693          * @param {Roo.GridDD} dd The drag drop object
61694          * @param {String} targetId The target drag drop object
61695          * @param {event} e The raw browser event
61696          */
61697         "dragdrop" : true,
61698         /**
61699          * @event dragover
61700          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
61701          * @param {Grid} this
61702          * @param {Roo.GridDD} dd The drag drop object
61703          * @param {String} targetId The target drag drop object
61704          * @param {event} e The raw browser event
61705          */
61706         "dragover" : true,
61707         /**
61708          * @event dragenter
61709          *  Fires when the dragged row(s) first cross another DD target while being dragged
61710          * @param {Grid} this
61711          * @param {Roo.GridDD} dd The drag drop object
61712          * @param {String} targetId The target drag drop object
61713          * @param {event} e The raw browser event
61714          */
61715         "dragenter" : true,
61716         /**
61717          * @event dragout
61718          * Fires when the dragged row(s) leave another DD target while being dragged
61719          * @param {Grid} this
61720          * @param {Roo.GridDD} dd The drag drop object
61721          * @param {String} targetId The target drag drop object
61722          * @param {event} e The raw browser event
61723          */
61724         "dragout" : true,
61725         /**
61726          * @event rowclass
61727          * Fires when a row is rendered, so you can change add a style to it.
61728          * @param {GridView} gridview   The grid view
61729          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
61730          */
61731         'rowclass' : true,
61732
61733         /**
61734          * @event render
61735          * Fires when the grid is rendered
61736          * @param {Grid} grid
61737          */
61738         'render' : true
61739     });
61740
61741     Roo.grid.Grid.superclass.constructor.call(this);
61742 };
61743 Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
61744     
61745     /**
61746          * @cfg {Roo.grid.AbstractSelectionModel} sm The selection Model (default = Roo.grid.RowSelectionModel)
61747          */
61748         /**
61749          * @cfg {Roo.grid.GridView} view  The view that renders the grid (default = Roo.grid.GridView)
61750          */
61751         /**
61752          * @cfg {Roo.grid.ColumnModel} cm[] The columns of the grid
61753          */
61754         /**
61755          * @cfg {Roo.data.Store} ds The data store for the grid
61756          */
61757         /**
61758          * @cfg {Roo.Toolbar} toolbar a toolbar for buttons etc.
61759          */
61760         /**
61761      * @cfg {String} ddGroup - drag drop group.
61762      */
61763       /**
61764      * @cfg {String} dragGroup - drag group (?? not sure if needed.)
61765      */
61766
61767     /**
61768      * @cfg {Number} minColumnWidth The minimum width a column can be resized to. Default is 25.
61769      */
61770     minColumnWidth : 25,
61771
61772     /**
61773      * @cfg {Boolean} autoSizeColumns True to automatically resize the columns to fit their content
61774      * <b>on initial render.</b> It is more efficient to explicitly size the columns
61775      * through the ColumnModel's {@link Roo.grid.ColumnModel#width} config option.  Default is false.
61776      */
61777     autoSizeColumns : false,
61778
61779     /**
61780      * @cfg {Boolean} autoSizeHeaders True to measure headers with column data when auto sizing columns. Default is true.
61781      */
61782     autoSizeHeaders : true,
61783
61784     /**
61785      * @cfg {Boolean} monitorWindowResize True to autoSize the grid when the window resizes. Default is true.
61786      */
61787     monitorWindowResize : true,
61788
61789     /**
61790      * @cfg {Boolean} maxRowsToMeasure If autoSizeColumns is on, maxRowsToMeasure can be used to limit the number of
61791      * rows measured to get a columns size. Default is 0 (all rows).
61792      */
61793     maxRowsToMeasure : 0,
61794
61795     /**
61796      * @cfg {Boolean} trackMouseOver True to highlight rows when the mouse is over. Default is true.
61797      */
61798     trackMouseOver : true,
61799
61800     /**
61801     * @cfg {Boolean} enableDrag  True to enable drag of rows. Default is false. (double check if this is needed?)
61802     */
61803       /**
61804     * @cfg {Boolean} enableDrop  True to enable drop of elements. Default is false. (double check if this is needed?)
61805     */
61806     
61807     /**
61808     * @cfg {Boolean} enableDragDrop True to enable drag and drop of rows. Default is false.
61809     */
61810     enableDragDrop : false,
61811     
61812     /**
61813     * @cfg {Boolean} enableColumnMove True to enable drag and drop reorder of columns. Default is true.
61814     */
61815     enableColumnMove : true,
61816     
61817     /**
61818     * @cfg {Boolean} enableColumnHide True to enable hiding of columns with the header context menu. Default is true.
61819     */
61820     enableColumnHide : true,
61821     
61822     /**
61823     * @cfg {Boolean} enableRowHeightSync True to manually sync row heights across locked and not locked rows. Default is false.
61824     */
61825     enableRowHeightSync : false,
61826     
61827     /**
61828     * @cfg {Boolean} stripeRows True to stripe the rows.  Default is true.
61829     */
61830     stripeRows : true,
61831     
61832     /**
61833     * @cfg {Boolean} autoHeight True to fit the height of the grid container to the height of the data. Default is false.
61834     */
61835     autoHeight : false,
61836
61837     /**
61838      * @cfg {String} autoExpandColumn The id (or dataIndex) of a column in this grid that should expand to fill unused space. This id can not be 0. Default is false.
61839      */
61840     autoExpandColumn : false,
61841
61842     /**
61843     * @cfg {Number} autoExpandMin The minimum width the autoExpandColumn can have (if enabled).
61844     * Default is 50.
61845     */
61846     autoExpandMin : 50,
61847
61848     /**
61849     * @cfg {Number} autoExpandMax The maximum width the autoExpandColumn can have (if enabled). Default is 1000.
61850     */
61851     autoExpandMax : 1000,
61852
61853     /**
61854     * @cfg {Object} view The {@link Roo.grid.GridView} used by the grid. This can be set before a call to render().
61855     */
61856     view : null,
61857
61858     /**
61859     * @cfg {Object} loadMask An {@link Roo.LoadMask} config or true to mask the grid while loading. Default is false.
61860     */
61861     loadMask : false,
61862     /**
61863     * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config
61864     */
61865     dropTarget: false,
61866      /**
61867     * @cfg {boolean} sortColMenu Sort the column order menu when it shows (usefull for long lists..) default false
61868     */ 
61869     sortColMenu : false,
61870     
61871     // private
61872     rendered : false,
61873
61874     /**
61875     * @cfg {Boolean} autoWidth True to set the grid's width to the default total width of the grid's columns instead
61876     * of a fixed width. Default is false.
61877     */
61878     /**
61879     * @cfg {Number} maxHeight Sets the maximum height of the grid - ignored if autoHeight is not on.
61880     */
61881     
61882     
61883     /**
61884     * @cfg {String} ddText Configures the text is the drag proxy (defaults to "%0 selected row(s)").
61885     * %0 is replaced with the number of selected rows.
61886     */
61887     ddText : "{0} selected row{1}",
61888     
61889     
61890     /**
61891      * Called once after all setup has been completed and the grid is ready to be rendered.
61892      * @return {Roo.grid.Grid} this
61893      */
61894     render : function()
61895     {
61896         var c = this.container;
61897         // try to detect autoHeight/width mode
61898         if((!c.dom.offsetHeight || c.dom.offsetHeight < 20) || c.getStyle("height") == "auto"){
61899             this.autoHeight = true;
61900         }
61901         var view = this.getView();
61902         view.init(this);
61903
61904         c.on("click", this.onClick, this);
61905         c.on("dblclick", this.onDblClick, this);
61906         c.on("contextmenu", this.onContextMenu, this);
61907         c.on("keydown", this.onKeyDown, this);
61908         if (Roo.isTouch) {
61909             c.on("touchstart", this.onTouchStart, this);
61910         }
61911
61912         this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]);
61913
61914         this.getSelectionModel().init(this);
61915
61916         view.render();
61917
61918         if(this.loadMask){
61919             this.loadMask = new Roo.LoadMask(this.container,
61920                     Roo.apply({store:this.dataSource}, this.loadMask));
61921         }
61922         
61923         
61924         if (this.toolbar && this.toolbar.xtype) {
61925             this.toolbar.container = this.getView().getHeaderPanel(true);
61926             this.toolbar = new Roo.Toolbar(this.toolbar);
61927         }
61928         if (this.footer && this.footer.xtype) {
61929             this.footer.dataSource = this.getDataSource();
61930             this.footer.container = this.getView().getFooterPanel(true);
61931             this.footer = Roo.factory(this.footer, Roo);
61932         }
61933         if (this.dropTarget && this.dropTarget.xtype) {
61934             delete this.dropTarget.xtype;
61935             this.dropTarget =  new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget);
61936         }
61937         
61938         
61939         this.rendered = true;
61940         this.fireEvent('render', this);
61941         return this;
61942     },
61943
61944     /**
61945      * Reconfigures the grid to use a different Store and Column Model.
61946      * The View will be bound to the new objects and refreshed.
61947      * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object
61948      * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object
61949      */
61950     reconfigure : function(dataSource, colModel){
61951         if(this.loadMask){
61952             this.loadMask.destroy();
61953             this.loadMask = new Roo.LoadMask(this.container,
61954                     Roo.apply({store:dataSource}, this.loadMask));
61955         }
61956         this.view.bind(dataSource, colModel);
61957         this.dataSource = dataSource;
61958         this.colModel = colModel;
61959         this.view.refresh(true);
61960     },
61961     /**
61962      * addColumns
61963      * Add's a column, default at the end..
61964      
61965      * @param {int} position to add (default end)
61966      * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} 
61967      */
61968     addColumns : function(pos, ar)
61969     {
61970         
61971         for (var i =0;i< ar.length;i++) {
61972             var cfg = ar[i];
61973             cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this..
61974             this.cm.lookup[cfg.id] = cfg;
61975         }
61976         
61977         
61978         if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) {
61979             pos = this.cm.config.length; //this.cm.config.push(cfg);
61980         } 
61981         pos = Math.max(0,pos);
61982         ar.unshift(0);
61983         ar.unshift(pos);
61984         this.cm.config.splice.apply(this.cm.config, ar);
61985         
61986         
61987         
61988         this.view.generateRules(this.cm);
61989         this.view.refresh(true);
61990         
61991     },
61992     
61993     
61994     
61995     
61996     // private
61997     onKeyDown : function(e){
61998         this.fireEvent("keydown", e);
61999     },
62000
62001     /**
62002      * Destroy this grid.
62003      * @param {Boolean} removeEl True to remove the element
62004      */
62005     destroy : function(removeEl, keepListeners){
62006         if(this.loadMask){
62007             this.loadMask.destroy();
62008         }
62009         var c = this.container;
62010         c.removeAllListeners();
62011         this.view.destroy();
62012         this.colModel.purgeListeners();
62013         if(!keepListeners){
62014             this.purgeListeners();
62015         }
62016         c.update("");
62017         if(removeEl === true){
62018             c.remove();
62019         }
62020     },
62021
62022     // private
62023     processEvent : function(name, e){
62024         // does this fire select???
62025         //Roo.log('grid:processEvent '  + name);
62026         
62027         if (name != 'touchstart' ) {
62028             this.fireEvent(name, e);    
62029         }
62030         
62031         var t = e.getTarget();
62032         var v = this.view;
62033         var header = v.findHeaderIndex(t);
62034         if(header !== false){
62035             var ename = name == 'touchstart' ? 'click' : name;
62036              
62037             this.fireEvent("header" + ename, this, header, e);
62038         }else{
62039             var row = v.findRowIndex(t);
62040             var cell = v.findCellIndex(t);
62041             if (name == 'touchstart') {
62042                 // first touch is always a click.
62043                 // hopefull this happens after selection is updated.?
62044                 name = false;
62045                 
62046                 if (typeof(this.selModel.getSelectedCell) != 'undefined') {
62047                     var cs = this.selModel.getSelectedCell();
62048                     if (row == cs[0] && cell == cs[1]){
62049                         name = 'dblclick';
62050                     }
62051                 }
62052                 if (typeof(this.selModel.getSelections) != 'undefined') {
62053                     var cs = this.selModel.getSelections();
62054                     var ds = this.dataSource;
62055                     if (cs.length == 1 && ds.getAt(row) == cs[0]){
62056                         name = 'dblclick';
62057                     }
62058                 }
62059                 if (!name) {
62060                     return;
62061                 }
62062             }
62063             
62064             
62065             if(row !== false){
62066                 this.fireEvent("row" + name, this, row, e);
62067                 if(cell !== false){
62068                     this.fireEvent("cell" + name, this, row, cell, e);
62069                 }
62070             }
62071         }
62072     },
62073
62074     // private
62075     onClick : function(e){
62076         this.processEvent("click", e);
62077     },
62078    // private
62079     onTouchStart : function(e){
62080         this.processEvent("touchstart", e);
62081     },
62082
62083     // private
62084     onContextMenu : function(e, t){
62085         this.processEvent("contextmenu", e);
62086     },
62087
62088     // private
62089     onDblClick : function(e){
62090         this.processEvent("dblclick", e);
62091     },
62092
62093     // private
62094     walkCells : function(row, col, step, fn, scope){
62095         var cm = this.colModel, clen = cm.getColumnCount();
62096         var ds = this.dataSource, rlen = ds.getCount(), first = true;
62097         if(step < 0){
62098             if(col < 0){
62099                 row--;
62100                 first = false;
62101             }
62102             while(row >= 0){
62103                 if(!first){
62104                     col = clen-1;
62105                 }
62106                 first = false;
62107                 while(col >= 0){
62108                     if(fn.call(scope || this, row, col, cm) === true){
62109                         return [row, col];
62110                     }
62111                     col--;
62112                 }
62113                 row--;
62114             }
62115         } else {
62116             if(col >= clen){
62117                 row++;
62118                 first = false;
62119             }
62120             while(row < rlen){
62121                 if(!first){
62122                     col = 0;
62123                 }
62124                 first = false;
62125                 while(col < clen){
62126                     if(fn.call(scope || this, row, col, cm) === true){
62127                         return [row, col];
62128                     }
62129                     col++;
62130                 }
62131                 row++;
62132             }
62133         }
62134         return null;
62135     },
62136
62137     // private
62138     getSelections : function(){
62139         return this.selModel.getSelections();
62140     },
62141
62142     /**
62143      * Causes the grid to manually recalculate its dimensions. Generally this is done automatically,
62144      * but if manual update is required this method will initiate it.
62145      */
62146     autoSize : function(){
62147         if(this.rendered){
62148             this.view.layout();
62149             if(this.view.adjustForScroll){
62150                 this.view.adjustForScroll();
62151             }
62152         }
62153     },
62154
62155     /**
62156      * Returns the grid's underlying element.
62157      * @return {Element} The element
62158      */
62159     getGridEl : function(){
62160         return this.container;
62161     },
62162
62163     // private for compatibility, overridden by editor grid
62164     stopEditing : function(){},
62165
62166     /**
62167      * Returns the grid's SelectionModel.
62168      * @return {SelectionModel}
62169      */
62170     getSelectionModel : function(){
62171         if(!this.selModel){
62172             this.selModel = new Roo.grid.RowSelectionModel();
62173         }
62174         return this.selModel;
62175     },
62176
62177     /**
62178      * Returns the grid's DataSource.
62179      * @return {DataSource}
62180      */
62181     getDataSource : function(){
62182         return this.dataSource;
62183     },
62184
62185     /**
62186      * Returns the grid's ColumnModel.
62187      * @return {ColumnModel}
62188      */
62189     getColumnModel : function(){
62190         return this.colModel;
62191     },
62192
62193     /**
62194      * Returns the grid's GridView object.
62195      * @return {GridView}
62196      */
62197     getView : function(){
62198         if(!this.view){
62199             this.view = new Roo.grid.GridView(this.viewConfig);
62200             this.relayEvents(this.view, [
62201                 "beforerowremoved", "beforerowsinserted",
62202                 "beforerefresh", "rowremoved",
62203                 "rowsinserted", "rowupdated" ,"refresh"
62204             ]);
62205         }
62206         return this.view;
62207     },
62208     /**
62209      * Called to get grid's drag proxy text, by default returns this.ddText.
62210      * Override this to put something different in the dragged text.
62211      * @return {String}
62212      */
62213     getDragDropText : function(){
62214         var count = this.selModel.getCount();
62215         return String.format(this.ddText, count, count == 1 ? '' : 's');
62216     }
62217 });
62218 /*
62219  * Based on:
62220  * Ext JS Library 1.1.1
62221  * Copyright(c) 2006-2007, Ext JS, LLC.
62222  *
62223  * Originally Released Under LGPL - original licence link has changed is not relivant.
62224  *
62225  * Fork - LGPL
62226  * <script type="text/javascript">
62227  */
62228  /**
62229  * @class Roo.grid.AbstractGridView
62230  * @extends Roo.util.Observable
62231  * @abstract
62232  * Abstract base class for grid Views
62233  * @constructor
62234  */
62235 Roo.grid.AbstractGridView = function(){
62236         this.grid = null;
62237         
62238         this.events = {
62239             "beforerowremoved" : true,
62240             "beforerowsinserted" : true,
62241             "beforerefresh" : true,
62242             "rowremoved" : true,
62243             "rowsinserted" : true,
62244             "rowupdated" : true,
62245             "refresh" : true
62246         };
62247     Roo.grid.AbstractGridView.superclass.constructor.call(this);
62248 };
62249
62250 Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
62251     rowClass : "x-grid-row",
62252     cellClass : "x-grid-cell",
62253     tdClass : "x-grid-td",
62254     hdClass : "x-grid-hd",
62255     splitClass : "x-grid-hd-split",
62256     
62257     init: function(grid){
62258         this.grid = grid;
62259                 var cid = this.grid.getGridEl().id;
62260         this.colSelector = "#" + cid + " ." + this.cellClass + "-";
62261         this.tdSelector = "#" + cid + " ." + this.tdClass + "-";
62262         this.hdSelector = "#" + cid + " ." + this.hdClass + "-";
62263         this.splitSelector = "#" + cid + " ." + this.splitClass + "-";
62264         },
62265         
62266     getColumnRenderers : function(){
62267         var renderers = [];
62268         var cm = this.grid.colModel;
62269         var colCount = cm.getColumnCount();
62270         for(var i = 0; i < colCount; i++){
62271             renderers[i] = cm.getRenderer(i);
62272         }
62273         return renderers;
62274     },
62275     
62276     getColumnIds : function(){
62277         var ids = [];
62278         var cm = this.grid.colModel;
62279         var colCount = cm.getColumnCount();
62280         for(var i = 0; i < colCount; i++){
62281             ids[i] = cm.getColumnId(i);
62282         }
62283         return ids;
62284     },
62285     
62286     getDataIndexes : function(){
62287         if(!this.indexMap){
62288             this.indexMap = this.buildIndexMap();
62289         }
62290         return this.indexMap.colToData;
62291     },
62292     
62293     getColumnIndexByDataIndex : function(dataIndex){
62294         if(!this.indexMap){
62295             this.indexMap = this.buildIndexMap();
62296         }
62297         return this.indexMap.dataToCol[dataIndex];
62298     },
62299     
62300     /**
62301      * Set a css style for a column dynamically. 
62302      * @param {Number} colIndex The index of the column
62303      * @param {String} name The css property name
62304      * @param {String} value The css value
62305      */
62306     setCSSStyle : function(colIndex, name, value){
62307         var selector = "#" + this.grid.id + " .x-grid-col-" + colIndex;
62308         Roo.util.CSS.updateRule(selector, name, value);
62309     },
62310     
62311     generateRules : function(cm){
62312         var ruleBuf = [], rulesId = this.grid.id + '-cssrules';
62313         Roo.util.CSS.removeStyleSheet(rulesId);
62314         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
62315             var cid = cm.getColumnId(i);
62316             ruleBuf.push(this.colSelector, cid, " {\n", cm.config[i].css, "}\n",
62317                          this.tdSelector, cid, " {\n}\n",
62318                          this.hdSelector, cid, " {\n}\n",
62319                          this.splitSelector, cid, " {\n}\n");
62320         }
62321         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
62322     }
62323 });/*
62324  * Based on:
62325  * Ext JS Library 1.1.1
62326  * Copyright(c) 2006-2007, Ext JS, LLC.
62327  *
62328  * Originally Released Under LGPL - original licence link has changed is not relivant.
62329  *
62330  * Fork - LGPL
62331  * <script type="text/javascript">
62332  */
62333
62334 // private
62335 // This is a support class used internally by the Grid components
62336 Roo.grid.HeaderDragZone = function(grid, hd, hd2){
62337     this.grid = grid;
62338     this.view = grid.getView();
62339     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
62340     Roo.grid.HeaderDragZone.superclass.constructor.call(this, hd);
62341     if(hd2){
62342         this.setHandleElId(Roo.id(hd));
62343         this.setOuterHandleElId(Roo.id(hd2));
62344     }
62345     this.scroll = false;
62346 };
62347 Roo.extend(Roo.grid.HeaderDragZone, Roo.dd.DragZone, {
62348     maxDragWidth: 120,
62349     getDragData : function(e){
62350         var t = Roo.lib.Event.getTarget(e);
62351         var h = this.view.findHeaderCell(t);
62352         if(h){
62353             return {ddel: h.firstChild, header:h};
62354         }
62355         return false;
62356     },
62357
62358     onInitDrag : function(e){
62359         this.view.headersDisabled = true;
62360         var clone = this.dragData.ddel.cloneNode(true);
62361         clone.id = Roo.id();
62362         clone.style.width = Math.min(this.dragData.header.offsetWidth,this.maxDragWidth) + "px";
62363         this.proxy.update(clone);
62364         return true;
62365     },
62366
62367     afterValidDrop : function(){
62368         var v = this.view;
62369         setTimeout(function(){
62370             v.headersDisabled = false;
62371         }, 50);
62372     },
62373
62374     afterInvalidDrop : function(){
62375         var v = this.view;
62376         setTimeout(function(){
62377             v.headersDisabled = false;
62378         }, 50);
62379     }
62380 });
62381 /*
62382  * Based on:
62383  * Ext JS Library 1.1.1
62384  * Copyright(c) 2006-2007, Ext JS, LLC.
62385  *
62386  * Originally Released Under LGPL - original licence link has changed is not relivant.
62387  *
62388  * Fork - LGPL
62389  * <script type="text/javascript">
62390  */
62391 // private
62392 // This is a support class used internally by the Grid components
62393 Roo.grid.HeaderDropZone = function(grid, hd, hd2){
62394     this.grid = grid;
62395     this.view = grid.getView();
62396     // split the proxies so they don't interfere with mouse events
62397     this.proxyTop = Roo.DomHelper.append(document.body, {
62398         cls:"col-move-top", html:"&#160;"
62399     }, true);
62400     this.proxyBottom = Roo.DomHelper.append(document.body, {
62401         cls:"col-move-bottom", html:"&#160;"
62402     }, true);
62403     this.proxyTop.hide = this.proxyBottom.hide = function(){
62404         this.setLeftTop(-100,-100);
62405         this.setStyle("visibility", "hidden");
62406     };
62407     this.ddGroup = "gridHeader" + this.grid.getGridEl().id;
62408     // temporarily disabled
62409     //Roo.dd.ScrollManager.register(this.view.scroller.dom);
62410     Roo.grid.HeaderDropZone.superclass.constructor.call(this, grid.getGridEl().dom);
62411 };
62412 Roo.extend(Roo.grid.HeaderDropZone, Roo.dd.DropZone, {
62413     proxyOffsets : [-4, -9],
62414     fly: Roo.Element.fly,
62415
62416     getTargetFromEvent : function(e){
62417         var t = Roo.lib.Event.getTarget(e);
62418         var cindex = this.view.findCellIndex(t);
62419         if(cindex !== false){
62420             return this.view.getHeaderCell(cindex);
62421         }
62422         return null;
62423     },
62424
62425     nextVisible : function(h){
62426         var v = this.view, cm = this.grid.colModel;
62427         h = h.nextSibling;
62428         while(h){
62429             if(!cm.isHidden(v.getCellIndex(h))){
62430                 return h;
62431             }
62432             h = h.nextSibling;
62433         }
62434         return null;
62435     },
62436
62437     prevVisible : function(h){
62438         var v = this.view, cm = this.grid.colModel;
62439         h = h.prevSibling;
62440         while(h){
62441             if(!cm.isHidden(v.getCellIndex(h))){
62442                 return h;
62443             }
62444             h = h.prevSibling;
62445         }
62446         return null;
62447     },
62448
62449     positionIndicator : function(h, n, e){
62450         var x = Roo.lib.Event.getPageX(e);
62451         var r = Roo.lib.Dom.getRegion(n.firstChild);
62452         var px, pt, py = r.top + this.proxyOffsets[1];
62453         if((r.right - x) <= (r.right-r.left)/2){
62454             px = r.right+this.view.borderWidth;
62455             pt = "after";
62456         }else{
62457             px = r.left;
62458             pt = "before";
62459         }
62460         var oldIndex = this.view.getCellIndex(h);
62461         var newIndex = this.view.getCellIndex(n);
62462
62463         if(this.grid.colModel.isFixed(newIndex)){
62464             return false;
62465         }
62466
62467         var locked = this.grid.colModel.isLocked(newIndex);
62468
62469         if(pt == "after"){
62470             newIndex++;
62471         }
62472         if(oldIndex < newIndex){
62473             newIndex--;
62474         }
62475         if(oldIndex == newIndex && (locked == this.grid.colModel.isLocked(oldIndex))){
62476             return false;
62477         }
62478         px +=  this.proxyOffsets[0];
62479         this.proxyTop.setLeftTop(px, py);
62480         this.proxyTop.show();
62481         if(!this.bottomOffset){
62482             this.bottomOffset = this.view.mainHd.getHeight();
62483         }
62484         this.proxyBottom.setLeftTop(px, py+this.proxyTop.dom.offsetHeight+this.bottomOffset);
62485         this.proxyBottom.show();
62486         return pt;
62487     },
62488
62489     onNodeEnter : function(n, dd, e, data){
62490         if(data.header != n){
62491             this.positionIndicator(data.header, n, e);
62492         }
62493     },
62494
62495     onNodeOver : function(n, dd, e, data){
62496         var result = false;
62497         if(data.header != n){
62498             result = this.positionIndicator(data.header, n, e);
62499         }
62500         if(!result){
62501             this.proxyTop.hide();
62502             this.proxyBottom.hide();
62503         }
62504         return result ? this.dropAllowed : this.dropNotAllowed;
62505     },
62506
62507     onNodeOut : function(n, dd, e, data){
62508         this.proxyTop.hide();
62509         this.proxyBottom.hide();
62510     },
62511
62512     onNodeDrop : function(n, dd, e, data){
62513         var h = data.header;
62514         if(h != n){
62515             var cm = this.grid.colModel;
62516             var x = Roo.lib.Event.getPageX(e);
62517             var r = Roo.lib.Dom.getRegion(n.firstChild);
62518             var pt = (r.right - x) <= ((r.right-r.left)/2) ? "after" : "before";
62519             var oldIndex = this.view.getCellIndex(h);
62520             var newIndex = this.view.getCellIndex(n);
62521             var locked = cm.isLocked(newIndex);
62522             if(pt == "after"){
62523                 newIndex++;
62524             }
62525             if(oldIndex < newIndex){
62526                 newIndex--;
62527             }
62528             if(oldIndex == newIndex && (locked == cm.isLocked(oldIndex))){
62529                 return false;
62530             }
62531             cm.setLocked(oldIndex, locked, true);
62532             cm.moveColumn(oldIndex, newIndex);
62533             this.grid.fireEvent("columnmove", oldIndex, newIndex);
62534             return true;
62535         }
62536         return false;
62537     }
62538 });
62539 /*
62540  * Based on:
62541  * Ext JS Library 1.1.1
62542  * Copyright(c) 2006-2007, Ext JS, LLC.
62543  *
62544  * Originally Released Under LGPL - original licence link has changed is not relivant.
62545  *
62546  * Fork - LGPL
62547  * <script type="text/javascript">
62548  */
62549   
62550 /**
62551  * @class Roo.grid.GridView
62552  * @extends Roo.util.Observable
62553  *
62554  * @constructor
62555  * @param {Object} config
62556  */
62557 Roo.grid.GridView = function(config){
62558     Roo.grid.GridView.superclass.constructor.call(this);
62559     this.el = null;
62560
62561     Roo.apply(this, config);
62562 };
62563
62564 Roo.extend(Roo.grid.GridView, Roo.grid.AbstractGridView, {
62565
62566     unselectable :  'unselectable="on"',
62567     unselectableCls :  'x-unselectable',
62568     
62569     
62570     rowClass : "x-grid-row",
62571
62572     cellClass : "x-grid-col",
62573
62574     tdClass : "x-grid-td",
62575
62576     hdClass : "x-grid-hd",
62577
62578     splitClass : "x-grid-split",
62579
62580     sortClasses : ["sort-asc", "sort-desc"],
62581
62582     enableMoveAnim : false,
62583
62584     hlColor: "C3DAF9",
62585
62586     dh : Roo.DomHelper,
62587
62588     fly : Roo.Element.fly,
62589
62590     css : Roo.util.CSS,
62591
62592     borderWidth: 1,
62593
62594     splitOffset: 3,
62595
62596     scrollIncrement : 22,
62597
62598     cellRE: /(?:.*?)x-grid-(?:hd|cell|csplit)-(?:[\d]+)-([\d]+)(?:.*?)/,
62599
62600     findRE: /\s?(?:x-grid-hd|x-grid-col|x-grid-csplit)\s/,
62601
62602     bind : function(ds, cm){
62603         if(this.ds){
62604             this.ds.un("load", this.onLoad, this);
62605             this.ds.un("datachanged", this.onDataChange, this);
62606             this.ds.un("add", this.onAdd, this);
62607             this.ds.un("remove", this.onRemove, this);
62608             this.ds.un("update", this.onUpdate, this);
62609             this.ds.un("clear", this.onClear, this);
62610         }
62611         if(ds){
62612             ds.on("load", this.onLoad, this);
62613             ds.on("datachanged", this.onDataChange, this);
62614             ds.on("add", this.onAdd, this);
62615             ds.on("remove", this.onRemove, this);
62616             ds.on("update", this.onUpdate, this);
62617             ds.on("clear", this.onClear, this);
62618         }
62619         this.ds = ds;
62620
62621         if(this.cm){
62622             this.cm.un("widthchange", this.onColWidthChange, this);
62623             this.cm.un("headerchange", this.onHeaderChange, this);
62624             this.cm.un("hiddenchange", this.onHiddenChange, this);
62625             this.cm.un("columnmoved", this.onColumnMove, this);
62626             this.cm.un("columnlockchange", this.onColumnLock, this);
62627         }
62628         if(cm){
62629             this.generateRules(cm);
62630             cm.on("widthchange", this.onColWidthChange, this);
62631             cm.on("headerchange", this.onHeaderChange, this);
62632             cm.on("hiddenchange", this.onHiddenChange, this);
62633             cm.on("columnmoved", this.onColumnMove, this);
62634             cm.on("columnlockchange", this.onColumnLock, this);
62635         }
62636         this.cm = cm;
62637     },
62638
62639     init: function(grid){
62640         Roo.grid.GridView.superclass.init.call(this, grid);
62641
62642         this.bind(grid.dataSource, grid.colModel);
62643
62644         grid.on("headerclick", this.handleHeaderClick, this);
62645
62646         if(grid.trackMouseOver){
62647             grid.on("mouseover", this.onRowOver, this);
62648             grid.on("mouseout", this.onRowOut, this);
62649         }
62650         grid.cancelTextSelection = function(){};
62651         this.gridId = grid.id;
62652
62653         var tpls = this.templates || {};
62654
62655         if(!tpls.master){
62656             tpls.master = new Roo.Template(
62657                '<div class="x-grid" hidefocus="true">',
62658                 '<a href="#" class="x-grid-focus" tabIndex="-1"></a>',
62659                   '<div class="x-grid-topbar"></div>',
62660                   '<div class="x-grid-scroller"><div></div></div>',
62661                   '<div class="x-grid-locked">',
62662                       '<div class="x-grid-header">{lockedHeader}</div>',
62663                       '<div class="x-grid-body">{lockedBody}</div>',
62664                   "</div>",
62665                   '<div class="x-grid-viewport">',
62666                       '<div class="x-grid-header">{header}</div>',
62667                       '<div class="x-grid-body">{body}</div>',
62668                   "</div>",
62669                   '<div class="x-grid-bottombar"></div>',
62670                  
62671                   '<div class="x-grid-resize-proxy">&#160;</div>',
62672                "</div>"
62673             );
62674             tpls.master.disableformats = true;
62675         }
62676
62677         if(!tpls.header){
62678             tpls.header = new Roo.Template(
62679                '<table border="0" cellspacing="0" cellpadding="0">',
62680                '<tbody><tr class="x-grid-hd-row">{cells}</tr></tbody>',
62681                "</table>{splits}"
62682             );
62683             tpls.header.disableformats = true;
62684         }
62685         tpls.header.compile();
62686
62687         if(!tpls.hcell){
62688             tpls.hcell = new Roo.Template(
62689                 '<td class="x-grid-hd x-grid-td-{id} {cellId}"><div title="{title}" class="x-grid-hd-inner x-grid-hd-{id}">',
62690                 '<div class="x-grid-hd-text ' + this.unselectableCls +  '" ' + this.unselectable +'>{value}<img class="x-grid-sort-icon" src="', Roo.BLANK_IMAGE_URL, '" /></div>',
62691                 "</div></td>"
62692              );
62693              tpls.hcell.disableFormats = true;
62694         }
62695         tpls.hcell.compile();
62696
62697         if(!tpls.hsplit){
62698             tpls.hsplit = new Roo.Template('<div class="x-grid-split {splitId} x-grid-split-{id}" style="{style} ' +
62699                                             this.unselectableCls +  '" ' + this.unselectable +'>&#160;</div>');
62700             tpls.hsplit.disableFormats = true;
62701         }
62702         tpls.hsplit.compile();
62703
62704         if(!tpls.body){
62705             tpls.body = new Roo.Template(
62706                '<table border="0" cellspacing="0" cellpadding="0">',
62707                "<tbody>{rows}</tbody>",
62708                "</table>"
62709             );
62710             tpls.body.disableFormats = true;
62711         }
62712         tpls.body.compile();
62713
62714         if(!tpls.row){
62715             tpls.row = new Roo.Template('<tr class="x-grid-row {alt}">{cells}</tr>');
62716             tpls.row.disableFormats = true;
62717         }
62718         tpls.row.compile();
62719
62720         if(!tpls.cell){
62721             tpls.cell = new Roo.Template(
62722                 '<td class="x-grid-col x-grid-td-{id} {cellId} {css}" tabIndex="0">',
62723                 '<div class="x-grid-col-{id} x-grid-cell-inner"><div class="x-grid-cell-text ' +
62724                     this.unselectableCls +  '" ' + this.unselectable +'" {attr}>{value}</div></div>',
62725                 "</td>"
62726             );
62727             tpls.cell.disableFormats = true;
62728         }
62729         tpls.cell.compile();
62730
62731         this.templates = tpls;
62732     },
62733
62734     // remap these for backwards compat
62735     onColWidthChange : function(){
62736         this.updateColumns.apply(this, arguments);
62737     },
62738     onHeaderChange : function(){
62739         this.updateHeaders.apply(this, arguments);
62740     }, 
62741     onHiddenChange : function(){
62742         this.handleHiddenChange.apply(this, arguments);
62743     },
62744     onColumnMove : function(){
62745         this.handleColumnMove.apply(this, arguments);
62746     },
62747     onColumnLock : function(){
62748         this.handleLockChange.apply(this, arguments);
62749     },
62750
62751     onDataChange : function(){
62752         this.refresh();
62753         this.updateHeaderSortState();
62754     },
62755
62756     onClear : function(){
62757         this.refresh();
62758     },
62759
62760     onUpdate : function(ds, record){
62761         this.refreshRow(record);
62762     },
62763
62764     refreshRow : function(record){
62765         var ds = this.ds, index;
62766         if(typeof record == 'number'){
62767             index = record;
62768             record = ds.getAt(index);
62769         }else{
62770             index = ds.indexOf(record);
62771         }
62772         this.insertRows(ds, index, index, true);
62773         this.onRemove(ds, record, index+1, true);
62774         this.syncRowHeights(index, index);
62775         this.layout();
62776         this.fireEvent("rowupdated", this, index, record);
62777     },
62778
62779     onAdd : function(ds, records, index){
62780         this.insertRows(ds, index, index + (records.length-1));
62781     },
62782
62783     onRemove : function(ds, record, index, isUpdate){
62784         if(isUpdate !== true){
62785             this.fireEvent("beforerowremoved", this, index, record);
62786         }
62787         var bt = this.getBodyTable(), lt = this.getLockedTable();
62788         if(bt.rows[index]){
62789             bt.firstChild.removeChild(bt.rows[index]);
62790         }
62791         if(lt.rows[index]){
62792             lt.firstChild.removeChild(lt.rows[index]);
62793         }
62794         if(isUpdate !== true){
62795             this.stripeRows(index);
62796             this.syncRowHeights(index, index);
62797             this.layout();
62798             this.fireEvent("rowremoved", this, index, record);
62799         }
62800     },
62801
62802     onLoad : function(){
62803         this.scrollToTop();
62804     },
62805
62806     /**
62807      * Scrolls the grid to the top
62808      */
62809     scrollToTop : function(){
62810         if(this.scroller){
62811             this.scroller.dom.scrollTop = 0;
62812             this.syncScroll();
62813         }
62814     },
62815
62816     /**
62817      * Gets a panel in the header of the grid that can be used for toolbars etc.
62818      * After modifying the contents of this panel a call to grid.autoSize() may be
62819      * required to register any changes in size.
62820      * @param {Boolean} doShow By default the header is hidden. Pass true to show the panel
62821      * @return Roo.Element
62822      */
62823     getHeaderPanel : function(doShow){
62824         if(doShow){
62825             this.headerPanel.show();
62826         }
62827         return this.headerPanel;
62828     },
62829
62830     /**
62831      * Gets a panel in the footer of the grid that can be used for toolbars etc.
62832      * After modifying the contents of this panel a call to grid.autoSize() may be
62833      * required to register any changes in size.
62834      * @param {Boolean} doShow By default the footer is hidden. Pass true to show the panel
62835      * @return Roo.Element
62836      */
62837     getFooterPanel : function(doShow){
62838         if(doShow){
62839             this.footerPanel.show();
62840         }
62841         return this.footerPanel;
62842     },
62843
62844     initElements : function(){
62845         var E = Roo.Element;
62846         var el = this.grid.getGridEl().dom.firstChild;
62847         var cs = el.childNodes;
62848
62849         this.el = new E(el);
62850         
62851          this.focusEl = new E(el.firstChild);
62852         this.focusEl.swallowEvent("click", true);
62853         
62854         this.headerPanel = new E(cs[1]);
62855         this.headerPanel.enableDisplayMode("block");
62856
62857         this.scroller = new E(cs[2]);
62858         this.scrollSizer = new E(this.scroller.dom.firstChild);
62859
62860         this.lockedWrap = new E(cs[3]);
62861         this.lockedHd = new E(this.lockedWrap.dom.firstChild);
62862         this.lockedBody = new E(this.lockedWrap.dom.childNodes[1]);
62863
62864         this.mainWrap = new E(cs[4]);
62865         this.mainHd = new E(this.mainWrap.dom.firstChild);
62866         this.mainBody = new E(this.mainWrap.dom.childNodes[1]);
62867
62868         this.footerPanel = new E(cs[5]);
62869         this.footerPanel.enableDisplayMode("block");
62870
62871         this.resizeProxy = new E(cs[6]);
62872
62873         this.headerSelector = String.format(
62874            '#{0} td.x-grid-hd, #{1} td.x-grid-hd',
62875            this.lockedHd.id, this.mainHd.id
62876         );
62877
62878         this.splitterSelector = String.format(
62879            '#{0} div.x-grid-split, #{1} div.x-grid-split',
62880            this.idToCssName(this.lockedHd.id), this.idToCssName(this.mainHd.id)
62881         );
62882     },
62883     idToCssName : function(s)
62884     {
62885         return s.replace(/[^a-z0-9]+/ig, '-');
62886     },
62887
62888     getHeaderCell : function(index){
62889         return Roo.DomQuery.select(this.headerSelector)[index];
62890     },
62891
62892     getHeaderCellMeasure : function(index){
62893         return this.getHeaderCell(index).firstChild;
62894     },
62895
62896     getHeaderCellText : function(index){
62897         return this.getHeaderCell(index).firstChild.firstChild;
62898     },
62899
62900     getLockedTable : function(){
62901         return this.lockedBody.dom.firstChild;
62902     },
62903
62904     getBodyTable : function(){
62905         return this.mainBody.dom.firstChild;
62906     },
62907
62908     getLockedRow : function(index){
62909         return this.getLockedTable().rows[index];
62910     },
62911
62912     getRow : function(index){
62913         return this.getBodyTable().rows[index];
62914     },
62915
62916     getRowComposite : function(index){
62917         if(!this.rowEl){
62918             this.rowEl = new Roo.CompositeElementLite();
62919         }
62920         var els = [], lrow, mrow;
62921         if(lrow = this.getLockedRow(index)){
62922             els.push(lrow);
62923         }
62924         if(mrow = this.getRow(index)){
62925             els.push(mrow);
62926         }
62927         this.rowEl.elements = els;
62928         return this.rowEl;
62929     },
62930     /**
62931      * Gets the 'td' of the cell
62932      * 
62933      * @param {Integer} rowIndex row to select
62934      * @param {Integer} colIndex column to select
62935      * 
62936      * @return {Object} 
62937      */
62938     getCell : function(rowIndex, colIndex){
62939         var locked = this.cm.getLockedCount();
62940         var source;
62941         if(colIndex < locked){
62942             source = this.lockedBody.dom.firstChild;
62943         }else{
62944             source = this.mainBody.dom.firstChild;
62945             colIndex -= locked;
62946         }
62947         return source.rows[rowIndex].childNodes[colIndex];
62948     },
62949
62950     getCellText : function(rowIndex, colIndex){
62951         return this.getCell(rowIndex, colIndex).firstChild.firstChild;
62952     },
62953
62954     getCellBox : function(cell){
62955         var b = this.fly(cell).getBox();
62956         if(Roo.isOpera){ // opera fails to report the Y
62957             b.y = cell.offsetTop + this.mainBody.getY();
62958         }
62959         return b;
62960     },
62961
62962     getCellIndex : function(cell){
62963         var id = String(cell.className).match(this.cellRE);
62964         if(id){
62965             return parseInt(id[1], 10);
62966         }
62967         return 0;
62968     },
62969
62970     findHeaderIndex : function(n){
62971         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
62972         return r ? this.getCellIndex(r) : false;
62973     },
62974
62975     findHeaderCell : function(n){
62976         var r = Roo.fly(n).findParent("td." + this.hdClass, 6);
62977         return r ? r : false;
62978     },
62979
62980     findRowIndex : function(n){
62981         if(!n){
62982             return false;
62983         }
62984         var r = Roo.fly(n).findParent("tr." + this.rowClass, 6);
62985         return r ? r.rowIndex : false;
62986     },
62987
62988     findCellIndex : function(node){
62989         var stop = this.el.dom;
62990         while(node && node != stop){
62991             if(this.findRE.test(node.className)){
62992                 return this.getCellIndex(node);
62993             }
62994             node = node.parentNode;
62995         }
62996         return false;
62997     },
62998
62999     getColumnId : function(index){
63000         return this.cm.getColumnId(index);
63001     },
63002
63003     getSplitters : function()
63004     {
63005         if(this.splitterSelector){
63006            return Roo.DomQuery.select(this.splitterSelector);
63007         }else{
63008             return null;
63009       }
63010     },
63011
63012     getSplitter : function(index){
63013         return this.getSplitters()[index];
63014     },
63015
63016     onRowOver : function(e, t){
63017         var row;
63018         if((row = this.findRowIndex(t)) !== false){
63019             this.getRowComposite(row).addClass("x-grid-row-over");
63020         }
63021     },
63022
63023     onRowOut : function(e, t){
63024         var row;
63025         if((row = this.findRowIndex(t)) !== false && row !== this.findRowIndex(e.getRelatedTarget())){
63026             this.getRowComposite(row).removeClass("x-grid-row-over");
63027         }
63028     },
63029
63030     renderHeaders : function(){
63031         var cm = this.cm;
63032         var ct = this.templates.hcell, ht = this.templates.header, st = this.templates.hsplit;
63033         var cb = [], lb = [], sb = [], lsb = [], p = {};
63034         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
63035             p.cellId = "x-grid-hd-0-" + i;
63036             p.splitId = "x-grid-csplit-0-" + i;
63037             p.id = cm.getColumnId(i);
63038             p.value = cm.getColumnHeader(i) || "";
63039             p.title = cm.getColumnTooltip(i) || (''+p.value).match(/\</)  ? '' :  p.value  || "";
63040             p.style = (this.grid.enableColumnResize === false || !cm.isResizable(i) || cm.isFixed(i)) ? 'cursor:default' : '';
63041             if(!cm.isLocked(i)){
63042                 cb[cb.length] = ct.apply(p);
63043                 sb[sb.length] = st.apply(p);
63044             }else{
63045                 lb[lb.length] = ct.apply(p);
63046                 lsb[lsb.length] = st.apply(p);
63047             }
63048         }
63049         return [ht.apply({cells: lb.join(""), splits:lsb.join("")}),
63050                 ht.apply({cells: cb.join(""), splits:sb.join("")})];
63051     },
63052
63053     updateHeaders : function(){
63054         var html = this.renderHeaders();
63055         this.lockedHd.update(html[0]);
63056         this.mainHd.update(html[1]);
63057     },
63058
63059     /**
63060      * Focuses the specified row.
63061      * @param {Number} row The row index
63062      */
63063     focusRow : function(row)
63064     {
63065         //Roo.log('GridView.focusRow');
63066         var x = this.scroller.dom.scrollLeft;
63067         this.focusCell(row, 0, false);
63068         this.scroller.dom.scrollLeft = x;
63069     },
63070
63071     /**
63072      * Focuses the specified cell.
63073      * @param {Number} row The row index
63074      * @param {Number} col The column index
63075      * @param {Boolean} hscroll false to disable horizontal scrolling
63076      */
63077     focusCell : function(row, col, hscroll)
63078     {
63079         //Roo.log('GridView.focusCell');
63080         var el = this.ensureVisible(row, col, hscroll);
63081         this.focusEl.alignTo(el, "tl-tl");
63082         if(Roo.isGecko){
63083             this.focusEl.focus();
63084         }else{
63085             this.focusEl.focus.defer(1, this.focusEl);
63086         }
63087     },
63088
63089     /**
63090      * Scrolls the specified cell into view
63091      * @param {Number} row The row index
63092      * @param {Number} col The column index
63093      * @param {Boolean} hscroll false to disable horizontal scrolling
63094      */
63095     ensureVisible : function(row, col, hscroll)
63096     {
63097         //Roo.log('GridView.ensureVisible,' + row + ',' + col);
63098         //return null; //disable for testing.
63099         if(typeof row != "number"){
63100             row = row.rowIndex;
63101         }
63102         if(row < 0 && row >= this.ds.getCount()){
63103             return  null;
63104         }
63105         col = (col !== undefined ? col : 0);
63106         var cm = this.grid.colModel;
63107         while(cm.isHidden(col)){
63108             col++;
63109         }
63110
63111         var el = this.getCell(row, col);
63112         if(!el){
63113             return null;
63114         }
63115         var c = this.scroller.dom;
63116
63117         var ctop = parseInt(el.offsetTop, 10);
63118         var cleft = parseInt(el.offsetLeft, 10);
63119         var cbot = ctop + el.offsetHeight;
63120         var cright = cleft + el.offsetWidth;
63121         
63122         var ch = c.clientHeight - this.mainHd.dom.offsetHeight;
63123         var stop = parseInt(c.scrollTop, 10);
63124         var sleft = parseInt(c.scrollLeft, 10);
63125         var sbot = stop + ch;
63126         var sright = sleft + c.clientWidth;
63127         /*
63128         Roo.log('GridView.ensureVisible:' +
63129                 ' ctop:' + ctop +
63130                 ' c.clientHeight:' + c.clientHeight +
63131                 ' this.mainHd.dom.offsetHeight:' + this.mainHd.dom.offsetHeight +
63132                 ' stop:' + stop +
63133                 ' cbot:' + cbot +
63134                 ' sbot:' + sbot +
63135                 ' ch:' + ch  
63136                 );
63137         */
63138         if(ctop < stop){
63139             c.scrollTop = ctop;
63140             //Roo.log("set scrolltop to ctop DISABLE?");
63141         }else if(cbot > sbot){
63142             //Roo.log("set scrolltop to cbot-ch");
63143             c.scrollTop = cbot-ch;
63144         }
63145         
63146         if(hscroll !== false){
63147             if(cleft < sleft){
63148                 c.scrollLeft = cleft;
63149             }else if(cright > sright){
63150                 c.scrollLeft = cright-c.clientWidth;
63151             }
63152         }
63153          
63154         return el;
63155     },
63156
63157     updateColumns : function(){
63158         this.grid.stopEditing();
63159         var cm = this.grid.colModel, colIds = this.getColumnIds();
63160         //var totalWidth = cm.getTotalWidth();
63161         var pos = 0;
63162         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
63163             //if(cm.isHidden(i)) continue;
63164             var w = cm.getColumnWidth(i);
63165             this.css.updateRule(this.colSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
63166             this.css.updateRule(this.hdSelector+this.idToCssName(colIds[i]), "width", (w - this.borderWidth) + "px");
63167         }
63168         this.updateSplitters();
63169     },
63170
63171     generateRules : function(cm){
63172         var ruleBuf = [], rulesId = this.idToCssName(this.grid.id)+ '-cssrules';
63173         Roo.util.CSS.removeStyleSheet(rulesId);
63174         for(var i = 0, len = cm.getColumnCount(); i < len; i++){
63175             var cid = cm.getColumnId(i);
63176             var align = '';
63177             if(cm.config[i].align){
63178                 align = 'text-align:'+cm.config[i].align+';';
63179             }
63180             var hidden = '';
63181             if(cm.isHidden(i)){
63182                 hidden = 'display:none;';
63183             }
63184             var width = "width:" + (cm.getColumnWidth(i) - this.borderWidth) + "px;";
63185             ruleBuf.push(
63186                     this.colSelector, cid, " {\n", cm.config[i].css, align, width, "\n}\n",
63187                     this.hdSelector, cid, " {\n", align, width, "}\n",
63188                     this.tdSelector, cid, " {\n",hidden,"\n}\n",
63189                     this.splitSelector, cid, " {\n", hidden , "\n}\n");
63190         }
63191         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
63192     },
63193
63194     updateSplitters : function(){
63195         var cm = this.cm, s = this.getSplitters();
63196         if(s){ // splitters not created yet
63197             var pos = 0, locked = true;
63198             for(var i = 0, len = cm.getColumnCount(); i < len; i++){
63199                 if(cm.isHidden(i)) {
63200                     continue;
63201                 }
63202                 var w = cm.getColumnWidth(i); // make sure it's a number
63203                 if(!cm.isLocked(i) && locked){
63204                     pos = 0;
63205                     locked = false;
63206                 }
63207                 pos += w;
63208                 s[i].style.left = (pos-this.splitOffset) + "px";
63209             }
63210         }
63211     },
63212
63213     handleHiddenChange : function(colModel, colIndex, hidden){
63214         if(hidden){
63215             this.hideColumn(colIndex);
63216         }else{
63217             this.unhideColumn(colIndex);
63218         }
63219     },
63220
63221     hideColumn : function(colIndex){
63222         var cid = this.getColumnId(colIndex);
63223         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "none");
63224         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "none");
63225         if(Roo.isSafari){
63226             this.updateHeaders();
63227         }
63228         this.updateSplitters();
63229         this.layout();
63230     },
63231
63232     unhideColumn : function(colIndex){
63233         var cid = this.getColumnId(colIndex);
63234         this.css.updateRule(this.tdSelector+this.idToCssName(cid), "display", "");
63235         this.css.updateRule(this.splitSelector+this.idToCssName(cid), "display", "");
63236
63237         if(Roo.isSafari){
63238             this.updateHeaders();
63239         }
63240         this.updateSplitters();
63241         this.layout();
63242     },
63243
63244     insertRows : function(dm, firstRow, lastRow, isUpdate){
63245         if(firstRow == 0 && lastRow == dm.getCount()-1){
63246             this.refresh();
63247         }else{
63248             if(!isUpdate){
63249                 this.fireEvent("beforerowsinserted", this, firstRow, lastRow);
63250             }
63251             var s = this.getScrollState();
63252             var markup = this.renderRows(firstRow, lastRow);
63253             this.bufferRows(markup[0], this.getLockedTable(), firstRow);
63254             this.bufferRows(markup[1], this.getBodyTable(), firstRow);
63255             this.restoreScroll(s);
63256             if(!isUpdate){
63257                 this.fireEvent("rowsinserted", this, firstRow, lastRow);
63258                 this.syncRowHeights(firstRow, lastRow);
63259                 this.stripeRows(firstRow);
63260                 this.layout();
63261             }
63262         }
63263     },
63264
63265     bufferRows : function(markup, target, index){
63266         var before = null, trows = target.rows, tbody = target.tBodies[0];
63267         if(index < trows.length){
63268             before = trows[index];
63269         }
63270         var b = document.createElement("div");
63271         b.innerHTML = "<table><tbody>"+markup+"</tbody></table>";
63272         var rows = b.firstChild.rows;
63273         for(var i = 0, len = rows.length; i < len; i++){
63274             if(before){
63275                 tbody.insertBefore(rows[0], before);
63276             }else{
63277                 tbody.appendChild(rows[0]);
63278             }
63279         }
63280         b.innerHTML = "";
63281         b = null;
63282     },
63283
63284     deleteRows : function(dm, firstRow, lastRow){
63285         if(dm.getRowCount()<1){
63286             this.fireEvent("beforerefresh", this);
63287             this.mainBody.update("");
63288             this.lockedBody.update("");
63289             this.fireEvent("refresh", this);
63290         }else{
63291             this.fireEvent("beforerowsdeleted", this, firstRow, lastRow);
63292             var bt = this.getBodyTable();
63293             var tbody = bt.firstChild;
63294             var rows = bt.rows;
63295             for(var rowIndex = firstRow; rowIndex <= lastRow; rowIndex++){
63296                 tbody.removeChild(rows[firstRow]);
63297             }
63298             this.stripeRows(firstRow);
63299             this.fireEvent("rowsdeleted", this, firstRow, lastRow);
63300         }
63301     },
63302
63303     updateRows : function(dataSource, firstRow, lastRow){
63304         var s = this.getScrollState();
63305         this.refresh();
63306         this.restoreScroll(s);
63307     },
63308
63309     handleSort : function(dataSource, sortColumnIndex, sortDir, noRefresh){
63310         if(!noRefresh){
63311            this.refresh();
63312         }
63313         this.updateHeaderSortState();
63314     },
63315
63316     getScrollState : function(){
63317         
63318         var sb = this.scroller.dom;
63319         return {left: sb.scrollLeft, top: sb.scrollTop};
63320     },
63321
63322     stripeRows : function(startRow){
63323         if(!this.grid.stripeRows || this.ds.getCount() < 1){
63324             return;
63325         }
63326         startRow = startRow || 0;
63327         var rows = this.getBodyTable().rows;
63328         var lrows = this.getLockedTable().rows;
63329         var cls = ' x-grid-row-alt ';
63330         for(var i = startRow, len = rows.length; i < len; i++){
63331             var row = rows[i], lrow = lrows[i];
63332             var isAlt = ((i+1) % 2 == 0);
63333             var hasAlt = (' '+row.className + ' ').indexOf(cls) != -1;
63334             if(isAlt == hasAlt){
63335                 continue;
63336             }
63337             if(isAlt){
63338                 row.className += " x-grid-row-alt";
63339             }else{
63340                 row.className = row.className.replace("x-grid-row-alt", "");
63341             }
63342             if(lrow){
63343                 lrow.className = row.className;
63344             }
63345         }
63346     },
63347
63348     restoreScroll : function(state){
63349         //Roo.log('GridView.restoreScroll');
63350         var sb = this.scroller.dom;
63351         sb.scrollLeft = state.left;
63352         sb.scrollTop = state.top;
63353         this.syncScroll();
63354     },
63355
63356     syncScroll : function(){
63357         //Roo.log('GridView.syncScroll');
63358         var sb = this.scroller.dom;
63359         var sh = this.mainHd.dom;
63360         var bs = this.mainBody.dom;
63361         var lv = this.lockedBody.dom;
63362         sh.scrollLeft = bs.scrollLeft = sb.scrollLeft;
63363         lv.scrollTop = bs.scrollTop = sb.scrollTop;
63364     },
63365
63366     handleScroll : function(e){
63367         this.syncScroll();
63368         var sb = this.scroller.dom;
63369         this.grid.fireEvent("bodyscroll", sb.scrollLeft, sb.scrollTop);
63370         e.stopEvent();
63371     },
63372
63373     handleWheel : function(e){
63374         var d = e.getWheelDelta();
63375         this.scroller.dom.scrollTop -= d*22;
63376         // set this here to prevent jumpy scrolling on large tables
63377         this.lockedBody.dom.scrollTop = this.mainBody.dom.scrollTop = this.scroller.dom.scrollTop;
63378         e.stopEvent();
63379     },
63380
63381     renderRows : function(startRow, endRow){
63382         // pull in all the crap needed to render rows
63383         var g = this.grid, cm = g.colModel, ds = g.dataSource, stripe = g.stripeRows;
63384         var colCount = cm.getColumnCount();
63385
63386         if(ds.getCount() < 1){
63387             return ["", ""];
63388         }
63389
63390         // build a map for all the columns
63391         var cs = [];
63392         for(var i = 0; i < colCount; i++){
63393             var name = cm.getDataIndex(i);
63394             cs[i] = {
63395                 name : typeof name == 'undefined' ? ds.fields.get(i).name : name,
63396                 renderer : cm.getRenderer(i),
63397                 id : cm.getColumnId(i),
63398                 locked : cm.isLocked(i),
63399                 has_editor : cm.isCellEditable(i)
63400             };
63401         }
63402
63403         startRow = startRow || 0;
63404         endRow = typeof endRow == "undefined"? ds.getCount()-1 : endRow;
63405
63406         // records to render
63407         var rs = ds.getRange(startRow, endRow);
63408
63409         return this.doRender(cs, rs, ds, startRow, colCount, stripe);
63410     },
63411
63412     // As much as I hate to duplicate code, this was branched because FireFox really hates
63413     // [].join("") on strings. The performance difference was substantial enough to
63414     // branch this function
63415     doRender : Roo.isGecko ?
63416             function(cs, rs, ds, startRow, colCount, stripe){
63417                 var ts = this.templates, ct = ts.cell, rt = ts.row;
63418                 // buffers
63419                 var buf = "", lbuf = "", cb, lcb, c, p = {}, rp = {}, r, rowIndex;
63420                 
63421                 var hasListener = this.grid.hasListener('rowclass');
63422                 var rowcfg = {};
63423                 for(var j = 0, len = rs.length; j < len; j++){
63424                     r = rs[j]; cb = ""; lcb = ""; rowIndex = (j+startRow);
63425                     for(var i = 0; i < colCount; i++){
63426                         c = cs[i];
63427                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
63428                         p.id = c.id;
63429                         p.css = p.attr = "";
63430                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
63431                         if(p.value == undefined || p.value === "") {
63432                             p.value = "&#160;";
63433                         }
63434                         if(c.has_editor){
63435                             p.css += ' x-grid-editable-cell';
63436                         }
63437                         if(c.dirty && typeof r.modified[c.name] !== 'undefined'){
63438                             p.css +=  ' x-grid-dirty-cell';
63439                         }
63440                         var markup = ct.apply(p);
63441                         if(!c.locked){
63442                             cb+= markup;
63443                         }else{
63444                             lcb+= markup;
63445                         }
63446                     }
63447                     var alt = [];
63448                     if(stripe && ((rowIndex+1) % 2 == 0)){
63449                         alt.push("x-grid-row-alt")
63450                     }
63451                     if(r.dirty){
63452                         alt.push(  " x-grid-dirty-row");
63453                     }
63454                     rp.cells = lcb;
63455                     if(this.getRowClass){
63456                         alt.push(this.getRowClass(r, rowIndex));
63457                     }
63458                     if (hasListener) {
63459                         rowcfg = {
63460                              
63461                             record: r,
63462                             rowIndex : rowIndex,
63463                             rowClass : ''
63464                         };
63465                         this.grid.fireEvent('rowclass', this, rowcfg);
63466                         alt.push(rowcfg.rowClass);
63467                     }
63468                     rp.alt = alt.join(" ");
63469                     lbuf+= rt.apply(rp);
63470                     rp.cells = cb;
63471                     buf+=  rt.apply(rp);
63472                 }
63473                 return [lbuf, buf];
63474             } :
63475             function(cs, rs, ds, startRow, colCount, stripe){
63476                 var ts = this.templates, ct = ts.cell, rt = ts.row;
63477                 // buffers
63478                 var buf = [], lbuf = [], cb, lcb, c, p = {}, rp = {}, r, rowIndex;
63479                 var hasListener = this.grid.hasListener('rowclass');
63480  
63481                 var rowcfg = {};
63482                 for(var j = 0, len = rs.length; j < len; j++){
63483                     r = rs[j]; cb = []; lcb = []; rowIndex = (j+startRow);
63484                     for(var i = 0; i < colCount; i++){
63485                         c = cs[i];
63486                         p.cellId = "x-grid-cell-" + rowIndex + "-" + i;
63487                         p.id = c.id;
63488                         p.css = p.attr = "";
63489                         p.value = c.renderer(r.data[c.name], p, r, rowIndex, i, ds);
63490                         if(p.value == undefined || p.value === "") {
63491                             p.value = "&#160;";
63492                         }
63493                         //Roo.log(c);
63494                          if(c.has_editor){
63495                             p.css += ' x-grid-editable-cell';
63496                         }
63497                         if(r.dirty && typeof r.modified[c.name] !== 'undefined'){
63498                             p.css += ' x-grid-dirty-cell' 
63499                         }
63500                         
63501                         var markup = ct.apply(p);
63502                         if(!c.locked){
63503                             cb[cb.length] = markup;
63504                         }else{
63505                             lcb[lcb.length] = markup;
63506                         }
63507                     }
63508                     var alt = [];
63509                     if(stripe && ((rowIndex+1) % 2 == 0)){
63510                         alt.push( "x-grid-row-alt");
63511                     }
63512                     if(r.dirty){
63513                         alt.push(" x-grid-dirty-row");
63514                     }
63515                     rp.cells = lcb;
63516                     if(this.getRowClass){
63517                         alt.push( this.getRowClass(r, rowIndex));
63518                     }
63519                     if (hasListener) {
63520                         rowcfg = {
63521                              
63522                             record: r,
63523                             rowIndex : rowIndex,
63524                             rowClass : ''
63525                         };
63526                         this.grid.fireEvent('rowclass', this, rowcfg);
63527                         alt.push(rowcfg.rowClass);
63528                     }
63529                     
63530                     rp.alt = alt.join(" ");
63531                     rp.cells = lcb.join("");
63532                     lbuf[lbuf.length] = rt.apply(rp);
63533                     rp.cells = cb.join("");
63534                     buf[buf.length] =  rt.apply(rp);
63535                 }
63536                 return [lbuf.join(""), buf.join("")];
63537             },
63538
63539     renderBody : function(){
63540         var markup = this.renderRows();
63541         var bt = this.templates.body;
63542         return [bt.apply({rows: markup[0]}), bt.apply({rows: markup[1]})];
63543     },
63544
63545     /**
63546      * Refreshes the grid
63547      * @param {Boolean} headersToo
63548      */
63549     refresh : function(headersToo){
63550         this.fireEvent("beforerefresh", this);
63551         this.grid.stopEditing();
63552         var result = this.renderBody();
63553         this.lockedBody.update(result[0]);
63554         this.mainBody.update(result[1]);
63555         if(headersToo === true){
63556             this.updateHeaders();
63557             this.updateColumns();
63558             this.updateSplitters();
63559             this.updateHeaderSortState();
63560         }
63561         this.syncRowHeights();
63562         this.layout();
63563         this.fireEvent("refresh", this);
63564     },
63565
63566     handleColumnMove : function(cm, oldIndex, newIndex){
63567         this.indexMap = null;
63568         var s = this.getScrollState();
63569         this.refresh(true);
63570         this.restoreScroll(s);
63571         this.afterMove(newIndex);
63572     },
63573
63574     afterMove : function(colIndex){
63575         if(this.enableMoveAnim && Roo.enableFx){
63576             this.fly(this.getHeaderCell(colIndex).firstChild).highlight(this.hlColor);
63577         }
63578         // if multisort - fix sortOrder, and reload..
63579         if (this.grid.dataSource.multiSort) {
63580             // the we can call sort again..
63581             var dm = this.grid.dataSource;
63582             var cm = this.grid.colModel;
63583             var so = [];
63584             for(var i = 0; i < cm.config.length; i++ ) {
63585                 
63586                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined')) {
63587                     continue; // dont' bother, it's not in sort list or being set.
63588                 }
63589                 
63590                 so.push(cm.config[i].dataIndex);
63591             };
63592             dm.sortOrder = so;
63593             dm.load(dm.lastOptions);
63594             
63595             
63596         }
63597         
63598     },
63599
63600     updateCell : function(dm, rowIndex, dataIndex){
63601         var colIndex = this.getColumnIndexByDataIndex(dataIndex);
63602         if(typeof colIndex == "undefined"){ // not present in grid
63603             return;
63604         }
63605         var cm = this.grid.colModel;
63606         var cell = this.getCell(rowIndex, colIndex);
63607         var cellText = this.getCellText(rowIndex, colIndex);
63608
63609         var p = {
63610             cellId : "x-grid-cell-" + rowIndex + "-" + colIndex,
63611             id : cm.getColumnId(colIndex),
63612             css: colIndex == cm.getColumnCount()-1 ? "x-grid-col-last" : ""
63613         };
63614         var renderer = cm.getRenderer(colIndex);
63615         var val = renderer(dm.getValueAt(rowIndex, dataIndex), p, rowIndex, colIndex, dm);
63616         if(typeof val == "undefined" || val === "") {
63617             val = "&#160;";
63618         }
63619         cellText.innerHTML = val;
63620         cell.className = this.cellClass + " " + this.idToCssName(p.cellId) + " " + p.css;
63621         this.syncRowHeights(rowIndex, rowIndex);
63622     },
63623
63624     calcColumnWidth : function(colIndex, maxRowsToMeasure){
63625         var maxWidth = 0;
63626         if(this.grid.autoSizeHeaders){
63627             var h = this.getHeaderCellMeasure(colIndex);
63628             maxWidth = Math.max(maxWidth, h.scrollWidth);
63629         }
63630         var tb, index;
63631         if(this.cm.isLocked(colIndex)){
63632             tb = this.getLockedTable();
63633             index = colIndex;
63634         }else{
63635             tb = this.getBodyTable();
63636             index = colIndex - this.cm.getLockedCount();
63637         }
63638         if(tb && tb.rows){
63639             var rows = tb.rows;
63640             var stopIndex = Math.min(maxRowsToMeasure || rows.length, rows.length);
63641             for(var i = 0; i < stopIndex; i++){
63642                 var cell = rows[i].childNodes[index].firstChild;
63643                 maxWidth = Math.max(maxWidth, cell.scrollWidth);
63644             }
63645         }
63646         return maxWidth + /*margin for error in IE*/ 5;
63647     },
63648     /**
63649      * Autofit a column to its content.
63650      * @param {Number} colIndex
63651      * @param {Boolean} forceMinSize true to force the column to go smaller if possible
63652      */
63653      autoSizeColumn : function(colIndex, forceMinSize, suppressEvent){
63654          if(this.cm.isHidden(colIndex)){
63655              return; // can't calc a hidden column
63656          }
63657         if(forceMinSize){
63658             var cid = this.cm.getColumnId(colIndex);
63659             this.css.updateRule(this.colSelector +this.idToCssName( cid), "width", this.grid.minColumnWidth + "px");
63660            if(this.grid.autoSizeHeaders){
63661                this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", this.grid.minColumnWidth + "px");
63662            }
63663         }
63664         var newWidth = this.calcColumnWidth(colIndex);
63665         this.cm.setColumnWidth(colIndex,
63666             Math.max(this.grid.minColumnWidth, newWidth), suppressEvent);
63667         if(!suppressEvent){
63668             this.grid.fireEvent("columnresize", colIndex, newWidth);
63669         }
63670     },
63671
63672     /**
63673      * Autofits all columns to their content and then expands to fit any extra space in the grid
63674      */
63675      autoSizeColumns : function(){
63676         var cm = this.grid.colModel;
63677         var colCount = cm.getColumnCount();
63678         for(var i = 0; i < colCount; i++){
63679             this.autoSizeColumn(i, true, true);
63680         }
63681         if(cm.getTotalWidth() < this.scroller.dom.clientWidth){
63682             this.fitColumns();
63683         }else{
63684             this.updateColumns();
63685             this.layout();
63686         }
63687     },
63688
63689     /**
63690      * Autofits all columns to the grid's width proportionate with their current size
63691      * @param {Boolean} reserveScrollSpace Reserve space for a scrollbar
63692      */
63693     fitColumns : function(reserveScrollSpace){
63694         var cm = this.grid.colModel;
63695         var colCount = cm.getColumnCount();
63696         var cols = [];
63697         var width = 0;
63698         var i, w;
63699         for (i = 0; i < colCount; i++){
63700             if(!cm.isHidden(i) && !cm.isFixed(i)){
63701                 w = cm.getColumnWidth(i);
63702                 cols.push(i);
63703                 cols.push(w);
63704                 width += w;
63705             }
63706         }
63707         var avail = Math.min(this.scroller.dom.clientWidth, this.el.getWidth());
63708         if(reserveScrollSpace){
63709             avail -= 17;
63710         }
63711         var frac = (avail - cm.getTotalWidth())/width;
63712         while (cols.length){
63713             w = cols.pop();
63714             i = cols.pop();
63715             cm.setColumnWidth(i, Math.floor(w + w*frac), true);
63716         }
63717         this.updateColumns();
63718         this.layout();
63719     },
63720
63721     onRowSelect : function(rowIndex){
63722         var row = this.getRowComposite(rowIndex);
63723         row.addClass("x-grid-row-selected");
63724     },
63725
63726     onRowDeselect : function(rowIndex){
63727         var row = this.getRowComposite(rowIndex);
63728         row.removeClass("x-grid-row-selected");
63729     },
63730
63731     onCellSelect : function(row, col){
63732         var cell = this.getCell(row, col);
63733         if(cell){
63734             Roo.fly(cell).addClass("x-grid-cell-selected");
63735         }
63736     },
63737
63738     onCellDeselect : function(row, col){
63739         var cell = this.getCell(row, col);
63740         if(cell){
63741             Roo.fly(cell).removeClass("x-grid-cell-selected");
63742         }
63743     },
63744
63745     updateHeaderSortState : function(){
63746         
63747         // sort state can be single { field: xxx, direction : yyy}
63748         // or   { xxx=>ASC , yyy : DESC ..... }
63749         
63750         var mstate = {};
63751         if (!this.ds.multiSort) { 
63752             var state = this.ds.getSortState();
63753             if(!state){
63754                 return;
63755             }
63756             mstate[state.field] = state.direction;
63757             // FIXME... - this is not used here.. but might be elsewhere..
63758             this.sortState = state;
63759             
63760         } else {
63761             mstate = this.ds.sortToggle;
63762         }
63763         //remove existing sort classes..
63764         
63765         var sc = this.sortClasses;
63766         var hds = this.el.select(this.headerSelector).removeClass(sc);
63767         
63768         for(var f in mstate) {
63769         
63770             var sortColumn = this.cm.findColumnIndex(f);
63771             
63772             if(sortColumn != -1){
63773                 var sortDir = mstate[f];        
63774                 hds.item(sortColumn).addClass(sc[sortDir == "DESC" ? 1 : 0]);
63775             }
63776         }
63777         
63778          
63779         
63780     },
63781
63782
63783     handleHeaderClick : function(g, index,e){
63784         
63785         Roo.log("header click");
63786         
63787         if (Roo.isTouch) {
63788             // touch events on header are handled by context
63789             this.handleHdCtx(g,index,e);
63790             return;
63791         }
63792         
63793         
63794         if(this.headersDisabled){
63795             return;
63796         }
63797         var dm = g.dataSource, cm = g.colModel;
63798         if(!cm.isSortable(index)){
63799             return;
63800         }
63801         g.stopEditing();
63802         
63803         if (dm.multiSort) {
63804             // update the sortOrder
63805             var so = [];
63806             for(var i = 0; i < cm.config.length; i++ ) {
63807                 
63808                 if ((typeof(dm.sortToggle[cm.config[i].dataIndex]) == 'undefined') && (index != i)) {
63809                     continue; // dont' bother, it's not in sort list or being set.
63810                 }
63811                 
63812                 so.push(cm.config[i].dataIndex);
63813             };
63814             dm.sortOrder = so;
63815         }
63816         
63817         
63818         dm.sort(cm.getDataIndex(index));
63819     },
63820
63821
63822     destroy : function(){
63823         if(this.colMenu){
63824             this.colMenu.removeAll();
63825             Roo.menu.MenuMgr.unregister(this.colMenu);
63826             this.colMenu.getEl().remove();
63827             delete this.colMenu;
63828         }
63829         if(this.hmenu){
63830             this.hmenu.removeAll();
63831             Roo.menu.MenuMgr.unregister(this.hmenu);
63832             this.hmenu.getEl().remove();
63833             delete this.hmenu;
63834         }
63835         if(this.grid.enableColumnMove){
63836             var dds = Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
63837             if(dds){
63838                 for(var dd in dds){
63839                     if(!dds[dd].config.isTarget && dds[dd].dragElId){
63840                         var elid = dds[dd].dragElId;
63841                         dds[dd].unreg();
63842                         Roo.get(elid).remove();
63843                     } else if(dds[dd].config.isTarget){
63844                         dds[dd].proxyTop.remove();
63845                         dds[dd].proxyBottom.remove();
63846                         dds[dd].unreg();
63847                     }
63848                     if(Roo.dd.DDM.locationCache[dd]){
63849                         delete Roo.dd.DDM.locationCache[dd];
63850                     }
63851                 }
63852                 delete Roo.dd.DDM.ids['gridHeader' + this.grid.getGridEl().id];
63853             }
63854         }
63855         Roo.util.CSS.removeStyleSheet(this.idToCssName(this.grid.id) + '-cssrules');
63856         this.bind(null, null);
63857         Roo.EventManager.removeResizeListener(this.onWindowResize, this);
63858     },
63859
63860     handleLockChange : function(){
63861         this.refresh(true);
63862     },
63863
63864     onDenyColumnLock : function(){
63865
63866     },
63867
63868     onDenyColumnHide : function(){
63869
63870     },
63871
63872     handleHdMenuClick : function(item){
63873         var index = this.hdCtxIndex;
63874         var cm = this.cm, ds = this.ds;
63875         switch(item.id){
63876             case "asc":
63877                 ds.sort(cm.getDataIndex(index), "ASC");
63878                 break;
63879             case "desc":
63880                 ds.sort(cm.getDataIndex(index), "DESC");
63881                 break;
63882             case "lock":
63883                 var lc = cm.getLockedCount();
63884                 if(cm.getColumnCount(true) <= lc+1){
63885                     this.onDenyColumnLock();
63886                     return;
63887                 }
63888                 if(lc != index){
63889                     cm.setLocked(index, true, true);
63890                     cm.moveColumn(index, lc);
63891                     this.grid.fireEvent("columnmove", index, lc);
63892                 }else{
63893                     cm.setLocked(index, true);
63894                 }
63895             break;
63896             case "unlock":
63897                 var lc = cm.getLockedCount();
63898                 if((lc-1) != index){
63899                     cm.setLocked(index, false, true);
63900                     cm.moveColumn(index, lc-1);
63901                     this.grid.fireEvent("columnmove", index, lc-1);
63902                 }else{
63903                     cm.setLocked(index, false);
63904                 }
63905             break;
63906             case 'wider': // used to expand cols on touch..
63907             case 'narrow':
63908                 var cw = cm.getColumnWidth(index);
63909                 cw += (item.id == 'wider' ? 1 : -1) * 50;
63910                 cw = Math.max(0, cw);
63911                 cw = Math.min(cw,4000);
63912                 cm.setColumnWidth(index, cw);
63913                 break;
63914                 
63915             default:
63916                 index = cm.getIndexById(item.id.substr(4));
63917                 if(index != -1){
63918                     if(item.checked && cm.getColumnCount(true) <= 1){
63919                         this.onDenyColumnHide();
63920                         return false;
63921                     }
63922                     cm.setHidden(index, item.checked);
63923                 }
63924         }
63925         return true;
63926     },
63927
63928     beforeColMenuShow : function(){
63929         var cm = this.cm,  colCount = cm.getColumnCount();
63930         this.colMenu.removeAll();
63931         
63932         var items = [];
63933         for(var i = 0; i < colCount; i++){
63934             items.push({
63935                 id: "col-"+cm.getColumnId(i),
63936                 text: cm.getColumnHeader(i),
63937                 checked: !cm.isHidden(i),
63938                 hideOnClick:false
63939             });
63940         }
63941         
63942         if (this.grid.sortColMenu) {
63943             items.sort(function(a,b) {
63944                 if (a.text == b.text) {
63945                     return 0;
63946                 }
63947                 return a.text.toUpperCase() > b.text.toUpperCase() ? 1 : -1;
63948             });
63949         }
63950         
63951         for(var i = 0; i < colCount; i++){
63952             this.colMenu.add(new Roo.menu.CheckItem(items[i]));
63953         }
63954     },
63955
63956     handleHdCtx : function(g, index, e){
63957         e.stopEvent();
63958         var hd = this.getHeaderCell(index);
63959         this.hdCtxIndex = index;
63960         var ms = this.hmenu.items, cm = this.cm;
63961         ms.get("asc").setDisabled(!cm.isSortable(index));
63962         ms.get("desc").setDisabled(!cm.isSortable(index));
63963         if(this.grid.enableColLock !== false){
63964             ms.get("lock").setDisabled(cm.isLocked(index));
63965             ms.get("unlock").setDisabled(!cm.isLocked(index));
63966         }
63967         this.hmenu.show(hd, "tl-bl");
63968     },
63969
63970     handleHdOver : function(e){
63971         var hd = this.findHeaderCell(e.getTarget());
63972         if(hd && !this.headersDisabled){
63973             if(this.grid.colModel.isSortable(this.getCellIndex(hd))){
63974                this.fly(hd).addClass("x-grid-hd-over");
63975             }
63976         }
63977     },
63978
63979     handleHdOut : function(e){
63980         var hd = this.findHeaderCell(e.getTarget());
63981         if(hd){
63982             this.fly(hd).removeClass("x-grid-hd-over");
63983         }
63984     },
63985
63986     handleSplitDblClick : function(e, t){
63987         var i = this.getCellIndex(t);
63988         if(this.grid.enableColumnResize !== false && this.cm.isResizable(i) && !this.cm.isFixed(i)){
63989             this.autoSizeColumn(i, true);
63990             this.layout();
63991         }
63992     },
63993
63994     render : function(){
63995
63996         var cm = this.cm;
63997         var colCount = cm.getColumnCount();
63998
63999         if(this.grid.monitorWindowResize === true){
64000             Roo.EventManager.onWindowResize(this.onWindowResize, this, true);
64001         }
64002         var header = this.renderHeaders();
64003         var body = this.templates.body.apply({rows:""});
64004         var html = this.templates.master.apply({
64005             lockedBody: body,
64006             body: body,
64007             lockedHeader: header[0],
64008             header: header[1]
64009         });
64010
64011         //this.updateColumns();
64012
64013         this.grid.getGridEl().dom.innerHTML = html;
64014
64015         this.initElements();
64016         
64017         // a kludge to fix the random scolling effect in webkit
64018         this.el.on("scroll", function() {
64019             this.el.dom.scrollTop=0; // hopefully not recursive..
64020         },this);
64021
64022         this.scroller.on("scroll", this.handleScroll, this);
64023         this.lockedBody.on("mousewheel", this.handleWheel, this);
64024         this.mainBody.on("mousewheel", this.handleWheel, this);
64025
64026         this.mainHd.on("mouseover", this.handleHdOver, this);
64027         this.mainHd.on("mouseout", this.handleHdOut, this);
64028         this.mainHd.on("dblclick", this.handleSplitDblClick, this,
64029                 {delegate: "."+this.splitClass});
64030
64031         this.lockedHd.on("mouseover", this.handleHdOver, this);
64032         this.lockedHd.on("mouseout", this.handleHdOut, this);
64033         this.lockedHd.on("dblclick", this.handleSplitDblClick, this,
64034                 {delegate: "."+this.splitClass});
64035
64036         if(this.grid.enableColumnResize !== false && Roo.grid.SplitDragZone){
64037             new Roo.grid.SplitDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
64038         }
64039
64040         this.updateSplitters();
64041
64042         if(this.grid.enableColumnMove && Roo.grid.HeaderDragZone){
64043             new Roo.grid.HeaderDragZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
64044             new Roo.grid.HeaderDropZone(this.grid, this.lockedHd.dom, this.mainHd.dom);
64045         }
64046
64047         if(this.grid.enableCtxMenu !== false && Roo.menu.Menu){
64048             this.hmenu = new Roo.menu.Menu({id: this.grid.id + "-hctx"});
64049             this.hmenu.add(
64050                 {id:"asc", text: this.sortAscText, cls: "xg-hmenu-sort-asc"},
64051                 {id:"desc", text: this.sortDescText, cls: "xg-hmenu-sort-desc"}
64052             );
64053             if(this.grid.enableColLock !== false){
64054                 this.hmenu.add('-',
64055                     {id:"lock", text: this.lockText, cls: "xg-hmenu-lock"},
64056                     {id:"unlock", text: this.unlockText, cls: "xg-hmenu-unlock"}
64057                 );
64058             }
64059             if (Roo.isTouch) {
64060                  this.hmenu.add('-',
64061                     {id:"wider", text: this.columnsWiderText},
64062                     {id:"narrow", text: this.columnsNarrowText }
64063                 );
64064                 
64065                  
64066             }
64067             
64068             if(this.grid.enableColumnHide !== false){
64069
64070                 this.colMenu = new Roo.menu.Menu({id:this.grid.id + "-hcols-menu"});
64071                 this.colMenu.on("beforeshow", this.beforeColMenuShow, this);
64072                 this.colMenu.on("itemclick", this.handleHdMenuClick, this);
64073
64074                 this.hmenu.add('-',
64075                     {id:"columns", text: this.columnsText, menu: this.colMenu}
64076                 );
64077             }
64078             this.hmenu.on("itemclick", this.handleHdMenuClick, this);
64079
64080             this.grid.on("headercontextmenu", this.handleHdCtx, this);
64081         }
64082
64083         if((this.grid.enableDragDrop || this.grid.enableDrag) && Roo.grid.GridDragZone){
64084             this.dd = new Roo.grid.GridDragZone(this.grid, {
64085                 ddGroup : this.grid.ddGroup || 'GridDD'
64086             });
64087             
64088         }
64089
64090         /*
64091         for(var i = 0; i < colCount; i++){
64092             if(cm.isHidden(i)){
64093                 this.hideColumn(i);
64094             }
64095             if(cm.config[i].align){
64096                 this.css.updateRule(this.colSelector + i, "textAlign", cm.config[i].align);
64097                 this.css.updateRule(this.hdSelector + i, "textAlign", cm.config[i].align);
64098             }
64099         }*/
64100         
64101         this.updateHeaderSortState();
64102
64103         this.beforeInitialResize();
64104         this.layout(true);
64105
64106         // two part rendering gives faster view to the user
64107         this.renderPhase2.defer(1, this);
64108     },
64109
64110     renderPhase2 : function(){
64111         // render the rows now
64112         this.refresh();
64113         if(this.grid.autoSizeColumns){
64114             this.autoSizeColumns();
64115         }
64116     },
64117
64118     beforeInitialResize : function(){
64119
64120     },
64121
64122     onColumnSplitterMoved : function(i, w){
64123         this.userResized = true;
64124         var cm = this.grid.colModel;
64125         cm.setColumnWidth(i, w, true);
64126         var cid = cm.getColumnId(i);
64127         this.css.updateRule(this.colSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
64128         this.css.updateRule(this.hdSelector + this.idToCssName(cid), "width", (w-this.borderWidth) + "px");
64129         this.updateSplitters();
64130         this.layout();
64131         this.grid.fireEvent("columnresize", i, w);
64132     },
64133
64134     syncRowHeights : function(startIndex, endIndex){
64135         if(this.grid.enableRowHeightSync === true && this.cm.getLockedCount() > 0){
64136             startIndex = startIndex || 0;
64137             var mrows = this.getBodyTable().rows;
64138             var lrows = this.getLockedTable().rows;
64139             var len = mrows.length-1;
64140             endIndex = Math.min(endIndex || len, len);
64141             for(var i = startIndex; i <= endIndex; i++){
64142                 var m = mrows[i], l = lrows[i];
64143                 var h = Math.max(m.offsetHeight, l.offsetHeight);
64144                 m.style.height = l.style.height = h + "px";
64145             }
64146         }
64147     },
64148
64149     layout : function(initialRender, is2ndPass)
64150     {
64151         var g = this.grid;
64152         var auto = g.autoHeight;
64153         var scrollOffset = 16;
64154         var c = g.getGridEl(), cm = this.cm,
64155                 expandCol = g.autoExpandColumn,
64156                 gv = this;
64157         //c.beginMeasure();
64158
64159         if(!c.dom.offsetWidth){ // display:none?
64160             if(initialRender){
64161                 this.lockedWrap.show();
64162                 this.mainWrap.show();
64163             }
64164             return;
64165         }
64166
64167         var hasLock = this.cm.isLocked(0);
64168
64169         var tbh = this.headerPanel.getHeight();
64170         var bbh = this.footerPanel.getHeight();
64171
64172         if(auto){
64173             var ch = this.getBodyTable().offsetHeight + tbh + bbh + this.mainHd.getHeight();
64174             var newHeight = ch + c.getBorderWidth("tb");
64175             if(g.maxHeight){
64176                 newHeight = Math.min(g.maxHeight, newHeight);
64177             }
64178             c.setHeight(newHeight);
64179         }
64180
64181         if(g.autoWidth){
64182             c.setWidth(cm.getTotalWidth()+c.getBorderWidth('lr'));
64183         }
64184
64185         var s = this.scroller;
64186
64187         var csize = c.getSize(true);
64188
64189         this.el.setSize(csize.width, csize.height);
64190
64191         this.headerPanel.setWidth(csize.width);
64192         this.footerPanel.setWidth(csize.width);
64193
64194         var hdHeight = this.mainHd.getHeight();
64195         var vw = csize.width;
64196         var vh = csize.height - (tbh + bbh);
64197
64198         s.setSize(vw, vh);
64199
64200         var bt = this.getBodyTable();
64201         
64202         if(cm.getLockedCount() == cm.config.length){
64203             bt = this.getLockedTable();
64204         }
64205         
64206         var ltWidth = hasLock ?
64207                       Math.max(this.getLockedTable().offsetWidth, this.lockedHd.dom.firstChild.offsetWidth) : 0;
64208
64209         var scrollHeight = bt.offsetHeight;
64210         var scrollWidth = ltWidth + bt.offsetWidth;
64211         var vscroll = false, hscroll = false;
64212
64213         this.scrollSizer.setSize(scrollWidth, scrollHeight+hdHeight);
64214
64215         var lw = this.lockedWrap, mw = this.mainWrap;
64216         var lb = this.lockedBody, mb = this.mainBody;
64217
64218         setTimeout(function(){
64219             var t = s.dom.offsetTop;
64220             var w = s.dom.clientWidth,
64221                 h = s.dom.clientHeight;
64222
64223             lw.setTop(t);
64224             lw.setSize(ltWidth, h);
64225
64226             mw.setLeftTop(ltWidth, t);
64227             mw.setSize(w-ltWidth, h);
64228
64229             lb.setHeight(h-hdHeight);
64230             mb.setHeight(h-hdHeight);
64231
64232             if(is2ndPass !== true && !gv.userResized && expandCol){
64233                 // high speed resize without full column calculation
64234                 
64235                 var ci = cm.getIndexById(expandCol);
64236                 if (ci < 0) {
64237                     ci = cm.findColumnIndex(expandCol);
64238                 }
64239                 ci = Math.max(0, ci); // make sure it's got at least the first col.
64240                 var expandId = cm.getColumnId(ci);
64241                 var  tw = cm.getTotalWidth(false);
64242                 var currentWidth = cm.getColumnWidth(ci);
64243                 var cw = Math.min(Math.max(((w-tw)+currentWidth-2)-/*scrollbar*/(w <= s.dom.offsetWidth ? 0 : 18), g.autoExpandMin), g.autoExpandMax);
64244                 if(currentWidth != cw){
64245                     cm.setColumnWidth(ci, cw, true);
64246                     gv.css.updateRule(gv.colSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
64247                     gv.css.updateRule(gv.hdSelector+gv.idToCssName(expandId), "width", (cw - gv.borderWidth) + "px");
64248                     gv.updateSplitters();
64249                     gv.layout(false, true);
64250                 }
64251             }
64252
64253             if(initialRender){
64254                 lw.show();
64255                 mw.show();
64256             }
64257             //c.endMeasure();
64258         }, 10);
64259     },
64260
64261     onWindowResize : function(){
64262         if(!this.grid.monitorWindowResize || this.grid.autoHeight){
64263             return;
64264         }
64265         this.layout();
64266     },
64267
64268     appendFooter : function(parentEl){
64269         return null;
64270     },
64271
64272     sortAscText : "Sort Ascending",
64273     sortDescText : "Sort Descending",
64274     lockText : "Lock Column",
64275     unlockText : "Unlock Column",
64276     columnsText : "Columns",
64277  
64278     columnsWiderText : "Wider",
64279     columnsNarrowText : "Thinner"
64280 });
64281
64282
64283 Roo.grid.GridView.ColumnDragZone = function(grid, hd){
64284     Roo.grid.GridView.ColumnDragZone.superclass.constructor.call(this, grid, hd, null);
64285     this.proxy.el.addClass('x-grid3-col-dd');
64286 };
64287
64288 Roo.extend(Roo.grid.GridView.ColumnDragZone, Roo.grid.HeaderDragZone, {
64289     handleMouseDown : function(e){
64290
64291     },
64292
64293     callHandleMouseDown : function(e){
64294         Roo.grid.GridView.ColumnDragZone.superclass.handleMouseDown.call(this, e);
64295     }
64296 });
64297 /*
64298  * Based on:
64299  * Ext JS Library 1.1.1
64300  * Copyright(c) 2006-2007, Ext JS, LLC.
64301  *
64302  * Originally Released Under LGPL - original licence link has changed is not relivant.
64303  *
64304  * Fork - LGPL
64305  * <script type="text/javascript">
64306  */
64307  /**
64308  * @extends Roo.dd.DDProxy
64309  * @class Roo.grid.SplitDragZone
64310  * Support for Column Header resizing
64311  * @constructor
64312  * @param {Object} config
64313  */
64314 // private
64315 // This is a support class used internally by the Grid components
64316 Roo.grid.SplitDragZone = function(grid, hd, hd2){
64317     this.grid = grid;
64318     this.view = grid.getView();
64319     this.proxy = this.view.resizeProxy;
64320     Roo.grid.SplitDragZone.superclass.constructor.call(
64321         this,
64322         hd, // ID
64323         "gridSplitters" + this.grid.getGridEl().id, // SGROUP
64324         {  // CONFIG
64325             dragElId : Roo.id(this.proxy.dom),
64326             resizeFrame:false
64327         }
64328     );
64329     
64330     this.setHandleElId(Roo.id(hd));
64331     if (hd2 !== false) {
64332         this.setOuterHandleElId(Roo.id(hd2));
64333     }
64334     
64335     this.scroll = false;
64336 };
64337 Roo.extend(Roo.grid.SplitDragZone, Roo.dd.DDProxy, {
64338     fly: Roo.Element.fly,
64339
64340     b4StartDrag : function(x, y){
64341         this.view.headersDisabled = true;
64342         var h = this.view.mainWrap ? this.view.mainWrap.getHeight() : (
64343                     this.view.headEl.getHeight() + this.view.bodyEl.getHeight()
64344         );
64345         this.proxy.setHeight(h);
64346         
64347         // for old system colWidth really stored the actual width?
64348         // in bootstrap we tried using xs/ms/etc.. to do % sizing?
64349         // which in reality did not work.. - it worked only for fixed sizes
64350         // for resizable we need to use actual sizes.
64351         var w = this.cm.getColumnWidth(this.cellIndex);
64352         if (!this.view.mainWrap) {
64353             // bootstrap.
64354             w = this.view.getHeaderIndex(this.cellIndex).getWidth();
64355         }
64356         
64357         
64358         
64359         // this was w-this.grid.minColumnWidth;
64360         // doesnt really make sense? - w = thie curren width or the rendered one?
64361         var minw = Math.max(w-this.grid.minColumnWidth, 0);
64362         this.resetConstraints();
64363         this.setXConstraint(minw, 1000);
64364         this.setYConstraint(0, 0);
64365         this.minX = x - minw;
64366         this.maxX = x + 1000;
64367         this.startPos = x;
64368         if (!this.view.mainWrap) { // this is Bootstrap code..
64369             this.getDragEl().style.display='block';
64370         }
64371         
64372         Roo.dd.DDProxy.prototype.b4StartDrag.call(this, x, y);
64373     },
64374
64375
64376     handleMouseDown : function(e){
64377         ev = Roo.EventObject.setEvent(e);
64378         var t = this.fly(ev.getTarget());
64379         if(t.hasClass("x-grid-split")){
64380             this.cellIndex = this.view.getCellIndex(t.dom);
64381             this.split = t.dom;
64382             this.cm = this.grid.colModel;
64383             if(this.cm.isResizable(this.cellIndex) && !this.cm.isFixed(this.cellIndex)){
64384                 Roo.grid.SplitDragZone.superclass.handleMouseDown.apply(this, arguments);
64385             }
64386         }
64387     },
64388
64389     endDrag : function(e){
64390         this.view.headersDisabled = false;
64391         var endX = Math.max(this.minX, Roo.lib.Event.getPageX(e));
64392         var diff = endX - this.startPos;
64393         // 
64394         var w = this.cm.getColumnWidth(this.cellIndex);
64395         if (!this.view.mainWrap) {
64396             w = 0;
64397         }
64398         this.view.onColumnSplitterMoved(this.cellIndex, w+diff);
64399     },
64400
64401     autoOffset : function(){
64402         this.setDelta(0,0);
64403     }
64404 });/*
64405  * Based on:
64406  * Ext JS Library 1.1.1
64407  * Copyright(c) 2006-2007, Ext JS, LLC.
64408  *
64409  * Originally Released Under LGPL - original licence link has changed is not relivant.
64410  *
64411  * Fork - LGPL
64412  * <script type="text/javascript">
64413  */
64414  
64415 // private
64416 // This is a support class used internally by the Grid components
64417 Roo.grid.GridDragZone = function(grid, config){
64418     this.view = grid.getView();
64419     Roo.grid.GridDragZone.superclass.constructor.call(this, this.view.mainBody.dom, config);
64420     if(this.view.lockedBody){
64421         this.setHandleElId(Roo.id(this.view.mainBody.dom));
64422         this.setOuterHandleElId(Roo.id(this.view.lockedBody.dom));
64423     }
64424     this.scroll = false;
64425     this.grid = grid;
64426     this.ddel = document.createElement('div');
64427     this.ddel.className = 'x-grid-dd-wrap';
64428 };
64429
64430 Roo.extend(Roo.grid.GridDragZone, Roo.dd.DragZone, {
64431     ddGroup : "GridDD",
64432
64433     getDragData : function(e){
64434         var t = Roo.lib.Event.getTarget(e);
64435         var rowIndex = this.view.findRowIndex(t);
64436         var sm = this.grid.selModel;
64437             
64438         //Roo.log(rowIndex);
64439         
64440         if (sm.getSelectedCell) {
64441             // cell selection..
64442             if (!sm.getSelectedCell()) {
64443                 return false;
64444             }
64445             if (rowIndex != sm.getSelectedCell()[0]) {
64446                 return false;
64447             }
64448         
64449         }
64450         if (sm.getSelections && sm.getSelections().length < 1) {
64451             return false;
64452         }
64453         
64454         
64455         // before it used to all dragging of unseleted... - now we dont do that.
64456         if(rowIndex !== false){
64457             
64458             // if editorgrid.. 
64459             
64460             
64461             //Roo.log([ sm.getSelectedCell() ? sm.getSelectedCell()[0] : 'NO' , rowIndex ]);
64462                
64463             //if(!sm.isSelected(rowIndex) || e.hasModifier()){
64464               //  
64465             //}
64466             if (e.hasModifier()){
64467                 sm.handleMouseDown(e, t); // non modifier buttons are handled by row select.
64468             }
64469             
64470             Roo.log("getDragData");
64471             
64472             return {
64473                 grid: this.grid,
64474                 ddel: this.ddel,
64475                 rowIndex: rowIndex,
64476                 selections: sm.getSelections ? sm.getSelections() : (
64477                     sm.getSelectedCell() ? [ this.grid.ds.getAt(sm.getSelectedCell()[0]) ] : [])
64478             };
64479         }
64480         return false;
64481     },
64482     
64483     
64484     onInitDrag : function(e){
64485         var data = this.dragData;
64486         this.ddel.innerHTML = this.grid.getDragDropText();
64487         this.proxy.update(this.ddel);
64488         // fire start drag?
64489     },
64490
64491     afterRepair : function(){
64492         this.dragging = false;
64493     },
64494
64495     getRepairXY : function(e, data){
64496         return false;
64497     },
64498
64499     onEndDrag : function(data, e){
64500         // fire end drag?
64501     },
64502
64503     onValidDrop : function(dd, e, id){
64504         // fire drag drop?
64505         this.hideProxy();
64506     },
64507
64508     beforeInvalidDrop : function(e, id){
64509
64510     }
64511 });/*
64512  * Based on:
64513  * Ext JS Library 1.1.1
64514  * Copyright(c) 2006-2007, Ext JS, LLC.
64515  *
64516  * Originally Released Under LGPL - original licence link has changed is not relivant.
64517  *
64518  * Fork - LGPL
64519  * <script type="text/javascript">
64520  */
64521  
64522
64523 /**
64524  * @class Roo.grid.ColumnModel
64525  * @extends Roo.util.Observable
64526  * This is the default implementation of a ColumnModel used by the Grid. It defines
64527  * the columns in the grid.
64528  * <br>Usage:<br>
64529  <pre><code>
64530  var colModel = new Roo.grid.ColumnModel([
64531         {header: "Ticker", width: 60, sortable: true, locked: true},
64532         {header: "Company Name", width: 150, sortable: true},
64533         {header: "Market Cap.", width: 100, sortable: true},
64534         {header: "$ Sales", width: 100, sortable: true, renderer: money},
64535         {header: "Employees", width: 100, sortable: true, resizable: false}
64536  ]);
64537  </code></pre>
64538  * <p>
64539  
64540  * The config options listed for this class are options which may appear in each
64541  * individual column definition.
64542  * <br/>RooJS Fix - column id's are not sequential but use Roo.id() - fixes bugs with layouts.
64543  * @constructor
64544  * @param {Object} config An Array of column config objects. See this class's
64545  * config objects for details.
64546 */
64547 Roo.grid.ColumnModel = function(config){
64548         /**
64549      * The config passed into the constructor
64550      */
64551     this.config = []; //config;
64552     this.lookup = {};
64553
64554     // if no id, create one
64555     // if the column does not have a dataIndex mapping,
64556     // map it to the order it is in the config
64557     for(var i = 0, len = config.length; i < len; i++){
64558         this.addColumn(config[i]);
64559         
64560     }
64561
64562     /**
64563      * The width of columns which have no width specified (defaults to 100)
64564      * @type Number
64565      */
64566     this.defaultWidth = 100;
64567
64568     /**
64569      * Default sortable of columns which have no sortable specified (defaults to false)
64570      * @type Boolean
64571      */
64572     this.defaultSortable = false;
64573
64574     this.addEvents({
64575         /**
64576              * @event widthchange
64577              * Fires when the width of a column changes.
64578              * @param {ColumnModel} this
64579              * @param {Number} columnIndex The column index
64580              * @param {Number} newWidth The new width
64581              */
64582             "widthchange": true,
64583         /**
64584              * @event headerchange
64585              * Fires when the text of a header changes.
64586              * @param {ColumnModel} this
64587              * @param {Number} columnIndex The column index
64588              * @param {Number} newText The new header text
64589              */
64590             "headerchange": true,
64591         /**
64592              * @event hiddenchange
64593              * Fires when a column is hidden or "unhidden".
64594              * @param {ColumnModel} this
64595              * @param {Number} columnIndex The column index
64596              * @param {Boolean} hidden true if hidden, false otherwise
64597              */
64598             "hiddenchange": true,
64599             /**
64600          * @event columnmoved
64601          * Fires when a column is moved.
64602          * @param {ColumnModel} this
64603          * @param {Number} oldIndex
64604          * @param {Number} newIndex
64605          */
64606         "columnmoved" : true,
64607         /**
64608          * @event columlockchange
64609          * Fires when a column's locked state is changed
64610          * @param {ColumnModel} this
64611          * @param {Number} colIndex
64612          * @param {Boolean} locked true if locked
64613          */
64614         "columnlockchange" : true
64615     });
64616     Roo.grid.ColumnModel.superclass.constructor.call(this);
64617 };
64618 Roo.extend(Roo.grid.ColumnModel, Roo.util.Observable, {
64619     /**
64620      * @cfg {String} header [required] The header text to display in the Grid view.
64621      */
64622         /**
64623      * @cfg {String} xsHeader Header at Bootsrap Extra Small width (default for all)
64624      */
64625         /**
64626      * @cfg {String} smHeader Header at Bootsrap Small width
64627      */
64628         /**
64629      * @cfg {String} mdHeader Header at Bootsrap Medium width
64630      */
64631         /**
64632      * @cfg {String} lgHeader Header at Bootsrap Large width
64633      */
64634         /**
64635      * @cfg {String} xlHeader Header at Bootsrap extra Large width
64636      */
64637     /**
64638      * @cfg {String} dataIndex  The name of the field in the grid's {@link Roo.data.Store}'s
64639      * {@link Roo.data.Record} definition from which to draw the column's value. If not
64640      * specified, the column's index is used as an index into the Record's data Array.
64641      */
64642     /**
64643      * @cfg {Number} width  The initial width in pixels of the column. Using this
64644      * instead of {@link Roo.grid.Grid#autoSizeColumns} is more efficient.
64645      */
64646     /**
64647      * @cfg {Boolean} sortable True if sorting is to be allowed on this column.
64648      * Defaults to the value of the {@link #defaultSortable} property.
64649      * Whether local/remote sorting is used is specified in {@link Roo.data.Store#remoteSort}.
64650      */
64651     /**
64652      * @cfg {Boolean} locked  True to lock the column in place while scrolling the Grid.  Defaults to false.
64653      */
64654     /**
64655      * @cfg {Boolean} fixed  True if the column width cannot be changed.  Defaults to false.
64656      */
64657     /**
64658      * @cfg {Boolean} resizable  False to disable column resizing. Defaults to true.
64659      */
64660     /**
64661      * @cfg {Boolean} hidden  True to hide the column. Defaults to false.
64662      */
64663     /**
64664      * @cfg {Function} renderer A function used to generate HTML markup for a cell
64665      * given the cell's data value. See {@link #setRenderer}. If not specified, the
64666      * default renderer returns the escaped data value. If an object is returned (bootstrap only)
64667      * then it is treated as a Roo Component object instance, and it is rendered after the initial row is rendered
64668      */
64669        /**
64670      * @cfg {Roo.grid.GridEditor} editor  For grid editors - returns the grid editor 
64671      */
64672     /**
64673      * @cfg {String} align (left|right) Set the CSS text-align property of the column.  Defaults to undefined (left).
64674      */
64675     /**
64676      * @cfg {String} valign (top|bottom|middle) Set the CSS vertical-align property of the column (eg. middle, top, bottom etc).  Defaults to undefined (middle)
64677      */
64678     /**
64679      * @cfg {String} cursor ( auto|default|none|context-menu|help|pointer|progress|wait|cell|crosshair|text|vertical-text|alias|copy|move|no-drop|not-allowed|e-resize|n-resize|ne-resize|nw-resize|s-resize|se-resize|sw-resize|w-resize|ew-resize|ns-resize|nesw-resize|nwse-resize|col-resize|row-resize|all-scroll|zoom-in|zoom-out|grab|grabbing)
64680      */
64681     /**
64682      * @cfg {String} tooltip mouse over tooltip text
64683      */
64684     /**
64685      * @cfg {Number} xs  can be '0' for hidden at this size (number less than 12)
64686      */
64687     /**
64688      * @cfg {Number} sm can be '0' for hidden at this size (number less than 12)
64689      */
64690     /**
64691      * @cfg {Number} md can be '0' for hidden at this size (number less than 12)
64692      */
64693     /**
64694      * @cfg {Number} lg   can be '0' for hidden at this size (number less than 12)
64695      */
64696         /**
64697      * @cfg {Number} xl   can be '0' for hidden at this size (number less than 12)
64698      */
64699     /**
64700      * Returns the id of the column at the specified index.
64701      * @param {Number} index The column index
64702      * @return {String} the id
64703      */
64704     getColumnId : function(index){
64705         return this.config[index].id;
64706     },
64707
64708     /**
64709      * Returns the column for a specified id.
64710      * @param {String} id The column id
64711      * @return {Object} the column
64712      */
64713     getColumnById : function(id){
64714         return this.lookup[id];
64715     },
64716
64717     
64718     /**
64719      * Returns the column Object for a specified dataIndex.
64720      * @param {String} dataIndex The column dataIndex
64721      * @return {Object|Boolean} the column or false if not found
64722      */
64723     getColumnByDataIndex: function(dataIndex){
64724         var index = this.findColumnIndex(dataIndex);
64725         return index > -1 ? this.config[index] : false;
64726     },
64727     
64728     /**
64729      * Returns the index for a specified column id.
64730      * @param {String} id The column id
64731      * @return {Number} the index, or -1 if not found
64732      */
64733     getIndexById : function(id){
64734         for(var i = 0, len = this.config.length; i < len; i++){
64735             if(this.config[i].id == id){
64736                 return i;
64737             }
64738         }
64739         return -1;
64740     },
64741     
64742     /**
64743      * Returns the index for a specified column dataIndex.
64744      * @param {String} dataIndex The column dataIndex
64745      * @return {Number} the index, or -1 if not found
64746      */
64747     
64748     findColumnIndex : function(dataIndex){
64749         for(var i = 0, len = this.config.length; i < len; i++){
64750             if(this.config[i].dataIndex == dataIndex){
64751                 return i;
64752             }
64753         }
64754         return -1;
64755     },
64756     
64757     
64758     moveColumn : function(oldIndex, newIndex){
64759         var c = this.config[oldIndex];
64760         this.config.splice(oldIndex, 1);
64761         this.config.splice(newIndex, 0, c);
64762         this.dataMap = null;
64763         this.fireEvent("columnmoved", this, oldIndex, newIndex);
64764     },
64765
64766     isLocked : function(colIndex){
64767         return this.config[colIndex].locked === true;
64768     },
64769
64770     setLocked : function(colIndex, value, suppressEvent){
64771         if(this.isLocked(colIndex) == value){
64772             return;
64773         }
64774         this.config[colIndex].locked = value;
64775         if(!suppressEvent){
64776             this.fireEvent("columnlockchange", this, colIndex, value);
64777         }
64778     },
64779
64780     getTotalLockedWidth : function(){
64781         var totalWidth = 0;
64782         for(var i = 0; i < this.config.length; i++){
64783             if(this.isLocked(i) && !this.isHidden(i)){
64784                 this.totalWidth += this.getColumnWidth(i);
64785             }
64786         }
64787         return totalWidth;
64788     },
64789
64790     getLockedCount : function(){
64791         for(var i = 0, len = this.config.length; i < len; i++){
64792             if(!this.isLocked(i)){
64793                 return i;
64794             }
64795         }
64796         
64797         return this.config.length;
64798     },
64799
64800     /**
64801      * Returns the number of columns.
64802      * @return {Number}
64803      */
64804     getColumnCount : function(visibleOnly){
64805         if(visibleOnly === true){
64806             var c = 0;
64807             for(var i = 0, len = this.config.length; i < len; i++){
64808                 if(!this.isHidden(i)){
64809                     c++;
64810                 }
64811             }
64812             return c;
64813         }
64814         return this.config.length;
64815     },
64816
64817     /**
64818      * Returns the column configs that return true by the passed function that is called with (columnConfig, index)
64819      * @param {Function} fn
64820      * @param {Object} scope (optional)
64821      * @return {Array} result
64822      */
64823     getColumnsBy : function(fn, scope){
64824         var r = [];
64825         for(var i = 0, len = this.config.length; i < len; i++){
64826             var c = this.config[i];
64827             if(fn.call(scope||this, c, i) === true){
64828                 r[r.length] = c;
64829             }
64830         }
64831         return r;
64832     },
64833
64834     /**
64835      * Returns true if the specified column is sortable.
64836      * @param {Number} col The column index
64837      * @return {Boolean}
64838      */
64839     isSortable : function(col){
64840         if(typeof this.config[col].sortable == "undefined"){
64841             return this.defaultSortable;
64842         }
64843         return this.config[col].sortable;
64844     },
64845
64846     /**
64847      * Returns the rendering (formatting) function defined for the column.
64848      * @param {Number} col The column index.
64849      * @return {Function} The function used to render the cell. See {@link #setRenderer}.
64850      */
64851     getRenderer : function(col){
64852         if(!this.config[col].renderer){
64853             return Roo.grid.ColumnModel.defaultRenderer;
64854         }
64855         return this.config[col].renderer;
64856     },
64857
64858     /**
64859      * Sets the rendering (formatting) function for a column.
64860      * @param {Number} col The column index
64861      * @param {Function} fn The function to use to process the cell's raw data
64862      * to return HTML markup for the grid view. The render function is called with
64863      * the following parameters:<ul>
64864      * <li>Data value.</li>
64865      * <li>Cell metadata. An object in which you may set the following attributes:<ul>
64866      * <li>css A CSS style string to apply to the table cell.</li>
64867      * <li>attr An HTML attribute definition string to apply to the data container element <i>within</i> the table cell.</li></ul>
64868      * <li>The {@link Roo.data.Record} from which the data was extracted.</li>
64869      * <li>Row index</li>
64870      * <li>Column index</li>
64871      * <li>The {@link Roo.data.Store} object from which the Record was extracted</li></ul>
64872      */
64873     setRenderer : function(col, fn){
64874         this.config[col].renderer = fn;
64875     },
64876
64877     /**
64878      * Returns the width for the specified column.
64879      * @param {Number} col The column index
64880      * @param (optional) {String} gridSize bootstrap width size.
64881      * @return {Number}
64882      */
64883     getColumnWidth : function(col, gridSize)
64884         {
64885                 var cfg = this.config[col];
64886                 
64887                 if (typeof(gridSize) == 'undefined') {
64888                         return cfg.width * 1 || this.defaultWidth;
64889                 }
64890                 if (gridSize === false) { // if we set it..
64891                         return cfg.width || false;
64892                 }
64893                 var sizes = ['xl', 'lg', 'md', 'sm', 'xs'];
64894                 
64895                 for(var i = sizes.indexOf(gridSize); i < sizes.length; i++) {
64896                         if (typeof(cfg[ sizes[i] ] ) == 'undefined') {
64897                                 continue;
64898                         }
64899                         return cfg[ sizes[i] ];
64900                 }
64901                 return 1;
64902                 
64903     },
64904
64905     /**
64906      * Sets the width for a column.
64907      * @param {Number} col The column index
64908      * @param {Number} width The new width
64909      */
64910     setColumnWidth : function(col, width, suppressEvent){
64911         this.config[col].width = width;
64912         this.totalWidth = null;
64913         if(!suppressEvent){
64914              this.fireEvent("widthchange", this, col, width);
64915         }
64916     },
64917
64918     /**
64919      * Returns the total width of all columns.
64920      * @param {Boolean} includeHidden True to include hidden column widths
64921      * @return {Number}
64922      */
64923     getTotalWidth : function(includeHidden){
64924         if(!this.totalWidth){
64925             this.totalWidth = 0;
64926             for(var i = 0, len = this.config.length; i < len; i++){
64927                 if(includeHidden || !this.isHidden(i)){
64928                     this.totalWidth += this.getColumnWidth(i);
64929                 }
64930             }
64931         }
64932         return this.totalWidth;
64933     },
64934
64935     /**
64936      * Returns the header for the specified column.
64937      * @param {Number} col The column index
64938      * @return {String}
64939      */
64940     getColumnHeader : function(col){
64941         return this.config[col].header;
64942     },
64943
64944     /**
64945      * Sets the header for a column.
64946      * @param {Number} col The column index
64947      * @param {String} header The new header
64948      */
64949     setColumnHeader : function(col, header){
64950         this.config[col].header = header;
64951         this.fireEvent("headerchange", this, col, header);
64952     },
64953
64954     /**
64955      * Returns the tooltip for the specified column.
64956      * @param {Number} col The column index
64957      * @return {String}
64958      */
64959     getColumnTooltip : function(col){
64960             return this.config[col].tooltip;
64961     },
64962     /**
64963      * Sets the tooltip for a column.
64964      * @param {Number} col The column index
64965      * @param {String} tooltip The new tooltip
64966      */
64967     setColumnTooltip : function(col, tooltip){
64968             this.config[col].tooltip = tooltip;
64969     },
64970
64971     /**
64972      * Returns the dataIndex for the specified column.
64973      * @param {Number} col The column index
64974      * @return {Number}
64975      */
64976     getDataIndex : function(col){
64977         return this.config[col].dataIndex;
64978     },
64979
64980     /**
64981      * Sets the dataIndex for a column.
64982      * @param {Number} col The column index
64983      * @param {Number} dataIndex The new dataIndex
64984      */
64985     setDataIndex : function(col, dataIndex){
64986         this.config[col].dataIndex = dataIndex;
64987     },
64988
64989     
64990     
64991     /**
64992      * Returns true if the cell is editable.
64993      * @param {Number} colIndex The column index
64994      * @param {Number} rowIndex The row index - this is nto actually used..?
64995      * @return {Boolean}
64996      */
64997     isCellEditable : function(colIndex, rowIndex){
64998         return (this.config[colIndex].editable || (typeof this.config[colIndex].editable == "undefined" && this.config[colIndex].editor)) ? true : false;
64999     },
65000
65001     /**
65002      * Returns the editor defined for the cell/column.
65003      * return false or null to disable editing.
65004      * @param {Number} colIndex The column index
65005      * @param {Number} rowIndex The row index
65006      * @return {Object}
65007      */
65008     getCellEditor : function(colIndex, rowIndex){
65009         return this.config[colIndex].editor;
65010     },
65011
65012     /**
65013      * Sets if a column is editable.
65014      * @param {Number} col The column index
65015      * @param {Boolean} editable True if the column is editable
65016      */
65017     setEditable : function(col, editable){
65018         this.config[col].editable = editable;
65019     },
65020
65021
65022     /**
65023      * Returns true if the column is hidden.
65024      * @param {Number} colIndex The column index
65025      * @return {Boolean}
65026      */
65027     isHidden : function(colIndex){
65028         return this.config[colIndex].hidden;
65029     },
65030
65031
65032     /**
65033      * Returns true if the column width cannot be changed
65034      */
65035     isFixed : function(colIndex){
65036         return this.config[colIndex].fixed;
65037     },
65038
65039     /**
65040      * Returns true if the column can be resized
65041      * @return {Boolean}
65042      */
65043     isResizable : function(colIndex){
65044         return colIndex >= 0 && this.config[colIndex].resizable !== false && this.config[colIndex].fixed !== true;
65045     },
65046     /**
65047      * Sets if a column is hidden.
65048      * @param {Number} colIndex The column index
65049      * @param {Boolean} hidden True if the column is hidden
65050      */
65051     setHidden : function(colIndex, hidden){
65052         this.config[colIndex].hidden = hidden;
65053         this.totalWidth = null;
65054         this.fireEvent("hiddenchange", this, colIndex, hidden);
65055     },
65056
65057     /**
65058      * Sets the editor for a column.
65059      * @param {Number} col The column index
65060      * @param {Object} editor The editor object
65061      */
65062     setEditor : function(col, editor){
65063         this.config[col].editor = editor;
65064     },
65065     /**
65066      * Add a column (experimental...) - defaults to adding to the end..
65067      * @param {Object} config 
65068     */
65069     addColumn : function(c)
65070     {
65071     
65072         var i = this.config.length;
65073         this.config[i] = c;
65074         
65075         if(typeof c.dataIndex == "undefined"){
65076             c.dataIndex = i;
65077         }
65078         if(typeof c.renderer == "string"){
65079             c.renderer = Roo.util.Format[c.renderer];
65080         }
65081         if(typeof c.id == "undefined"){
65082             c.id = Roo.id();
65083         }
65084         if(c.editor && c.editor.xtype){
65085             c.editor  = Roo.factory(c.editor, Roo.grid);
65086         }
65087         if(c.editor && c.editor.isFormField){
65088             c.editor = new Roo.grid.GridEditor(c.editor);
65089         }
65090         this.lookup[c.id] = c;
65091     }
65092     
65093 });
65094
65095 Roo.grid.ColumnModel.defaultRenderer = function(value)
65096 {
65097     if(typeof value == "object") {
65098         return value;
65099     }
65100         if(typeof value == "string" && value.length < 1){
65101             return "&#160;";
65102         }
65103     
65104         return String.format("{0}", value);
65105 };
65106
65107 // Alias for backwards compatibility
65108 Roo.grid.DefaultColumnModel = Roo.grid.ColumnModel;
65109 /*
65110  * Based on:
65111  * Ext JS Library 1.1.1
65112  * Copyright(c) 2006-2007, Ext JS, LLC.
65113  *
65114  * Originally Released Under LGPL - original licence link has changed is not relivant.
65115  *
65116  * Fork - LGPL
65117  * <script type="text/javascript">
65118  */
65119
65120 /**
65121  * @class Roo.grid.AbstractSelectionModel
65122  * @extends Roo.util.Observable
65123  * @abstract
65124  * Abstract base class for grid SelectionModels.  It provides the interface that should be
65125  * implemented by descendant classes.  This class should not be directly instantiated.
65126  * @constructor
65127  */
65128 Roo.grid.AbstractSelectionModel = function(){
65129     this.locked = false;
65130     Roo.grid.AbstractSelectionModel.superclass.constructor.call(this);
65131 };
65132
65133 Roo.extend(Roo.grid.AbstractSelectionModel, Roo.util.Observable,  {
65134     /** @ignore Called by the grid automatically. Do not call directly. */
65135     init : function(grid){
65136         this.grid = grid;
65137         this.initEvents();
65138     },
65139
65140     /**
65141      * Locks the selections.
65142      */
65143     lock : function(){
65144         this.locked = true;
65145     },
65146
65147     /**
65148      * Unlocks the selections.
65149      */
65150     unlock : function(){
65151         this.locked = false;
65152     },
65153
65154     /**
65155      * Returns true if the selections are locked.
65156      * @return {Boolean}
65157      */
65158     isLocked : function(){
65159         return this.locked;
65160     }
65161 });/*
65162  * Based on:
65163  * Ext JS Library 1.1.1
65164  * Copyright(c) 2006-2007, Ext JS, LLC.
65165  *
65166  * Originally Released Under LGPL - original licence link has changed is not relivant.
65167  *
65168  * Fork - LGPL
65169  * <script type="text/javascript">
65170  */
65171 /**
65172  * @extends Roo.grid.AbstractSelectionModel
65173  * @class Roo.grid.RowSelectionModel
65174  * The default SelectionModel used by {@link Roo.grid.Grid}.
65175  * It supports multiple selections and keyboard selection/navigation. 
65176  * @constructor
65177  * @param {Object} config
65178  */
65179 Roo.grid.RowSelectionModel = function(config){
65180     Roo.apply(this, config);
65181     this.selections = new Roo.util.MixedCollection(false, function(o){
65182         return o.id;
65183     });
65184
65185     this.last = false;
65186     this.lastActive = false;
65187
65188     this.addEvents({
65189         /**
65190         * @event selectionchange
65191         * Fires when the selection changes
65192         * @param {SelectionModel} this
65193         */
65194        "selectionchange" : true,
65195        /**
65196         * @event afterselectionchange
65197         * Fires after the selection changes (eg. by key press or clicking)
65198         * @param {SelectionModel} this
65199         */
65200        "afterselectionchange" : true,
65201        /**
65202         * @event beforerowselect
65203         * Fires when a row is selected being selected, return false to cancel.
65204         * @param {SelectionModel} this
65205         * @param {Number} rowIndex The selected index
65206         * @param {Boolean} keepExisting False if other selections will be cleared
65207         */
65208        "beforerowselect" : true,
65209        /**
65210         * @event rowselect
65211         * Fires when a row is selected.
65212         * @param {SelectionModel} this
65213         * @param {Number} rowIndex The selected index
65214         * @param {Roo.data.Record} r The record
65215         */
65216        "rowselect" : true,
65217        /**
65218         * @event rowdeselect
65219         * Fires when a row is deselected.
65220         * @param {SelectionModel} this
65221         * @param {Number} rowIndex The selected index
65222         */
65223         "rowdeselect" : true
65224     });
65225     Roo.grid.RowSelectionModel.superclass.constructor.call(this);
65226     this.locked = false;
65227 };
65228
65229 Roo.extend(Roo.grid.RowSelectionModel, Roo.grid.AbstractSelectionModel,  {
65230     /**
65231      * @cfg {Boolean} singleSelect
65232      * True to allow selection of only one row at a time (defaults to false)
65233      */
65234     singleSelect : false,
65235
65236     // private
65237     initEvents : function(){
65238
65239         if(!this.grid.enableDragDrop && !this.grid.enableDrag){
65240             this.grid.on("mousedown", this.handleMouseDown, this);
65241         }else{ // allow click to work like normal
65242             this.grid.on("rowclick", this.handleDragableRowClick, this);
65243         }
65244         // bootstrap does not have a view..
65245         var view = this.grid.view ? this.grid.view : this.grid;
65246         this.rowNav = new Roo.KeyNav(this.grid.getGridEl(), {
65247             "up" : function(e){
65248                 if(!e.shiftKey){
65249                     this.selectPrevious(e.shiftKey);
65250                 }else if(this.last !== false && this.lastActive !== false){
65251                     var last = this.last;
65252                     this.selectRange(this.last,  this.lastActive-1);
65253                     view.focusRow(this.lastActive);
65254                     if(last !== false){
65255                         this.last = last;
65256                     }
65257                 }else{
65258                     this.selectFirstRow();
65259                 }
65260                 this.fireEvent("afterselectionchange", this);
65261             },
65262             "down" : function(e){
65263                 if(!e.shiftKey){
65264                     this.selectNext(e.shiftKey);
65265                 }else if(this.last !== false && this.lastActive !== false){
65266                     var last = this.last;
65267                     this.selectRange(this.last,  this.lastActive+1);
65268                     view.focusRow(this.lastActive);
65269                     if(last !== false){
65270                         this.last = last;
65271                     }
65272                 }else{
65273                     this.selectFirstRow();
65274                 }
65275                 this.fireEvent("afterselectionchange", this);
65276             },
65277             scope: this
65278         });
65279
65280          
65281         view.on("refresh", this.onRefresh, this);
65282         view.on("rowupdated", this.onRowUpdated, this);
65283         view.on("rowremoved", this.onRemove, this);
65284     },
65285
65286     // private
65287     onRefresh : function(){
65288         var ds = this.grid.ds, i, v = this.grid.view;
65289         var s = this.selections;
65290         s.each(function(r){
65291             if((i = ds.indexOfId(r.id)) != -1){
65292                 v.onRowSelect(i);
65293                 s.add(ds.getAt(i)); // updating the selection relate data
65294             }else{
65295                 s.remove(r);
65296             }
65297         });
65298     },
65299
65300     // private
65301     onRemove : function(v, index, r){
65302         this.selections.remove(r);
65303     },
65304
65305     // private
65306     onRowUpdated : function(v, index, r){
65307         if(this.isSelected(r)){
65308             v.onRowSelect(index);
65309         }
65310     },
65311
65312     /**
65313      * Select records.
65314      * @param {Array} records The records to select
65315      * @param {Boolean} keepExisting (optional) True to keep existing selections
65316      */
65317     selectRecords : function(records, keepExisting){
65318         if(!keepExisting){
65319             this.clearSelections();
65320         }
65321         var ds = this.grid.ds;
65322         for(var i = 0, len = records.length; i < len; i++){
65323             this.selectRow(ds.indexOf(records[i]), true);
65324         }
65325     },
65326
65327     /**
65328      * Gets the number of selected rows.
65329      * @return {Number}
65330      */
65331     getCount : function(){
65332         return this.selections.length;
65333     },
65334
65335     /**
65336      * Selects the first row in the grid.
65337      */
65338     selectFirstRow : function(){
65339         this.selectRow(0);
65340     },
65341
65342     /**
65343      * Select the last row.
65344      * @param {Boolean} keepExisting (optional) True to keep existing selections
65345      */
65346     selectLastRow : function(keepExisting){
65347         this.selectRow(this.grid.ds.getCount() - 1, keepExisting);
65348     },
65349
65350     /**
65351      * Selects the row immediately following the last selected row.
65352      * @param {Boolean} keepExisting (optional) True to keep existing selections
65353      */
65354     selectNext : function(keepExisting){
65355         if(this.last !== false && (this.last+1) < this.grid.ds.getCount()){
65356             this.selectRow(this.last+1, keepExisting);
65357             var view = this.grid.view ? this.grid.view : this.grid;
65358             view.focusRow(this.last);
65359         }
65360     },
65361
65362     /**
65363      * Selects the row that precedes the last selected row.
65364      * @param {Boolean} keepExisting (optional) True to keep existing selections
65365      */
65366     selectPrevious : function(keepExisting){
65367         if(this.last){
65368             this.selectRow(this.last-1, keepExisting);
65369             var view = this.grid.view ? this.grid.view : this.grid;
65370             view.focusRow(this.last);
65371         }
65372     },
65373
65374     /**
65375      * Returns the selected records
65376      * @return {Array} Array of selected records
65377      */
65378     getSelections : function(){
65379         return [].concat(this.selections.items);
65380     },
65381
65382     /**
65383      * Returns the first selected record.
65384      * @return {Record}
65385      */
65386     getSelected : function(){
65387         return this.selections.itemAt(0);
65388     },
65389
65390
65391     /**
65392      * Clears all selections.
65393      */
65394     clearSelections : function(fast){
65395         if(this.locked) {
65396             return;
65397         }
65398         if(fast !== true){
65399             var ds = this.grid.ds;
65400             var s = this.selections;
65401             s.each(function(r){
65402                 this.deselectRow(ds.indexOfId(r.id));
65403             }, this);
65404             s.clear();
65405         }else{
65406             this.selections.clear();
65407         }
65408         this.last = false;
65409     },
65410
65411
65412     /**
65413      * Selects all rows.
65414      */
65415     selectAll : function(){
65416         if(this.locked) {
65417             return;
65418         }
65419         this.selections.clear();
65420         for(var i = 0, len = this.grid.ds.getCount(); i < len; i++){
65421             this.selectRow(i, true);
65422         }
65423     },
65424
65425     /**
65426      * Returns True if there is a selection.
65427      * @return {Boolean}
65428      */
65429     hasSelection : function(){
65430         return this.selections.length > 0;
65431     },
65432
65433     /**
65434      * Returns True if the specified row is selected.
65435      * @param {Number/Record} record The record or index of the record to check
65436      * @return {Boolean}
65437      */
65438     isSelected : function(index){
65439         var r = typeof index == "number" ? this.grid.ds.getAt(index) : index;
65440         return (r && this.selections.key(r.id) ? true : false);
65441     },
65442
65443     /**
65444      * Returns True if the specified record id is selected.
65445      * @param {String} id The id of record to check
65446      * @return {Boolean}
65447      */
65448     isIdSelected : function(id){
65449         return (this.selections.key(id) ? true : false);
65450     },
65451
65452     // private
65453     handleMouseDown : function(e, t)
65454     {
65455         var view = this.grid.view ? this.grid.view : this.grid;
65456         var rowIndex;
65457         if(this.isLocked() || (rowIndex = view.findRowIndex(t)) === false){
65458             return;
65459         };
65460         if(e.shiftKey && this.last !== false){
65461             var last = this.last;
65462             this.selectRange(last, rowIndex, e.ctrlKey);
65463             this.last = last; // reset the last
65464             view.focusRow(rowIndex);
65465         }else{
65466             var isSelected = this.isSelected(rowIndex);
65467             if(e.button !== 0 && isSelected){
65468                 view.focusRow(rowIndex);
65469             }else if(e.ctrlKey && isSelected){
65470                 this.deselectRow(rowIndex);
65471             }else if(!isSelected){
65472                 this.selectRow(rowIndex, e.button === 0 && (e.ctrlKey || e.shiftKey));
65473                 view.focusRow(rowIndex);
65474             }
65475         }
65476         this.fireEvent("afterselectionchange", this);
65477     },
65478     // private
65479     handleDragableRowClick :  function(grid, rowIndex, e) 
65480     {
65481         if(e.button === 0 && !e.shiftKey && !e.ctrlKey) {
65482             this.selectRow(rowIndex, false);
65483             var view = this.grid.view ? this.grid.view : this.grid;
65484             view.focusRow(rowIndex);
65485              this.fireEvent("afterselectionchange", this);
65486         }
65487     },
65488     
65489     /**
65490      * Selects multiple rows.
65491      * @param {Array} rows Array of the indexes of the row to select
65492      * @param {Boolean} keepExisting (optional) True to keep existing selections
65493      */
65494     selectRows : function(rows, keepExisting){
65495         if(!keepExisting){
65496             this.clearSelections();
65497         }
65498         for(var i = 0, len = rows.length; i < len; i++){
65499             this.selectRow(rows[i], true);
65500         }
65501     },
65502
65503     /**
65504      * Selects a range of rows. All rows in between startRow and endRow are also selected.
65505      * @param {Number} startRow The index of the first row in the range
65506      * @param {Number} endRow The index of the last row in the range
65507      * @param {Boolean} keepExisting (optional) True to retain existing selections
65508      */
65509     selectRange : function(startRow, endRow, keepExisting){
65510         if(this.locked) {
65511             return;
65512         }
65513         if(!keepExisting){
65514             this.clearSelections();
65515         }
65516         if(startRow <= endRow){
65517             for(var i = startRow; i <= endRow; i++){
65518                 this.selectRow(i, true);
65519             }
65520         }else{
65521             for(var i = startRow; i >= endRow; i--){
65522                 this.selectRow(i, true);
65523             }
65524         }
65525     },
65526
65527     /**
65528      * Deselects a range of rows. All rows in between startRow and endRow are also deselected.
65529      * @param {Number} startRow The index of the first row in the range
65530      * @param {Number} endRow The index of the last row in the range
65531      */
65532     deselectRange : function(startRow, endRow, preventViewNotify){
65533         if(this.locked) {
65534             return;
65535         }
65536         for(var i = startRow; i <= endRow; i++){
65537             this.deselectRow(i, preventViewNotify);
65538         }
65539     },
65540
65541     /**
65542      * Selects a row.
65543      * @param {Number} row The index of the row to select
65544      * @param {Boolean} keepExisting (optional) True to keep existing selections
65545      */
65546     selectRow : function(index, keepExisting, preventViewNotify){
65547         if(this.locked || (index < 0 || index >= this.grid.ds.getCount())) {
65548             return;
65549         }
65550         if(this.fireEvent("beforerowselect", this, index, keepExisting) !== false){
65551             if(!keepExisting || this.singleSelect){
65552                 this.clearSelections();
65553             }
65554             var r = this.grid.ds.getAt(index);
65555             this.selections.add(r);
65556             this.last = this.lastActive = index;
65557             if(!preventViewNotify){
65558                 var view = this.grid.view ? this.grid.view : this.grid;
65559                 view.onRowSelect(index);
65560             }
65561             this.fireEvent("rowselect", this, index, r);
65562             this.fireEvent("selectionchange", this);
65563         }
65564     },
65565
65566     /**
65567      * Deselects a row.
65568      * @param {Number} row The index of the row to deselect
65569      */
65570     deselectRow : function(index, preventViewNotify){
65571         if(this.locked) {
65572             return;
65573         }
65574         if(this.last == index){
65575             this.last = false;
65576         }
65577         if(this.lastActive == index){
65578             this.lastActive = false;
65579         }
65580         var r = this.grid.ds.getAt(index);
65581         this.selections.remove(r);
65582         if(!preventViewNotify){
65583             var view = this.grid.view ? this.grid.view : this.grid;
65584             view.onRowDeselect(index);
65585         }
65586         this.fireEvent("rowdeselect", this, index);
65587         this.fireEvent("selectionchange", this);
65588     },
65589
65590     // private
65591     restoreLast : function(){
65592         if(this._last){
65593             this.last = this._last;
65594         }
65595     },
65596
65597     // private
65598     acceptsNav : function(row, col, cm){
65599         return !cm.isHidden(col) && cm.isCellEditable(col, row);
65600     },
65601
65602     // private
65603     onEditorKey : function(field, e){
65604         var k = e.getKey(), newCell, g = this.grid, ed = g.activeEditor;
65605         if(k == e.TAB){
65606             e.stopEvent();
65607             ed.completeEdit();
65608             if(e.shiftKey){
65609                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
65610             }else{
65611                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
65612             }
65613         }else if(k == e.ENTER && !e.ctrlKey){
65614             e.stopEvent();
65615             ed.completeEdit();
65616             if(e.shiftKey){
65617                 newCell = g.walkCells(ed.row-1, ed.col, -1, this.acceptsNav, this);
65618             }else{
65619                 newCell = g.walkCells(ed.row+1, ed.col, 1, this.acceptsNav, this);
65620             }
65621         }else if(k == e.ESC){
65622             ed.cancelEdit();
65623         }
65624         if(newCell){
65625             g.startEditing(newCell[0], newCell[1]);
65626         }
65627     }
65628 });/*
65629  * Based on:
65630  * Ext JS Library 1.1.1
65631  * Copyright(c) 2006-2007, Ext JS, LLC.
65632  *
65633  * Originally Released Under LGPL - original licence link has changed is not relivant.
65634  *
65635  * Fork - LGPL
65636  * <script type="text/javascript">
65637  */
65638 /**
65639  * @class Roo.grid.CellSelectionModel
65640  * @extends Roo.grid.AbstractSelectionModel
65641  * This class provides the basic implementation for cell selection in a grid.
65642  * @constructor
65643  * @param {Object} config The object containing the configuration of this model.
65644  * @cfg {Boolean} enter_is_tab Enter behaves the same as tab. (eg. goes to next cell) default: false
65645  */
65646 Roo.grid.CellSelectionModel = function(config){
65647     Roo.apply(this, config);
65648
65649     this.selection = null;
65650
65651     this.addEvents({
65652         /**
65653              * @event beforerowselect
65654              * Fires before a cell is selected.
65655              * @param {SelectionModel} this
65656              * @param {Number} rowIndex The selected row index
65657              * @param {Number} colIndex The selected cell index
65658              */
65659             "beforecellselect" : true,
65660         /**
65661              * @event cellselect
65662              * Fires when a cell is selected.
65663              * @param {SelectionModel} this
65664              * @param {Number} rowIndex The selected row index
65665              * @param {Number} colIndex The selected cell index
65666              */
65667             "cellselect" : true,
65668         /**
65669              * @event selectionchange
65670              * Fires when the active selection changes.
65671              * @param {SelectionModel} this
65672              * @param {Object} selection null for no selection or an object (o) with two properties
65673                 <ul>
65674                 <li>o.record: the record object for the row the selection is in</li>
65675                 <li>o.cell: An array of [rowIndex, columnIndex]</li>
65676                 </ul>
65677              */
65678             "selectionchange" : true,
65679         /**
65680              * @event tabend
65681              * Fires when the tab (or enter) was pressed on the last editable cell
65682              * You can use this to trigger add new row.
65683              * @param {SelectionModel} this
65684              */
65685             "tabend" : true,
65686          /**
65687              * @event beforeeditnext
65688              * Fires before the next editable sell is made active
65689              * You can use this to skip to another cell or fire the tabend
65690              *    if you set cell to false
65691              * @param {Object} eventdata object : { cell : [ row, col ] } 
65692              */
65693             "beforeeditnext" : true
65694     });
65695     Roo.grid.CellSelectionModel.superclass.constructor.call(this);
65696 };
65697
65698 Roo.extend(Roo.grid.CellSelectionModel, Roo.grid.AbstractSelectionModel,  {
65699     
65700     enter_is_tab: false,
65701
65702     /** @ignore */
65703     initEvents : function(){
65704         this.grid.on("mousedown", this.handleMouseDown, this);
65705         this.grid.getGridEl().on(Roo.isIE ? "keydown" : "keypress", this.handleKeyDown, this);
65706         var view = this.grid.view;
65707         view.on("refresh", this.onViewChange, this);
65708         view.on("rowupdated", this.onRowUpdated, this);
65709         view.on("beforerowremoved", this.clearSelections, this);
65710         view.on("beforerowsinserted", this.clearSelections, this);
65711         if(this.grid.isEditor){
65712             this.grid.on("beforeedit", this.beforeEdit,  this);
65713         }
65714     },
65715
65716         //private
65717     beforeEdit : function(e){
65718         this.select(e.row, e.column, false, true, e.record);
65719     },
65720
65721         //private
65722     onRowUpdated : function(v, index, r){
65723         if(this.selection && this.selection.record == r){
65724             v.onCellSelect(index, this.selection.cell[1]);
65725         }
65726     },
65727
65728         //private
65729     onViewChange : function(){
65730         this.clearSelections(true);
65731     },
65732
65733         /**
65734          * Returns the currently selected cell,.
65735          * @return {Array} The selected cell (row, column) or null if none selected.
65736          */
65737     getSelectedCell : function(){
65738         return this.selection ? this.selection.cell : null;
65739     },
65740
65741     /**
65742      * Clears all selections.
65743      * @param {Boolean} true to prevent the gridview from being notified about the change.
65744      */
65745     clearSelections : function(preventNotify){
65746         var s = this.selection;
65747         if(s){
65748             if(preventNotify !== true){
65749                 this.grid.view.onCellDeselect(s.cell[0], s.cell[1]);
65750             }
65751             this.selection = null;
65752             this.fireEvent("selectionchange", this, null);
65753         }
65754     },
65755
65756     /**
65757      * Returns true if there is a selection.
65758      * @return {Boolean}
65759      */
65760     hasSelection : function(){
65761         return this.selection ? true : false;
65762     },
65763
65764     /** @ignore */
65765     handleMouseDown : function(e, t){
65766         var v = this.grid.getView();
65767         if(this.isLocked()){
65768             return;
65769         };
65770         var row = v.findRowIndex(t);
65771         var cell = v.findCellIndex(t);
65772         if(row !== false && cell !== false){
65773             this.select(row, cell);
65774         }
65775     },
65776
65777     /**
65778      * Selects a cell.
65779      * @param {Number} rowIndex
65780      * @param {Number} collIndex
65781      */
65782     select : function(rowIndex, colIndex, preventViewNotify, preventFocus, /*internal*/ r){
65783         if(this.fireEvent("beforecellselect", this, rowIndex, colIndex) !== false){
65784             this.clearSelections();
65785             r = r || this.grid.dataSource.getAt(rowIndex);
65786             this.selection = {
65787                 record : r,
65788                 cell : [rowIndex, colIndex]
65789             };
65790             if(!preventViewNotify){
65791                 var v = this.grid.getView();
65792                 v.onCellSelect(rowIndex, colIndex);
65793                 if(preventFocus !== true){
65794                     v.focusCell(rowIndex, colIndex);
65795                 }
65796             }
65797             this.fireEvent("cellselect", this, rowIndex, colIndex);
65798             this.fireEvent("selectionchange", this, this.selection);
65799         }
65800     },
65801
65802         //private
65803     isSelectable : function(rowIndex, colIndex, cm){
65804         return !cm.isHidden(colIndex);
65805     },
65806
65807     /** @ignore */
65808     handleKeyDown : function(e){
65809         //Roo.log('Cell Sel Model handleKeyDown');
65810         if(!e.isNavKeyPress()){
65811             return;
65812         }
65813         var g = this.grid, s = this.selection;
65814         if(!s){
65815             e.stopEvent();
65816             var cell = g.walkCells(0, 0, 1, this.isSelectable,  this);
65817             if(cell){
65818                 this.select(cell[0], cell[1]);
65819             }
65820             return;
65821         }
65822         var sm = this;
65823         var walk = function(row, col, step){
65824             return g.walkCells(row, col, step, sm.isSelectable,  sm);
65825         };
65826         var k = e.getKey(), r = s.cell[0], c = s.cell[1];
65827         var newCell;
65828
65829       
65830
65831         switch(k){
65832             case e.TAB:
65833                 // handled by onEditorKey
65834                 if (g.isEditor && g.editing) {
65835                     return;
65836                 }
65837                 if(e.shiftKey) {
65838                     newCell = walk(r, c-1, -1);
65839                 } else {
65840                     newCell = walk(r, c+1, 1);
65841                 }
65842                 break;
65843             
65844             case e.DOWN:
65845                newCell = walk(r+1, c, 1);
65846                 break;
65847             
65848             case e.UP:
65849                 newCell = walk(r-1, c, -1);
65850                 break;
65851             
65852             case e.RIGHT:
65853                 newCell = walk(r, c+1, 1);
65854                 break;
65855             
65856             case e.LEFT:
65857                 newCell = walk(r, c-1, -1);
65858                 break;
65859             
65860             case e.ENTER:
65861                 
65862                 if(g.isEditor && !g.editing){
65863                    g.startEditing(r, c);
65864                    e.stopEvent();
65865                    return;
65866                 }
65867                 
65868                 
65869              break;
65870         };
65871         if(newCell){
65872             this.select(newCell[0], newCell[1]);
65873             e.stopEvent();
65874             
65875         }
65876     },
65877
65878     acceptsNav : function(row, col, cm){
65879         return !cm.isHidden(col) && cm.isCellEditable(col, row);
65880     },
65881     /**
65882      * Selects a cell.
65883      * @param {Number} field (not used) - as it's normally used as a listener
65884      * @param {Number} e - event - fake it by using
65885      *
65886      * var e = Roo.EventObjectImpl.prototype;
65887      * e.keyCode = e.TAB
65888      *
65889      * 
65890      */
65891     onEditorKey : function(field, e){
65892         
65893         var k = e.getKey(),
65894             newCell,
65895             g = this.grid,
65896             ed = g.activeEditor,
65897             forward = false;
65898         ///Roo.log('onEditorKey' + k);
65899         
65900         
65901         if (this.enter_is_tab && k == e.ENTER) {
65902             k = e.TAB;
65903         }
65904         
65905         if(k == e.TAB){
65906             if(e.shiftKey){
65907                 newCell = g.walkCells(ed.row, ed.col-1, -1, this.acceptsNav, this);
65908             }else{
65909                 newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
65910                 forward = true;
65911             }
65912             
65913             e.stopEvent();
65914             
65915         } else if(k == e.ENTER &&  !e.ctrlKey){
65916             ed.completeEdit();
65917             e.stopEvent();
65918             newCell = g.walkCells(ed.row, ed.col+1, 1, this.acceptsNav, this);
65919         
65920                 } else if(k == e.ESC){
65921             ed.cancelEdit();
65922         }
65923                 
65924         if (newCell) {
65925             var ecall = { cell : newCell, forward : forward };
65926             this.fireEvent('beforeeditnext', ecall );
65927             newCell = ecall.cell;
65928                         forward = ecall.forward;
65929         }
65930                 
65931         if(newCell){
65932             //Roo.log('next cell after edit');
65933             g.startEditing.defer(100, g, [newCell[0], newCell[1]]);
65934         } else if (forward) {
65935             // tabbed past last
65936             this.fireEvent.defer(100, this, ['tabend',this]);
65937         }
65938     }
65939 });/*
65940  * Based on:
65941  * Ext JS Library 1.1.1
65942  * Copyright(c) 2006-2007, Ext JS, LLC.
65943  *
65944  * Originally Released Under LGPL - original licence link has changed is not relivant.
65945  *
65946  * Fork - LGPL
65947  * <script type="text/javascript">
65948  */
65949  
65950 /**
65951  * @class Roo.grid.EditorGrid
65952  * @extends Roo.grid.Grid
65953  * Class for creating and editable grid.
65954  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered - 
65955  * The container MUST have some type of size defined for the grid to fill. The container will be 
65956  * automatically set to position relative if it isn't already.
65957  * @param {Object} dataSource The data model to bind to
65958  * @param {Object} colModel The column model with info about this grid's columns
65959  */
65960 Roo.grid.EditorGrid = function(container, config){
65961     Roo.grid.EditorGrid.superclass.constructor.call(this, container, config);
65962     this.getGridEl().addClass("xedit-grid");
65963
65964     if(!this.selModel){
65965         this.selModel = new Roo.grid.CellSelectionModel();
65966     }
65967
65968     this.activeEditor = null;
65969
65970         this.addEvents({
65971             /**
65972              * @event beforeedit
65973              * Fires before cell editing is triggered. The edit event object has the following properties <br />
65974              * <ul style="padding:5px;padding-left:16px;">
65975              * <li>grid - This grid</li>
65976              * <li>record - The record being edited</li>
65977              * <li>field - The field name being edited</li>
65978              * <li>value - The value for the field being edited.</li>
65979              * <li>row - The grid row index</li>
65980              * <li>column - The grid column index</li>
65981              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
65982              * </ul>
65983              * @param {Object} e An edit event (see above for description)
65984              */
65985             "beforeedit" : true,
65986             /**
65987              * @event afteredit
65988              * Fires after a cell is edited. <br />
65989              * <ul style="padding:5px;padding-left:16px;">
65990              * <li>grid - This grid</li>
65991              * <li>record - The record being edited</li>
65992              * <li>field - The field name being edited</li>
65993              * <li>value - The value being set</li>
65994              * <li>originalValue - The original value for the field, before the edit.</li>
65995              * <li>row - The grid row index</li>
65996              * <li>column - The grid column index</li>
65997              * </ul>
65998              * @param {Object} e An edit event (see above for description)
65999              */
66000             "afteredit" : true,
66001             /**
66002              * @event validateedit
66003              * Fires after a cell is edited, but before the value is set in the record. 
66004          * You can use this to modify the value being set in the field, Return false
66005              * to cancel the change. The edit event object has the following properties <br />
66006              * <ul style="padding:5px;padding-left:16px;">
66007          * <li>editor - This editor</li>
66008              * <li>grid - This grid</li>
66009              * <li>record - The record being edited</li>
66010              * <li>field - The field name being edited</li>
66011              * <li>value - The value being set</li>
66012              * <li>originalValue - The original value for the field, before the edit.</li>
66013              * <li>row - The grid row index</li>
66014              * <li>column - The grid column index</li>
66015              * <li>cancel - Set this to true to cancel the edit or return false from your handler.</li>
66016              * </ul>
66017              * @param {Object} e An edit event (see above for description)
66018              */
66019             "validateedit" : true
66020         });
66021     this.on("bodyscroll", this.stopEditing,  this);
66022     this.on(this.clicksToEdit == 1 ? "cellclick" : "celldblclick", this.onCellDblClick,  this);
66023 };
66024
66025 Roo.extend(Roo.grid.EditorGrid, Roo.grid.Grid, {
66026     /**
66027      * @cfg {Number} clicksToEdit
66028      * The number of clicks on a cell required to display the cell's editor (defaults to 2)
66029      */
66030     clicksToEdit: 2,
66031
66032     // private
66033     isEditor : true,
66034     // private
66035     trackMouseOver: false, // causes very odd FF errors
66036
66037     onCellDblClick : function(g, row, col){
66038         this.startEditing(row, col);
66039     },
66040
66041     onEditComplete : function(ed, value, startValue){
66042         this.editing = false;
66043         this.activeEditor = null;
66044         ed.un("specialkey", this.selModel.onEditorKey, this.selModel);
66045         var r = ed.record;
66046         var field = this.colModel.getDataIndex(ed.col);
66047         var e = {
66048             grid: this,
66049             record: r,
66050             field: field,
66051             originalValue: startValue,
66052             value: value,
66053             row: ed.row,
66054             column: ed.col,
66055             cancel:false,
66056             editor: ed
66057         };
66058         var cell = Roo.get(this.view.getCell(ed.row,ed.col));
66059         cell.show();
66060           
66061         if(String(value) !== String(startValue)){
66062             
66063             if(this.fireEvent("validateedit", e) !== false && !e.cancel){
66064                 r.set(field, e.value);
66065                 // if we are dealing with a combo box..
66066                 // then we also set the 'name' colum to be the displayField
66067                 if (ed.field.displayField && ed.field.name) {
66068                     r.set(ed.field.name, ed.field.el.dom.value);
66069                 }
66070                 
66071                 delete e.cancel; //?? why!!!
66072                 this.fireEvent("afteredit", e);
66073             }
66074         } else {
66075             this.fireEvent("afteredit", e); // always fire it!
66076         }
66077         this.view.focusCell(ed.row, ed.col);
66078     },
66079
66080     /**
66081      * Starts editing the specified for the specified row/column
66082      * @param {Number} rowIndex
66083      * @param {Number} colIndex
66084      */
66085     startEditing : function(row, col){
66086         this.stopEditing();
66087         if(this.colModel.isCellEditable(col, row)){
66088             this.view.ensureVisible(row, col, true);
66089           
66090             var r = this.dataSource.getAt(row);
66091             var field = this.colModel.getDataIndex(col);
66092             var cell = Roo.get(this.view.getCell(row,col));
66093             var e = {
66094                 grid: this,
66095                 record: r,
66096                 field: field,
66097                 value: r.data[field],
66098                 row: row,
66099                 column: col,
66100                 cancel:false 
66101             };
66102             if(this.fireEvent("beforeedit", e) !== false && !e.cancel){
66103                 this.editing = true;
66104                 var ed = this.colModel.getCellEditor(col, row);
66105                 
66106                 if (!ed) {
66107                     return;
66108                 }
66109                 if(!ed.rendered){
66110                     ed.render(ed.parentEl || document.body);
66111                 }
66112                 ed.field.reset();
66113                
66114                 cell.hide();
66115                 
66116                 (function(){ // complex but required for focus issues in safari, ie and opera
66117                     ed.row = row;
66118                     ed.col = col;
66119                     ed.record = r;
66120                     ed.on("complete",   this.onEditComplete,        this,       {single: true});
66121                     ed.on("specialkey", this.selModel.onEditorKey,  this.selModel);
66122                     this.activeEditor = ed;
66123                     var v = r.data[field];
66124                     ed.startEdit(this.view.getCell(row, col), v);
66125                     // combo's with 'displayField and name set
66126                     if (ed.field.displayField && ed.field.name) {
66127                         ed.field.el.dom.value = r.data[ed.field.name];
66128                     }
66129                     
66130                     
66131                 }).defer(50, this);
66132             }
66133         }
66134     },
66135         
66136     /**
66137      * Stops any active editing
66138      */
66139     stopEditing : function(){
66140         if(this.activeEditor){
66141             this.activeEditor.completeEdit();
66142         }
66143         this.activeEditor = null;
66144     },
66145         
66146          /**
66147      * Called to get grid's drag proxy text, by default returns this.ddText.
66148      * @return {String}
66149      */
66150     getDragDropText : function(){
66151         var count = this.selModel.getSelectedCell() ? 1 : 0;
66152         return String.format(this.ddText, count, count == 1 ? '' : 's');
66153     }
66154         
66155 });/*
66156  * Based on:
66157  * Ext JS Library 1.1.1
66158  * Copyright(c) 2006-2007, Ext JS, LLC.
66159  *
66160  * Originally Released Under LGPL - original licence link has changed is not relivant.
66161  *
66162  * Fork - LGPL
66163  * <script type="text/javascript">
66164  */
66165
66166 // private - not really -- you end up using it !
66167 // This is a support class used internally by the Grid components
66168
66169 /**
66170  * @class Roo.grid.GridEditor
66171  * @extends Roo.Editor
66172  * Class for creating and editable grid elements.
66173  * @param {Object} config any settings (must include field)
66174  */
66175 Roo.grid.GridEditor = function(field, config){
66176     if (!config && field.field) {
66177         config = field;
66178         field = Roo.factory(config.field, Roo.form);
66179     }
66180     Roo.grid.GridEditor.superclass.constructor.call(this, field, config);
66181     field.monitorTab = false;
66182 };
66183
66184 Roo.extend(Roo.grid.GridEditor, Roo.Editor, {
66185     
66186     /**
66187      * @cfg {Roo.form.Field} field Field to wrap (or xtyped)
66188      */
66189     
66190     alignment: "tl-tl",
66191     autoSize: "width",
66192     hideEl : false,
66193     cls: "x-small-editor x-grid-editor",
66194     shim:false,
66195     shadow:"frame"
66196 });/*
66197  * Based on:
66198  * Ext JS Library 1.1.1
66199  * Copyright(c) 2006-2007, Ext JS, LLC.
66200  *
66201  * Originally Released Under LGPL - original licence link has changed is not relivant.
66202  *
66203  * Fork - LGPL
66204  * <script type="text/javascript">
66205  */
66206   
66207
66208   
66209 Roo.grid.PropertyRecord = Roo.data.Record.create([
66210     {name:'name',type:'string'},  'value'
66211 ]);
66212
66213
66214 Roo.grid.PropertyStore = function(grid, source){
66215     this.grid = grid;
66216     this.store = new Roo.data.Store({
66217         recordType : Roo.grid.PropertyRecord
66218     });
66219     this.store.on('update', this.onUpdate,  this);
66220     if(source){
66221         this.setSource(source);
66222     }
66223     Roo.grid.PropertyStore.superclass.constructor.call(this);
66224 };
66225
66226
66227
66228 Roo.extend(Roo.grid.PropertyStore, Roo.util.Observable, {
66229     setSource : function(o){
66230         this.source = o;
66231         this.store.removeAll();
66232         var data = [];
66233         for(var k in o){
66234             if(this.isEditableValue(o[k])){
66235                 data.push(new Roo.grid.PropertyRecord({name: k, value: o[k]}, k));
66236             }
66237         }
66238         this.store.loadRecords({records: data}, {}, true);
66239     },
66240
66241     onUpdate : function(ds, record, type){
66242         if(type == Roo.data.Record.EDIT){
66243             var v = record.data['value'];
66244             var oldValue = record.modified['value'];
66245             if(this.grid.fireEvent('beforepropertychange', this.source, record.id, v, oldValue) !== false){
66246                 this.source[record.id] = v;
66247                 record.commit();
66248                 this.grid.fireEvent('propertychange', this.source, record.id, v, oldValue);
66249             }else{
66250                 record.reject();
66251             }
66252         }
66253     },
66254
66255     getProperty : function(row){
66256        return this.store.getAt(row);
66257     },
66258
66259     isEditableValue: function(val){
66260         if(val && val instanceof Date){
66261             return true;
66262         }else if(typeof val == 'object' || typeof val == 'function'){
66263             return false;
66264         }
66265         return true;
66266     },
66267
66268     setValue : function(prop, value){
66269         this.source[prop] = value;
66270         this.store.getById(prop).set('value', value);
66271     },
66272
66273     getSource : function(){
66274         return this.source;
66275     }
66276 });
66277
66278 Roo.grid.PropertyColumnModel = function(grid, store){
66279     this.grid = grid;
66280     var g = Roo.grid;
66281     g.PropertyColumnModel.superclass.constructor.call(this, [
66282         {header: this.nameText, sortable: true, dataIndex:'name', id: 'name'},
66283         {header: this.valueText, resizable:false, dataIndex: 'value', id: 'value'}
66284     ]);
66285     this.store = store;
66286     this.bselect = Roo.DomHelper.append(document.body, {
66287         tag: 'select', style:'display:none', cls: 'x-grid-editor', children: [
66288             {tag: 'option', value: 'true', html: 'true'},
66289             {tag: 'option', value: 'false', html: 'false'}
66290         ]
66291     });
66292     Roo.id(this.bselect);
66293     var f = Roo.form;
66294     this.editors = {
66295         'date' : new g.GridEditor(new f.DateField({selectOnFocus:true})),
66296         'string' : new g.GridEditor(new f.TextField({selectOnFocus:true})),
66297         'number' : new g.GridEditor(new f.NumberField({selectOnFocus:true, style:'text-align:left;'})),
66298         'int' : new g.GridEditor(new f.NumberField({selectOnFocus:true, allowDecimals:false, style:'text-align:left;'})),
66299         'boolean' : new g.GridEditor(new f.Field({el:this.bselect,selectOnFocus:true}))
66300     };
66301     this.renderCellDelegate = this.renderCell.createDelegate(this);
66302     this.renderPropDelegate = this.renderProp.createDelegate(this);
66303 };
66304
66305 Roo.extend(Roo.grid.PropertyColumnModel, Roo.grid.ColumnModel, {
66306     
66307     
66308     nameText : 'Name',
66309     valueText : 'Value',
66310     
66311     dateFormat : 'm/j/Y',
66312     
66313     
66314     renderDate : function(dateVal){
66315         return dateVal.dateFormat(this.dateFormat);
66316     },
66317
66318     renderBool : function(bVal){
66319         return bVal ? 'true' : 'false';
66320     },
66321
66322     isCellEditable : function(colIndex, rowIndex){
66323         return colIndex == 1;
66324     },
66325
66326     getRenderer : function(col){
66327         return col == 1 ?
66328             this.renderCellDelegate : this.renderPropDelegate;
66329     },
66330
66331     renderProp : function(v){
66332         return this.getPropertyName(v);
66333     },
66334
66335     renderCell : function(val){
66336         var rv = val;
66337         if(val instanceof Date){
66338             rv = this.renderDate(val);
66339         }else if(typeof val == 'boolean'){
66340             rv = this.renderBool(val);
66341         }
66342         return Roo.util.Format.htmlEncode(rv);
66343     },
66344
66345     getPropertyName : function(name){
66346         var pn = this.grid.propertyNames;
66347         return pn && pn[name] ? pn[name] : name;
66348     },
66349
66350     getCellEditor : function(colIndex, rowIndex){
66351         var p = this.store.getProperty(rowIndex);
66352         var n = p.data['name'], val = p.data['value'];
66353         
66354         if(typeof(this.grid.customEditors[n]) == 'string'){
66355             return this.editors[this.grid.customEditors[n]];
66356         }
66357         if(typeof(this.grid.customEditors[n]) != 'undefined'){
66358             return this.grid.customEditors[n];
66359         }
66360         if(val instanceof Date){
66361             return this.editors['date'];
66362         }else if(typeof val == 'number'){
66363             return this.editors['number'];
66364         }else if(typeof val == 'boolean'){
66365             return this.editors['boolean'];
66366         }else{
66367             return this.editors['string'];
66368         }
66369     }
66370 });
66371
66372 /**
66373  * @class Roo.grid.PropertyGrid
66374  * @extends Roo.grid.EditorGrid
66375  * This class represents the  interface of a component based property grid control.
66376  * <br><br>Usage:<pre><code>
66377  var grid = new Roo.grid.PropertyGrid("my-container-id", {
66378       
66379  });
66380  // set any options
66381  grid.render();
66382  * </code></pre>
66383   
66384  * @constructor
66385  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
66386  * The container MUST have some type of size defined for the grid to fill. The container will be
66387  * automatically set to position relative if it isn't already.
66388  * @param {Object} config A config object that sets properties on this grid.
66389  */
66390 Roo.grid.PropertyGrid = function(container, config){
66391     config = config || {};
66392     var store = new Roo.grid.PropertyStore(this);
66393     this.store = store;
66394     var cm = new Roo.grid.PropertyColumnModel(this, store);
66395     store.store.sort('name', 'ASC');
66396     Roo.grid.PropertyGrid.superclass.constructor.call(this, container, Roo.apply({
66397         ds: store.store,
66398         cm: cm,
66399         enableColLock:false,
66400         enableColumnMove:false,
66401         stripeRows:false,
66402         trackMouseOver: false,
66403         clicksToEdit:1
66404     }, config));
66405     this.getGridEl().addClass('x-props-grid');
66406     this.lastEditRow = null;
66407     this.on('columnresize', this.onColumnResize, this);
66408     this.addEvents({
66409          /**
66410              * @event beforepropertychange
66411              * Fires before a property changes (return false to stop?)
66412              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
66413              * @param {String} id Record Id
66414              * @param {String} newval New Value
66415          * @param {String} oldval Old Value
66416              */
66417         "beforepropertychange": true,
66418         /**
66419              * @event propertychange
66420              * Fires after a property changes
66421              * @param {Roo.grid.PropertyGrid} grid property grid? (check could be store)
66422              * @param {String} id Record Id
66423              * @param {String} newval New Value
66424          * @param {String} oldval Old Value
66425              */
66426         "propertychange": true
66427     });
66428     this.customEditors = this.customEditors || {};
66429 };
66430 Roo.extend(Roo.grid.PropertyGrid, Roo.grid.EditorGrid, {
66431     
66432      /**
66433      * @cfg {Object} customEditors map of colnames=> custom editors.
66434      * the custom editor can be one of the standard ones (date|string|number|int|boolean), or a
66435      * grid editor eg. Roo.grid.GridEditor(new Roo.form.TextArea({selectOnFocus:true})),
66436      * false disables editing of the field.
66437          */
66438     
66439       /**
66440      * @cfg {Object} propertyNames map of property Names to their displayed value
66441          */
66442     
66443     render : function(){
66444         Roo.grid.PropertyGrid.superclass.render.call(this);
66445         this.autoSize.defer(100, this);
66446     },
66447
66448     autoSize : function(){
66449         Roo.grid.PropertyGrid.superclass.autoSize.call(this);
66450         if(this.view){
66451             this.view.fitColumns();
66452         }
66453     },
66454
66455     onColumnResize : function(){
66456         this.colModel.setColumnWidth(1, this.container.getWidth(true)-this.colModel.getColumnWidth(0));
66457         this.autoSize();
66458     },
66459     /**
66460      * Sets the data for the Grid
66461      * accepts a Key => Value object of all the elements avaiable.
66462      * @param {Object} data  to appear in grid.
66463      */
66464     setSource : function(source){
66465         this.store.setSource(source);
66466         //this.autoSize();
66467     },
66468     /**
66469      * Gets all the data from the grid.
66470      * @return {Object} data  data stored in grid
66471      */
66472     getSource : function(){
66473         return this.store.getSource();
66474     }
66475 });/*
66476   
66477  * Licence LGPL
66478  
66479  */
66480  
66481 /**
66482  * @class Roo.grid.Calendar
66483  * @extends Roo.grid.Grid
66484  * This class extends the Grid to provide a calendar widget
66485  * <br><br>Usage:<pre><code>
66486  var grid = new Roo.grid.Calendar("my-container-id", {
66487      ds: myDataStore,
66488      cm: myColModel,
66489      selModel: mySelectionModel,
66490      autoSizeColumns: true,
66491      monitorWindowResize: false,
66492      trackMouseOver: true
66493      eventstore : real data store..
66494  });
66495  // set any options
66496  grid.render();
66497   
66498   * @constructor
66499  * @param {String/HTMLElement/Roo.Element} container The element into which this grid will be rendered -
66500  * The container MUST have some type of size defined for the grid to fill. The container will be
66501  * automatically set to position relative if it isn't already.
66502  * @param {Object} config A config object that sets properties on this grid.
66503  */
66504 Roo.grid.Calendar = function(container, config){
66505         // initialize the container
66506         this.container = Roo.get(container);
66507         this.container.update("");
66508         this.container.setStyle("overflow", "hidden");
66509     this.container.addClass('x-grid-container');
66510
66511     this.id = this.container.id;
66512
66513     Roo.apply(this, config);
66514     // check and correct shorthanded configs
66515     
66516     var rows = [];
66517     var d =1;
66518     for (var r = 0;r < 6;r++) {
66519         
66520         rows[r]=[];
66521         for (var c =0;c < 7;c++) {
66522             rows[r][c]= '';
66523         }
66524     }
66525     if (this.eventStore) {
66526         this.eventStore= Roo.factory(this.eventStore, Roo.data);
66527         this.eventStore.on('load',this.onLoad, this);
66528         this.eventStore.on('beforeload',this.clearEvents, this);
66529          
66530     }
66531     
66532     this.dataSource = new Roo.data.Store({
66533             proxy: new Roo.data.MemoryProxy(rows),
66534             reader: new Roo.data.ArrayReader({}, [
66535                    'weekday0', 'weekday1', 'weekday2', 'weekday3', 'weekday4', 'weekday5', 'weekday6' ])
66536     });
66537
66538     this.dataSource.load();
66539     this.ds = this.dataSource;
66540     this.ds.xmodule = this.xmodule || false;
66541     
66542     
66543     var cellRender = function(v,x,r)
66544     {
66545         return String.format(
66546             '<div class="fc-day  fc-widget-content"><div>' +
66547                 '<div class="fc-event-container"></div>' +
66548                 '<div class="fc-day-number">{0}</div>'+
66549                 
66550                 '<div class="fc-day-content"><div style="position:relative"></div></div>' +
66551             '</div></div>', v);
66552     
66553     }
66554     
66555     
66556     this.colModel = new Roo.grid.ColumnModel( [
66557         {
66558             xtype: 'ColumnModel',
66559             xns: Roo.grid,
66560             dataIndex : 'weekday0',
66561             header : 'Sunday',
66562             renderer : cellRender
66563         },
66564         {
66565             xtype: 'ColumnModel',
66566             xns: Roo.grid,
66567             dataIndex : 'weekday1',
66568             header : 'Monday',
66569             renderer : cellRender
66570         },
66571         {
66572             xtype: 'ColumnModel',
66573             xns: Roo.grid,
66574             dataIndex : 'weekday2',
66575             header : 'Tuesday',
66576             renderer : cellRender
66577         },
66578         {
66579             xtype: 'ColumnModel',
66580             xns: Roo.grid,
66581             dataIndex : 'weekday3',
66582             header : 'Wednesday',
66583             renderer : cellRender
66584         },
66585         {
66586             xtype: 'ColumnModel',
66587             xns: Roo.grid,
66588             dataIndex : 'weekday4',
66589             header : 'Thursday',
66590             renderer : cellRender
66591         },
66592         {
66593             xtype: 'ColumnModel',
66594             xns: Roo.grid,
66595             dataIndex : 'weekday5',
66596             header : 'Friday',
66597             renderer : cellRender
66598         },
66599         {
66600             xtype: 'ColumnModel',
66601             xns: Roo.grid,
66602             dataIndex : 'weekday6',
66603             header : 'Saturday',
66604             renderer : cellRender
66605         }
66606     ]);
66607     this.cm = this.colModel;
66608     this.cm.xmodule = this.xmodule || false;
66609  
66610         
66611           
66612     //this.selModel = new Roo.grid.CellSelectionModel();
66613     //this.sm = this.selModel;
66614     //this.selModel.init(this);
66615     
66616     
66617     if(this.width){
66618         this.container.setWidth(this.width);
66619     }
66620
66621     if(this.height){
66622         this.container.setHeight(this.height);
66623     }
66624     /** @private */
66625         this.addEvents({
66626         // raw events
66627         /**
66628          * @event click
66629          * The raw click event for the entire grid.
66630          * @param {Roo.EventObject} e
66631          */
66632         "click" : true,
66633         /**
66634          * @event dblclick
66635          * The raw dblclick event for the entire grid.
66636          * @param {Roo.EventObject} e
66637          */
66638         "dblclick" : true,
66639         /**
66640          * @event contextmenu
66641          * The raw contextmenu event for the entire grid.
66642          * @param {Roo.EventObject} e
66643          */
66644         "contextmenu" : true,
66645         /**
66646          * @event mousedown
66647          * The raw mousedown event for the entire grid.
66648          * @param {Roo.EventObject} e
66649          */
66650         "mousedown" : true,
66651         /**
66652          * @event mouseup
66653          * The raw mouseup event for the entire grid.
66654          * @param {Roo.EventObject} e
66655          */
66656         "mouseup" : true,
66657         /**
66658          * @event mouseover
66659          * The raw mouseover event for the entire grid.
66660          * @param {Roo.EventObject} e
66661          */
66662         "mouseover" : true,
66663         /**
66664          * @event mouseout
66665          * The raw mouseout event for the entire grid.
66666          * @param {Roo.EventObject} e
66667          */
66668         "mouseout" : true,
66669         /**
66670          * @event keypress
66671          * The raw keypress event for the entire grid.
66672          * @param {Roo.EventObject} e
66673          */
66674         "keypress" : true,
66675         /**
66676          * @event keydown
66677          * The raw keydown event for the entire grid.
66678          * @param {Roo.EventObject} e
66679          */
66680         "keydown" : true,
66681
66682         // custom events
66683
66684         /**
66685          * @event cellclick
66686          * Fires when a cell is clicked
66687          * @param {Grid} this
66688          * @param {Number} rowIndex
66689          * @param {Number} columnIndex
66690          * @param {Roo.EventObject} e
66691          */
66692         "cellclick" : true,
66693         /**
66694          * @event celldblclick
66695          * Fires when a cell is double clicked
66696          * @param {Grid} this
66697          * @param {Number} rowIndex
66698          * @param {Number} columnIndex
66699          * @param {Roo.EventObject} e
66700          */
66701         "celldblclick" : true,
66702         /**
66703          * @event rowclick
66704          * Fires when a row is clicked
66705          * @param {Grid} this
66706          * @param {Number} rowIndex
66707          * @param {Roo.EventObject} e
66708          */
66709         "rowclick" : true,
66710         /**
66711          * @event rowdblclick
66712          * Fires when a row is double clicked
66713          * @param {Grid} this
66714          * @param {Number} rowIndex
66715          * @param {Roo.EventObject} e
66716          */
66717         "rowdblclick" : true,
66718         /**
66719          * @event headerclick
66720          * Fires when a header is clicked
66721          * @param {Grid} this
66722          * @param {Number} columnIndex
66723          * @param {Roo.EventObject} e
66724          */
66725         "headerclick" : true,
66726         /**
66727          * @event headerdblclick
66728          * Fires when a header cell is double clicked
66729          * @param {Grid} this
66730          * @param {Number} columnIndex
66731          * @param {Roo.EventObject} e
66732          */
66733         "headerdblclick" : true,
66734         /**
66735          * @event rowcontextmenu
66736          * Fires when a row is right clicked
66737          * @param {Grid} this
66738          * @param {Number} rowIndex
66739          * @param {Roo.EventObject} e
66740          */
66741         "rowcontextmenu" : true,
66742         /**
66743          * @event cellcontextmenu
66744          * Fires when a cell is right clicked
66745          * @param {Grid} this
66746          * @param {Number} rowIndex
66747          * @param {Number} cellIndex
66748          * @param {Roo.EventObject} e
66749          */
66750          "cellcontextmenu" : true,
66751         /**
66752          * @event headercontextmenu
66753          * Fires when a header is right clicked
66754          * @param {Grid} this
66755          * @param {Number} columnIndex
66756          * @param {Roo.EventObject} e
66757          */
66758         "headercontextmenu" : true,
66759         /**
66760          * @event bodyscroll
66761          * Fires when the body element is scrolled
66762          * @param {Number} scrollLeft
66763          * @param {Number} scrollTop
66764          */
66765         "bodyscroll" : true,
66766         /**
66767          * @event columnresize
66768          * Fires when the user resizes a column
66769          * @param {Number} columnIndex
66770          * @param {Number} newSize
66771          */
66772         "columnresize" : true,
66773         /**
66774          * @event columnmove
66775          * Fires when the user moves a column
66776          * @param {Number} oldIndex
66777          * @param {Number} newIndex
66778          */
66779         "columnmove" : true,
66780         /**
66781          * @event startdrag
66782          * Fires when row(s) start being dragged
66783          * @param {Grid} this
66784          * @param {Roo.GridDD} dd The drag drop object
66785          * @param {event} e The raw browser event
66786          */
66787         "startdrag" : true,
66788         /**
66789          * @event enddrag
66790          * Fires when a drag operation is complete
66791          * @param {Grid} this
66792          * @param {Roo.GridDD} dd The drag drop object
66793          * @param {event} e The raw browser event
66794          */
66795         "enddrag" : true,
66796         /**
66797          * @event dragdrop
66798          * Fires when dragged row(s) are dropped on a valid DD target
66799          * @param {Grid} this
66800          * @param {Roo.GridDD} dd The drag drop object
66801          * @param {String} targetId The target drag drop object
66802          * @param {event} e The raw browser event
66803          */
66804         "dragdrop" : true,
66805         /**
66806          * @event dragover
66807          * Fires while row(s) are being dragged. "targetId" is the id of the Yahoo.util.DD object the selected rows are being dragged over.
66808          * @param {Grid} this
66809          * @param {Roo.GridDD} dd The drag drop object
66810          * @param {String} targetId The target drag drop object
66811          * @param {event} e The raw browser event
66812          */
66813         "dragover" : true,
66814         /**
66815          * @event dragenter
66816          *  Fires when the dragged row(s) first cross another DD target while being dragged
66817          * @param {Grid} this
66818          * @param {Roo.GridDD} dd The drag drop object
66819          * @param {String} targetId The target drag drop object
66820          * @param {event} e The raw browser event
66821          */
66822         "dragenter" : true,
66823         /**
66824          * @event dragout
66825          * Fires when the dragged row(s) leave another DD target while being dragged
66826          * @param {Grid} this
66827          * @param {Roo.GridDD} dd The drag drop object
66828          * @param {String} targetId The target drag drop object
66829          * @param {event} e The raw browser event
66830          */
66831         "dragout" : true,
66832         /**
66833          * @event rowclass
66834          * Fires when a row is rendered, so you can change add a style to it.
66835          * @param {GridView} gridview   The grid view
66836          * @param {Object} rowcfg   contains record  rowIndex and rowClass - set rowClass to add a style.
66837          */
66838         'rowclass' : true,
66839
66840         /**
66841          * @event render
66842          * Fires when the grid is rendered
66843          * @param {Grid} grid
66844          */
66845         'render' : true,
66846             /**
66847              * @event select
66848              * Fires when a date is selected
66849              * @param {DatePicker} this
66850              * @param {Date} date The selected date
66851              */
66852         'select': true,
66853         /**
66854              * @event monthchange
66855              * Fires when the displayed month changes 
66856              * @param {DatePicker} this
66857              * @param {Date} date The selected month
66858              */
66859         'monthchange': true,
66860         /**
66861              * @event evententer
66862              * Fires when mouse over an event
66863              * @param {Calendar} this
66864              * @param {event} Event
66865              */
66866         'evententer': true,
66867         /**
66868              * @event eventleave
66869              * Fires when the mouse leaves an
66870              * @param {Calendar} this
66871              * @param {event}
66872              */
66873         'eventleave': true,
66874         /**
66875              * @event eventclick
66876              * Fires when the mouse click an
66877              * @param {Calendar} this
66878              * @param {event}
66879              */
66880         'eventclick': true,
66881         /**
66882              * @event eventrender
66883              * Fires before each cell is rendered, so you can modify the contents, like cls / title / qtip
66884              * @param {Calendar} this
66885              * @param {data} data to be modified
66886              */
66887         'eventrender': true
66888         
66889     });
66890
66891     Roo.grid.Grid.superclass.constructor.call(this);
66892     this.on('render', function() {
66893         this.view.el.addClass('x-grid-cal'); 
66894         
66895         (function() { this.setDate(new Date()); }).defer(100,this); //default today..
66896
66897     },this);
66898     
66899     if (!Roo.grid.Calendar.style) {
66900         Roo.grid.Calendar.style = Roo.util.CSS.createStyleSheet({
66901             
66902             
66903             '.x-grid-cal .x-grid-col' :  {
66904                 height: 'auto !important',
66905                 'vertical-align': 'top'
66906             },
66907             '.x-grid-cal  .fc-event-hori' : {
66908                 height: '14px'
66909             }
66910              
66911             
66912         }, Roo.id());
66913     }
66914
66915     
66916     
66917 };
66918 Roo.extend(Roo.grid.Calendar, Roo.grid.Grid, {
66919     /**
66920      * @cfg {Store} eventStore The store that loads events.
66921      */
66922     eventStore : 25,
66923
66924      
66925     activeDate : false,
66926     startDay : 0,
66927     autoWidth : true,
66928     monitorWindowResize : false,
66929
66930     
66931     resizeColumns : function() {
66932         var col = (this.view.el.getWidth() / 7) - 3;
66933         // loop through cols, and setWidth
66934         for(var i =0 ; i < 7 ; i++){
66935             this.cm.setColumnWidth(i, col);
66936         }
66937     },
66938      setDate :function(date) {
66939         
66940         Roo.log('setDate?');
66941         
66942         this.resizeColumns();
66943         var vd = this.activeDate;
66944         this.activeDate = date;
66945 //        if(vd && this.el){
66946 //            var t = date.getTime();
66947 //            if(vd.getMonth() == date.getMonth() && vd.getFullYear() == date.getFullYear()){
66948 //                Roo.log('using add remove');
66949 //                
66950 //                this.fireEvent('monthchange', this, date);
66951 //                
66952 //                this.cells.removeClass("fc-state-highlight");
66953 //                this.cells.each(function(c){
66954 //                   if(c.dateValue == t){
66955 //                       c.addClass("fc-state-highlight");
66956 //                       setTimeout(function(){
66957 //                            try{c.dom.firstChild.focus();}catch(e){}
66958 //                       }, 50);
66959 //                       return false;
66960 //                   }
66961 //                   return true;
66962 //                });
66963 //                return;
66964 //            }
66965 //        }
66966         
66967         var days = date.getDaysInMonth();
66968         
66969         var firstOfMonth = date.getFirstDateOfMonth();
66970         var startingPos = firstOfMonth.getDay()-this.startDay;
66971         
66972         if(startingPos < this.startDay){
66973             startingPos += 7;
66974         }
66975         
66976         var pm = date.add(Date.MONTH, -1);
66977         var prevStart = pm.getDaysInMonth()-startingPos;
66978 //        
66979         
66980         
66981         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
66982         
66983         this.textNodes = this.view.el.query('.x-grid-row .x-grid-col .x-grid-cell-text');
66984         //this.cells.addClassOnOver('fc-state-hover');
66985         
66986         var cells = this.cells.elements;
66987         var textEls = this.textNodes;
66988         
66989         //Roo.each(cells, function(cell){
66990         //    cell.removeClass([ 'fc-past', 'fc-other-month', 'fc-future', 'fc-state-highlight', 'fc-state-disabled']);
66991         //});
66992         
66993         days += startingPos;
66994
66995         // convert everything to numbers so it's fast
66996         var day = 86400000;
66997         var d = (new Date(pm.getFullYear(), pm.getMonth(), prevStart)).clearTime();
66998         //Roo.log(d);
66999         //Roo.log(pm);
67000         //Roo.log(prevStart);
67001         
67002         var today = new Date().clearTime().getTime();
67003         var sel = date.clearTime().getTime();
67004         var min = this.minDate ? this.minDate.clearTime() : Number.NEGATIVE_INFINITY;
67005         var max = this.maxDate ? this.maxDate.clearTime() : Number.POSITIVE_INFINITY;
67006         var ddMatch = this.disabledDatesRE;
67007         var ddText = this.disabledDatesText;
67008         var ddays = this.disabledDays ? this.disabledDays.join("") : false;
67009         var ddaysText = this.disabledDaysText;
67010         var format = this.format;
67011         
67012         var setCellClass = function(cal, cell){
67013             
67014             //Roo.log('set Cell Class');
67015             cell.title = "";
67016             var t = d.getTime();
67017             
67018             //Roo.log(d);
67019             
67020             
67021             cell.dateValue = t;
67022             if(t == today){
67023                 cell.className += " fc-today";
67024                 cell.className += " fc-state-highlight";
67025                 cell.title = cal.todayText;
67026             }
67027             if(t == sel){
67028                 // disable highlight in other month..
67029                 cell.className += " fc-state-highlight";
67030                 
67031             }
67032             // disabling
67033             if(t < min) {
67034                 //cell.className = " fc-state-disabled";
67035                 cell.title = cal.minText;
67036                 return;
67037             }
67038             if(t > max) {
67039                 //cell.className = " fc-state-disabled";
67040                 cell.title = cal.maxText;
67041                 return;
67042             }
67043             if(ddays){
67044                 if(ddays.indexOf(d.getDay()) != -1){
67045                     // cell.title = ddaysText;
67046                    // cell.className = " fc-state-disabled";
67047                 }
67048             }
67049             if(ddMatch && format){
67050                 var fvalue = d.dateFormat(format);
67051                 if(ddMatch.test(fvalue)){
67052                     cell.title = ddText.replace("%0", fvalue);
67053                    cell.className = " fc-state-disabled";
67054                 }
67055             }
67056             
67057             if (!cell.initialClassName) {
67058                 cell.initialClassName = cell.dom.className;
67059             }
67060             
67061             cell.dom.className = cell.initialClassName  + ' ' +  cell.className;
67062         };
67063
67064         var i = 0;
67065         
67066         for(; i < startingPos; i++) {
67067             cells[i].dayName =  (++prevStart);
67068             Roo.log(textEls[i]);
67069             d.setDate(d.getDate()+1);
67070             
67071             //cells[i].className = "fc-past fc-other-month";
67072             setCellClass(this, cells[i]);
67073         }
67074         
67075         var intDay = 0;
67076         
67077         for(; i < days; i++){
67078             intDay = i - startingPos + 1;
67079             cells[i].dayName =  (intDay);
67080             d.setDate(d.getDate()+1);
67081             
67082             cells[i].className = ''; // "x-date-active";
67083             setCellClass(this, cells[i]);
67084         }
67085         var extraDays = 0;
67086         
67087         for(; i < 42; i++) {
67088             //textEls[i].innerHTML = (++extraDays);
67089             
67090             d.setDate(d.getDate()+1);
67091             cells[i].dayName = (++extraDays);
67092             cells[i].className = "fc-future fc-other-month";
67093             setCellClass(this, cells[i]);
67094         }
67095         
67096         //this.el.select('.fc-header-title h2',true).update(Date.monthNames[date.getMonth()] + " " + date.getFullYear());
67097         
67098         var totalRows = Math.ceil((date.getDaysInMonth() + date.getFirstDateOfMonth().getDay()) / 7);
67099         
67100         // this will cause all the cells to mis
67101         var rows= [];
67102         var i =0;
67103         for (var r = 0;r < 6;r++) {
67104             for (var c =0;c < 7;c++) {
67105                 this.ds.getAt(r).set('weekday' + c ,cells[i++].dayName );
67106             }    
67107         }
67108         
67109         this.cells = this.view.el.select('.x-grid-row .x-grid-col',true);
67110         for(i=0;i<cells.length;i++) {
67111             
67112             this.cells.elements[i].dayName = cells[i].dayName ;
67113             this.cells.elements[i].className = cells[i].className;
67114             this.cells.elements[i].initialClassName = cells[i].initialClassName ;
67115             this.cells.elements[i].title = cells[i].title ;
67116             this.cells.elements[i].dateValue = cells[i].dateValue ;
67117         }
67118         
67119         
67120         
67121         
67122         //this.el.select('tr.fc-week.fc-prev-last',true).removeClass('fc-last');
67123         //this.el.select('tr.fc-week.fc-next-last',true).addClass('fc-last').show();
67124         
67125         ////if(totalRows != 6){
67126             //this.el.select('tr.fc-week.fc-last',true).removeClass('fc-last').addClass('fc-next-last').hide();
67127            // this.el.select('tr.fc-week.fc-prev-last',true).addClass('fc-last');
67128        // }
67129         
67130         this.fireEvent('monthchange', this, date);
67131         
67132         
67133     },
67134  /**
67135      * Returns the grid's SelectionModel.
67136      * @return {SelectionModel}
67137      */
67138     getSelectionModel : function(){
67139         if(!this.selModel){
67140             this.selModel = new Roo.grid.CellSelectionModel();
67141         }
67142         return this.selModel;
67143     },
67144
67145     load: function() {
67146         this.eventStore.load()
67147         
67148         
67149         
67150     },
67151     
67152     findCell : function(dt) {
67153         dt = dt.clearTime().getTime();
67154         var ret = false;
67155         this.cells.each(function(c){
67156             //Roo.log("check " +c.dateValue + '?=' + dt);
67157             if(c.dateValue == dt){
67158                 ret = c;
67159                 return false;
67160             }
67161             return true;
67162         });
67163         
67164         return ret;
67165     },
67166     
67167     findCells : function(rec) {
67168         var s = rec.data.start_dt.clone().clearTime().getTime();
67169        // Roo.log(s);
67170         var e= rec.data.end_dt.clone().clearTime().getTime();
67171        // Roo.log(e);
67172         var ret = [];
67173         this.cells.each(function(c){
67174              ////Roo.log("check " +c.dateValue + '<' + e + ' > ' + s);
67175             
67176             if(c.dateValue > e){
67177                 return ;
67178             }
67179             if(c.dateValue < s){
67180                 return ;
67181             }
67182             ret.push(c);
67183         });
67184         
67185         return ret;    
67186     },
67187     
67188     findBestRow: function(cells)
67189     {
67190         var ret = 0;
67191         
67192         for (var i =0 ; i < cells.length;i++) {
67193             ret  = Math.max(cells[i].rows || 0,ret);
67194         }
67195         return ret;
67196         
67197     },
67198     
67199     
67200     addItem : function(rec)
67201     {
67202         // look for vertical location slot in
67203         var cells = this.findCells(rec);
67204         
67205         rec.row = this.findBestRow(cells);
67206         
67207         // work out the location.
67208         
67209         var crow = false;
67210         var rows = [];
67211         for(var i =0; i < cells.length; i++) {
67212             if (!crow) {
67213                 crow = {
67214                     start : cells[i],
67215                     end :  cells[i]
67216                 };
67217                 continue;
67218             }
67219             if (crow.start.getY() == cells[i].getY()) {
67220                 // on same row.
67221                 crow.end = cells[i];
67222                 continue;
67223             }
67224             // different row.
67225             rows.push(crow);
67226             crow = {
67227                 start: cells[i],
67228                 end : cells[i]
67229             };
67230             
67231         }
67232         
67233         rows.push(crow);
67234         rec.els = [];
67235         rec.rows = rows;
67236         rec.cells = cells;
67237         for (var i = 0; i < cells.length;i++) {
67238             cells[i].rows = Math.max(cells[i].rows || 0 , rec.row + 1 );
67239             
67240         }
67241         
67242         
67243     },
67244     
67245     clearEvents: function() {
67246         
67247         if (!this.eventStore.getCount()) {
67248             return;
67249         }
67250         // reset number of rows in cells.
67251         Roo.each(this.cells.elements, function(c){
67252             c.rows = 0;
67253         });
67254         
67255         this.eventStore.each(function(e) {
67256             this.clearEvent(e);
67257         },this);
67258         
67259     },
67260     
67261     clearEvent : function(ev)
67262     {
67263         if (ev.els) {
67264             Roo.each(ev.els, function(el) {
67265                 el.un('mouseenter' ,this.onEventEnter, this);
67266                 el.un('mouseleave' ,this.onEventLeave, this);
67267                 el.remove();
67268             },this);
67269             ev.els = [];
67270         }
67271     },
67272     
67273     
67274     renderEvent : function(ev,ctr) {
67275         if (!ctr) {
67276              ctr = this.view.el.select('.fc-event-container',true).first();
67277         }
67278         
67279          
67280         this.clearEvent(ev);
67281             //code
67282        
67283         
67284         
67285         ev.els = [];
67286         var cells = ev.cells;
67287         var rows = ev.rows;
67288         this.fireEvent('eventrender', this, ev);
67289         
67290         for(var i =0; i < rows.length; i++) {
67291             
67292             cls = '';
67293             if (i == 0) {
67294                 cls += ' fc-event-start';
67295             }
67296             if ((i+1) == rows.length) {
67297                 cls += ' fc-event-end';
67298             }
67299             
67300             //Roo.log(ev.data);
67301             // how many rows should it span..
67302             var cg = this.eventTmpl.append(ctr,Roo.apply({
67303                 fccls : cls
67304                 
67305             }, ev.data) , true);
67306             
67307             
67308             cg.on('mouseenter' ,this.onEventEnter, this, ev);
67309             cg.on('mouseleave' ,this.onEventLeave, this, ev);
67310             cg.on('click', this.onEventClick, this, ev);
67311             
67312             ev.els.push(cg);
67313             
67314             var sbox = rows[i].start.select('.fc-day-content',true).first().getBox();
67315             var ebox = rows[i].end.select('.fc-day-content',true).first().getBox();
67316             //Roo.log(cg);
67317              
67318             cg.setXY([sbox.x +2, sbox.y +(ev.row * 20)]);    
67319             cg.setWidth(ebox.right - sbox.x -2);
67320         }
67321     },
67322     
67323     renderEvents: function()
67324     {   
67325         // first make sure there is enough space..
67326         
67327         if (!this.eventTmpl) {
67328             this.eventTmpl = new Roo.Template(
67329                 '<div class="roo-dynamic fc-event fc-event-hori fc-event-draggable ui-draggable {fccls} {cls}"  style="position: absolute" unselectable="on">' +
67330                     '<div class="fc-event-inner">' +
67331                         '<span class="fc-event-time">{time}</span>' +
67332                         '<span class="fc-event-title" qtip="{qtip}">{title}</span>' +
67333                     '</div>' +
67334                     '<div class="ui-resizable-heandle ui-resizable-e">&nbsp;&nbsp;&nbsp;</div>' +
67335                 '</div>'
67336             );
67337                 
67338         }
67339                
67340         
67341         
67342         this.cells.each(function(c) {
67343             //Roo.log(c.select('.fc-day-content div',true).first());
67344             c.select('.fc-day-content div',true).first().setHeight(Math.max(34, (c.rows || 1) * 20));
67345         });
67346         
67347         var ctr = this.view.el.select('.fc-event-container',true).first();
67348         
67349         var cls;
67350         this.eventStore.each(function(ev){
67351             
67352             this.renderEvent(ev);
67353              
67354              
67355         }, this);
67356         this.view.layout();
67357         
67358     },
67359     
67360     onEventEnter: function (e, el,event,d) {
67361         this.fireEvent('evententer', this, el, event);
67362     },
67363     
67364     onEventLeave: function (e, el,event,d) {
67365         this.fireEvent('eventleave', this, el, event);
67366     },
67367     
67368     onEventClick: function (e, el,event,d) {
67369         this.fireEvent('eventclick', this, el, event);
67370     },
67371     
67372     onMonthChange: function () {
67373         this.store.load();
67374     },
67375     
67376     onLoad: function () {
67377         
67378         //Roo.log('calendar onload');
67379 //         
67380         if(this.eventStore.getCount() > 0){
67381             
67382            
67383             
67384             this.eventStore.each(function(d){
67385                 
67386                 
67387                 // FIXME..
67388                 var add =   d.data;
67389                 if (typeof(add.end_dt) == 'undefined')  {
67390                     Roo.log("Missing End time in calendar data: ");
67391                     Roo.log(d);
67392                     return;
67393                 }
67394                 if (typeof(add.start_dt) == 'undefined')  {
67395                     Roo.log("Missing Start time in calendar data: ");
67396                     Roo.log(d);
67397                     return;
67398                 }
67399                 add.start_dt = typeof(add.start_dt) == 'string' ? Date.parseDate(add.start_dt,'Y-m-d H:i:s') : add.start_dt,
67400                 add.end_dt = typeof(add.end_dt) == 'string' ? Date.parseDate(add.end_dt,'Y-m-d H:i:s') : add.end_dt,
67401                 add.id = add.id || d.id;
67402                 add.title = add.title || '??';
67403                 
67404                 this.addItem(d);
67405                 
67406              
67407             },this);
67408         }
67409         
67410         this.renderEvents();
67411     }
67412     
67413
67414 });
67415 /*
67416  grid : {
67417                 xtype: 'Grid',
67418                 xns: Roo.grid,
67419                 listeners : {
67420                     render : function ()
67421                     {
67422                         _this.grid = this;
67423                         
67424                         if (!this.view.el.hasClass('course-timesheet')) {
67425                             this.view.el.addClass('course-timesheet');
67426                         }
67427                         if (this.tsStyle) {
67428                             this.ds.load({});
67429                             return; 
67430                         }
67431                         Roo.log('width');
67432                         Roo.log(_this.grid.view.el.getWidth());
67433                         
67434                         
67435                         this.tsStyle =  Roo.util.CSS.createStyleSheet({
67436                             '.course-timesheet .x-grid-row' : {
67437                                 height: '80px'
67438                             },
67439                             '.x-grid-row td' : {
67440                                 'vertical-align' : 0
67441                             },
67442                             '.course-edit-link' : {
67443                                 'color' : 'blue',
67444                                 'text-overflow' : 'ellipsis',
67445                                 'overflow' : 'hidden',
67446                                 'white-space' : 'nowrap',
67447                                 'cursor' : 'pointer'
67448                             },
67449                             '.sub-link' : {
67450                                 'color' : 'green'
67451                             },
67452                             '.de-act-sup-link' : {
67453                                 'color' : 'purple',
67454                                 'text-decoration' : 'line-through'
67455                             },
67456                             '.de-act-link' : {
67457                                 'color' : 'red',
67458                                 'text-decoration' : 'line-through'
67459                             },
67460                             '.course-timesheet .course-highlight' : {
67461                                 'border-top-style': 'dashed !important',
67462                                 'border-bottom-bottom': 'dashed !important'
67463                             },
67464                             '.course-timesheet .course-item' : {
67465                                 'font-family'   : 'tahoma, arial, helvetica',
67466                                 'font-size'     : '11px',
67467                                 'overflow'      : 'hidden',
67468                                 'padding-left'  : '10px',
67469                                 'padding-right' : '10px',
67470                                 'padding-top' : '10px' 
67471                             }
67472                             
67473                         }, Roo.id());
67474                                 this.ds.load({});
67475                     }
67476                 },
67477                 autoWidth : true,
67478                 monitorWindowResize : false,
67479                 cellrenderer : function(v,x,r)
67480                 {
67481                     return v;
67482                 },
67483                 sm : {
67484                     xtype: 'CellSelectionModel',
67485                     xns: Roo.grid
67486                 },
67487                 dataSource : {
67488                     xtype: 'Store',
67489                     xns: Roo.data,
67490                     listeners : {
67491                         beforeload : function (_self, options)
67492                         {
67493                             options.params = options.params || {};
67494                             options.params._month = _this.monthField.getValue();
67495                             options.params.limit = 9999;
67496                             options.params['sort'] = 'when_dt';    
67497                             options.params['dir'] = 'ASC';    
67498                             this.proxy.loadResponse = this.loadResponse;
67499                             Roo.log("load?");
67500                             //this.addColumns();
67501                         },
67502                         load : function (_self, records, options)
67503                         {
67504                             _this.grid.view.el.select('.course-edit-link', true).on('click', function() {
67505                                 // if you click on the translation.. you can edit it...
67506                                 var el = Roo.get(this);
67507                                 var id = el.dom.getAttribute('data-id');
67508                                 var d = el.dom.getAttribute('data-date');
67509                                 var t = el.dom.getAttribute('data-time');
67510                                 //var id = this.child('span').dom.textContent;
67511                                 
67512                                 //Roo.log(this);
67513                                 Pman.Dialog.CourseCalendar.show({
67514                                     id : id,
67515                                     when_d : d,
67516                                     when_t : t,
67517                                     productitem_active : id ? 1 : 0
67518                                 }, function() {
67519                                     _this.grid.ds.load({});
67520                                 });
67521                            
67522                            });
67523                            
67524                            _this.panel.fireEvent('resize', [ '', '' ]);
67525                         }
67526                     },
67527                     loadResponse : function(o, success, response){
67528                             // this is overridden on before load..
67529                             
67530                             Roo.log("our code?");       
67531                             //Roo.log(success);
67532                             //Roo.log(response)
67533                             delete this.activeRequest;
67534                             if(!success){
67535                                 this.fireEvent("loadexception", this, o, response);
67536                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
67537                                 return;
67538                             }
67539                             var result;
67540                             try {
67541                                 result = o.reader.read(response);
67542                             }catch(e){
67543                                 Roo.log("load exception?");
67544                                 this.fireEvent("loadexception", this, o, response, e);
67545                                 o.request.callback.call(o.request.scope, null, o.request.arg, false);
67546                                 return;
67547                             }
67548                             Roo.log("ready...");        
67549                             // loop through result.records;
67550                             // and set this.tdate[date] = [] << array of records..
67551                             _this.tdata  = {};
67552                             Roo.each(result.records, function(r){
67553                                 //Roo.log(r.data);
67554                                 if(typeof(_this.tdata[r.data.when_dt.format('j')]) == 'undefined'){
67555                                     _this.tdata[r.data.when_dt.format('j')] = [];
67556                                 }
67557                                 _this.tdata[r.data.when_dt.format('j')].push(r.data);
67558                             });
67559                             
67560                             //Roo.log(_this.tdata);
67561                             
67562                             result.records = [];
67563                             result.totalRecords = 6;
67564                     
67565                             // let's generate some duumy records for the rows.
67566                             //var st = _this.dateField.getValue();
67567                             
67568                             // work out monday..
67569                             //st = st.add(Date.DAY, -1 * st.format('w'));
67570                             
67571                             var date = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
67572                             
67573                             var firstOfMonth = date.getFirstDayOfMonth();
67574                             var days = date.getDaysInMonth();
67575                             var d = 1;
67576                             var firstAdded = false;
67577                             for (var i = 0; i < result.totalRecords ; i++) {
67578                                 //var d= st.add(Date.DAY, i);
67579                                 var row = {};
67580                                 var added = 0;
67581                                 for(var w = 0 ; w < 7 ; w++){
67582                                     if(!firstAdded && firstOfMonth != w){
67583                                         continue;
67584                                     }
67585                                     if(d > days){
67586                                         continue;
67587                                     }
67588                                     firstAdded = true;
67589                                     var dd = (d > 0 && d < 10) ? "0"+d : d;
67590                                     row['weekday'+w] = String.format(
67591                                                     '<span style="font-size: 16px;"><b>{0}</b></span>'+
67592                                                     '<span class="course-edit-link" style="color:blue;" data-id="0" data-date="{1}"> Add New</span>',
67593                                                     d,
67594                                                     date.format('Y-m-')+dd
67595                                                 );
67596                                     added++;
67597                                     if(typeof(_this.tdata[d]) != 'undefined'){
67598                                         Roo.each(_this.tdata[d], function(r){
67599                                             var is_sub = '';
67600                                             var deactive = '';
67601                                             var id = r.id;
67602                                             var desc = (r.productitem_id_descrip) ? r.productitem_id_descrip : '';
67603                                             if(r.parent_id*1>0){
67604                                                 is_sub = (r.productitem_id_visible*1 < 1) ? 'de-act-sup-link' :'sub-link';
67605                                                 id = r.parent_id;
67606                                             }
67607                                             if(r.productitem_id_visible*1 < 1 && r.parent_id*1 < 1){
67608                                                 deactive = 'de-act-link';
67609                                             }
67610                                             
67611                                             row['weekday'+w] += String.format(
67612                                                     '<br /><span class="course-edit-link {3} {4}" qtip="{5}" data-id="{0}">{2} - {1}</span>',
67613                                                     id, //0
67614                                                     r.product_id_name, //1
67615                                                     r.when_dt.format('h:ia'), //2
67616                                                     is_sub, //3
67617                                                     deactive, //4
67618                                                     desc // 5
67619                                             );
67620                                         });
67621                                     }
67622                                     d++;
67623                                 }
67624                                 
67625                                 // only do this if something added..
67626                                 if(added > 0){ 
67627                                     result.records.push(_this.grid.dataSource.reader.newRow(row));
67628                                 }
67629                                 
67630                                 
67631                                 // push it twice. (second one with an hour..
67632                                 
67633                             }
67634                             //Roo.log(result);
67635                             this.fireEvent("load", this, o, o.request.arg);
67636                             o.request.callback.call(o.request.scope, result, o.request.arg, true);
67637                         },
67638                     sortInfo : {field: 'when_dt', direction : 'ASC' },
67639                     proxy : {
67640                         xtype: 'HttpProxy',
67641                         xns: Roo.data,
67642                         method : 'GET',
67643                         url : baseURL + '/Roo/Shop_course.php'
67644                     },
67645                     reader : {
67646                         xtype: 'JsonReader',
67647                         xns: Roo.data,
67648                         id : 'id',
67649                         fields : [
67650                             {
67651                                 'name': 'id',
67652                                 'type': 'int'
67653                             },
67654                             {
67655                                 'name': 'when_dt',
67656                                 'type': 'string'
67657                             },
67658                             {
67659                                 'name': 'end_dt',
67660                                 'type': 'string'
67661                             },
67662                             {
67663                                 'name': 'parent_id',
67664                                 'type': 'int'
67665                             },
67666                             {
67667                                 'name': 'product_id',
67668                                 'type': 'int'
67669                             },
67670                             {
67671                                 'name': 'productitem_id',
67672                                 'type': 'int'
67673                             },
67674                             {
67675                                 'name': 'guid',
67676                                 'type': 'int'
67677                             }
67678                         ]
67679                     }
67680                 },
67681                 toolbar : {
67682                     xtype: 'Toolbar',
67683                     xns: Roo,
67684                     items : [
67685                         {
67686                             xtype: 'Button',
67687                             xns: Roo.Toolbar,
67688                             listeners : {
67689                                 click : function (_self, e)
67690                                 {
67691                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
67692                                     sd.setMonth(sd.getMonth()-1);
67693                                     _this.monthField.setValue(sd.format('Y-m-d'));
67694                                     _this.grid.ds.load({});
67695                                 }
67696                             },
67697                             text : "Back"
67698                         },
67699                         {
67700                             xtype: 'Separator',
67701                             xns: Roo.Toolbar
67702                         },
67703                         {
67704                             xtype: 'MonthField',
67705                             xns: Roo.form,
67706                             listeners : {
67707                                 render : function (_self)
67708                                 {
67709                                     _this.monthField = _self;
67710                                    // _this.monthField.set  today
67711                                 },
67712                                 select : function (combo, date)
67713                                 {
67714                                     _this.grid.ds.load({});
67715                                 }
67716                             },
67717                             value : (function() { return new Date(); })()
67718                         },
67719                         {
67720                             xtype: 'Separator',
67721                             xns: Roo.Toolbar
67722                         },
67723                         {
67724                             xtype: 'TextItem',
67725                             xns: Roo.Toolbar,
67726                             text : "Blue: in-active, green: in-active sup-event, red: de-active, purple: de-active sup-event"
67727                         },
67728                         {
67729                             xtype: 'Fill',
67730                             xns: Roo.Toolbar
67731                         },
67732                         {
67733                             xtype: 'Button',
67734                             xns: Roo.Toolbar,
67735                             listeners : {
67736                                 click : function (_self, e)
67737                                 {
67738                                     var sd = Date.parseDate(_this.monthField.getValue(), "Y-m-d");
67739                                     sd.setMonth(sd.getMonth()+1);
67740                                     _this.monthField.setValue(sd.format('Y-m-d'));
67741                                     _this.grid.ds.load({});
67742                                 }
67743                             },
67744                             text : "Next"
67745                         }
67746                     ]
67747                 },
67748                  
67749             }
67750         };
67751         
67752         *//*
67753  * Based on:
67754  * Ext JS Library 1.1.1
67755  * Copyright(c) 2006-2007, Ext JS, LLC.
67756  *
67757  * Originally Released Under LGPL - original licence link has changed is not relivant.
67758  *
67759  * Fork - LGPL
67760  * <script type="text/javascript">
67761  */
67762  
67763 /**
67764  * @class Roo.LoadMask
67765  * A simple utility class for generically masking elements while loading data.  If the element being masked has
67766  * an underlying {@link Roo.data.Store}, the masking will be automatically synchronized with the store's loading
67767  * process and the mask element will be cached for reuse.  For all other elements, this mask will replace the
67768  * element's UpdateManager load indicator and will be destroyed after the initial load.
67769  * @constructor
67770  * Create a new LoadMask
67771  * @param {String/HTMLElement/Roo.Element} el The element or DOM node, or its id
67772  * @param {Object} config The config object
67773  */
67774 Roo.LoadMask = function(el, config){
67775     this.el = Roo.get(el);
67776     Roo.apply(this, config);
67777     if(this.store){
67778         this.store.on('beforeload', this.onBeforeLoad, this);
67779         this.store.on('load', this.onLoad, this);
67780         this.store.on('loadexception', this.onLoadException, this);
67781         this.removeMask = false;
67782     }else{
67783         var um = this.el.getUpdateManager();
67784         um.showLoadIndicator = false; // disable the default indicator
67785         um.on('beforeupdate', this.onBeforeLoad, this);
67786         um.on('update', this.onLoad, this);
67787         um.on('failure', this.onLoad, this);
67788         this.removeMask = true;
67789     }
67790 };
67791
67792 Roo.LoadMask.prototype = {
67793     /**
67794      * @cfg {Boolean} removeMask
67795      * True to create a single-use mask that is automatically destroyed after loading (useful for page loads),
67796      * False to persist the mask element reference for multiple uses (e.g., for paged data widgets).  Defaults to false.
67797      */
67798     removeMask : false,
67799     /**
67800      * @cfg {String} msg
67801      * The text to display in a centered loading message box (defaults to 'Loading...')
67802      */
67803     msg : 'Loading...',
67804     /**
67805      * @cfg {String} msgCls
67806      * The CSS class to apply to the loading message element (defaults to "x-mask-loading")
67807      */
67808     msgCls : 'x-mask-loading',
67809
67810     /**
67811      * Read-only. True if the mask is currently disabled so that it will not be displayed (defaults to false)
67812      * @type Boolean
67813      */
67814     disabled: false,
67815
67816     /**
67817      * Disables the mask to prevent it from being displayed
67818      */
67819     disable : function(){
67820        this.disabled = true;
67821     },
67822
67823     /**
67824      * Enables the mask so that it can be displayed
67825      */
67826     enable : function(){
67827         this.disabled = false;
67828     },
67829     
67830     onLoadException : function()
67831     {
67832         Roo.log(arguments);
67833         
67834         if (typeof(arguments[3]) != 'undefined') {
67835             Roo.MessageBox.alert("Error loading",arguments[3]);
67836         } 
67837         /*
67838         try {
67839             if (this.store && typeof(this.store.reader.jsonData.errorMsg) != 'undefined') {
67840                 Roo.MessageBox.alert("Error loading",this.store.reader.jsonData.errorMsg);
67841             }   
67842         } catch(e) {
67843             
67844         }
67845         */
67846     
67847         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
67848     },
67849     // private
67850     onLoad : function()
67851     {
67852         (function() { this.el.unmask(this.removeMask); }).defer(50, this);
67853     },
67854
67855     // private
67856     onBeforeLoad : function(){
67857         if(!this.disabled){
67858             (function() { this.el.mask(this.msg, this.msgCls); }).defer(50, this);
67859         }
67860     },
67861
67862     // private
67863     destroy : function(){
67864         if(this.store){
67865             this.store.un('beforeload', this.onBeforeLoad, this);
67866             this.store.un('load', this.onLoad, this);
67867             this.store.un('loadexception', this.onLoadException, this);
67868         }else{
67869             var um = this.el.getUpdateManager();
67870             um.un('beforeupdate', this.onBeforeLoad, this);
67871             um.un('update', this.onLoad, this);
67872             um.un('failure', this.onLoad, this);
67873         }
67874     }
67875 };/*
67876  * Based on:
67877  * Ext JS Library 1.1.1
67878  * Copyright(c) 2006-2007, Ext JS, LLC.
67879  *
67880  * Originally Released Under LGPL - original licence link has changed is not relivant.
67881  *
67882  * Fork - LGPL
67883  * <script type="text/javascript">
67884  */
67885
67886
67887 /**
67888  * @class Roo.XTemplate
67889  * @extends Roo.Template
67890  * Provides a template that can have nested templates for loops or conditionals. The syntax is:
67891 <pre><code>
67892 var t = new Roo.XTemplate(
67893         '&lt;select name="{name}"&gt;',
67894                 '&lt;tpl for="options"&gt;&lt;option value="{value:trim}"&gt;{text:ellipsis(10)}&lt;/option&gt;&lt;/tpl&gt;',
67895         '&lt;/select&gt;'
67896 );
67897  
67898 // then append, applying the master template values
67899  </code></pre>
67900  *
67901  * Supported features:
67902  *
67903  *  Tags:
67904
67905 <pre><code>
67906       {a_variable} - output encoded.
67907       {a_variable.format:("Y-m-d")} - call a method on the variable
67908       {a_variable:raw} - unencoded output
67909       {a_variable:toFixed(1,2)} - Roo.util.Format."toFixed"
67910       {a_variable:this.method_on_template(...)} - call a method on the template object.
67911  
67912 </code></pre>
67913  *  The tpl tag:
67914 <pre><code>
67915         &lt;tpl for="a_variable or condition.."&gt;&lt;/tpl&gt;
67916         &lt;tpl if="a_variable or condition"&gt;&lt;/tpl&gt;
67917         &lt;tpl exec="some javascript"&gt;&lt;/tpl&gt;
67918         &lt;tpl name="named_template"&gt;&lt;/tpl&gt; (experimental)
67919   
67920         &lt;tpl for="."&gt;&lt;/tpl&gt; - just iterate the property..
67921         &lt;tpl for=".."&gt;&lt;/tpl&gt; - iterates with the parent (probably the template) 
67922 </code></pre>
67923  *      
67924  */
67925 Roo.XTemplate = function()
67926 {
67927     Roo.XTemplate.superclass.constructor.apply(this, arguments);
67928     if (this.html) {
67929         this.compile();
67930     }
67931 };
67932
67933
67934 Roo.extend(Roo.XTemplate, Roo.Template, {
67935
67936     /**
67937      * The various sub templates
67938      */
67939     tpls : false,
67940     /**
67941      *
67942      * basic tag replacing syntax
67943      * WORD:WORD()
67944      *
67945      * // you can fake an object call by doing this
67946      *  x.t:(test,tesT) 
67947      * 
67948      */
67949     re : /\{([\w-\.]+)(?:\:([\w\.]*)(?:\((.*?)?\))?)?\}/g,
67950
67951     /**
67952      * compile the template
67953      *
67954      * This is not recursive, so I'm not sure how nested templates are really going to be handled..
67955      *
67956      */
67957     compile: function()
67958     {
67959         var s = this.html;
67960      
67961         s = ['<tpl>', s, '</tpl>'].join('');
67962     
67963         var re     = /<tpl\b[^>]*>((?:(?=([^<]+))\2|<(?!tpl\b[^>]*>))*?)<\/tpl>/,
67964             nameRe = /^<tpl\b[^>]*?for="(.*?)"/,
67965             ifRe   = /^<tpl\b[^>]*?if="(.*?)"/,
67966             execRe = /^<tpl\b[^>]*?exec="(.*?)"/,
67967             namedRe = /^<tpl\b[^>]*?name="(\w+)"/,  // named templates..
67968             m,
67969             id     = 0,
67970             tpls   = [];
67971     
67972         while(true == !!(m = s.match(re))){
67973             var forMatch   = m[0].match(nameRe),
67974                 ifMatch   = m[0].match(ifRe),
67975                 execMatch   = m[0].match(execRe),
67976                 namedMatch   = m[0].match(namedRe),
67977                 
67978                 exp  = null, 
67979                 fn   = null,
67980                 exec = null,
67981                 name = forMatch && forMatch[1] ? forMatch[1] : '';
67982                 
67983             if (ifMatch) {
67984                 // if - puts fn into test..
67985                 exp = ifMatch && ifMatch[1] ? ifMatch[1] : null;
67986                 if(exp){
67987                    fn = new Function('values', 'parent', 'with(values){ return '+(Roo.util.Format.htmlDecode(exp))+'; }');
67988                 }
67989             }
67990             
67991             if (execMatch) {
67992                 // exec - calls a function... returns empty if true is  returned.
67993                 exp = execMatch && execMatch[1] ? execMatch[1] : null;
67994                 if(exp){
67995                    exec = new Function('values', 'parent', 'with(values){ '+(Roo.util.Format.htmlDecode(exp))+'; }');
67996                 }
67997             }
67998             
67999             
68000             if (name) {
68001                 // for = 
68002                 switch(name){
68003                     case '.':  name = new Function('values', 'parent', 'with(values){ return values; }'); break;
68004                     case '..': name = new Function('values', 'parent', 'with(values){ return parent; }'); break;
68005                     default:   name = new Function('values', 'parent', 'with(values){ return '+name+'; }');
68006                 }
68007             }
68008             var uid = namedMatch ? namedMatch[1] : id;
68009             
68010             
68011             tpls.push({
68012                 id:     namedMatch ? namedMatch[1] : id,
68013                 target: name,
68014                 exec:   exec,
68015                 test:   fn,
68016                 body:   m[1] || ''
68017             });
68018             if (namedMatch) {
68019                 s = s.replace(m[0], '');
68020             } else { 
68021                 s = s.replace(m[0], '{xtpl'+ id + '}');
68022             }
68023             ++id;
68024         }
68025         this.tpls = [];
68026         for(var i = tpls.length-1; i >= 0; --i){
68027             this.compileTpl(tpls[i]);
68028             this.tpls[tpls[i].id] = tpls[i];
68029         }
68030         this.master = tpls[tpls.length-1];
68031         return this;
68032     },
68033     /**
68034      * same as applyTemplate, except it's done to one of the subTemplates
68035      * when using named templates, you can do:
68036      *
68037      * var str = pl.applySubTemplate('your-name', values);
68038      *
68039      * 
68040      * @param {Number} id of the template
68041      * @param {Object} values to apply to template
68042      * @param {Object} parent (normaly the instance of this object)
68043      */
68044     applySubTemplate : function(id, values, parent)
68045     {
68046         
68047         
68048         var t = this.tpls[id];
68049         
68050         
68051         try { 
68052             if(t.test && !t.test.call(this, values, parent)){
68053                 return '';
68054             }
68055         } catch(e) {
68056             Roo.log("Xtemplate.applySubTemplate 'test': Exception thrown");
68057             Roo.log(e.toString());
68058             Roo.log(t.test);
68059             return ''
68060         }
68061         try { 
68062             
68063             if(t.exec && t.exec.call(this, values, parent)){
68064                 return '';
68065             }
68066         } catch(e) {
68067             Roo.log("Xtemplate.applySubTemplate 'exec': Exception thrown");
68068             Roo.log(e.toString());
68069             Roo.log(t.exec);
68070             return ''
68071         }
68072         try {
68073             var vs = t.target ? t.target.call(this, values, parent) : values;
68074             parent = t.target ? values : parent;
68075             if(t.target && vs instanceof Array){
68076                 var buf = [];
68077                 for(var i = 0, len = vs.length; i < len; i++){
68078                     buf[buf.length] = t.compiled.call(this, vs[i], parent);
68079                 }
68080                 return buf.join('');
68081             }
68082             return t.compiled.call(this, vs, parent);
68083         } catch (e) {
68084             Roo.log("Xtemplate.applySubTemplate : Exception thrown");
68085             Roo.log(e.toString());
68086             Roo.log(t.compiled);
68087             return '';
68088         }
68089     },
68090
68091     compileTpl : function(tpl)
68092     {
68093         var fm = Roo.util.Format;
68094         var useF = this.disableFormats !== true;
68095         var sep = Roo.isGecko ? "+" : ",";
68096         var undef = function(str) {
68097             Roo.log("Property not found :"  + str);
68098             return '';
68099         };
68100         
68101         var fn = function(m, name, format, args)
68102         {
68103             //Roo.log(arguments);
68104             args = args ? args.replace(/\\'/g,"'") : args;
68105             //["{TEST:(a,b,c)}", "TEST", "", "a,b,c", 0, "{TEST:(a,b,c)}"]
68106             if (typeof(format) == 'undefined') {
68107                 format= 'htmlEncode';
68108             }
68109             if (format == 'raw' ) {
68110                 format = false;
68111             }
68112             
68113             if(name.substr(0, 4) == 'xtpl'){
68114                 return "'"+ sep +'this.applySubTemplate('+name.substr(4)+', values, parent)'+sep+"'";
68115             }
68116             
68117             // build an array of options to determine if value is undefined..
68118             
68119             // basically get 'xxxx.yyyy' then do
68120             // (typeof(xxxx) == 'undefined' || typeof(xxx.yyyy) == 'undefined') ?
68121             //    (function () { Roo.log("Property not found"); return ''; })() :
68122             //    ......
68123             
68124             var udef_ar = [];
68125             var lookfor = '';
68126             Roo.each(name.split('.'), function(st) {
68127                 lookfor += (lookfor.length ? '.': '') + st;
68128                 udef_ar.push(  "(typeof(" + lookfor + ") == 'undefined')"  );
68129             });
68130             
68131             var udef_st = '((' + udef_ar.join(" || ") +") ? undef('" + name + "') : "; // .. needs )
68132             
68133             
68134             if(format && useF){
68135                 
68136                 args = args ? ',' + args : "";
68137                  
68138                 if(format.substr(0, 5) != "this."){
68139                     format = "fm." + format + '(';
68140                 }else{
68141                     format = 'this.call("'+ format.substr(5) + '", ';
68142                     args = ", values";
68143                 }
68144                 
68145                 return "'"+ sep +   udef_st   +    format + name + args + "))"+sep+"'";
68146             }
68147              
68148             if (args.length) {
68149                 // called with xxyx.yuu:(test,test)
68150                 // change to ()
68151                 return "'"+ sep + udef_st  + name + '(' +  args + "))"+sep+"'";
68152             }
68153             // raw.. - :raw modifier..
68154             return "'"+ sep + udef_st  + name + ")"+sep+"'";
68155             
68156         };
68157         var body;
68158         // branched to use + in gecko and [].join() in others
68159         if(Roo.isGecko){
68160             body = "tpl.compiled = function(values, parent){  with(values) { return '" +
68161                    tpl.body.replace(/(\r\n|\n)/g, '\\n').replace(/'/g, "\\'").replace(this.re, fn) +
68162                     "';};};";
68163         }else{
68164             body = ["tpl.compiled = function(values, parent){  with (values) { return ['"];
68165             body.push(tpl.body.replace(/(\r\n|\n)/g,
68166                             '\\n').replace(/'/g, "\\'").replace(this.re, fn));
68167             body.push("'].join('');};};");
68168             body = body.join('');
68169         }
68170         
68171         Roo.debug && Roo.log(body.replace(/\\n/,'\n'));
68172        
68173         /** eval:var:tpl eval:var:fm eval:var:useF eval:var:undef  */
68174         eval(body);
68175         
68176         return this;
68177     },
68178
68179     applyTemplate : function(values){
68180         return this.master.compiled.call(this, values, {});
68181         //var s = this.subs;
68182     },
68183
68184     apply : function(){
68185         return this.applyTemplate.apply(this, arguments);
68186     }
68187
68188  });
68189
68190 Roo.XTemplate.from = function(el){
68191     el = Roo.getDom(el);
68192     return new Roo.XTemplate(el.value || el.innerHTML);
68193 };